/* ══════════════════════════════════════════════════════════════════════
   Far Above Rubies — 2027 Design
   ══════════════════════════════════════════════════════════════════════ */

:root {
    --accent: #9B1B30;
    --accent-hover: #7A1526;
    --accent-soft: rgba(155, 27, 48, 0.06);
    --accent-muted: #C4556B;
    --gold: #C9A96E;
    --gold-soft: rgba(201, 169, 110, 0.1);
    --warm: #C9A96E;
    --warm-soft: rgba(201, 169, 110, 0.06);
    --neutral-50: #FFFCF9;
    --neutral-100: #FFF8F0;
    --neutral-200: #F0EAE3;
    --neutral-300: #E2DCD5;
    --neutral-400: #A89F97;
    --neutral-500: #7A726B;
    --neutral-600: #5C5550;
    --neutral-700: #3D3835;
    --neutral-800: #2D2926;
    --neutral-900: #1C1917;
    --white: #FFFFFF;
    --dusty-rose: #D4A59A;
    --blush: #E8C4B8;
    --warm-linen: #F5E6D3;
    --cinnamon: #A67B5B;
    --sage: #8B9E82;
    --eucalyptus: #C5D5C0;
    --deep-fern: #4A6741;
    --wheat: #DCC9A3;
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --content: 680px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--neutral-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: 0.2s ease; }
a:hover { color: var(--accent-hover); }

/* ── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--neutral-900);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.container.narrow { max-width: var(--content); }
.center { text-align: center; }

.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-dark { background: var(--neutral-900); color: var(--neutral-300); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-muted { background: var(--neutral-50); }

.section-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neutral-500);
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 520px;
    line-height: 1.7;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-cta { margin-top: 3.5rem; }

/* ── Navigation ───────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--neutral-200); }
.site-header.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header.transparent .nav-links a { color: rgba(255,255,255,0.75); }
.site-header.transparent .nav-links a:hover,
.site-header.transparent .nav-links a.active { color: var(--white); }
.site-header.transparent .nav-toggle span { background: var(--white); }
.site-header.transparent .nav-phone { color: rgba(255,255,255,0.75); }
.site-header.transparent .nav-phone:hover { color: var(--white); }
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--neutral-900);
}
.nav-brand:hover { color: var(--neutral-900); }
.brand-logo { height: 36px; width: auto; }
.brand-gem { width: 28px; height: 28px; }
.brand-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--neutral-600);
    letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--neutral-900); }
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }
.nav-phone { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--neutral-900); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        justify-items: center;
        padding: 1rem 1.25rem;
    }
    .nav-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: start;
        color: var(--neutral-700);
        padding: 0.25rem;
    }
    .nav-phone:hover { color: var(--accent); }
    .nav-brand { justify-self: center; transform: translateX(4px); }
    .nav-toggle { display: block; z-index: 1010; justify-self: end; }
    .nav-links-desktop { display: none !important; }
}

/* ── Mobile Fullscreen Navigation ────────────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--neutral-900);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open {
    display: flex;
}
.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}
.mobile-nav-close:hover { color: var(--white); }
.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    padding: 5rem 2rem 2.5rem;
}
.mobile-nav-header {
    margin-bottom: 2.5rem;
}
.mobile-nav-logo {
    height: 32px;
    width: auto;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--neutral-300);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
    text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
    padding-left: 0.5rem;
}
.mobile-nav-link.active {
    color: var(--gold);
}
.mobile-nav-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.mobile-nav-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1rem;
}
.mobile-nav-tagline {
    text-align: center;
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}
.mobile-nav-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-400);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-nav-contact:hover { color: var(--white); }
.mobile-nav-verse {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.75rem;
    color: var(--neutral-600);
}

/* Hamburger to X animation */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.nav-toggle span {
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* When overlay is open, keep toggle white */
.nav-toggle.open span {
    background: var(--white) !important;
}

/* Hide mobile overlay on desktop */
@media (min-width: 769px) {
    .mobile-nav-overlay { display: none !important; }
    .nav-toggle { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: var(--neutral-900);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.08);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 25, 23, 0.55) 0%,
        rgba(28, 25, 23, 0.35) 50%,
        rgba(28, 25, 23, 0.25) 100%
    );
}
.hero .container { position: relative; z-index: 2; }
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
.hero-text { max-width: 560px; }
.js .hero-top {
    opacity: 0;
    animation: fadeIn 0.8s 0.2s var(--ease) forwards;
}
.hero-verse {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.js .hero-center {
    opacity: 0;
    animation: fadeIn 0.8s 0.35s var(--ease) forwards;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.js .hero-actions {
    opacity: 0;
    animation: fadeIn 0.8s 0.65s var(--ease) forwards;
}
.hero-actions .btn-primary {
    background: var(--white);
    color: var(--accent);
}
.hero-actions .btn-primary:hover {
    background: var(--neutral-100);
    color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}
.hero-actions .btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.hero-visual {
    position: relative;
}
.js .hero-visual {
    opacity: 0;
    animation: fadeIn 1s 0.4s var(--ease) forwards;
}
.hero-image-frame {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), 0 8px 30px rgba(0,0,0,0.15);
}
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero { min-height: 100vh; min-height: 100svh; padding: 0; align-items: flex-end; }
    .hero-bg {
        background-position: center center;
        transform: scale(1.3) translateY(-12%);
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(28, 25, 23, 0.0) 0%,
            rgba(28, 25, 23, 0.05) 25%,
            rgba(28, 25, 23, 0.6) 50%,
            rgba(28, 25, 23, 0.92) 75%,
            rgba(28, 25, 23, 0.97) 100%
        );
    }
    .hero .container { padding-bottom: 2rem; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { display: none; }

    .hero-text {
        max-width: 100%;
    }

    .hero-top {
        margin-bottom: 1.25rem;
    }

    .hero-verse {
        font-size: 0.85rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
        border-left: 2px solid var(--gold);
        padding-left: 0.75rem;
        display: block;
    }

    .hero-top {
        margin-bottom: 1.75rem;
    }

    .hero-center {
        margin-bottom: 2.25rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.15;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.85);
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    }

    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .hero-actions .btn { text-align: center; justify-content: center; padding: 0.875rem 1.5rem; }
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(155,27,48,0.2);
}
.btn-outline {
    border: 1.5px solid var(--neutral-300);
    color: var(--neutral-700);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--neutral-900);
    color: var(--neutral-900);
    transform: translateY(-1px);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,41,66,0.2);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

