/* Mockup template stylesheet — lifted from restoredetailingaz.com (Sep 23 2026).
   Brand colours come in as CSS variables set per site by the generator. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark theme, gold sampled from the badge (#D89035..#F0D54F range, field
       #0D0D0F). Variable names inherited from the light build so every rule
       keeps working: --white is the page SURFACE, --primary-black is the TEXT
       colour, --primary-blue is the ACCENT — same mapping NGS uses. */
    --primary-black: #f2efe8;   /* body text */
    --primary-blue: #e3bc45;    /* brand gold, sampled from the badge */
    --brand-rgb: 227, 188, 69;
    --brand-dark-rgb: 22, 21, 18;
    --brand-bright: #ecc551;    /* links / bright gold on dark */
    --brand-light: #f4d67b;     /* lightest gold */
    --on-brand: #1b1609;        /* INK on a gold fill — gold is too light for white */
    --brand-ink: #93751a;       /* deep gold for text on light chips */
    --hero-img: url(/assets/default-hero.webp);
    --dark-blue: #161512;       /* legacy name: dark surface (tier cards, .proof) */
    --accent-gray: #141416;     /* alternating section surface */
    --text-gray: #a8a49b;       /* muted text */
    --white: #0d0d0f;           /* page surface — the badge's own black */
    --on-dark: #ffffff;         /* text over photos */
    --card: #1a1a1d;            /* raised card surface */
    --border: rgba(255, 255, 255, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 1rem 20px;
    /* Declared at rest so the scrolled state only animates the COLOUR. Without
       it the style jumps none -> solid at the default medium width (3px) and
       the colour animates from currentColor, flashing a white hairline. */
    border-bottom: 0.5px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease,
                padding 0.3s ease, border-bottom-color 0.3s ease;
}

.header.scrolled {
    background: rgba(13, 13, 15, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 0.5px solid var(--border);
    padding: 0.75rem 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    max-width: 50px;
    height: auto;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: transparent;
    mix-blend-mode: multiply;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--on-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: var(--primary-black);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.hero-logo {
    max-width: 150px;
    width: auto;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    display: block;
}

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

.nav-menu a {
    color: var(--on-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--brand-ink, var(--primary-blue));
}

.header.scrolled .nav-menu a {
    color: var(--primary-black);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-black);
}

/* Animated hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    color: var(--on-dark);
    transition: color 0.3s ease;
}

.header.scrolled .hamburger {
    color: var(--primary-black);
}

@media (prefers-reduced-motion: reduce) {
    .ham-line, .hamburger.open .ham-line {
        transition: none !important;
    }
}

.ham-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) { transform: rotate(45deg) translate(4.5px, 5px); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: translateX(6px); }
.hamburger.open .ham-line:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -5px); }

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 20px;
    flex-direction: column;
    gap: 1rem;
}

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

.mobile-nav a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Active nav underline */
nav a {
    position: relative;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav a.active::after {
    transform: scaleX(1);
}

/* Hero Section */
/* Hero Section */
.hero {
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center 61%;
    background-repeat: no-repeat;
    position: relative;
    color: var(--on-dark);
    padding: 80px 20px 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--brand-dark-rgb), 0.85) 0%, rgba(var(--brand-rgb), 0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero .hero-brand {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero .value-prop {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--on-dark);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--on-dark);
    border: 2px solid var(--on-dark);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--white);   /* dark ink on the white hover fill */
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-mobile-hint {
    display: none;
}

/* About/Trust Section */
.about {
    background-color: var(--white);
}

.stats-row {
    padding: 3rem 1.5rem;
    background: var(--accent-gray);
}

.stats-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Before/After Slider Section */
.proof { background: var(--dark-blue); }
.proof .section-title { color: var(--on-dark); }
.proof .section-subtitle { color: rgba(255,255,255,.72); }
.ba-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 340px;
    gap: 3rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.ba {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 828/1472;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.ba.grabbing { cursor: grabbing; }
.ba img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    pointer-events: none; -webkit-user-drag: none;
}
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos,50%)); will-change: clip-path; }
.ba.animating .ba-after { transition: clip-path .55s cubic-bezier(.22,.61,.36,1); }
.ba-divider {
    position: absolute; top: 0; bottom: 0; left: var(--pos,50%);
    width: 2px; background: var(--white); transform: translateX(-1px);
    box-shadow: 0 0 0 1px rgba(0,0,0,.2), 0 0 18px rgba(0,0,0,.4);
    pointer-events: none; will-change: left;
}
.ba-handle {
    position: absolute; top: 50%; left: var(--pos,50%);
    width: 52px; height: 52px; margin: -26px 0 0 -26px;
    border-radius: 50%; background: var(--white);
    display: grid; place-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    pointer-events: none; transition: transform .18s ease;
}
.ba.grabbing .ba-handle { transform: scale(1.08); }
.ba.animating .ba-divider, .ba.animating .ba-handle { transition: left .55s cubic-bezier(.22,.61,.36,1); }
.ba-handle svg { width: 24px; height: 24px; fill: var(--primary-blue); }
.ba-tag {
    position: absolute; top: 16px; padding: 7px 14px; border-radius: 999px;
    font-size: .7rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--on-dark); pointer-events: none;
}
.ba-tag--before { left: 16px; background: rgba(0,0,0,.6); }
.ba-tag--after { right: 16px; background: rgba(var(--brand-rgb), .85); }
.ba-hint {
    position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
    background: rgba(0,0,0,.6); color: var(--on-dark); font-size: .72rem;
    letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px;
    border-radius: 999px; pointer-events: none; transition: opacity .4s ease;
}
.ba.touched .ba-hint { opacity: 0; }
.ba-copy h3 { font-size: 1.35rem; color: var(--on-dark); margin-bottom: .75rem; }
.ba-copy p { color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 1.5rem; }
.ba-stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-bottom: 1.75rem; }
.ba-stat strong, .ba-stat span { white-space: nowrap; }
.ba-stat strong { display: block; font-size: 1.6rem; color: var(--on-dark); }
.ba-stat span { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) {
    .ba-layout { grid-template-columns: 1fr; gap: 2rem; }
    .ba-copy { text-align: center; }
    .ba-stats { justify-content: center; }
}

