/* ============================================================
   FALCONS LANDING — UNIFIED DESIGN SYSTEM
   All shared styles. Page-specific CSS stays in each page.
   ============================================================ */

/* ── DESIGN SYSTEM VARIABLES ── */
:root {
    --forest: #131f12;
    --forest-dark: #0d130d;
    --sage: #546048;
    --sage-light: #a8b19f;
    --bronze: #8c9571;
    --bronze-light: #b8bfa3;
    --parchment: #dfd4bd;
    --earth: #5a4a37;
    --earth-light: #6d5d42;
    --stone: #D4CFC4;
    --stone-light: #EDE9E2;
    --cream: #f6f3ec;
    --ink: #1A1410;
    --ink-muted: #6B5E53;
    --white: #FFFFFF;
    --gold-frame: #c9a55c;
    --gold-frame-width: 9px;
    --radius: 8px;
    --radius-sm: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --max-width: 1280px;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-muted);
    background: var(--cream);
    overflow-x: hidden;
}

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

/* Mute unfinished blocks until client copy/assets land.
   Add class="is-hidden" — do not delete markup. Remove the class to restore. */
.is-hidden {
    display: none !important;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    color: var(--ink);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p { margin-bottom: 1.25rem; color: var(--ink-muted); }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, gap 0.25s ease;
}

a:hover:not(.btn):not(.nav-cta):not(.form-submit):not(.detail-inquire-btn) { color: var(--bronze); }

/* ── NAVIGATION ── */
.nav {
    background: var(--forest);
    border-bottom: 2px solid var(--bronze);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sage-light);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--stone);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sage-light);
    border-bottom-color: var(--bronze);
}

.nav-cta {
    font-family: 'Inter', sans-serif;
    background: var(--sage-light);
    color: var(--forest-dark);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--bronze);
    color: var(--forest-dark);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--forest);
    border: 1px solid var(--bronze);
    border-radius: var(--radius-sm);
    min-width: 180px;
    padding: 8px 0;
    list-style: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li { display: block; }

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--stone);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-bottom: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(179,139,63,0.12);
    color: var(--sage-light);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--stone);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── PAGE HERO (shared dark hero) ── */
.page-hero {
    --hero-gleam: #c9a55c;
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, #1a2818 46%, #3a4630 78%, #c9a55c 160%);
    padding: 80px 40px 64px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.page-hero h1 { color: var(--white); }

.page-hero .hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--stone);
    letter-spacing: 0.04em;
    max-width: 700px;
    margin: 8px auto 0;
}

/* Soft diagonal gold gleam — luxury surface reflection, not a shimmer stripe.
   Tune --hero-gleam, blur, and keyframe percents here. */
.page-hero::before {
    content: '';
    position: absolute;
    top: -55%;
    left: -45%;
    width: 70%;
    height: 210%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        108deg,
        transparent 0%,
        transparent 32%,
        rgba(201, 165, 92, 0.05) 42%,
        rgba(201, 165, 92, 0.16) 49%,
        rgba(236, 214, 160, 0.28) 52%,
        rgba(201, 165, 92, 0.14) 56%,
        rgba(201, 165, 92, 0.04) 64%,
        transparent 74%,
        transparent 100%
    );
    filter: blur(22px);
    mix-blend-mode: soft-light;
    transform: translate3d(-60%, 10%, 0) rotate(16deg);
    animation: page-hero-gleam 14s ease-in-out infinite;
    will-change: transform, opacity;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

@keyframes page-hero-gleam {
    0%, 10% {
        transform: translate3d(-75%, 14%, 0) rotate(16deg);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    52% {
        transform: translate3d(145%, -12%, 0) rotate(16deg);
        opacity: 1;
    }
    60%, 100% {
        transform: translate3d(165%, -16%, 0) rotate(16deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero::before {
        animation: none;
        opacity: 0;
        will-change: auto;
    }
}

.page-hero .breadcrumb {
    color: var(--sage-light);
    font-family: 'Inter', sans-serif;
}

.page-hero .breadcrumb a { color: var(--bronze); }
.page-hero .breadcrumb a:hover { color: var(--sage-light); }

/* ── PAGE HEADER (light) ── */
.page-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 40px 40px 36px;
}

.page-header-inner { max-width: var(--max-width); margin: 0 auto; }

.page-header h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.page-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 600px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--bronze);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--forest); }

.breadcrumb .separator,
.breadcrumb .crumb-sep {
    color: var(--stone);
    user-select: none;
}

/* ── SECTIONS ── */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
}

.section-narrow {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-alt {
    background-color: var(--white);
}

.section--sage {
    background: linear-gradient(180deg, var(--cream) 0%, #E8EDE4 50%, var(--cream) 100%);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.15;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
    border-radius: 2px;
}

.section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.section-divider {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-divider hr {
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 0;
}

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col-image {
    border-radius: 4px;
    overflow: hidden;
    border: var(--gold-frame-width) solid var(--gold-frame);
    box-shadow: 0 4px 24px rgba(44, 52, 66, 0.12);
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Brochure gold frame — photography and feature panels only.
   Skip buttons, maps, logos, form fields. */
.gold-frame {
    border: var(--gold-frame-width) solid var(--gold-frame);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    :root { --gold-frame-width: 6px; }
}

/* ── BUTTONS ── */
.btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--sage-light);
    color: var(--forest-dark);
    box-shadow: 0 4px 18px rgba(212,175,55,0.30);
}

.btn-primary:hover {
    background: var(--bronze);
    color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(179,139,63,0.40);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.30);
    padding: 13px 32px;
}

.btn-outline-light:hover {
    border-color: var(--sage-light);
    color: var(--sage-light);
    background: rgba(179,139,63,0.08);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.30);
    padding: 13px 32px;
}

