/* =========================================================
   Maple & May — New Homes (Kings Hall Road) prototype
   Shared design system with Affordable Rent, but New Homes
   uses Open Sans for body text and Montserrat for headings.
   ========================================================= */

:root {
    --color-dark:        #455560;  /* Dark Grey */
    --color-dark-2:      #283035;  /* secondary/Black */
    --color-cream:       #E6DFD5;  /* Linen */
    --color-tan:         #AA9678;  /* Wheat */
    --color-soft-wheat:  #C1B199;  /* Soft Wheat */
    --color-white:       #ffffff;
    --color-body:        #1a1a1a;  /* body copy — client update (was #283035) */
    --color-green:       #11740a;  /* secondary/Green */
    --color-black:       #000000;

    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-72: 72px;
    --space-120: 120px;

    --radius-pill: 999px;

    --container: 1200px;

    --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Carousel peek — amount of adjacent slide visible on each side */
    --hero-peek: 24px;
    --hero-gap:  8px;

    /* Type tokens — exact Figma values */
    --type-h-lg:     700 40px/48px var(--font-head);  /* Desktop/Large */
    --type-h-sm:     700 20px/28px var(--font-head);  /* Desktop/Small */
    --type-label:    600 16px/24px var(--font-head);  /* p-default bold (Montserrat SemiBold) */
    --type-p-large:  400 24px/32px var(--font-body);  /* p-large (Open Sans) */
    --type-p:        400 16px/24px var(--font-body);  /* p-default (Open Sans) */
    --type-p-small:  400 12px/20px var(--font-body);  /* p-small (Open Sans) */
}

/* ---------- Icons ---------- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; width: 24px; height: 24px; }
.icon--lg { width: 32px; height: 32px; }
.icon--arrow-down { width: 44px; height: 44px; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    font: var(--type-p);
    color: var(--color-body);
    background: var(--color-white);
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid #f3c87a;
    outline-offset: 2px;
}

/* ---------- Header (shared) ---------- */
.site-header { background: var(--color-dark); color: var(--color-white); position: sticky; top: 0; z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 120px; gap: 1rem; }
.site-header__logo img { height: 62px; width: auto; }
.site-header__toggle { display: flex; flex-direction: column; justify-content: space-between; width: 48px; height: 48px; padding: 12px 8px; background: transparent; border: none; }
.site-header__toggle span { display: block; height: 3px; background: var(--color-tan); border-radius: 2px; }
.site-header__nav { display: none; }
.site-header__nav ul { display: flex; align-items: stretch; gap: 10px; }
.site-header__nav a { display: inline-flex; align-items: center; height: 120px; padding: 9px 17px; font: var(--type-label); color: var(--color-white); border-bottom: 3px solid transparent; transition: background 0.15s ease; }
.site-header__nav a:hover { background: rgba(255,255,255,0.06); }
.site-header__nav a.is-active { background: var(--color-tan); color: var(--color-dark-2); border-bottom-color: var(--color-tan); }
.site-header__nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-dark-2); }
.site-header__nav.is-open ul { flex-direction: column; gap: 0; }
.site-header__nav.is-open a { height: auto; padding: 1rem 20px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: none; }

/* ---------- Hero (carousel) ---------- */
.hero {
    position: relative;
    height: 540px;          /* mobile height per Figma */
    overflow: hidden;
    background: var(--color-dark-2);
}
.hero__track {
    display: flex;
    width: 100%;        /* explicit width so calc(100% - ...) in flex-basis resolves correctly */
    height: 100%;
    gap: var(--hero-gap);
    transition: transform 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
    .hero__track { transition: none; }
}
/* Each slide is narrower than the hero so adjacent slides peek from the sides */
.hero__slide {
    flex: 0 0 calc(100% - var(--hero-peek) * 2);
    height: 100%;
    user-select: none;
    background: var(--color-dark-2); /* fills letterbox areas when image doesn't fill slide */
    filter: grayscale(100%);         /* peeked neighbours appear monochrome */
    transition: filter 0.4s ease;
}
.hero__slide.is-active { filter: none; }  /* current slide in full colour */
.hero[data-hero-single] .hero__slide { flex-basis: 100%; filter: none; }
.hero__slide img {
    width: 100%; height: 100%;
    object-fit: contain;            /* active slide: show the whole image (zoomed out, no cropping) */
    display: block;
    pointer-events: none;           /* let drag events hit the track */
}
/* Peeked neighbours fill their slide so the visible edge strip shows real
   (black-and-white) image content rather than the dark pillarbox margin. */