/* Services Section */
.services {
    background-color: var(--accent-gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid > .service-card {
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 380px;
}

.services-grid + .services-grid {
    margin-top: 2rem;
}

/* ── Services group heading (Core + Additional) ── */
.services-group {
    margin: 4rem auto 0;
    text-align: center;
}

.services-group--additional {
    margin-top: 5rem;
}

.services-group-title {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-black);
    margin: 0 0 0.6rem;
    line-height: 1.15;
}

.services-group--additional .services-group-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.services-group-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 44rem;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

/* Services section CTA pair */
.services-cta-row {
    margin-top: 2.5rem; display: flex; justify-content: center; align-items: stretch;
    gap: 0.85rem; flex-wrap: wrap;
}
.services-cta-row .btn {
    width: auto; padding: 14px 32px; white-space: nowrap; display: inline-flex;
    align-items: center; justify-content: center;
}
.services-cta-row .btn-ghost {
    background: transparent; color: var(--brand-ink, var(--primary-blue));
    border: 1.5px solid var(--primary-blue);
}
.services-cta-row .btn-ghost:hover { background: var(--primary-blue); color: var(--on-dark); }
@media (max-width: 640px) {
    .services-cta-row { flex-direction: column; align-items: center; gap: 0.7rem; }
    .services-cta-row .btn { width: 100%; max-width: 320px; padding: 14px 18px; font-size: 0.95rem; }
}

.about-cta { margin-top: 1.25rem; }
.about-cta a {
    color: var(--brand-ink, var(--primary-blue)); font-weight: 650; text-decoration: none;
    border-bottom: 1.5px solid rgba(var(--brand-rgb), 0.35); padding-bottom: 2px;
    transition: border-color 0.25s ease;
}
.about-cta a:hover { border-bottom-color: var(--primary-blue); }

.services-group-divider {
    width: clamp(140px, 28vw, 280px);
    height: 3px;
    margin: 0 auto;
    border: 0;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    border-radius: 999px;
}

.services-group--additional .services-group-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15), transparent);
    width: clamp(180px, 36vw, 360px);
}

@media (max-width: 640px) {
    .services-group {
        margin-top: 3rem;
    }

    .services-group--additional {
        margin-top: 3.5rem;
    }

    .services-group-title {
        font-size: 1.5rem;
    }

    .services-group--additional .services-group-title {
        font-size: 1.25rem;
    }

    .services-group-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
}

/* ── "Most Popular" badge on Standard ── */
.service-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1.05rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a5ed9 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(var(--brand-rgb), 0.35), 0 2px 4px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.service-popular-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.service-card.service-card--popular {
    position: relative;
    overflow: visible;
    border-color: rgba(var(--brand-rgb), 0.45);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.15);
}

.service-card.service-card--popular:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 22px 44px rgba(var(--brand-rgb), 0.28), 0 6px 16px rgba(var(--brand-rgb), 0.18);
}

/* Keep top corners rounded even though overflow is visible for the badge */
.service-card.service-card--popular .service-card-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

@media (max-width: 640px) {
    .service-popular-badge {
        top: -20px;
        font-size: 0.65rem;
        padding: 0.38rem 0.85rem;
        letter-spacing: 1px;
    }

    .service-popular-badge svg {
        width: 10px;
        height: 10px;
    }
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 44px rgba(var(--brand-dark-rgb), 0.22), 0 6px 16px rgba(var(--brand-rgb), 0.16);
    border-color: var(--primary-blue);
}

@media (prefers-reduced-motion: reduce) {
    .service-card, .service-card:hover { transform: none; }
}

