/* ============================================
   Esprit Fort — Coach Mindset & Performance
   Sophisticated Parisian Luxury Coaching
   Deep Plum + Cream + Warm Gold + Lavender
   ============================================ */

:root {
    /* Deep Parisian Palette — darker navy-plum */
    --plum: #1A1130;
    --plum-deep: #0E0820;
    --plum-light: rgba(26, 17, 48, 0.08);
    --cream: #FFF8F2;
    --cream-warm: #FFF3EA;
    --gold: #D9B976;
    --gold-light: rgba(217, 185, 118, 0.14);
    --gold-glow: rgba(217, 185, 118, 0.22);
    --lavender: #D4C5E2;
    --lavender-light: rgba(212, 197, 226, 0.15);
    --charcoal: #2D2D2D;
    --charcoal-muted: #6B6B6B;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lato', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* ============ CONTENT LOADING ============ */
[data-content] {
    transition: opacity 0.4s ease;
}

[data-content].loaded {
    opacity: 1;
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.nav--scrolled {
    background: rgba(255, 248, 242, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(45, 27, 61, 0.06);
    padding: 16px 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.4s;
}

.nav--scrolled .nav-logo {
    color: var(--plum);
}

/* Monogram Logo */
.logo-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
    flex-shrink: 0;
}

.logo-monogram--footer {
    width: 32px;
    height: 32px;
    font-size: 11px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav--scrolled .nav-links a {
    color: var(--charcoal-muted);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: white;
}

.nav--scrolled .nav-links a:hover {
    color: var(--plum);
}

.nav-cta {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--gold);
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: #B8944D;
    transform: translateY(-1px);
}

/* ============ HAMBURGER ============ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav--scrolled .nav-hamburger span {
    background: var(--charcoal);
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(14, 8, 32, 0.85) 0%, rgba(14, 8, 32, 0.55) 45%, rgba(14, 8, 32, 0.2) 70%, rgba(14, 8, 32, 0) 100%),
        linear-gradient(180deg, rgba(14, 8, 32, 0.4) 0%, rgba(14, 8, 32, 0) 30%, rgba(14, 8, 32, 0) 70%, rgba(14, 8, 32, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 160px 48px 100px;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

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

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============ HERO STATS ============ */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 24px 48px;
    background: rgba(45, 27, 61, 0.5);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200, 165, 90, 0.12);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(200, 165, 90, 0.2);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    color: var(--plum);
    background: var(--gold);
}

.btn-primary:hover {
    background: #B8944D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 165, 90, 0.3);
}

.btn-outline {
    color: white;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large {
    padding: 18px 40px;
    font-size: 13px;
}

/* Contact section CTA */
.contact-section .btn-primary {
    background: var(--gold);
    color: var(--plum);
}

.contact-section .btn-primary:hover {
    background: #B8944D;
    box-shadow: 0 8px 24px rgba(200, 165, 90, 0.35);
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--plum);
    padding: 18px 48px;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 248, 242, 0.85);
}

.trust-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(200, 165, 90, 0.25);
}

/* ============ SECTION HEADERS ============ */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-label--light {
    color: var(--gold);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum);
}

.section-header.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal-muted);
    margin-top: 14px;
    max-width: 500px;
    line-height: 1.75;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============ SECTION RULE DIVIDER ============ */
.section-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    background: var(--cream);
}

.rule-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
}

.rule-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.3;
}

/* ============ SERVICES ============ */
.services-section {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--cream);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid rgba(45, 27, 61, 0.06);
    transition: background 0.3s;
}

.service-row:first-child {
    border-top: 1px solid rgba(45, 27, 61, 0.06);
}

.service-row:hover {
    background: var(--lavender-light);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    margin-right: -24px;
}

.service-index {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1.4;
    padding-top: 2px;
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
}

.service-info p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal-muted);
    line-height: 1.7;
    max-width: 480px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum);
    white-space: nowrap;
    padding-top: 4px;
}

/* Featured service row */
.service-row--featured {
    background: var(--plum);
    border-bottom-color: transparent;
    padding: 36px 32px;
    margin-left: -32px;
    margin-right: -32px;
    border-radius: 3px;
}

.service-row--featured:first-child {
    border-top-color: transparent;
}

.service-row--featured:hover {
    background: var(--plum);
    padding-left: 32px;
    padding-right: 32px;
    margin-left: -32px;
    margin-right: -32px;
}

.service-row--featured .service-index {
    color: var(--gold);
    opacity: 0.3;
}

.service-row--featured .service-info h3 {
    color: white;
}

.service-row--featured .service-info p {
    color: rgba(255, 255, 255, 0.6);
}

.service-row--featured .service-price {
    color: var(--gold);
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 32px;
    padding: 4px 14px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--plum);
    border-radius: 2px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: var(--space-xxl) 0;
    background: var(--cream-warm);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 3px;
}