.hero__slide:not(.is-active) img { object-fit: cover; }
.hero__controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 16px;
    z-index: 3;                    /* above the ::before/::after gradient overlays */
}
.hero__controls .hero__nav { pointer-events: auto; }
.hero__nav {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, opacity 0.15s ease;
    cursor: pointer;
}
.hero__nav:hover { background: var(--color-white); }
.hero__nav:disabled { opacity: 0.35; cursor: default; }
.hero__nav svg { width: 32px; height: 32px; }

/* Mobile parity with Owl's responsive { 0: { nav: false } } — hide the arrows
   on narrow viewports so users rely on swipe. */
@media (max-width: 567px) {
    .hero__nav { display: none; }
}

/* ---------- Register band ---------- */
/* No background stripe — just the dark pill button floats centred. The
   band has no explicit height so it shrinks to exactly the pill's size,
   eliminating any leftover sliver above/below the button. */
.register {
    background: transparent;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.register--inline { /* no overrides needed — band already auto-sized */ }
.register__btn {
    display: flex;             /* block-level — no inline baseline gap above */
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 32px;
    border-radius: 0 0 16px 16px;
    font: var(--type-h-sm);
    transition: background 0.15s ease;
    margin: 0;
}
.register__btn:hover { background: var(--color-dark-2); }
.register__btn-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--color-soft-wheat); }

/* ---------- Development main area ---------- */
.dev { padding: 72px 0; background: var(--color-white); }
.dev__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.dev__left { display: flex; flex-direction: column; }

/* Tags strip — visually attached to the top of the dev-card on mobile
   (shared dark background blends them into one block); on desktop, lifted
   out and right-aligned, overlapping the top edge of the dev-card with a
   drop shadow beneath each pill. */