.service-card::after {
    content: 'Tap to flip →';
    display: block;
    font-size: 0.7rem;
    color: #999;
    margin: 0 2rem 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* ── Phase 9: 3D Flip Tiles ── */
/* The outer card is now ONLY the 3D stage. All visible chrome (border,
   shadow, rounded corners) moves to the faces so the whole card flips
   like a playing card instead of leaving a static outline behind. */
.service-card.tile-flip-enabled {
    perspective: 1000px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    overflow: visible;
}

.service-card.tile-flip-enabled:hover {
    box-shadow: none;
    border-color: transparent;
}

.service-card.tile-flip-enabled .tile-inner {
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.service-card.tile-flip-enabled.flipped .tile-inner {
    transform: rotateY(180deg);
}

.tile-face {
    grid-column: 1;
    grid-row: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card.tile-flip-enabled:hover .tile-face {
    box-shadow: 0 22px 44px rgba(var(--brand-dark-rgb), 0.22), 0 6px 16px rgba(var(--brand-rgb), 0.16);
    border-color: var(--primary-blue);
}

.tile-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
}

.tile-back .service-card-content {
    padding: 1.4rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tile-back .service-list {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.tile-back .service-list-item {
    font-size: 0.82rem;
    padding: 0.25rem 0;
}

.tile-back .btn {
    margin-top: auto;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.tile-back-desc .description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.tile-front .service-list {
    display: none;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-dark);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* (Dark image overlay removed so card photos show at full color) */

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-card .price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--brand-ink, var(--primary-blue));
    margin: 1rem 0;
    white-space: nowrap;
}

/* Sub-line under the price (sizes, durations, disclaimers) must wrap */
.service-card .price span {
    white-space: normal;
    line-height: 1.45;
}

.tile-back-price {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-ink, var(--primary-blue));
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-card .description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.service-list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-list-title {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-list-item::before {
    content: "✓";
    color: var(--primary-black);
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}


/* Contact Section */
.contact {
    background-color: var(--accent-gray);
    scroll-margin-top: 18rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.contact-item p,
.contact-item a {
    color: var(--text-gray);
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--brand-ink, var(--primary-blue));
}

.contact-cta {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #0a0a0c;
    color: var(--on-dark);
    padding: 3rem 20px 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-links a:hover { opacity: 1; }

.social-links a span {
    line-height: 1;
}

.social-proof-note {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 4px;
}

.footer-areas { margin: 1rem 0; }
.footer-areas h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-areas a { color: rgba(255,255,255,0.8); text-decoration: none; margin-right: 1rem; font-size: 0.9rem; line-height: 1.9; }
.footer-areas a:hover { color: var(--on-dark); text-decoration: underline; }
.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .value-prop {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 20px;
    }

    .services-mobile-hint {
        display: block;
        text-align: center;
        font-size: 0.9rem;
        color: var(--brand-ink, var(--primary-blue));
        margin: 0 auto 1.25rem;
        max-width: 320px;
    }

    .services-grid {
        gap: 0.75rem;
    }

    /* One card per row on phones. Three-across squeezed these to 95px,
       which is unreadable for cards carrying a price and a spec list. */
    .services-grid > .service-card {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
    }

    .service-card-image {
        aspect-ratio: 16 / 9;
        font-size: 1.25rem;
    }

    .service-card-content {
        padding: 0.5rem 0.6rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .service-card .price {
        font-size: 0.9rem;
        margin: 0.25rem 0;
    }

    /* Cards are full width on phones, so the price breakdown fits on the front. */
    .tile-back-price { font-size: 0.85rem; margin-bottom: 0.5rem; padding-bottom: 0.5rem; }

    /* Narrow tiles: let long words break instead of getting clipped, and let the
       back face scroll if the list runs past the card height. */
    .tile-back .service-card-content { overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .service-list-item, .tile-back-price, .tile-back .service-list-item {
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    .service-card .description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.45;
    }

    .service-list {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .service-list-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .service-list-item {
        font-size: 0.85rem;
    }

    /* Cards are full width on phones now, so the button gets a real
       tap target instead of the 25px one sized for 95px cards. */
    .service-card .btn {
        padding: 13px 16px;
        font-size: 0.95rem;
    }

    /* Phone: hide service lists on front; hide descriptions only on tiles 4+ (done via JS inline style) */
    .service-card .service-list {
        display: none;
    }

    .service-card .description {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-bottom: 0.5rem;
    }

    /* Mobile: front face drives height, back is absolute. Flex chain bottom-aligns the Book Now button across all cards. */
    .service-card.tile-flip-enabled .tile-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .tile-front {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Book Now shows on the front of the card on both desktop and mobile */

    .tile-back {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--white);
        border-radius: 8px;
    }

    .tile-back .service-list {
        display: block;
        margin-top: 0;
        margin-bottom: 0.3rem;
    }

    /* Flip-side text was sized for the old 95px three-across cards.
       Cards are full width on phones now, so this is readable type. */
    .tile-back .service-list-item {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .tile-back .service-list-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .tile-back .service-card-content {
        padding: 1rem 1.1rem;
    }

    .tile-back .btn {
        padding: 13px 16px;
        font-size: 0.95rem;
    }

    .tile-back-desc .description {
        display: block;
        font-size: 0.85rem;
        line-height: 1.45;
        margin-bottom: 0.5rem;
    }

    /* Make card image and text tappable to open detail on phone (button stays as button) */
    .service-card-image,
    .service-card-content {
        cursor: pointer;
    }

    .service-card-content .btn {
        cursor: pointer;
    }

    .service-card::after {
        content: '↻ Tap for details';
        margin: 0.5rem 0.75rem 0.75rem;
        opacity: 1;
        color: var(--brand-ink, var(--primary-blue));
        font-weight: 700;
        font-size: 0.8rem;
    }

    /* (Popular badge sits outside the flip via JS — no mobile overflow/position override needed) */

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .logo-img {
        max-width: 40px;
        max-height: 40px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-width: 120px;
        max-height: 120px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-right {
        gap: 1rem;
    }

    .floating-cta {
        display: block;
    }
}

/* Service detail overlay (phone only - opened when tapping card image) */
.service-detail-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.service-detail-overlay.open {
    display: block;
}

.service-detail-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem 0.75rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 1;
    display: flex;
    align-items: center;
}

.service-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brand-ink, var(--primary-blue));
    padding: 0;
    text-decoration: none;
}

.service-detail-back:active {
    opacity: 0.8;
}

.service-detail-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    overflow: hidden;
}

.service-detail-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-body {
    padding: 1.25rem 1rem 2rem;
}

.service-detail-body .service-card-content {
    padding: 0;
}

.service-detail-body .description,
.service-detail-body .service-list {
    display: block !important;
}

.service-detail-body .description {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.service-detail-body .service-list-title {
    font-size: 0.95rem;
}

.service-detail-body .service-list-item {
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .service-detail-overlay {
        display: none !important;
    }
}

/* Testimonials — Google reviews grid */
.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.reviews-summary .rs-stars { color: #fbbf24; display: flex; gap: 3px; }
.reviews-summary .rs-stars svg { width: 24px; height: 24px; }
.reviews-summary .rs-score { font-size: 1.05rem; color: var(--primary-black); }
.reviews-summary .rs-score strong { font-size: 1.15rem; color: var(--primary-black); }
.reviews-summary .rs-google { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--primary-black); font-size: 1rem; }
.reviews-summary .rs-google svg { width: 20px; height: 20px; }

.reviews-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
    animation: reviewsMarquee 160s linear infinite;
}
.reviews-marquee:hover .marquee-track,
.reviews-marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes reviewsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.reviews-hint {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.review-card {
    flex: 0 0 auto;
    width: min(340px, 86vw);
    height: 360px;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 1.2rem 1.35rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* Cards widen to fit their text up to a max; only reviews longer than the widest tier scroll */
.review-card.rc-w2 { width: min(460px, 88vw); }
.review-card.rc-w3 { width: min(580px, 90vw); }
.review-card.rc-w4 { width: min(680px, 92vw); }
.review-card .rc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; flex: none; }
.review-card .rc-stars { color: #fbbf24; display: flex; gap: 1px; }
.review-card .rc-stars svg { width: 16px; height: 16px; }
.review-card .rc-g { width: 18px; height: 18px; flex: none; }
.review-card .rc-quote-wrap {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    margin: 0 0 0.85rem;
}
.review-card .rc-quote {
    flex: 1 1 auto;
    overflow-y: auto;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--primary-black);
    white-space: pre-line;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #d2d7df transparent;
}
.review-card .rc-quote::-webkit-scrollbar { width: 6px; }
.review-card .rc-quote::-webkit-scrollbar-track { background: transparent; }
.review-card .rc-quote::-webkit-scrollbar-thumb { background: #d2d7df; border-radius: 4px; }
/* "More below" affordance — shows only while a review can still be scrolled */
.review-card .rc-fade {
    position: absolute;
    left: 0; right: 8px; bottom: 0;
    height: 44px;
    background: linear-gradient(to bottom, rgba(26, 26, 29, 0), var(--card) 78%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.review-card .rc-fade svg { width: 20px; height: 20px; color: var(--brand-bright); animation: rcCue 1.4s ease-in-out infinite; }
.review-card .rc-quote-wrap.has-overflow:not(.at-bottom) .rc-fade { opacity: 1; }
@keyframes rcCue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
.review-card .rc-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; border-top: 1px solid #f1f3f5; padding-top: 0.7rem; flex: none; }
.review-card .rc-author { display: flex; align-items: center; gap: 10px; }
.review-card .rc-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--brand-bright); color: var(--on-brand, #fff); font-weight: 700; font-size: 0.82rem;
    display: flex; align-items: center; justify-content: center; flex: none;
}
.review-card .rc-name { font-weight: 700; color: var(--primary-black); font-size: 0.9rem; line-height: 1.2; }
.review-card .rc-sub { font-size: 0.74rem; color: var(--text-gray); }
.review-card .rc-date { font-size: 0.78rem; color: var(--text-gray); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
    .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
    .review-card.is-dup { display: none; }
    .reviews-hint { display: none; }
}

.reviews-cta {
    text-align: center;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.reviews-cta a {
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--brand-bright);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.review-count {
    font-size: 0.78rem;
    color: #888;
}

.faq-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.faq-item summary {
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}

.floating-cta {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 999;
    background: #111;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
    white-space: nowrap;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    background: #222;
}

/* ---- generator additions ---- */
.logo-img { mix-blend-mode: normal; border-radius: 8px; }
.logo-chip { background: transparent; border-radius: 12px; padding: 4px; }
.hero-logo.logo-chip { padding: 14px; border-radius: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.wordmark-logo { display:inline-flex; align-items:center; justify-content:center; width:120px; height:120px; border-radius:50%; background: var(--primary-blue); color:#fff; font-size:2.6rem; font-weight:800; letter-spacing:.02em; border:3px solid rgba(255,255,255,.85); }
.wordmark-logo.sm { width:44px; height:44px; font-size:1rem; border-width:2px; }
.rc-sample .rc-quote { color: var(--text-gray); font-style: italic; }
.mockup-ribbon { position: fixed; left: 12px; bottom: 12px; z-index: 9999; background: rgba(17,24,39,.86); color:#fff; font: 600 11px/1.2 -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; letter-spacing:.06em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; pointer-events:none; }
.area-pills { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; }
.area-pills span { background:#fff; border:1px solid rgba(0,0,0,.12); border-radius:999px; padding:9px 20px; color: var(--brand-ink, var(--primary-blue)); font-weight:600; }
.footer-areas span { color: rgba(255,255,255,0.8); margin-right: 1rem; font-size: 0.9rem; line-height: 1.9; display:inline-block; }

/* Sam, Sep 23 2026: hero logo significantly smaller, header logo a bit smaller — every mockup. */
.hero-logo { max-width: 92px; max-height: 92px; }
.hero-logo-container { margin-bottom: 1.25rem; }
.logo-img { max-width: 40px; max-height: 40px; }
.wordmark-logo { width: 84px; height: 84px; font-size: 1.9rem; }
.wordmark-logo.sm { width: 36px; height: 36px; font-size: .85rem; }
.hero-logo.logo-chip { padding: 10px; border-radius: 18px; }
@media (max-width: 768px) {
    .hero-logo { max-width: 76px; max-height: 76px; }
    .logo-img { max-width: 34px; max-height: 34px; }
    .wordmark-logo { width: 70px; height: 70px; font-size: 1.6rem; }
    .wordmark-logo.sm { width: 32px; height: 32px; }
}

/* Add Ons (Sam, Sep 23 2026: hot bar = Home · Services · About Us · Bundles · Memberships · Add Ons) */
#bundles, #memberships, #add-ons { scroll-margin-top: 90px; }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto 3rem; }
.addon-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.2rem; box-shadow: 0 4px 14px rgba(0,0,0,.05); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.addon-card:hover { transform: translateY(-4px); border-color: rgba(var(--brand-rgb), .45); box-shadow: 0 16px 32px rgba(var(--brand-dark-rgb), .16); }
.addon-top { display: flex; justify-content: space-between; align-items: baseline; gap: .75rem; margin-bottom: .35rem; }
.addon-card h3 { font-size: 1rem; font-weight: 700; }
.addon-price { color: var(--brand-ink, var(--primary-blue)); font-weight: 700; font-size: .92rem; white-space: nowrap; }
.addon-card p { color: var(--text-gray); font-size: .88rem; line-height: 1.45; }
@media (max-width: 1000px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.logo-chip.logo-round, .hero-logo.logo-chip.logo-round { border-radius: 50%; padding: 5px; }

/* ===== Sep 23 2026 pass (Sam) ===== */
/* Header: logo + name hard left, menu right. */
.header-content { max-width: none; padding: 0 12px; }
@media (min-width: 1100px) { .header-content { padding: 0 28px; } }
/* No white box behind dark logos — a soft glow instead. */
.logo-glow { filter: drop-shadow(0 0 1px rgba(255,255,255,.9)) drop-shadow(0 0 8px rgba(255,255,255,.35)); }
.header.scrolled .logo-glow { filter: none; }
/* No brand-colour tint over the photo — a neutral dark wash so the picture keeps its real colour. */
.hero::before { background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.62) 100%); }
.proof { background: #0d0f12; }
.ba-tag--after { background: rgba(255,255,255,.16); backdrop-filter: blur(6px); }

/* Core services — three tiers (Heape layout). */
.tier-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
    /* four tiers: 4-across, then 2x2, then stacked — never 3-and-1 */ }
@media (max-width: 1180px) { .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { position: relative; background: var(--dark-blue); color: #fff; border-radius: 16px; overflow: visible; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 18px 40px rgba(0,0,0,.18); transition: transform .3s ease, box-shadow .3s ease; }
.tier-card:hover { transform: translateY(-6px); box-shadow: 0 28px 54px rgba(0,0,0,.26); }
.tier-card--popular { border-color: var(--brand-light); box-shadow: 0 0 0 1px var(--brand-light), 0 22px 48px rgba(var(--brand-rgb), .35); }
.tier-badge { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 2; background: var(--primary-blue); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); white-space: nowrap; }
.tier-img { aspect-ratio: 16 / 10.5; overflow: hidden; border-radius: 16px 16px 0 0; }
.tier-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.tier-card:hover .tier-img img { transform: scale(1.05); }
.tier-body { padding: 1.6rem 1.6rem 1.8rem; }
.tier-body h3 { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-weight: 600; font-size: 1.65rem; letter-spacing: .01em; text-transform: uppercase; line-height: 1.15; margin-bottom: .45rem; }
.tier-desc { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.6; min-height: 4.6em; margin-bottom: 1.1rem; }
.tier-price { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 2.6rem; font-weight: 600; line-height: 1; color: var(--brand-light); }
.tier-price-label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .35rem; }
.tier-sizes { font-size: .88rem; color: rgba(255,255,255,.72); margin: .9rem 0 1.2rem; }
.tier-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .7rem; }
.tier-list li { position: relative; padding-left: 1.6rem; font-size: .95rem; line-height: 1.45; color: rgba(255,255,255,.9); }
.tier-list li::before { content: ''; position: absolute; left: 2px; top: .3em; width: 7px; height: 12px; border: solid var(--brand-light); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tier-body .btn { width: 100%; text-align: center; background: var(--primary-blue); border: 1px solid rgba(255,255,255,.18); }
@media (max-width: 960px) { .tier-desc { min-height: 0; } }

/* Sub-page header (Memberships / Add Ons). */
.page-head { padding: 150px 0 60px; background: var(--accent-gray); }
.page-head h1 { font-size: 3.4rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.page-head p { font-size: 1.2rem; color: var(--text-gray); max-width: 820px; line-height: 1.6; }
.page-head--grey { background: var(--accent-gray); text-align: center; }
.page-head--grey p { margin: 0 auto; }
@media (max-width: 768px) { .page-head { padding: 120px 0 40px; } .page-head h1 { font-size: 2.4rem; } }

/* Memberships page. */
.plans { padding-top: 2rem; }
.plan-banner { max-width: 1000px; margin: 2rem auto 2rem; padding: 1.8rem 2rem; border-radius: 14px; text-align: center; color: #fff; background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue)); }
.plan-banner h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.plan-banner p { color: rgba(255,255,255,.88); line-height: 1.6; max-width: 760px; margin: 0 auto; }
.plan-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(0,0,0,.05); transition: transform .3s ease, box-shadow .3s ease; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(var(--brand-dark-rgb), .14); }
.plan-card--best { border-color: var(--primary-blue); }
.plan-top { padding: 1.8rem 1.6rem 1.4rem; flex: 1; }
.plan-badge { display: inline-block; background: var(--dark-blue); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 5px; margin-bottom: .8rem; }
.plan-top h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: .6rem; }
.plan-desc { color: var(--text-gray); line-height: 1.6; margin-bottom: 1.2rem; }
.plan-label { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .7rem; }
.plan-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.plan-list li { position: relative; padding-left: 1.5rem; line-height: 1.45; color: var(--primary-black); }
.plan-list li::before { content: ''; position: absolute; left: 3px; top: .28em; width: 6px; height: 11px; border: solid var(--primary-blue); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.plan-price { background: var(--accent-gray); border-top: 1px solid var(--border); padding: 1.2rem 1.6rem; display: flex; flex-wrap: wrap; gap: .4rem 2rem; }
.plan-price div { display: flex; flex-direction: column; }
.plan-price span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-black); }
.plan-price strong { font-size: 2rem; color: var(--brand-ink, var(--primary-blue)); line-height: 1.15; }
.plan-price em { font-style: normal; font-size: .8rem; color: var(--primary-black); }
.plan-price p { flex-basis: 100%; font-size: .85rem; color: var(--text-gray); margin-top: .4rem; }
.plan-cta { padding: 1.2rem 1.6rem 1.6rem; }
.plan-cta .btn { width: 100%; text-align: center; }
@media (max-width: 820px) { .plan-grid { grid-template-columns: 1fr; } }

/* Add Ons page. */
.container--wide { max-width: 1440px; }
.addon-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.addon-tile { background: var(--card); border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.4); border: 1px solid var(--border); text-align: center; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.addon-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.14); }
.addon-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.addon-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-img::after { content: ''; position: absolute; inset: 0; background: rgba(var(--brand-dark-rgb), .35); }
.addon-body { padding: 1.1rem 1rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.addon-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; }
.addon-cost { color: var(--brand-ink, var(--primary-blue)); font-weight: 800; font-size: 1.1rem; }
.addon-body p { font-size: .82rem; color: var(--text-gray); margin: .2rem 0 1rem; flex: 1; }
.addon-body a { color: var(--brand-ink, var(--primary-blue)); font-weight: 700; text-decoration: none; }
.addon-body a:hover { text-decoration: underline; }
@media (max-width: 1200px) { .addon-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .addon-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .addon-tiles { grid-template-columns: 1fr; } }

/* Sep 23 2026 (Sam): hero logo bigger + crisp (no glow filter on it); tier cards all the same height. */
.hero-logo { max-width: 150px; max-height: 150px; }
.hero-logo.logo-glow { filter: none; }
.wordmark-logo { width: 120px; height: 120px; font-size: 2.6rem; }
@media (max-width: 768px) { .hero-logo { max-width: 120px; max-height: 120px; } .wordmark-logo { width: 100px; height: 100px; font-size: 2.2rem; } }
.tier-grid { align-items: stretch; }
.tier-card { display: flex; flex-direction: column; }
.tier-body { display: flex; flex-direction: column; flex: 1; }
.tier-list { flex: 1; }
.tier-body .btn { margin-top: auto; }

/* Sep 23 2026 (Sam): menu sits on the right, not the middle. */
.nav-menu { margin-left: auto; margin-right: 8px; }
@media (min-width: 1100px) { .nav-menu { margin-right: 16px; } }

/* Sep 23 2026 (Sam): Phone / Email / Service Area side by side in one row. */
.contact-content { max-width: 1100px; margin-left: auto; margin-right: auto; }
.contact-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.contact-item { flex: 1 1 0; min-width: 240px; }
@media (max-width: 800px) { .contact-item { flex-basis: 100%; } }
.contact-item p { overflow-wrap: anywhere; }

/* Sep 24 2026 (Sam): four stats never split 3 + 1 — four across on wide screens, 2 × 2 below. */
.stats-wrap:has(> .stat-item:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .stats-wrap:has(> .stat-item:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); } }

/* Text on the brand colour: white by default, dark on light brands like bright gold (Sep 24 2026). */
.btn-primary, .tier-badge, .tier-body .btn, .services-cta-row .btn-ghost:hover, .wordmark-logo { color: var(--on-brand, #fff); }
.btn-primary:hover { color: #fff; }
.services-cta-row .btn-ghost:hover { color: var(--on-brand, #fff); }

/* Sep 24 2026 (Sam): bundle cards all the same height — the flip stage fills the stretched card,
   both faces fill the stage, and Book Now sits on the bottom edge. */
.services-grid { align-items: stretch; }
.service-card.tile-flip-enabled .tile-inner { flex: 1; }
.tile-face > .service-card-content { flex: 1; }
.tile-face .service-card-content .btn { margin-top: auto; }

/* ── Multi-page additions (dark restyle) ───────────────────────────── */
.nav-menu a.active { color: var(--brand-bright); }

    border: 3px solid var(--primary-blue); box-shadow: 0 12px 34px rgba(0,0,0,0.5); }
@media (max-width: 680px) {      }

.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 2rem; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--primary-blue);
    border-radius: 12px; padding: 1.5rem 1.4rem; }
.why-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.6; margin: 0; }

.promise-kicker { color: var(--brand-bright); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.7rem; }

.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 2rem; }
@media (max-width: 900px) { .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .facts-grid { grid-template-columns: 1fr; } }
.fact { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.3rem; }
.fact h3 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--brand-bright); margin-bottom: 0.45rem; }
.fact p { color: var(--primary-black); font-size: 0.95rem; line-height: 1.6; margin: 0; word-break: break-word; }
.fact a { color: inherit; text-decoration: none; }
.fact a:hover { color: var(--brand-bright); }

/* ── Reviews empty-state (ported from NGS; same token names) ── */
.reviews-empty { max-width: 620px; margin: 0 auto; background: var(--card);
    border: 1px solid var(--border); border-radius: 16px; padding: 2.2rem 1.75rem; text-align: center; }
.reviews-empty .re-g { width: 44px; height: 44px; margin: 0 auto 1rem; display: block; }
.reviews-empty h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; }
.reviews-empty p { color: var(--text-gray); line-height: 1.6; max-width: 40ch; margin: 0 auto 1.4rem; }
.reviews-empty .btn { display: inline-block; width: auto; }
.reviews-live[hidden] { display: none; }
/* centre CTAs inside text-centred sections (base .btn is a block) */
.section.text-center .btn, #cta .btn { display: inline-block; width: auto; }


/* The supplied portrait is only 264px, so the card is capped at 360px and
   kept near-square rather than blown up into NGS's tall 4:5 frame. */
.about-media { position: relative; max-width: 360px; margin: 0 auto; width: 100%;
    border-radius: 18px; overflow: hidden; border: 1px solid var(--border);
    aspect-ratio: 1 / 1; background: var(--card); }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media .tag { position: absolute; left: 14px; bottom: 14px; background: rgba(13,13,15,0.82);
    backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 999px;
    padding: 6px 12px; font-size: 0.78rem; font-weight: 700; color: var(--on-dark); }
@media (max-width: 760px) {
    .about-intro { grid-template-columns: 1fr; gap: 2rem; }
    .about-intro > div:first-child { max-width: none; }
    .about-media { max-width: 300px; }
}


/* ── About page: copied verbatim from North Georgia Shine ── */
.svcpage-hero {
            padding: 140px 20px 48px; text-align: center;
            background: radial-gradient(60% 130% at 50% 0%, rgba(245, 179, 1, 0.18) 0%, transparent 62%), var(--accent-gray);
            border-bottom: 1px solid var(--border);
        }
.svcpage-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.svcpage-hero p { color: var(--text-gray); max-width: 660px; margin: 0 auto; font-size: 1.02rem; }
.svcpage-hero { padding: 118px 18px 36px; }
.about-wrap { max-width: 1120px; margin: 0 auto; padding: 2.75rem clamp(24px, 6vw, 72px) 3rem; }
.about-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: 4rem; }
.about-intro > div:first-child { max-width: 34rem; }
.about-intro { grid-template-columns: 1fr; gap: 2rem; }
.about-intro > div:first-child { max-width: none; }
.about-intro h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 1rem; text-wrap: balance; }
.about-intro p { color: var(--text-gray); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1rem; }
.about-intro p b { color: var(--primary-black); }
.about-media { max-width: 520px; margin: 0 auto; width: 100%; }
.about-media { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 5; background: var(--card); }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media .tag { position: absolute; left: 14px; bottom: 14px; background: rgba(14,14,15,0.82); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; font-weight: 700; }
.about-intro-flip .about-media { grid-column: 1; grid-row: 1; }
.about-intro-flip .about-media { grid-column: 1; grid-row: 2; }
.svc-group-title {
            font-family: inherit;
            font-size: clamp(1.6rem, 3.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em;
            line-height: 1.15; text-align: center; margin-bottom: 0.3rem;
        }
.svc-group-divider { border: none; height: 1px; width: 160px; margin: 0 auto 2.2rem; background: linear-gradient(90deg, transparent, var(--primary-blue), transparent); }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-bottom: 3.5rem; }
.why-grid { grid-template-columns: 1fr; }
.why { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem 1.4rem 1.5rem; }
.why .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(245, 179, 1, 0.14); color: var(--primary-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
.why .ic svg { width: 22px; height: 22px; }
.why h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; }
.why p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.55; }
.promise {
            background: var(--card); border: 1px solid rgba(245, 179, 1, 0.32); border-radius: 18px;
            padding: clamp(1.8rem, 4vw, 2.8rem); text-align: center; margin-bottom: 3.5rem;
        }
.promise h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 1rem; }
.promise p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; max-width: 58ch; margin: 0 auto 0.9rem; }
.promise .promise-kicker {
            color: var(--primary-blue); font-weight: 700; font-size: clamp(1.02rem, 2.2vw, 1.15rem);
            margin: 1.4rem auto 0; max-width: 40ch;
        }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-bottom: 3.5rem; }
.facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.facts { grid-template-columns: 1fr; }
.fact { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem 1.3rem; }
.fact h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-gray); margin-bottom: 0.4rem; }
.fact p { font-size: 1rem; font-weight: 700; line-height: 1.5; }
.fact p small { display: block; font-weight: 400; color: var(--text-gray); font-size: 0.85rem; margin-top: 0.15rem; }
.fact a { color: var(--primary-black); text-decoration: none; }
.fact a:hover { color: var(--primary-blue); }
.fact .pay-note { font-size: 0.68rem; font-weight: 400; color: var(--text-gray); margin-top: 0.6rem; line-height: 1.45; max-width: 26ch; }
.fact-social { display: flex; gap: 0.6rem; margin: 0.35rem 0 0.5rem; }
.fact-social a {
            display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
            border: 1px solid var(--border); color: var(--primary-black); text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }
.fact-social a svg { width: 19px; height: 19px; }
.fact-social a:hover { color: var(--primary-blue); border-color: var(--primary-blue); transform: translateY(-1px); }
.pay-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.4rem; }
.pay-chips span { font-size: 0.8rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: rgba(245, 179, 1, 0.10); border: 1px solid rgba(245, 179, 1, 0.35); color: var(--primary-black); }
.svc-cta { text-align: center; padding: 3rem 20px 1rem; }
.svc-cta h2 { font-family: inherit; font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 0.6rem; }
.svc-cta p { color: var(--text-gray); margin-bottom: 1.6rem; }
.svc-cta .btn { margin: 0 6px 10px; }