.about-image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.25;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--plum);
    margin-bottom: 24px;
}

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--charcoal-muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.about-quote {
    padding: 24px 28px;
    background: var(--lavender-light);
    border-left: 3px solid var(--gold);
    border-radius: 0 3px 3px 0;
    margin-bottom: 32px;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--plum);
    line-height: 1.55;
    margin-bottom: 8px;
}

.about-quote cite {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

.feature-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-light);
    position: relative;
    flex-shrink: 0;
}

.feature-check::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: var(--space-xxl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--wide {
    grid-row: span 2;
}

.gallery-item:not(.gallery-item--wide) {
    aspect-ratio: 1 / 1;
}

/* Lavender glow overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(212, 197, 226, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 3px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--plum);
    color: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 36px;
}

.contact-details {
    font-style: normal;
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 248, 242, 0.07);
}

.contact-row:first-child {
    border-top: 1px solid rgba(255, 248, 242, 0.07);
}

.contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 90px;
    flex-shrink: 0;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 248, 242, 0.75);
    text-decoration: none;
}

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

/* Contact decorative card */
.contact-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-card {
    width: 320px;
    padding: 0;
    background: rgba(200, 165, 90, 0.06);
    border: 1px solid rgba(200, 165, 90, 0.18);
    border-radius: 3px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.deco-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-bottom: 1px solid rgba(200, 165, 90, 0.18);
}

.deco-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    display: block;
    transition: transform 0.6s ease;
}

.deco-card:hover .deco-photo img { transform: scale(1.03); }

.deco-card-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deco-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.deco-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.25;
}

.deco-sub {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.06em;
}

/* ============ FOOTER ============ */
.footer {
    padding: 56px 48px 0;
    background: var(--plum-deep);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 248, 242, 0.85);
    margin-bottom: 6px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 248, 242, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 248, 242, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 248, 242, 0.35);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

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

.footer-sep { margin: 0 8px; opacity: 0.4; }

/* ============ RESPONSIVE -- 1024px ============ */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-content {
        padding: 140px 32px 100px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-image-wrap img {
        height: 400px;
    }

    .about-image-accent {
        bottom: -8px;
        right: -8px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-quote {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-left: 0;
        padding-top: 20px;
        display: inline-block;
    }

    .about-features {
        justify-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--wide {
        grid-row: span 1;
        grid-column: span 2;
    }

    .gallery-item:not(.gallery-item--wide) {
        aspect-ratio: 4 / 3;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-row {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .contact-decorative {
        display: none;
    }
}

/* ============ RESPONSIVE -- 768px ============ */
@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .nav--scrolled {
        padding: 12px 24px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--cream);
        border-bottom: 1px solid rgba(45, 27, 61, 0.06);
        padding: 1rem 24px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(45, 27, 61, 0.06);
    }

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

    .nav-links a {
        padding: 0.75rem 0;
        font-size: 0.9rem;
        color: var(--charcoal) !important;
        border-bottom: 1px solid rgba(45, 27, 61, 0.06);
    }

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

    .nav-cta {
        display: none;
    }

    .nav-hamburger span {
        background: white;
    }

    .nav--scrolled .nav-hamburger span {
        background: var(--charcoal);
    }

    .hero-content {
        padding: 120px 24px 100px;
    }

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

    .hero-stats {
        gap: 24px;
        padding: 20px 24px;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .trust-bar {
        padding: 14px 24px;
    }

    .trust-inner {
        gap: 16px;
    }

    .trust-sep {
        display: none;
    }

    .trust-item {
        font-size: 10px;
    }

    .services-section,
    .about-section,
    .gallery-section {
        padding: var(--space-xl) 0;
    }

    .contact-section {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .container {
        padding: 0 24px;
    }

    .service-row {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 16px;
        padding: 28px 0;
    }

    .service-price {
        grid-column: 2;
        font-size: 1rem;
    }

    .service-row--featured {
        padding: 28px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .service-row--featured:hover {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .service-badge {
        right: 20px;
        top: 8px;
    }

    .about-image-wrap img {
        height: 320px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item,
    .gallery-item:not(.gallery-item--wide) {
        aspect-ratio: 4 / 3;
    }

    .section-rule {
        padding: 0;
    }

    .footer {
        padding: 40px 24px 0;
    }

    .section-header.centered {
        margin-bottom: 32px;
    }
}

/* ============ RESPONSIVE -- 480px ============ */
@media (max-width: 480px) {
    .hero-content {
        padding: 110px 20px 90px;
    }

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

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-sep {
        width: 40px;
        height: 1px;
    }

    .service-index {
        font-size: 1rem;
    }

    .about-image-wrap img {
        height: 260px;
    }

    .about-image-accent {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