.dev-card__tags {
    display: flex;
    flex-direction: column;        /* mobile: stacked */
    align-items: flex-start;
    gap: 16px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 24px 24px 0;
    margin: 0;
}
/* Dev-card — Dark Grey to match the accordion headers / register pill / eligibility button */
.dev-card {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 0;              /* never rounded — per design */
    padding: 16px 24px 32px;       /* mobile; desktop overrides */
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.dev-card__head { display: flex; flex-direction: column; gap: 6px; }
.dev-card__title { font: var(--type-h-lg); color: var(--color-white); }
.dev-card__address {
    display: flex;
    align-items: center;
    gap: 16px;
    font: var(--type-p);
    color: var(--color-white);
    margin: 0;
}
.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font: var(--type-p);
    color: var(--color-white);
}
.tag--plain  { background: var(--color-dark); }
.tag--dark   { background: #333333; }
.tag--soon   { background: #008001; }
.tag--orange { background: #c0540d; }
.tag--red    { background: #bf0000; }
/* M3 Elevation 2 drop shadow — lifts the pills off the dev-card visually */
.dev-card__tags .tag { box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30); }
.dev-card__social { display: flex; gap: 16px; flex-shrink: 0; }
.dev-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);  /* white circle behind the glyph */
    color: var(--color-dark);        /* Dark Grey #455560 glyph — per Figma social icon variant */
}
.dev-card__social svg { width: 26px; height: 26px; }

/* Description box */
.dev-desc {
    background: #f5f3f2;
    border-bottom: 2px solid var(--color-dark);
    padding: 24px 16px;
}
.dev-desc p { font: var(--type-p); color: #1a1a1a; }
.dev-desc__more { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; }
.dev-desc__more[hidden] { display: none; }
.register__btn-icon { transition: transform 0.2s ease; }
.register__btn[aria-expanded="true"] .register__btn-icon { transform: rotate(180deg); }

/* Accordions */
.acc-list { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.acc { border-bottom: 2px solid var(--color-dark); }   /* closed state */
.acc.is-open { border-bottom: 0; }                     /* open state */
.acc__head {
    width: auto;
    min-width: 300px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    min-height: 60px;
    font: var(--type-label);
    font-weight: normal;
    text-align: left;
    border-radius: 8px;
}
.acc.is-open .acc__head { border-radius: 8px 8px 0 0; }
.acc__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-wheat);
    transition: transform 0.2s ease;
}
.acc.is-open .acc__icon { transform: rotate(180deg); }
.acc__body {
    background: #f5f3f2;
    border-top: 2px solid var(--color-dark);
    padding: 24px 16px;
    display: none;
    flex-direction: column;
    gap: 24px;
}
.acc.is-open .acc__body { display: flex; }
.acc__body--cols { flex-direction: row; flex-wrap: wrap; column-gap: 32px; row-gap: 16px; }
.acc__lead { font: var(--type-p); color: #1a1a1a; }
.acc__body .bullets li { color: #1a1a1a; }
.acc__cols { display: flex; flex-wrap: wrap; column-gap: 32px; row-gap: 16px; }
.bullets { display: flex; flex-direction: column; gap: 16px; }
.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font: var(--type-p);
    color: var(--color-dark);
}
.bullets__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bullets__icon svg { width: 16px; height: 16px; }
/* ---------- Card primitive (shared with contact page) ---------- */
.card { background: var(--color-white); border: 1px solid var(--color-dark); border-radius: var(--radius-card); overflow: hidden; }
.card__header { background: var(--color-dark); color: var(--color-white); min-height: 60px; padding: 8px 16px; display: flex; align-items: center; border-radius: var(--radius-card) var(--radius-card) 0 0; }
.card__title { margin: 0; font: var(--type-p); color: var(--color-white); }

/* ---------- Location map ---------- */
/* The partial wraps in <section class="location"><div class="container">.
   Inside .acc-list that container would add extra padding; cancel it out so
   the map aligns with the accordions above it. */
.acc-list .location { padding: 0; }
.acc-list .location .container { padding: 0; max-width: none; }
.location-card { overflow: hidden; }
.location-card__map { height: 400px; background: var(--color-page-bg); overflow: hidden; }

/* Map body: flush 400px image, no border/padding (per Figma) */
.acc__body--map {
    padding: 0;
    border: none;
}
.acc__body--map img { width: 100%; height: 400px; object-fit: cover; display: block; }
.acc__map { width: 100%; height: 400px; border: 0; display: block; }

/* Right rail */
.dev__right { display: flex; flex-direction: column; gap: 24px; padding-top: 32px; }
.btn-eligibility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 72px;
    padding: 0 24px;
    background: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-tan);
    border-radius: 8px;
    font: var(--type-label);
}
.btn-eligibility:hover { background: var(--color-dark-2); }
.btn-eligibility .icon { color: var(--color-soft-wheat); }
.dev-video {
    position: relative;
    width: 100%;
    height: 203px;
    background: var(--color-black);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.dev-video__play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dev-video__play svg { width: 80px; height: 80px; transition: transform 0.15s ease; }
.dev-video__play:hover svg { transform: scale(1.08); }
.dev-video iframe,
.dev-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    background: var(--color-black);
}
.dev-epc { width: 100%; height: auto; display: block; }

