/**
 * clone.css — VanGo Pet Care Design Tokens
 *
 * KIT LAYER: Per-site design tokens and base overrides.
 * Loaded AFTER elevate.css. Referenced by creative.css.
 * Do not add animations or keyframes here — those live in creative.css.
 *
 * Brand: Van Gogh Starry Night applied to mobile dog grooming.
 * Every groom is a work of art. Cobalt + Gold + Midnight palette.
 */

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Palette */
    --cobalt:          #1a3a6b;
    --deep-cobalt:     #0d2347;
    --midnight:        #091929;
    --swirl-blue:      #2e5fa3;
    --sky-blue:        #4a7fc1;
    --gold:            #e8c84a;
    --gold-light:      #f5e08a;
    --gold-dim:        #c4a832;
    --cream:           #fdf6e3;
    --warm-white:      #fefcf5;
    --text-dark:       #1a1a2e;
    --text-mid:        #3a3a5c;
    --text-muted:      #6b6b8a;

    /* Semantic mappings (elevate.css compatibility) */
    --color-bg:            var(--warm-white);
    --color-surface:       var(--cream);
    --color-surface-alt:   #f0ede0;
    --color-brand:         var(--cobalt);
    --color-brand-dark:    var(--deep-cobalt);
    --color-accent:        var(--gold);
    --color-accent-light:  var(--gold-light);
    --color-text:          var(--text-dark);
    --color-text-muted:    var(--text-muted);
    --color-dark-bg:       var(--midnight);
    --color-dark-mid:      var(--cobalt);

    /* Typography */
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'Cormorant Garamond', Georgia, serif;
    --font-accent:    'Libre Baskerville', Georgia, serif;
    --font-ui:        'Cormorant Garamond', Georgia, serif;

    /* Type scale */
    --text-xs:    0.72rem;
    --text-sm:    0.875rem;
    --text-base:  1.0625rem;
    --text-md:    1.125rem;
    --text-lg:    1.35rem;
    --text-xl:    1.75rem;
    --text-2xl:   2.25rem;
    --text-3xl:   clamp(2rem, 5vw, 3.5rem);
    --text-hero:  clamp(3rem, 7vw, 5rem);

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.75rem;
    --space-lg:   3rem;
    --space-xl:   5rem;
    --space-2xl:  8rem;
    --section-padding: 6rem;

    /* Radii (image-radius: 0 — gallery frame aesthetic) */
    --radius-none:  0;
    --radius-sm:    2px;
    --radius-md:    4px;
    --radius-pill:  999px;

    /* Borders */
    --border-gold:    1px solid rgba(232, 200, 74, 0.3);
    --border-cobalt:  1px solid rgba(26, 58, 107, 0.15);
    --border-cream:   1px solid rgba(253, 246, 227, 0.12);

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(9, 25, 41, 0.12);
    --shadow-md:   0 6px 20px rgba(9, 25, 41, 0.16);
    --shadow-lg:   0 12px 40px rgba(9, 25, 41, 0.22);
    --shadow-gold: 0 0 20px rgba(232, 200, 74, 0.25);

    /* Spring easing tokens — defined in critical.css :root block (gate: A1) */

    /* Transitions — Bold Premium uses snappy */
    --transition-fast:   0.18s var(--ease-spring-snappy);
    --transition-base:   0.25s var(--ease-spring);
    --transition-slow:   0.4s var(--ease-spring-gentle);

    /* Z-index layers */
    --z-base:    1;
    --z-above:   10;
    --z-nav:     100;
    --z-overlay: 200;
}


/* ═══════════════════════════════════════════════════════════════
   GLOBAL BASE OVERRIDES
   ═══════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--cobalt);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
    color: var(--gold-dim);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
}

p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    line-height: 1.75;
    color: var(--text-mid);
}

/* Dark section text resets */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
    color: var(--cream);
}

.section-dark p,
.section-dark li {
    color: rgba(253, 246, 227, 0.82);
}


/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.container {
    width: 80%;
    max-width: 1400px;
    min-width: 0;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
    }
}

section {
    position: relative;
}

.section-inner {
    padding: var(--section-padding) 0;
}

/* Section background ownership (gate V85) */
section[data-bg="true"] {
    background-attachment: local; /* explicit ownership marker */
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: rgba(9, 25, 41, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: var(--border-gold);
    padding: 0 clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    display: block;
}

.nav-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.nav-brand em {
    color: var(--gold);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(253, 246, 227, 0.82);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold);
}