/* About CTA — centred under the Meet block, not beside the copy */

/* ── Review cards: clamp long quotes ───────────────────────────────────────
   Cards are a fixed 360px. A long review (Nyomi's runs 593px of text in a
   215px window) used to scroll inside its card, so that one card carried a
   scrollbar and a "keep reading" cue while every other card sat static — it
   read as broken next to the rest. Clamp to the lines that actually fit and
   end with an ellipsis; the full text is a tap away on Google. */
.review-card .rc-quote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    line-clamp: 9;
    overflow: hidden;
    /* The window is 215px but nine lines are 205px, so clipping at the
       container height left a half-rendered tenth line under the ellipsis.
       Cap at whole lines: 9 x 1.55 line-height x 0.92rem. */
    max-height: calc(9 * 1.55 * 0.92rem);
}
/* Nothing scrolls now, so the scroll cue would be a lie. */
.review-card .rc-fade { display: none; }
/* fit() widens a card when its quote overflows; with clamping there is no
   overflow to chase, and ragged widths are exactly what we're removing. */
.review-card.rc-w2,
.review-card.rc-w3,
.review-card.rc-w4 { width: min(340px, 86vw); }

/* The tier list is a grid with flex:1, so its rows stretched to fill the card
   and a two-item list sat spread across the whole space. Now that Standard
   lists seven steps the mismatch is obvious. Pin the rows to the top; the
   leftover space stays at the bottom, so Book Now still lines up across cards. */
.tier-list { align-content: start; }

/* ── Add-on card: photo beside the copy ─────────────────────────────────── */
.addon-card { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.5rem; text-align: left; }
.addon-thumb { flex: none; width: 104px; height: 104px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.addon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-body { flex: 1; min-width: 0; }
.addon-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.3rem; }
.addon-head h3 { margin: 0; }
.addon-price { color: var(--brand-bright); font-weight: 700; white-space: nowrap; }
.addon-card p { color: var(--text-gray); margin: 0; }
@media (max-width: 520px) {
    .addon-card { flex-direction: column; align-items: flex-start; }
    .addon-thumb { width: 100%; height: 150px; }
}