/* ---------- Footer (shared) ---------- */
.site-footer { background: var(--color-dark); color: var(--color-white); padding: 72px 0 0; font: var(--type-p); }
.site-footer h4 { font: var(--type-label); color: var(--color-white); margin: 0 0 16px; }
.site-footer a { color: var(--color-white); }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 24px; }
.site-footer__brand-lockup { display: flex; align-items: center; gap: 16px; }
.site-footer__brand-lockup img { height: 68px; width: auto; }
.site-footer__strapline { display: flex; flex-direction: column; font: 400 26px/1.15 var(--font-head); color: var(--color-white); border-left: 1px solid rgba(255,255,255,0.35); padding-left: 16px; }
.site-footer__address p { font: var(--type-p); color: var(--color-white); margin: 0; }
.site-footer__links ul { display: flex; flex-direction: column; gap: 16px; }
.site-footer__links a { font: var(--type-p-small); }
.site-footer__social { display: flex; gap: 8px; margin: 0 0 16px; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--color-white); color: var(--color-dark); border-radius: 50%; font: var(--type-label); font-size: 14px; }
.site-footer__social svg { width: 28px; height: 28px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 16px; }
.site-footer__contact p { margin: 0; font: var(--type-label); color: var(--color-white); }
.site-footer__copy { padding: 0 0 40px; text-align: center; font: var(--type-p-small); color: var(--color-white); }
.site-footer__copy p { margin: 0; }

/* ---------- Tablet / Desktop ---------- */
@media (min-width: 768px) {
    :root {
        --hero-peek: 56px;
        --hero-gap:  12px;
    }

    .site-header__toggle { display: none; }
    .site-header__nav { display: block; }
    .site-header__nav ul { flex-direction: row; }

    .hero { height: 464px; }

    /* Desktop: lift tags out of the dev-card visual — transparent strip,
       right-aligned, overlapping the top edge of the dev-card with a drop
       shadow beneath each pill (negative margin-bottom pulls the card up). */
    .dev-card__tags {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        background: transparent;
        padding: 0 15px 0 0;
        margin: 0 0 -20px;
        position: relative;
        z-index: 1;
    }
    /* Desktop: dev-card stays square-cornered (per design); shorter padding
       so the box height matches Figma (~128px content area). */
    .dev-card {
        padding: 24px 15px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
    .dev-card__head { flex: 1 1 auto; }

    .dev__grid {
        grid-template-columns: 1fr 319px;
        gap: 24px;
        align-items: start;
    }
    .dev__grid:not(:has(.dev__right)) {
        grid-template-columns: 1fr;
    }

    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 37px; }
    .site-footer__links, .site-footer__contact { position: relative; padding-left: 37px; }
    .site-footer__links::before, .site-footer__contact::before {
        content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--color-cream);
    }
}

/* =========================================================
   Register Your Interest â€” drop-down form
   Appended to every prototype's styles.css.
   Scoped to .register[data-register] so it doesn't affect
   other variants of .register (e.g. new-homes "Show more").
   ========================================================= */
.register[data-register] {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: 60px;
    transition: padding 0.2s ease;
}
.register[data-register].is-open { padding-bottom: 24px; }
.register[data-register] .register__btn { border: 0; cursor: pointer; font-family: inherit; }
.register[data-register].is-open .register__btn-icon svg { transform: rotate(180deg); }
.register[data-register] .register__btn-icon svg { transition: transform 0.2s ease; }