.link-arrow {
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--neutral-900);
}
.link-arrow:hover { gap: 0.7rem; }
.link-arrow::after { content: '\2192'; transition: 0.2s ease; }

/* ── Page Hero ────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: clamp(10rem, 18vw, 14rem) 0 clamp(3rem, 5vw, 4rem);
    background: var(--neutral-900);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.25);
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 25, 23, 0.2) 0%,
        rgba(28, 25, 23, 0.35) 40%,
        rgba(28, 25, 23, 0.65) 100%
    );
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label {
    color: var(--gold);
}
.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.page-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 520px;
    line-height: 1.8;
}
.page-intro.center { margin-left: auto; margin-right: auto; }

/* ── Feature Section ──────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.feature-item { }
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    color: var(--accent);
}
.feature-item h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.feature-item p { font-size: 0.9rem; color: var(--neutral-500); line-height: 1.7; }

@media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; gap: 0; }
    .feature-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--neutral-200);
    }
    .feature-item:last-child { border-bottom: none; }
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        grid-row: 1 / 3;
    }
    .feature-item h3 { margin-bottom: 0.25rem; font-size: 1.05rem; }
    .feature-item p { font-size: 0.85rem; }
}

/* ── Intro Block ──────────────────────────────────────────────────── */
.intro-block { }
.intro-block h2 { margin-bottom: 2rem; max-width: 540px; }
.intro-block p { font-size: 1.05rem; color: var(--neutral-600); line-height: 1.9; max-width: 580px; }
.intro-block .link-arrow { margin-top: 1.5rem; display: inline-flex; }

