/* ==========================================================================
   Jacaranda — Loli Reiki
   Palette drawn from the logo: jacaranda violet, cherry blossom, leaf gold.
   ========================================================================== */

:root {
    /* Ghost injects --gh-font-* when a font is chosen in Design settings; the
       jacaranda pairing is the fallback. */
    --font-display: var(--gh-font-heading, "Cormorant Garamond", Georgia, serif);
    --font-body: var(--gh-font-body, "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);

    --measure: 34rem;
    --wrap: 68rem;
    --radius: 10px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg: #fbf8f3;
    --bg-alt: #f4efe6;
    --surface: #ffffff;
    --ink: #2a2140;
    --ink-soft: #6b6178;
    --ink-faint: #918aa0;
    --violet: #6b4e9b;
    --violet-hover: #573d80;
    --violet-wash: #f0eaf8;
    --gold: #b8913f;
    --blossom: #e8c7d6;
    --rule: #e6ded0;
    --on-violet: #fbf8f3;
    --shadow: 0 1px 2px rgba(42, 33, 64, 0.05), 0 8px 24px rgba(42, 33, 64, 0.06);
}

[data-theme="dark"] {
    --bg: #191327;
    --bg-alt: #1f1830;
    --surface: #221a33;
    --ink: #ede8f5;
    --ink-soft: #a99cc0;
    --ink-faint: #8b7fa3;
    --violet: #a78bd4;
    --violet-hover: #bda6e3;
    --violet-wash: #291f3d;
    --gold: #d4af6a;
    --blossom: #c99bb4;
    --rule: #322845;
    --on-violet: #191327;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--violet);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--violet-hover);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--violet);
    color: var(--on-violet);
    padding: 0.75rem 1.25rem;
    z-index: 100;
}

.skip-link:focus {
    left: 0;
}

:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --------------------------------------------------------------- layout -- */

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.wrap-narrow {
    max-width: calc(var(--measure) + 3rem);
}

.section {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-heading {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    margin-bottom: 1.75rem;
}

.section-head-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.section-head-row .section-heading {
    margin-bottom: 0;
}

.section-more {
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
}

.section-more:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------- header -- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--rule);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    height: 3rem;
    width: auto;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding-block: 0.35rem;
    border-bottom: 1px solid transparent;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-item a:hover,
.nav-item-current a {
    color: var(--ink);
    border-bottom-color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0.6rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.appearance-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--rule);
    border-radius: 50%;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.appearance-toggle:hover {
    color: var(--violet);
    border-color: var(--violet);
}

.appearance-toggle svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-theme="light"] .icon-moon,
[data-theme="dark"] .icon-sun {
    display: none;
}

/* ----------------------------------------------------------------- hero -- */

.hero {
    padding-block: clamp(4rem, 11vw, 8rem);
    background: linear-gradient(180deg, var(--violet-wash) 0%, var(--bg) 100%);
    text-align: center;
}

.hero-eyebrow {
    margin: 0 0 1.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-heading {
    font-size: clamp(1.9rem, 5.2vw, 3.25rem);
    font-weight: 400;
    line-height: 1.18;
    max-width: 22ch;
    margin-inline: auto;
    text-wrap: balance;
}

.hero-attribution {
    margin: 1.25rem 0 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink-soft);
}

.hero-subheading {
    margin: 2rem auto 0;
    max-width: 42ch;
    color: var(--ink-soft);
    text-wrap: pretty;
}

.hero .button {
    margin-top: 2.5rem;
}

/* -------------------------------------------------------------- buttons -- */

.button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.9rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.button-primary {
    background: var(--violet);
    color: var(--on-violet);
}

.button-primary:hover {
    background: var(--violet-hover);
    color: var(--on-violet);
    transform: translateY(-1px);
}

.button-primary:active {
    transform: translateY(0);
}

/* ---------------------------------------------------------------- prose -- */

.prose {
    color: var(--ink);
}

/* Both rules score the same specificity, so the flow spacing below has to come
   second to win — a `.prose p { margin-block: 0 }` here would outrank it. */
.prose > * {
    margin-block: 0;
}

.prose > * + * {
    margin-top: 1.4em;
}

.prose h2 {
    font-size: 1.75rem;
    margin-top: 2.4em;
}

.prose h3 {
    font-size: 1.4rem;
    margin-top: 2em;
}

