/* ============================================
   BAZIS — Design System
   ============================================ */

:root {
    /* Colour */
    --bg:        #f5f1ea;
    --bg-warm:   #ebe5d9;
    --paper:    #ffffff;
    --ink:       #0c0c0c;
    --ink-soft:  #1a1a1a;
    --muted:     #6b6356;
    --stone:     #8a8074;
    --line:      rgba(12, 12, 12, 0.12);
    --line-soft: rgba(12, 12, 12, 0.08);
    --bronze:    #b08d57;
    --bronze-d:  #8e6e3e;
    --navy:      #11385b;
    --navy-deep: #0a1f33;
    --dark:      #0a1825;
    --dark-2:    #122335;

    /* Type */
    --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --max:    1440px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);

    /* Motion */
    --ease:   cubic-bezier(.2, .7, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
em { font-style: italic; font-family: var(--serif); font-weight: 400; }

::selection { background: var(--ink); color: var(--bg); }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ===== UTILITIES ===== */
.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}
.eyebrow--light { color: rgba(245, 241, 234, 0.7); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }

.btn--solid {
    background: var(--ink);
    color: var(--bg);
}
.btn--solid:hover { background: var(--bronze); color: var(--ink); }

.btn--ghost {
    background: transparent;
    color: inherit;
    border-color: currentColor;
}
.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover { color: var(--ink); background: var(--bg); }

.btn--light {
    background: var(--bg);
    color: var(--ink);
}
.btn--light:hover { background: var(--bronze); color: var(--ink); }

.btn--lg {
    padding: 1.25rem 2.25rem;
    font-size: 14px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line);
    transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: 1rem; border-bottom-color: var(--ink); }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== ANNOUNCE ===== */
.announce {
    background: var(--ink);
    color: var(--bg);
    font-size: 12px;
    letter-spacing: 0.04em;
    overflow: hidden;
}
.announce__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.7rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.announce .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--bronze);
    animation: pulse 2.4s ease-in-out infinite;
}
.announce a {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1px;
    transition: border-color .3s;
}
.announce a:hover { border-color: var(--bronze); }

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* ===== NAV ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    transition: background .3s, border-color .3s;
}
.nav.scrolled {
    background: rgba(245, 241, 234, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.25rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand .brandmark { width: 110px; height: auto; fill: var(--ink); }
.nav__logo {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    transition: transform .35s var(--ease);
}
.nav__brand:hover .nav__logo { transform: scale(0.96); }
.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    padding: 0.4rem 0;
    transition: color .3s var(--ease);
}
.nav__links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform-origin: left center; transform: scaleX(1); }
.nav__links a.nav__cta {
    background: var(--ink);
    color: var(--bg);
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background .3s var(--ease);
}
.nav__links a.nav__cta::after { display: none; }
.nav__links a.nav__cta:hover { background: var(--bronze); color: var(--ink); }

.nav__toggle {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 90;
    padding: 6rem var(--gutter) 3rem;
    transform: translateY(-100%);
    transition: transform .55s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-menu nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    line-height: 1;
}
.mobile-menu__foot {
    display: flex; flex-direction: column; gap: 0.5rem;
    font-size: 14px;
    color: var(--muted);
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    color: var(--bg);
    overflow: hidden;
    padding: clamp(4rem, 10vh, 8rem) var(--gutter) clamp(3rem, 8vh, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #1a1612 0%, #2b211a 50%, #0d0907 100%);
}
.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(20%) contrast(1.05);
    animation: heroZoom 22s var(--ease) forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.0); }
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(176, 141, 87, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.5rem, 12vw, 11rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: var(--bg);
}
.hero__title .line { display: block; }
.hero__title .line--italic {
    font-style: italic;
    font-weight: 300;
    color: var(--bronze);
    padding-left: clamp(1rem, 6vw, 5rem);
    font-variation-settings: "opsz" 144;
}

.hero__sub {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.5;
    max-width: 540px;
    color: rgba(245, 241, 234, 0.82);
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero .btn--ghost {
    color: var(--bg);
    border-color: rgba(245, 241, 234, 0.4);
}
.hero .btn--ghost:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
}