.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--midnight) !important;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: background var(--transition-fast),
                transform var(--transition-fast);
}

.nav-links a.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: calc(var(--z-nav) + 1);
}

.nav-toggle .hamburger-icon rect {
    fill: var(--cream);
    transition: fill var(--transition-fast);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--midnight);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: var(--z-nav);
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 0.12em;
    }

    .nav-open .nav-links {
        display: flex;
    }

    .nav-open .nav-toggle .hamburger-icon rect:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
        transform-origin: center;
    }
    .nav-open .nav-toggle .hamburger-icon rect:nth-child(2) {
        opacity: 0;
    }
    .nav-open .nav-toggle .hamburger-icon rect:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
        transform-origin: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--midnight);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast),
                transform var(--transition-fast),
                box-shadow var(--transition-fast);
    will-change: transform;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--gold-light);
    color: var(--midnight);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 1px solid rgba(253, 246, 227, 0.4);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: border-color var(--transition-fast),
                color var(--transition-fast),
                transform var(--transition-fast);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* On light backgrounds */
.btn-secondary-dark {
    color: var(--cobalt);
    border-color: rgba(26, 58, 107, 0.35);
}

.btn-secondary-dark:hover {
    border-color: var(--cobalt);
    color: var(--cobalt);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════════════════════ */

.section-label {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label-dark {
    color: var(--swirl-blue);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--cobalt);
}

.section-dark .section-title em {
    color: var(--gold);
}

.section-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

.section-dark .section-sub {
    color: rgba(253, 246, 227, 0.72);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-sub {
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/vgo-hero.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--midnight);
    opacity: 0.58;
    z-index: 1;
}

/* Starry swirl glow overlay — CSS-only art effect */
.hero-swirl-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    padding: 0 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-hero);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero-h1 em {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-lg);
    color: rgba(253, 246, 227, 0.82);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust bar */
.trust-bar {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-top: var(--border-gold);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.trust-item {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 246, 227, 0.72);
    padding: 0.35rem 1.25rem;
    position: relative;
}

.trust-item + .trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.8em;
    width: 1px;
    background: rgba(232, 200, 74, 0.35);
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */

.services-section {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--cobalt);
    border: 2px solid var(--cobalt);
    margin-bottom: 2rem;
}

/* Service card — gallery frame style */
.service-card {
    background: var(--cream);
    padding: 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition-base),
                transform var(--transition-base);
    will-change: transform;
    cursor: pointer;
}

/* Gold top border reveal on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-spring-snappy);
}

.service-card:hover {
    background: var(--deep-cobalt);
    transform: translateY(-5px);
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .card-tier,
.service-card:hover .card-name,
.service-card:hover .card-desc,
.service-card:hover .card-price {
    color: var(--cream);
}

.service-card:hover .card-tier {
    color: var(--gold);
}

.card-tier {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--swirl-blue);
    margin-bottom: 0.6rem;
    transition: color var(--transition-fast);
}

.card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 700;
    font-style: italic;
    color: var(--deep-cobalt);
    margin-bottom: 0.35rem;
    transition: color var(--transition-fast);
}

.card-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--cobalt);
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.card-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-mid);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

/* Add-ons strip */
.addons-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.5rem 0 0;
}

.addon-pill {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cobalt);
    background: rgba(26, 58, 107, 0.07);
    border: 1px solid rgba(26, 58, 107, 0.18);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.process-section {
    background: var(--cobalt);
    padding: var(--section-padding) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 3.5rem;
}

.process-step {
    background: var(--cobalt);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: background var(--transition-base);
}

.process-step:hover {
    background: var(--deep-cobalt);
}

.process-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: rgba(232, 200, 74, 0.18);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.process-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: rgba(253, 246, 227, 0.72);
    line-height: 1.7;
}

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

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════════════ */

.areas-section {
    background: var(--warm-white);
    padding: var(--section-padding) 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--cobalt);
    border: 2px solid var(--cobalt);
    margin-top: 3.5rem;
}

.city-card {
    background: var(--cream);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: background var(--transition-fast),
                transform var(--transition-fast);
    will-change: transform;
    text-decoration: none;
    display: block;
}