/* ── Services ─────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
    background: var(--white);
}
.service-card:hover {
    border-color: var(--neutral-300);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--neutral-900); }
.service-card p { color: var(--neutral-500); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.7; }
.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neutral-900);
}

.services-list { display: flex; flex-direction: column; gap: 1px; background: var(--neutral-200); border-radius: var(--radius-md); overflow: hidden; }
.service-detail { background: var(--white); padding: 2.5rem; }
.service-detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.service-detail h2 { font-size: 1.5rem; }
.service-meta { text-align: right; }
.service-price-lg { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--neutral-900); }
.service-duration { font-size: 0.8rem; color: var(--neutral-400); margin-top: 0.25rem; }
.service-detail p { color: var(--neutral-600); line-height: 1.8; }

/* ── Blog ─────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2.5rem; }
.blog-grid.full { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.blog-card { transition: all 0.3s var(--ease); }
.blog-card:hover { transform: translateY(-2px); }
.blog-card-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.75rem; }
.blog-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--accent);
}
.blog-date { font-size: 0.8rem; color: var(--neutral-400); }
.blog-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.blog-card h3 a { color: var(--neutral-900); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.9rem; color: var(--neutral-500); margin-bottom: 1rem; line-height: 1.7; }
.blog-card .link-arrow { font-size: 0.8rem; }

/* ── Blog Post ────────────────────────────────────────────────────── */
.blog-post .post-header { padding: clamp(8rem, 14vw, 10rem) 0 3rem; }
.back-link { font-size: 0.8rem; color: var(--neutral-400); display: inline-flex; align-items: center; gap: 0.3rem; margin-bottom: 2.5rem; }
.back-link:hover { color: var(--neutral-700); }
.post-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.post-body { padding: 3rem 0; }
.post-body .container.narrow { max-width: 640px; }
.post-body h3 { margin: 3rem 0 1rem; color: var(--neutral-900); }
.post-body p { font-size: 1.1rem; color: var(--neutral-700); line-height: 2; }
.post-body blockquote {
    border-left: 2px solid var(--accent);
    padding: 0.5rem 0 0.5rem 2rem;
    margin: 2.5rem 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--neutral-600);
    line-height: 1.5;
}
.post-footer { padding: 3rem 0 5rem; border-top: 1px solid var(--neutral-200); }
.post-share { text-align: center; margin-bottom: 2.5rem; color: var(--neutral-500); font-size: 0.9rem; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.post-nav-link { padding: 1.5rem; border: 1px solid var(--neutral-200); border-radius: var(--radius-md); transition: 0.2s ease; }
.post-nav-link:hover { border-color: var(--neutral-300); background: var(--neutral-50); }
.post-nav-link span { font-size: 0.7rem; color: var(--neutral-400); display: block; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }
.post-nav-link strong { font-size: 0.95rem; color: var(--neutral-900); font-family: var(--font-display); }
.post-nav-link.next { text-align: right; }

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

/* ── Filter Bar ───────────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.filter-chip {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-500);
    transition: 0.2s ease;
}
.filter-chip:hover { border-color: var(--neutral-400); color: var(--neutral-700); }
.filter-chip.active { background: var(--neutral-900); color: var(--white); border-color: var(--neutral-900); }

/* ── Vlog ─────────────────────────────────────────────────────────── */
.vlog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.vlog-grid.compact { grid-template-columns: 1fr; gap: 1rem; }
.vlog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s var(--ease);
    border: 1px solid var(--neutral-200);
}
.vlog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.vlog-card.compact { display: flex; gap: 1rem; align-items: center; padding: 0.75rem; border: none; border-bottom: 1px solid var(--neutral-100); border-radius: 0; }
.vlog-thumb { display: block; position: relative; background: var(--neutral-900); aspect-ratio: 16/9; }
.vlog-thumb.small { width: 140px; aspect-ratio: 16/9; border-radius: var(--radius); flex-shrink: 0; }
.vlog-thumb-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,0.5); }
.vlog-thumb-placeholder.small svg { width: 20px; height: 20px; }
.vlog-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.85); color: #fff; font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 500; }
.vlog-card-body { padding: 1.5rem; }
.vlog-card.compact .vlog-card-body { padding: 0; }
.vlog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.vlog-card-body h3 a { color: var(--neutral-900); }
.vlog-card-body h3 a:hover { color: var(--accent); }
.vlog-card-body h4 { font-size: 0.9rem; }
.vlog-card-body h4 a { color: var(--neutral-900); }
.vlog-card-body p { font-size: 0.85rem; color: var(--neutral-500); line-height: 1.7; }