.hero__corner {
    position: absolute;
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.hero__corner--tl { top: 2rem; left: var(--gutter); }
.hero__corner--tr { top: 2rem; right: var(--gutter); text-align: right; }

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    right: var(--gutter);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.75);
}
.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--bronze) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
    0%   { background-position: 0 -100%; }
    100% { background-position: 0 100%; }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: rise 1.1s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--ink);
    color: var(--bg);
    overflow: hidden;
    padding: 1.5rem 0;
    border-block: 1px solid rgba(245, 241, 234, 0.1);
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 2.4rem;
    white-space: nowrap;
    animation: scroll-x 38s linear infinite;
    padding-left: 2.4rem;
}
.marquee__track span {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: var(--bg);
}
.marquee__track i {
    color: var(--bronze);
    font-style: normal;
    font-size: 1rem;
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== STATEMENT ===== */
.statement {
    padding: clamp(5rem, 14vh, 10rem) 0;
    background: var(--bg);
}
.statement__grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
.statement__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.6vw, 3.4rem);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 3rem;
    color: var(--ink);
    max-width: 18ch + 4rem;
}
.statement__title em {
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
}
.statement__columns {
    columns: 2;
    column-gap: 3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
}
.statement__columns p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
    margin-bottom: 1rem;
    break-inside: avoid;
}

/* ===== FEATURED ===== */
.featured {
    position: relative;
    background: var(--dark);
    color: var(--bg);
    padding: clamp(6rem, 14vh, 12rem) 0;
    overflow: hidden;
}
.featured__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a1612, #0a0908 60%, #1f1611);
}
.featured__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.32;
    mix-blend-mode: luminosity;
    filter: grayscale(15%);
}
.featured .container { position: relative; z-index: 2; }
.featured__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    margin: 1rem 0 0.5rem;
    letter-spacing: -0.015em;
}
.featured__title em { color: var(--bronze); font-variation-settings: "opsz" 144; padding-left: 0.4em; }
.featured__location {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.65);
    margin-bottom: 4rem;
}
.featured__details {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
}
.featured__lead {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.45;
    color: var(--bg);
    max-width: 480px;
    margin-bottom: 2rem;
}
.featured__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2rem;
    border-top: 1px solid rgba(245, 241, 234, 0.18);
    padding-top: 2rem;
}
.featured__specs li {
    display: flex; flex-direction: column; gap: 0.4rem;
}
.featured__specs span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.5);
}
.featured__specs strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--bg);
}

/* ===== COMMUNITIES ===== */
.communities {
    padding: clamp(5rem, 14vh, 10rem) 0;
    background: var(--bg);
}
.section-head {
    margin-bottom: clamp(3rem, 8vh, 5rem);
    max-width: 720px;
}
.section-head--center {
    text-align: center;
    margin-inline: auto;
}
.section-head--center .eyebrow { justify-content: center; }
.section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
}
.section-title em {
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
}
.section-sub {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 540px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ink);
    aspect-ratio: 4 / 5;
    transition: transform .5s var(--ease);
}
.card--tall { aspect-ratio: 4 / 6; }
.card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(176,141,87,0.4), rgba(12,12,12,0.9)),
        repeating-linear-gradient(45deg, #2a2520 0px, #2a2520 2px, #1f1b16 2px, #1f1b16 4px);
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease), filter .6s;
    filter: grayscale(8%) brightness(0.85);
}
.card__media--fallback img { display: none; }
.card:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(0.92); }
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: 1;
}
.card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.6rem 1.6rem 1.8rem;
    color: var(--bg);
    z-index: 2;
}
.card__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--bronze);
    margin-bottom: 0.4rem;
}
.card__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.card__loc {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.7);
    margin-bottom: 0.7rem;
}
.card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.85);
}
.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bronze);
}
.dot--live { background: #6cb474; box-shadow: 0 0 0 4px rgba(108, 180, 116, 0.18); }
.dot--soon { background: var(--bronze); }

.section-foot {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* ===== PAST COMMUNITIES ===== */
.past-communities {
    padding: clamp(5rem, 14vh, 10rem) 0;
    background: var(--bg-warm);
}
.grid--past {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.grid--past .card {
    aspect-ratio: 4 / 5;
}
.grid--past .card--tall { aspect-ratio: 4 / 5; }
.grid--past .card__num {
    font-style: normal;
    font-weight: 400;
    color: rgba(245, 241, 234, 0.7);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}
.grid--past .card__loc { margin-bottom: 0; }

/* ===== LEGACY ===== */
.legacy {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(5rem, 14vh, 9rem) 0;
}
.legacy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: end;
}
.legacy__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
}
.legacy__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.legacy__lead {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(245, 241, 234, 0.7);
    max-width: 480px;
}
.legacy__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
}
.legacy__stats--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.2rem;
}
.stat {
    border-top: 1px solid rgba(245, 241, 234, 0.2);
    padding-top: 1.4rem;
}
.stat__num {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1;
    color: var(--bronze);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.stat__label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.7);
}