.prose ul,
.prose ol {
    padding-left: 1.35em;
}

.prose li + li {
    margin-top: 0.5em;
}

.prose li::marker {
    color: var(--gold);
}

.prose blockquote {
    margin: 2em 0;
    padding-left: 1.4em;
    border-left: 2px solid var(--blossom);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ink-soft);
}

.prose img,
.prose figure {
    margin-block: 2.4em;
    border-radius: var(--radius);
}

.prose figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--ink-faint);
    text-align: center;
}

.prose hr {
    border: 0;
    border-top: 1px solid var(--rule);
    margin-block: 3em;
}

.prose a {
    text-decoration: underline;
}

/* Ghost card widths inside a narrow measure. */
.prose .kg-width-wide {
    width: min(58rem, 92vw);
    margin-inline: calc(50% - min(29rem, 46vw));
}

.prose .kg-width-full {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
}

/* --------------------------------------------------------------- lyric -- */

.section-lyric {
    padding-block: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}

.lyric {
    margin: 0;
}

.lyric p {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0;
}

.lyric cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ------------------------------------------------------------- sessions -- */

.section-sessions {
    background: var(--bg-alt);
}

.price-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.75rem;
    line-height: 1;
    color: var(--violet);
    margin: 0;
}

.price-label {
    margin: 0.6rem 0 0;
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.price-note {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.section-sessions .button {
    margin-top: 2.5rem;
}

.section-sessions-page {
    padding-top: 2rem;
}

/* ------------------------------------------------- photo + copy sections -- */

/* Mobile-first on purpose. Written the other way round, the narrow-column
   override below (`.section-about .section-split`) outranks a plain
   `.section-split` rule inside a max-width query — media queries add no
   specificity — and the two-column layout never switches off. */

.section-split {
    display: grid;
    gap: clamp(1.5rem, 5vw, 4rem);
}

/* Single column: copy first, photo after it. */
.section-split .section-photo {
    order: 2;
}

.page-split {
    padding-block: 1rem 2rem;
}

@media (min-width: 46rem) {
    .section-split {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
        align-items: center;
    }

    /* A portrait shot needs far less width than a room shot to read well. */
    .section-about .section-split,
    .page-split {
        grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
    }

    .page-split {
        align-items: start;
    }

    .section-split .section-photo {
        order: 0;
    }

    .section-split-reverse .section-photo {
        order: 2;
    }
}

.section-photo {
    margin: 0;
}

.section-photo img {
    width: 100%;
    max-width: 24rem;
    margin-inline: auto;
    border-radius: var(--radius);
}

@media (min-width: 46rem) {
    .section-photo img {
        max-width: none;
    }
}

.section-photo figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--ink-faint);
}

.section-copy .button {
    margin-top: 2rem;
}

.section-sessions .section-split {
    margin-top: 2.5rem;
}

/* ---------------------------------------------------------- room photos -- */

.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    margin-block: 2.5rem;
}

/* The gallery lives in the page body, so it has to break out of the reading
   measure to get room. Same trick as Ghost's own wide cards. */
.prose .room-gallery {
    width: min(58rem, 92vw);
    margin-inline: calc(50% - min(29rem, 46vw));
}

/* On the homepage the sessions section is a summary — the photos belong on
   /sessions/, where there is width for them. */
.section-sessions .room-gallery {
    display: none;
}

.room-gallery figure {
    margin: 0;
}

.room-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
}

/* --------------------------------------------------------- testimonials -- */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.testimonial {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 2rem 1.75rem 1.5rem;
    position: relative;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: 0.4rem;
    left: 1.4rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--blossom);
}