.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--neutral-900); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.vlog-player { margin-bottom: 2.5rem; }
.vlog-info h1 { margin: 1.25rem 0 0.5rem; }
.vlog-description { color: var(--neutral-600); margin-top: 1.25rem; line-height: 1.8; }
.more-episodes { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--neutral-200); }
.more-episodes h3 { margin-bottom: 1.25rem; }

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-grid.full { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.testimonial-card {
    padding: 2.5rem;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: 0.3s var(--ease);
    background: var(--white);
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.testimonial-card p {
    font-size: 1.05rem;
    color: var(--neutral-700);
    line-height: 1.8;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
}
.testimonial-card footer { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--neutral-100); }
.testimonial-card footer strong { display: block; color: var(--neutral-900); font-style: normal; font-size: 0.9rem; }
.testimonial-card footer span { font-size: 0.75rem; color: var(--neutral-400); font-style: normal; text-transform: uppercase; letter-spacing: 0.05em; }
.testimonial-stars { margin-bottom: 1rem; display: flex; gap: 2px; }

/* ── Forms ────────────────────────────────────────────────────────── */
.form-elegant {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: 0.2s ease;
    background: var(--white);
    color: var(--neutral-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neutral-900);
    box-shadow: 0 0 0 3px rgba(28,25,23,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.required { color: var(--accent); }
.form-note { font-size: 0.75rem; color: var(--neutral-400); margin-top: 0.75rem; }
.form-status { margin-top: 1rem; padding: 0.875rem 1.25rem; border-radius: var(--radius); font-size: 0.85rem; }
.form-status.success { background: #ECFDF5; color: #065F46; border: 1px solid #D1FAE5; }
.form-status.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* Star Rating */
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.2rem; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.4rem; color: var(--neutral-200); cursor: pointer; transition: 0.15s ease; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: var(--warm); }

/* ── Contact Methods ──────────────────────────────────────────────── */
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-method { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--neutral-600); }
.contact-method svg { color: var(--neutral-400); flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; margin-top: 2.5rem; border-top: 1px solid var(--neutral-200); }
.faq-item { border-bottom: 1px solid var(--neutral-200); }
.faq-item summary {
    padding: 1.5rem 0;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--neutral-800);
}
.faq-item summary:hover { color: var(--neutral-900); }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--neutral-400); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 0 1.5rem; color: var(--neutral-600); font-size: 0.95rem; line-height: 1.8; }

/* ── CTA Section ──────────────────────────────────────────────────── */
.cta-section {
    background: var(--neutral-900);
    color: var(--neutral-300);
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: var(--neutral-400); max-width: 480px; margin: 1rem auto 2.5rem; font-size: 1.05rem; line-height: 1.8; }
.cta-section .btn-primary { background: var(--white); color: var(--accent); }
.cta-section .btn-primary:hover { background: var(--neutral-100); color: var(--accent-hover); }

/* ── Pull Quote ───────────────────────────────────────────────────── */
.pull-quote {
    padding: 4rem 0;
    text-align: center;
}
.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--neutral-700);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}
.pull-quote cite {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    font-style: normal;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Testimonial Highlight (single featured quote) ───────────────── */
.testimonial-highlight {
    text-align: center;
    padding: 2rem 0;
}
.testimonial-highlight .testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 1.5rem;
}
.testimonial-highlight blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--neutral-700);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}
.testimonial-highlight cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--neutral-500);
}

/* ── Lead Text ────────────────────────────────────────────────────── */
.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--neutral-700);
    font-weight: 400;
}