.btn-outline:hover {
    border-color: var(--sage-light);
    color: var(--sage-light);
    background: rgba(179,139,63,0.08);
}

.btn-secondary {
    background: var(--white);
    color: var(--forest);
    border: 1px solid var(--stone);
}

.btn-secondary:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background: var(--bronze);
    color: var(--forest-dark);
}

.btn-gold:hover {
    background: var(--sage-light);
    color: var(--forest-dark);
}

.btn-outline-sm {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
}

.btn-outline-sm:hover { background: rgba(19,31,18,0.05); }

.btn-ghost {
    background: transparent;
    color: var(--ink-muted);
    border: 1px solid #ccc;
}

.btn-ghost:hover {
    border-color: var(--bronze);
    color: var(--bronze);
}

/* ── CARDS GRID (shared 3-column pattern) ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--stone-light);
    border-bottom: var(--gold-frame-width) solid var(--gold-frame);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(19,31,18,0.15) 100%);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--forest);
    color: var(--sage-light);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.card-specialty {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.card-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-meta-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-meta-item strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px;
}

.card-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--bronze);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
    display: inline-block;
}

.card-link:hover { color: var(--forest); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-label .required { color: #991B1B; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--stone);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 0 0 3px rgba(140,149,113,0.12);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5E53' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--bronze);
    color: var(--forest-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(140,149,113,0.25);
}

.form-submit:hover {
    background: var(--sage-light);
    color: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(140,149,113,0.35);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.form-status {
    padding: 14px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.form-status.success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form-status.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.form-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

/* ── FILTERS ── */
.filter-row {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ink-muted);
}

.filter-group select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
}

.filter-divider { color: #ccc; font-size: 20px; }

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--stone);
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1.5px solid var(--stone);
    background: var(--white);
    color: var(--sage);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--bronze);
    color: var(--forest);
    background: var(--cream);
}

.filter-btn.active {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

/* ── STEPS FLOW ── */
.steps-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--forest);
    border: 3px solid var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--sage-light);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: var(--bronze);
    z-index: 1;
    opacity: 0.4;
}

.step-card:last-child .step-connector { display: none; }

.step-card h3 {
    font-size: 21px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.65;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--bronze);
    opacity: 0.5;
}

.timeline-step {
    position: relative;
    padding-bottom: 40px;
    padding-left: 40px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bronze);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 3px var(--bronze);
    z-index: 2;
}

.timeline-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.timeline-step h3 {
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.timeline-step p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.65;
}

/* ── DARK ACCENT SECTION ── */
.quality-standards {
    background: var(--forest);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.quality-standards::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19,31,18,0.97) 0%, rgba(13,19,13,0.92) 100%);
    z-index: 1;
}

.quality-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

.quality-inner .section-label { color: var(--sage-light); }
.quality-inner .section-title { color: var(--white); }
.quality-inner .section-intro { color: var(--stone); }

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.standard-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.standard-item:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--bronze);
    transform: translateY(-2px);
}

.standard-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--sage-light);
}

.standard-icon svg {
    width: 100%;
    height: 100%;
}

.standard-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}

.standard-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--stone);
    line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--forest);
    padding: 80px 40px;
    text-align: center;
}

.cta-banner-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.cta-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 32px;
}

/* ── OXBOW DIVIDERS ── */
.oxbow-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    background: transparent;
}

.oxbow-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    clip-path: ellipse(110% 100% at 50% 100%);
}

.oxbow-divider--forest-to-cream { background: var(--forest); }
.oxbow-divider--forest-to-cream::before { background: var(--cream); }

.oxbow-divider--cream-to-forest { background: var(--cream); }
.oxbow-divider--cream-to-forest::before { background: var(--forest); }

.oxbow-divider--white-to-cream { background: var(--white); }
.oxbow-divider--white-to-cream::before { background: var(--cream); }

/* ── FEATHER RULE ── */
.feather-rule {
    border: none;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        var(--bronze) 45%,
        var(--sage-light) 50%,
        var(--bronze) 55%,
        transparent 70%,
        transparent 100%
    );
    margin: 0;
    opacity: 0.5;
}

/* ── FOOTER ── */
.footer {
    background: var(--forest-dark);
    padding: 60px 40px 40px;
    color: var(--stone);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px;
    color: var(--sage-light);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer p,
.footer a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--stone);
    line-height: 1.8;
    text-decoration: none;
}

.footer a:hover { color: var(--sage-light); }

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bronze);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cards-grid,
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav { padding: 0 24px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--forest);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 3px solid var(--bronze);
    }

    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .page-hero {
        padding: 60px 24px 48px;
    }

    .page-hero h1 { font-size: 36px; }
    .page-hero .hero-subtitle { font-size: 18px; }

    .page-header { padding: 28px 24px; }
    .page-header h1 { font-size: 36px; }

    .section,
    .section-narrow { padding: 56px 24px; }

    .section-title { font-size: 30px; }

    .cards-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner { padding: 56px 24px; }
    .cta-banner h2 { font-size: 28px; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .form-row { grid-template-columns: 1fr; }

    .steps-flow { flex-direction: column; gap: 32px; }
    .step-connector { display: none; }

    .filter-row { padding: 16px 24px; }
}

@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 30px; }
    .btn { padding: 13px 24px; font-size: 13px; }
}