.city-card:hover {
    background: var(--deep-cobalt);
    transform: translateY(-3px);
    z-index: 1;
}

.city-card:hover .city-name,
.city-card:hover .city-state {
    color: var(--cream);
}

.city-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--deep-cobalt);
    transition: color var(--transition-fast);
    display: block;
}

.city-state {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--swirl-blue);
    transition: color var(--transition-fast);
    display: block;
    margin-top: 0.25rem;
}

.city-card:hover .city-state {
    color: var(--gold);
}

.areas-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

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


/* ═══════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════ */

.reviews-section {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.review-card {
    background: var(--warm-white);
    border: var(--border-cobalt);
    border-top: 3px solid var(--gold);
    padding: 2.25rem 2rem;
    position: relative;
    transition: transform var(--transition-base),
                box-shadow var(--transition-base);
    will-change: transform;
}

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

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    display: block;
}

.review-text {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.0rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-text::before {
    content: '\201C';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 0;
    vertical-align: -1.2rem;
    margin-right: 0.2rem;
}

.reviewer-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--cobalt);
    display: block;
    letter-spacing: 0.05em;
}

.reviewer-detail {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    color: var(--text-muted);
    letter-spacing: 0.06em;
    display: block;
    margin-top: 0.2rem;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY PASS MEMBERSHIP
   ═══════════════════════════════════════════════════════════════ */

.membership-section {
    background: var(--midnight);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.membership-inner {
    position: relative;
    z-index: 2;
}

.membership-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.membership-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.65);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
}

.membership-plans {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-gold);
    padding: 2rem 2.5rem;
    min-width: 200px;
    transition: background var(--transition-base),
                border-color var(--transition-base),
                transform var(--transition-base);
    will-change: transform;
}

.plan-card:hover {
    background: rgba(232, 200, 74, 0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.plan-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--cream);
    display: block;
}


/* ═══════════════════════════════════════════════════════════════
   WHY VANGO
   ═══════════════════════════════════════════════════════════════ */

.why-section {
    background: var(--cobalt);
    padding: var(--section-padding) 0;
}

.why-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.why-bullets li {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: rgba(253, 246, 227, 0.82);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.why-bullets li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-bullets {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FINAL CTA BLOCK
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
    background: var(--midnight);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.7);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--midnight);
    border-top: var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.footer-brand-name em {
    color: var(--gold);
    font-style: normal;
}

.footer-tagline {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: var(--text-base);
    font-style: italic;
    color: rgba(253, 246, 227, 0.5);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-nap {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    color: rgba(253, 246, 227, 0.55);
    line-height: 1.9;
}

.footer-col-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: rgba(253, 246, 227, 0.55);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: var(--border-gold);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    color: rgba(253, 246, 227, 0.38);
    letter-spacing: 0.05em;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-legal-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    color: rgba(253, 246, 227, 0.38);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */

.breadcrumb {
    background: var(--cobalt);
    padding: 1rem 0;
    margin-top: 72px; /* nav height */
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    color: rgba(253, 246, 227, 0.55);
    letter-spacing: 0.04em;
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(232, 200, 74, 0.4);
}

.breadcrumb a {
    color: rgba(253, 246, 227, 0.7);
    text-decoration: none;
}

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


/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
    background: var(--deep-cobalt);
    padding: 5rem 0 4rem;
    margin-top: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1rem;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.7);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}


/* ═══════════════════════════════════════════════════════════════
   CERT / TRUST BADGES
   ═══════════════════════════════════════════════════════════════ */

.cert-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cert-badge {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cobalt);
    background: rgba(26, 58, 107, 0.07);
    border: 1px solid rgba(26, 58, 107, 0.22);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

/* R44 — sticky mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: calc(var(--z-nav) - 1);
    background: var(--gold);
    color: var(--midnight);
    text-align: center;
    padding: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
}


/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════ */

.pricing-section {
    background: var(--warm-white);
    padding: var(--section-padding) 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.pricing-table th {
    background: var(--cobalt);
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: var(--border-cobalt);
    font-size: var(--text-base);
    vertical-align: top;
}

.pricing-table tr:nth-child(even) td {
    background: var(--cream);
}

.pricing-table tr:hover td {
    background: rgba(26, 58, 107, 0.04);
}

.price-service-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-md);
    font-weight: 700;
    font-style: italic;
    color: var(--deep-cobalt);
}