.testimonial blockquote {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.testimonial figcaption {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ---------------------------------------------------------------- cards -- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Whole card clickable, while the anchor keeps the title as its accessible
   name and stays a single tab stop. */
.card-link::after {
    content: "";
    position: absolute;
    inset: 0;
}

.card:focus-within {
    outline: 2px solid var(--violet);
    outline-offset: 3px;
}

.card-link:focus-visible {
    outline: none;
}

.card-image {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-date {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.card-title {
    font-size: 1.4rem;
    margin: 0.6rem 0 0;
}

.card-title a {
    color: var(--ink);
    text-decoration: none;
}

.card-title a:hover {
    color: var(--violet);
}

/* Clamped in CSS rather than with {{excerpt words="26"}}: Ghost truncates the
   already-escaped string, which chops HTML entities in half — "I&#39;ve" came
   out as a bare "I&". */
.card-excerpt {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ink-soft);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.card-more {
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--violet);
}

/* ----------------------------------------------------------- post/pages -- */

.archive-header,
.post-header {
    padding-block: clamp(3rem, 7vw, 5rem) 2rem;
    text-align: center;
}

.archive-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.archive-title,
.post-title {
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 400;
    text-wrap: balance;
}

.archive-description,
.post-standfirst {
    margin: 1.25rem auto 0;
    max-width: 46ch;
    color: var(--ink-soft);
    font-size: 1.0625rem;
    text-wrap: pretty;
}

.post-tag {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
}

.post-meta {
    margin: 1.5rem 0 0;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
}

.post-meta-sep {
    margin-inline: 0.5rem;
}

.post-feature {
    margin: 2.5rem auto 0;
}

.post-feature img {
    border-radius: var(--radius);
    width: 100%;
}

.post-content {
    padding-block: 2.5rem;
}

.author-portrait {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
}

.post-cta {
    text-align: center;
    padding-block: 1rem 3rem;
}

.post-cta p {
    margin: 0 auto 1.5rem;
    max-width: 34ch;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--ink-soft);
}

/* ----------------------------------------------------------- petal rule -- */

.petal-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-block: 2.5rem;
}

.petal-rule-line {
    flex: 1;
    height: 1px;
    background: var(--rule);
}

.petal-rule-mark {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
    fill: none;
    stroke: var(--blossom);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------------------------------- newsletter -- */

.section-newsletter {
    padding-block: clamp(2rem, 5vw, 3rem) clamp(3.5rem, 8vw, 6rem);
    text-align: center;
}

.newsletter-blurb {
    margin: 0 auto 2rem;
    max-width: 46ch;
    color: var(--ink-soft);
    text-wrap: pretty;
}

.newsletter-form {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1 1 18rem;
    max-width: 22rem;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1.15rem;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 999px;
}

.newsletter-input::placeholder {
    color: var(--ink-faint);
}

.newsletter-message {
    display: none;
    flex-basis: 100%;
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
}

.newsletter-success {
    color: var(--violet);
}

.newsletter-error {
    color: #c0554f;
}

[data-members-form].success .newsletter-success,
[data-members-form].error .newsletter-error {
    display: block;
}

/* --------------------------------------------------------- contact form -- */

.contact-form {
    margin-block: 1rem 2rem;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.field {
    margin-bottom: 1.25rem;
    text-align: left;
}

.field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.field input,
.field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.75rem 1rem;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    resize: vertical;
}

.field-hint {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--ink-faint);
}

.contact-form-note {
    margin-top: 1rem;
}

.contact-fallback {
    padding: 1.25rem;
    background: var(--violet-wash);
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

/* -------------------------------------------------------------- footer -- */

.site-footer {
    padding-bottom: 3rem;
    background: var(--bg);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-block: 1rem 2rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
}

.footer-tagline {
    margin: 0.75rem 0 0;
    max-width: 34ch;
    font-size: 0.9375rem;
    color: var(--ink-soft);
}

.footer-nav ul {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--violet);
}

.footer-legal {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--ink-faint);
}

.footer-disclaimer {
    display: block;
}

/* --------------------------------------------------------------- error -- */

.error-section {
    text-align: center;
    padding-block: clamp(4rem, 12vw, 8rem);
}

.error-code {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    margin: 0 0 0.5rem;
    color: var(--blossom);
}

.error-note {
    margin: 1.25rem auto 2rem;
    max-width: 40ch;
    color: var(--ink-soft);
}

/* ---------------------------------------------------------- pagination -- */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-block: 3rem 1rem;
    font-size: 0.9375rem;
}

.page-number {
    color: var(--ink-faint);
    letter-spacing: 0.08em;
}

/* -------------------------------------------------------------- mobile -- */

@media (max-width: 46rem) {
    .nav-toggle {
        display: flex;
        order: 3;
    }

    .site-nav {
        order: 4;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease);
    }

    .site-nav.is-open {
        max-height: 26rem;
        padding-bottom: 1.5rem;
    }

    .site-header-inner {
        flex-wrap: wrap;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .nav-item a {
        font-size: 1.0625rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