.register__panel[hidden] { display: none; }
.register__panel { width: 100%; display: flex; justify-content: center; padding: 24px 20px 0; }
.register-form { width: 100%; max-width: 482px; display: flex; flex-direction: column; gap: 16px; }
.register-form__field { display: flex; flex-direction: column; gap: 8px; }
.register-form__field label { font: 400 16px/24px var(--font-body); color: var(--color-body); }
.register-form__hint { font: 400 12px/20px var(--font-body); color: var(--color-body); }
.register-form__field input {
    width: 100%; height: 68px; padding: 12px;
    font: 400 16px/24px var(--font-body); color: var(--color-body);
    background: var(--color-white); border: 1px solid #808285; border-radius: 4px;
    outline: none; transition: border-color 0.15s ease;
}
.register-form__field input::placeholder { color: #808285; }
.register-form__field input:focus { border-color: var(--color-dark); box-shadow: 0 0 0 2px rgba(69,85,96,0.18); }
.register-form__submit {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    background: var(--color-dark); color: var(--color-white);
    border: 1px solid var(--color-tan); border-radius: 2px;
    font: 600 16px/24px var(--font-head);
    cursor: pointer; transition: background 0.15s ease;
}
.register-form__submit:hover { background: var(--color-dark-2); }

/* =========================================================
   Sub-menu nav (About Us dropdown) — mirrors affordable-rent.
   Tenant-login pill is intentionally NOT included here.
   ========================================================= */
.site-header__nav.is-open > ul { flex-direction: column; gap: 0; }
.site-header__nav-toggle { appearance: none; background: transparent; border: 0; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: inherit; }

.site-header__nav ul.site-header__submenu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; background: var(--color-white); }
.site-header__nav ul.site-header__submenu[hidden] { display: none; }
.site-header__nav .site-header__submenu li { display: block; width: 100%; }
.site-header__submenu a { display: flex; align-items: center; justify-content: center; gap: 20px; height: 72px; padding: 9px 17px; background: #696E72; color: var(--color-white); font: var(--type-body-bold); text-decoration: none; border: 0; border-bottom: 3px solid transparent; transition: background 0.15s ease, border-color 0.15s ease; }
.site-header__submenu a > span { flex: 1 0 0; min-width: 0; }
@media (hover: hover) {
    .site-header__submenu a:hover,
    .site-header__submenu a:focus-visible { background: var(--color-tan); border-bottom-color: var(--color-tan); }
}
.site-header__submenu .icon--chevron-right { width: 24px; height: 24px; color: var(--color-white); flex-shrink: 0; }

@media (min-width: 768px) {
    .site-header__nav-item--has-sub { position: relative; }
    .site-header__nav-toggle { display: inline-flex; align-items: center; height: 120px; padding: 9px 17px; font: var(--type-body-bold); color: var(--color-white); background: transparent; border-bottom: 3px solid transparent; transition: background 0.15s ease; }
    .site-header__nav-toggle:hover { background: rgba(255,255,255,0.06); }
    .site-header__nav-item--has-sub[data-submenu-open] .site-header__nav-toggle { background: var(--color-dark-2); border-bottom-color: var(--color-tan); }
    .site-header__submenu { position: absolute; top: 100%; left: 0; width: 266px; z-index: 50; }
}

/* Mobile drawer: 283px wide, dark-grey rows 72px tall */
.site-header__nav.is-open { width: 283px; right: auto; }
.site-header__nav.is-open > ul > li > a,
.site-header__nav.is-open > ul > li > .site-header__nav-toggle { display: flex; align-items: center; justify-content: flex-end; width: 100%; height: 72px; padding: 9px 32px; border: 0; background: var(--color-dark); color: var(--color-white); text-decoration: none; font: var(--type-body-bold); }
.site-header__nav.is-open > ul > .site-header__nav-item--has-sub > .site-header__nav-toggle { justify-content: space-between; }
.site-header__nav.is-open > ul > .site-header__nav-item--has-sub > .site-header__nav-toggle::before { content: "+"; flex: 0 0 auto; font-size: 24px; line-height: 1; color: var(--color-white); font-weight: 400; }
.site-header__nav.is-open .site-header__nav-item--has-sub[data-submenu-open] > .site-header__nav-toggle { background: var(--color-tan); }
.site-header__nav.is-open .site-header__nav-item--has-sub[data-submenu-open] > .site-header__nav-toggle::before { content: "\00d7"; font-size: 24px; }
.site-header__nav.is-open ul.site-header__submenu { background: var(--color-dark); }
.site-header__nav.is-open .site-header__submenu a { background: #313B42; }

/* Phone row (mobile drawer only) */
.site-header__nav-phone { display: none; }
.site-header__nav.is-open .site-header__nav-phone { display: block; }
.site-header__nav.is-open .site-header__nav-phone a { display: flex; align-items: center; justify-content: flex-start; gap: 16px; width: 100%; height: 72px; padding: 9px 32px; background: var(--color-dark); color: var(--color-white); text-decoration: none; font: var(--type-body-bold); }
.site-header__nav.is-open .site-header__nav-phone a::before { content: none; }
.site-header__nav.is-open .site-header__nav-phone .icon--phone { color: var(--color-white); flex-shrink: 0; }
@media (min-width: 768px) { .site-header__nav-phone { display: none !important; } }

/* Hamburger → X */
.site-header__toggle span { transition: transform 0.2s ease, opacity 0.15s ease; transform-origin: center; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