/* ===== APPROACH ===== */
.approach {
    background: var(--bg-warm);
    padding: clamp(5rem, 14vh, 10rem) 0;
}
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-top: 1rem;
}
.pillar {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}
.pillar__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--bronze);
    margin-bottom: 1.5rem;
}
.pillar__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
    max-width: 12ch;
}
.pillar__title em {
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
}
.pillar__body {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
    max-width: 36ch;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--bg);
    padding: clamp(5rem, 14vh, 10rem) 0;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.thumb { display: flex; flex-direction: column; gap: 0.8rem; }
.thumb__img {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(160deg, #2a2520 0%, #15110d 60%, #0c0a08 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .6s var(--ease);
}
.thumb__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(176, 141, 87, 0.22), transparent 60%),
        repeating-linear-gradient(0deg, transparent 0, transparent 8px, rgba(176,141,87,0.04) 8px, rgba(176,141,87,0.04) 9px);
    transition: opacity .6s;
}
.thumb__img span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    color: rgba(245, 241, 234, 0.85);
    text-align: center;
    padding: 1rem;
    z-index: 2;
}
.thumb:hover .thumb__img { transform: scale(1.02); }
.thumb figcaption {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== PRESS ===== */
.press {
    background: var(--bg);
    padding: clamp(5rem, 12vh, 8rem) 0;
    border-top: 1px solid var(--line);
}
.quote {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 4rem;
}
.quote p {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.quote em {
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
}
.quote__mark {
    color: var(--bronze);
    font-style: italic;
    font-size: 1.3em;
    line-height: 0;
}
.quote footer {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1.5rem;
}
.press__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}
.press__logos span {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--stone);
    opacity: 0.75;
    letter-spacing: 0.02em;
    transition: opacity .3s, color .3s;
}
.press__logos span:hover { opacity: 1; color: var(--ink); }

/* ===== CTA ===== */
.cta {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(6rem, 16vh, 12rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(176, 141, 87, 0.12), transparent 65%);
    pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta .eyebrow { justify-content: center; }
.cta__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.cta__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.cta__sub {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.5;
    color: rgba(245, 241, 234, 0.75);
    max-width: 540px;
    margin: 0 auto 3rem;
}
.cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.cta .btn--solid {
    background: var(--bg);
    color: var(--ink);
}
.cta .btn--solid:hover { background: var(--bronze); color: var(--ink); }
.cta__direct {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(245, 241, 234, 0.65);
}
.cta__direct a { transition: color .3s; }
.cta__direct a:hover { color: var(--bronze); }
.cta__direct span {
    font-style: normal;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.4);
    margin-right: 0.5rem;
}

/* ===== FOOTER ===== */
.foot {
    background: var(--dark-2);
    color: var(--bg);
    padding: clamp(4rem, 10vh, 7rem) 0 2.5rem;
}
.foot__top {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: clamp(2rem, 6vw, 5rem);
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 241, 234, 0.12);
    margin-bottom: 2rem;
}
.foot__brand .brandmark { width: 130px; fill: var(--bg); margin-bottom: 1rem; }
.foot__logo {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    display: block;
}
.foot__brand p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(245, 241, 234, 0.5);
    max-width: 280px;
}
.foot__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.foot__head {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.5);
    margin-bottom: 1.4rem;
}
.foot__cols ul { display: flex; flex-direction: column; gap: 0.7rem; }
.foot__cols a {
    font-size: 14px;
    color: rgba(245, 241, 234, 0.85);
    transition: color .3s, padding-left .3s;
}
.foot__cols a:hover { color: var(--bronze); padding-left: 6px; }
.foot__addr {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 241, 234, 0.7);
}
.foot__addr a { color: rgba(245, 241, 234, 0.85); transition: color .3s; }
.foot__addr a:hover { color: var(--bronze); }