/* ── About ────────────────────────────────────────────────────────── */
.about-content h2 { margin-bottom: 2rem; max-width: 480px; }
.about-content h3 {
    color: var(--neutral-900);
    margin: 3.5rem 0 1rem;
    font-size: 1.25rem;
}
.about-content p { font-size: 1.1rem; color: var(--neutral-600); line-height: 2; }
.about-content p em { color: var(--accent); }
.about-cta {
    margin-top: 4rem;
    padding: 3rem;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    text-align: center;
}
.about-cta p { margin-bottom: 1.5rem; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--neutral-900);
    color: var(--neutral-400);
    padding: 5rem 0 0;
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}
.footer-brand { }
.footer-brand .brand-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); font-weight: 500; }
.footer-verse { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; margin-top: 1rem; line-height: 1.7; color: var(--neutral-600); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { color: var(--neutral-300); font-family: var(--font-body); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; font-weight: 600; }
.footer-col a { display: block; color: var(--neutral-500); font-size: 0.85rem; padding: 0.3rem 0; transition: 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-service-area {
    max-width: var(--max-width);
    margin: 2.5rem auto 0;
    padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.75rem;
    color: var(--neutral-600);
}
.footer-service-area a { color: var(--neutral-500); text-decoration: none; }
.footer-service-area a:hover { color: var(--white); }
.footer-bottom { margin-top: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 0.75rem; color: var(--neutral-600); }

/* ── Parallax Performance ────────────────────────────────────────── */
.hero-bg,
.hero-overlay,
.page-hero-bg {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ── Scroll Animations (progressive enhancement) ────────────────────
   Reveal classes only hide content when JS is enabled (html.js).
   If JS fails to load or is blocked, content stays visible by default. */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide from right — for intro splits */
.js .reveal-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal-slide-right.visible { opacity: 1; transform: translateX(0); }

/* Slide from left — for reversed splits */
.js .reveal-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal-slide-left.visible { opacity: 1; transform: translateX(0); }

/* Scale up — for quotes and highlights */
.js .reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .reveal-scale.visible { opacity: 1; transform: scale(1); }

.js .reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.js .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.js .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.js .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.js .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }

/* Reduced motion: skip the slide/scale animation, show content immediately */
@media (prefers-reduced-motion: reduce) {
    .js .reveal,
    .js .reveal-slide-right,
    .js .reveal-slide-left,
    .js .reveal-scale,
    .js .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Empty State ──────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--neutral-400); }

/* ── Divider ──────────────────────────────────────────────────────── */
.divider {
    width: 40px;
    height: 1px;
    background: var(--neutral-300);
    margin: 1.5rem auto;
}

/* ── Intro Split Layout ──────────────────────────────────────────── */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 16px 60px rgba(0,0,0,0.08);
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-text h2 { margin-bottom: 2rem; max-width: 540px; }
.intro-text p { font-size: 1.05rem; color: var(--neutral-600); line-height: 1.9; max-width: 580px; }
.intro-text .link-arrow { margin-top: 1.5rem; display: inline-flex; }

/* ── Service Cards with Images ───────────────────────────────────── */
.service-card.has-image {
    padding: 0;
    overflow: hidden;
}
.service-card-image {
    height: 200px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.service-card.has-image:hover .service-card-image img {
    transform: scale(1.04);
}
.service-card-body {
    padding: 2rem;
}

/* ── Services List Enhanced (services page) ──────────────────────── */
.services-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    background: var(--white);
    transition: box-shadow 0.3s var(--ease);
}
.service-detail-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-detail-card.reverse {
    direction: rtl;
}
.service-detail-card.reverse > * {
    direction: ltr;
}
.service-detail-image {
    overflow: hidden;
    min-height: 280px;
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.service-detail-card:hover .service-detail-image img {
    transform: scale(1.03);
}
.service-detail-content {
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.service-detail-content p {
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.service-meta-inline {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-200);
}
.service-meta-inline .service-price-lg {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--neutral-900);
}
.service-meta-inline .service-duration {
    font-size: 0.8rem;
    color: var(--neutral-400);
}

/* ── About Full-Width Image ───────────────────────────────────────── */
.about-image-full {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.about-image-full img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

/* ── Section Warm (testimonial bg) ───────────────────────────────── */
.section-warm {
    background: linear-gradient(135deg, rgba(232,196,184,0.15) 0%, var(--neutral-50) 50%, rgba(212,165,154,0.08) 100%);
}

/* ── Section Sage (botanical accent) ─────────────────────────────── */
.section-sage {
    background: linear-gradient(135deg, rgba(197,213,192,0.18) 0%, var(--neutral-50) 60%, rgba(139,158,130,0.06) 100%);
}

/* ── Section Blush ───────────────────────────────────────────────── */
.section-blush {
    background: linear-gradient(135deg, rgba(232,196,184,0.12) 0%, rgba(245,230,211,0.2) 50%, var(--neutral-50) 100%);
}

/* ══════════════════════════════════════════════════════════════════════
   Mobile Responsive — MUST come LAST to override component styles
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Tighten all sections */
    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 1.75rem; }
    .section-cta { margin-top: 2rem; }
    .container { padding: 0 1.25rem; }

    /* Page headers */
    .page-hero { min-height: 260px; padding: 7rem 0 2rem; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-intro { font-size: 0.95rem; }
    h2 { font-size: 1.5rem; }

    /* Nav logo */
    .brand-logo { height: 40px; }

    /* Cards — compact */
    .services-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .service-card.has-image { padding: 0; }
    .service-card.has-image .service-card-image { height: 160px; }
    .service-card-body { padding: 1.5rem 1.25rem; }

    .blog-grid, .blog-grid.full { grid-template-columns: 1fr; gap: 1rem; }
    .blog-card { padding: 0; padding-bottom: 1.25rem; border: none; border-bottom: 1px solid var(--neutral-200); border-radius: 0; }
    .blog-card:hover { transform: none; box-shadow: none; }
    .blog-card h3 { font-size: 1.1rem; }
    .testimonial-grid, .testimonial-grid.full { grid-template-columns: 1fr; gap: 0.75rem; }
    .testimonial-card { padding: 1.5rem 1.25rem; }
    .vlog-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* Intro split — stack vertically, image on top */
    .intro-split {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .intro-image {
        aspect-ratio: 16/9 !important;
        max-height: 220px;
    }
    .intro-text h2 { font-size: 1.375rem; }
    .intro-text p { font-size: 0.95rem; }

    /* Intro block (fallback) */
    .intro-block h2 { font-size: 1.375rem; }
    .intro-block p { font-size: 0.95rem; }

    /* Services detail cards — stack vertically, image on top */
    .services-list-enhanced { gap: 1.5rem; }
    .service-detail-card {
        grid-template-columns: 1fr !important;
    }
    .service-detail-card.reverse {
        direction: ltr !important;
    }
    .service-detail-card.reverse > * {
        direction: ltr !important;
    }
    .service-detail-image {
        height: 200px;
        min-height: auto !important;
    }
    .service-detail-content {
        padding: 1.5rem 1.25rem;
    }
    .service-detail-content h2 { font-size: 1.35rem; }
    .service-meta-inline .service-price-lg { font-size: 1.35rem; }

    /* About image */
    .about-image-full {
        margin: 0 -1.25rem 2rem;
        border-radius: 0;
    }
    .about-image-full img { aspect-ratio: 16/9; }

    /* Pull quote */
    .pull-quote { padding: 1.5rem 0; }
    .pull-quote p { font-size: 1.25rem; }

    /* Blog post */
    .blog-post .post-header { padding: 5.5rem 0 2rem; }
    .post-body { padding: 2rem 0; }
    .post-body p { font-size: 1rem; line-height: 1.8; }

    /* About */
    .about-content p { font-size: 1rem; }
    .about-content h3 { margin-top: 2rem; }
    .about-cta { padding: 1.75rem 1.25rem; margin-top: 2.5rem; }

    /* Forms */
    .form-elegant { padding: 1.5rem; border-radius: var(--radius-md); }
    .post-nav { grid-template-columns: 1fr; gap: 0.75rem; }

    /* Filter */
    .filter-bar { justify-content: flex-start; gap: 0.4rem; margin-bottom: 2rem; }
    .filter-chip { padding: 0.4rem 1rem; font-size: 0.75rem; }

    /* CTA section */
    .cta-section { padding: 3rem 0; }
    .cta-section p { font-size: 0.95rem; margin-bottom: 1.75rem; }

    /* Footer */
    .site-footer { padding: 3rem 0 0; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { margin-top: 2rem; padding: 1.25rem 0; }
    .footer-col a { font-size: 0.8rem; }
}