.price-value {
    font-weight: 700;
    color: var(--cobalt);
}

.price-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════════════════ */

.faq-section {
    background: var(--warm-white);
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: var(--border-cobalt);
    padding: 1.75rem 0;
}

.faq-item:first-child {
    border-top: var(--border-cobalt);
}

.faq-question {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--deep-cobalt);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-mid);
    line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════
   SKIP LINK (R46 — accessibility)
   ═══════════════════════════════════════════════════════════════ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--gold);
    color: var(--midnight);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    z-index: calc(var(--z-nav) + 10);
    transition: top 0.2s;
}

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


/* ═══════════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════════ */

.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;
}

.text-center { text-align: center; }
/* .text-gold moved to inline usage */
.mt-cta      { margin-top: 2.5rem; }

/* Main content offset for fixed nav */
main {
    padding-top: 72px;
}

.hero-page main {
    padding-top: 0; /* hero handles its own top padding */
}


/* ═══════════════════════════════════════════════════════════════
   INNER PAGE LAYOUT HELPERS
   Replaces inline styles in templates (HYG-3 compliance)
   ═══════════════════════════════════════════════════════════════ */

/* Generic light section wrapper */
.section-light {
    background: var(--warm-white);
    padding: var(--section-padding) 0;
}

.section-cream {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

/* Two-column about layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* About photo placeholder card */
.about-photo-card {
    background: var(--cream);
    border: 2px solid rgba(26, 58, 107, 0.12);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    text-align: center;
}

.about-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--cobalt);
    border: 3px solid var(--gold);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.about-photo-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
}

.about-cert-strip {
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Pull quote */
.pull-quote {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--cobalt);
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}

/* Two-col service detail layout */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.service-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-includes-item {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: var(--text-mid);
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
}

.service-includes-bullet {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Service price hero display */
.service-price-display {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-xl);
    color: var(--gold);
    font-weight: 700;
    margin-top: 1rem;
}

/* City intro block */
.city-intro-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing note box */
.pricing-note-box {
    background: var(--cream);
    border: 1px solid rgba(26, 58, 107, 0.12);
    border-left: 3px solid var(--gold);
    padding: 1.75rem 2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.pricing-note-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

/* Overflow table wrapper */
.table-scroll {
    overflow-x: auto;
    margin-bottom: 3rem;
}

/* Coverage note box */
.coverage-note {
    background: var(--cream);
    border: 1px solid rgba(26, 58, 107, 0.12);
    border-left: 3px solid var(--gold);
    padding: 1.75rem 2rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

.coverage-note-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

/* Booking CTA block (contact page) */
.booking-cta-block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.booking-cta-note {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 1.25rem;
    letter-spacing: 0.05em;
}

/* FAQ teaser band */
.faq-band {
    background: var(--cobalt);
    padding: 3rem 0;
}

.faq-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.faq-band-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.8);
    margin: 0;
}

/* Contact form wrapper */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form-intro {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Service page CTA margin */
.service-book-cta {
    margin-top: 2.5rem;
}

/* Nearby areas link strip */
.nearby-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

/* About promise sub */
.promise-sub {
    margin: 0 auto;
}

/* 404 container */
.not-found-wrap {
    text-align: center;
}

.not-found-code {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(232, 200, 74, 0.15);
    line-height: 1;
    display: block;
}

.not-found-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1rem;
}

.not-found-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-md);
    color: rgba(253, 246, 227, 0.7);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews sub-note */
.reviews-sub-note {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* About section dark bg */
.about-story {
    background: var(--warm-white);
    padding: var(--section-padding) 0;
}

/* City hero CTA row */
.city-hero-cta {
    margin-top: 1.75rem;
}

/* Service detail section */
.service-detail-section {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

/* Booking primary section */
.booking-primary-section {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

/* Legal page wrapper */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--deep-cobalt);
    margin-bottom: 0.75rem;
}

.legal-date {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 3rem;
}

.legal-body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--text-base);
    color: var(--text-mid);
    line-height: 1.9;
}

.legal-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--text-xl);
    color: var(--deep-cobalt);
    margin: 2rem 0 0.75rem;
}

/* reviews-sub-pad removed — unused */

/* section-inner-narrow removed — unused */


/* 404 section full-height */
.not-found-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding) 0;
}