.foot__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    font-size: 12px;
    color: rgba(245, 241, 234, 0.45);
    letter-spacing: 0.04em;
}
.foot__social {
    display: flex;
    gap: 1.5rem;
}
.foot__social a { transition: color .3s; }
.foot__social a:hover { color: var(--bronze); }
.foot__legal { text-align: right; }
.foot__legal a { transition: color .3s; }
.foot__legal a:hover { color: var(--bronze); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .grid--past { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .pillars { grid-template-columns: 1fr; gap: 2.5rem; }
    .legacy__grid { grid-template-columns: 1fr; gap: 3rem; }
    .legacy__stats--three { grid-template-columns: repeat(3, 1fr); }
    .statement__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .featured__details { grid-template-columns: 1fr; gap: 2.5rem; }
    .foot__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 820px) {
    .grid--past { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    :root { --gutter: 1.1rem; }
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .nav__inner { padding: 0.9rem var(--gutter); }
    .nav__logo { width: 40px; height: 40px; }

    .hero { min-height: 92vh; min-height: 92dvh; padding-top: 5rem; }
    .hero__title { font-size: clamp(3rem, 14vw, 5.5rem); }
    .hero__title .line--italic { padding-left: 1.5rem; }
    .hero__sub { font-size: 1rem; }
    .hero__corner { font-size: 9px; gap: 0.2rem; }
    .hero__corner--tl { top: 1.3rem; left: var(--gutter); }
    .hero__corner--tr { top: 1.3rem; right: var(--gutter); }
    .hero__scroll { display: none; }
    .hero__actions { gap: 0.6rem; }
    .hero__actions .btn { padding: 0.85rem 1.3rem; font-size: 12px; }

    .grid { grid-template-columns: 1fr; gap: 1rem; }
    .grid--past { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
    .grid--past .card__body { padding: 1rem 1rem 1.2rem; }
    .grid--past .card__title { font-size: 1.05rem; }

    .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .legacy__stats,
    .legacy__stats--three { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat__num { font-size: clamp(2.4rem, 9vw, 3.4rem); }

    .foot__cols { grid-template-columns: 1fr; gap: 2rem; }
    .foot__top { padding-bottom: 2.5rem; }
    .foot__bottom { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
    .foot__legal { text-align: center; }
    .foot__social { justify-content: center; }

    .statement__columns { columns: 1; column-gap: 0; }
    .statement__title { margin-bottom: 2rem; }

    .featured__specs { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .featured__specs strong { font-size: 1rem; }

    .announce__inner { flex-direction: column; gap: 0.35rem; padding: 0.6rem var(--gutter); }
    .announce span:nth-child(2) { font-size: 11px; text-align: center; }
    .marquee { padding: 1rem 0; }
    .marquee__track span { font-size: 1.4rem; }

    .quote p { line-height: 1.3; }
    .press__logos { gap: 1.2rem; padding-top: 2rem; }
    .press__logos span { font-size: 0.95rem; }
    .cta__direct { gap: 1rem; flex-direction: column; }

    /* Touch targets — minimum 44x44 */
    .nav__cta, .btn, .link-arrow, .chip, .foot__cols a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .foot__cols a { padding: 0.3rem 0; }
}

@media (max-width: 420px) {
    .hero__title { font-size: clamp(2.6rem, 13vw, 4.5rem); }
    .grid--past { grid-template-columns: 1fr; }
    .featured__specs { grid-template-columns: 1fr; }
}

/* iOS form input zoom prevention */
@media (max-width: 720px) {
    input[type="text"], input[type="email"], input[type="tel"],
    select, textarea {
        font-size: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero__media img, .marquee__track { animation: none !important; }
}
