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

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --bg-primary:   #0D0A07;
    --bg-secondary: #1A1208;
    --gold:         #C9A84C;
    --gold-light:   #E8C97A;
    --text-primary: #F0E6D3;
    --text-muted:   #A89070;
    --accent:       #8B6914;
    --border-gold:  #C9A84C33;
}

/* ============================================================
   BASE
   ============================================================ */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-align: center;
    width: 100%;
}

/* ============================================================
   NAVBAR (Cleaned)
   ============================================================ */
.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid var(--border-gold);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    z-index: 100;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 10, 7, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
    opacity: 1;
    pointer-events: auto;
}

.nav-logo {
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    flex-shrink: 0;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-links a[href*="booking"] {
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 0.45rem 0.85rem;
}

.nav-links a[href*="booking"]:hover,
.nav-links a[href*="booking"].active {
    color: var(--bg-primary);
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   HERO (Consolidated)
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
    border-bottom: none;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(201,168,76,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(139,105,20,0.08) 0%, transparent 40%),
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('../img/hieroglyphs.png') center / cover no-repeat;
    animation: breathe 8s ease-in-out infinite alternate;
    z-index: 0;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    background-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.35) 0%,
            rgba(0,0,0,0.25) 40%,
            rgba(0,0,0,0.45) 60%,
            rgba(0,0,0,0.35) 100%
        ),
        url('../img/About2.jpg');
    background-size: auto 100%;
    background-position: center 75%;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: 0;
}

@keyframes breathe {
    0%   { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s ease;
    will-change: transform;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    color: var(--gold);
    opacity: 0;
    animation: drift var(--duration) ease-in-out var(--delay) infinite;
}

@keyframes drift {
    0%   { opacity: 0; transform: translateY(0) scale(0.8); }
    20%  { opacity: 0.5; }
    80%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.2s forwards, shimmer 4s linear 1.4s infinite;
    background: linear-gradient(
        90deg,
        var(--gold-light) 0%,
        #ffb300 40%,
        var(--gold) 50%,
        #f8e0a6 60%,
        var(--gold-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@keyframes shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.4s forwards;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.6s forwards;
}

.hero .btn-gold {
    opacity: 0;
    animation: fadeUp 1.2s ease 0.8s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.2s forwards;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   ABOUT HERO (Consolidated)
   ============================================================ */
.about-hero {
    min-height: 100vh;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 3rem;
}

.about-hero .hero-content {
    max-width: 520px;
    text-align: center;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.2rem;
    letter-spacing: 0.35em;
    line-height: 1.1;
    margin-bottom: 0;
}

/* ============================================================
   PORTRAIT SECTION (Dedicated section below hero)
   ============================================================ */
.portrait-section {
    padding: 3rem 1.5rem 4rem;
    text-align: center;
    background: var(--bg-primary);
}

.about-portrait {
    max-width: 320px;
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 0px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-portrait {
        max-width: 95%;
    }
    
    .portrait-section {
        padding: 2rem 1rem 4rem;
    }
}

.about-hero .gold-divider,
.section .gold-divider {
    display: none;
}

.section-line {
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border-gold) 20%,
        var(--border-gold) 80%,
        transparent
    );
}

/* ============================================================
   BUTTONS (Cleaned)
   ============================================================ */
.btn-gold {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #8B6914);
    border: none;
    padding: 2rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.14);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #F3D98C, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 0 38px rgba(201, 168, 76, 0.22);
}

.btn-outline {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.12);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    color: var(--gold);
    opacity: 0.6;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

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

/* ============================================================
   BOOKING (Consolidated)
   ============================================================ */
.booking-step {
    margin-bottom: 3.5rem;
    border-top: none !important;
    padding-top: 2.5rem;
}

.booking-step-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 0.75rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-card {
    border: none;
    border-left: 1px solid var(--border-gold);
    padding: 2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(201, 168, 76, 0.035), transparent 55%),
        rgba(26, 18, 8, 0.22);
}

.service-card:hover {
    border-left-color: var(--gold);
    background: var(--bg-secondary);
}

.service-card.selected {
    border-left-color: var(--gold-light);
    background: var(--bg-secondary);
    box-shadow:
        inset 0 0 0 1px rgba(201, 168, 76, 0.18),
        0 0 42px rgba(201, 168, 76, 0.065);
}

.service-card.selected::after {
    content: 'Selected';
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.service-price {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 0.5rem;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.booking-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-gold);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.booking-input:focus {
    border-bottom-color: var(--gold-light);
    box-shadow: 0 12px 22px -22px rgba(201, 168, 76, 0.55);
}

.booking-input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* Booking Hero Title (Clean single block) */
.booking-hero .hero-content h1,
.booking-intro h1 {
    white-space: nowrap;
    font-size: 2.4rem;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 1rem;
}

@media (max-width: 900px) {
    .booking-hero .hero-content h1,
    .booking-intro h1 {
        font-size: 2.4rem;
        letter-spacing: 0.22em;
    }
}

@media (max-width: 600px) {
    .booking-hero .hero-content h1,
    .booking-intro h1 {
        font-size: 1.95rem;
        letter-spacing: 0.18em;
        white-space: normal;
    }
}

/* ============================================================
   SCENE
   ============================================================ */
.scene {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    overflow: hidden;
    isolation: isolate;
}

.scene-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,10,7,0.95) 0%, rgba(13,10,7,0.4) 50%, rgba(13,10,7,0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

.scene-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: center;
}

.scene-content h2 {
    font-size: 3.5rem;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1rem;
}

.scene-content p {
    font-weight: italic;
    color: var(--text-muted);
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

.scene-bg {
    position: absolute;
    inset: -20%;
    background: url('/static/img/bg-1.jpg') center/cover no-repeat;
    z-index: 0;
    will-change: transform;
}

/* ============================================================
   SERVICES & CARDS
   ============================================================ */
.services-preview {
    padding: 8rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.service-preview-card {
    padding: 4rem 3rem;
    border: none;
    border-left: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
    background:
        linear-gradient(180deg, rgba(201, 168, 76, 0.035), transparent 55%),
        rgba(26, 18, 8, 0.22);
}

.service-preview-card:hover {
    border-left-color: var(--gold);
    background: var(--bg-secondary);
    box-shadow: 0 0 42px rgba(201, 168, 76, 0.065);
}

.service-preview-card h3 {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-align: left;
    color: var(--gold-light);
}

.service-preview-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.9;
    flex: 1;
}

.service-preview-price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

/* ============================================================
   BLOG / LEGAL (Kept clean)
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    border: none;
    border-top: 1px solid var(--border-gold);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s;
    align-items: flex-start;
}

.blog-card:hover {
    border-top-color: var(--gold);
}

.blog-date {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-align: left;
    color: var(--gold-light);
}

.blog-excerpt {
    color: var(--text-muted);
    font-style: italic;
    flex: 1;
}

.post-content {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 2;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gold);
}

.legal-block h2 {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-align: left;
    margin-bottom: 1rem;
}

.legal-block p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-block strong {
    color: var(--text-primary);
}

.legal-list {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 2;
}

.legal-block a {
    color: var(--gold);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

/* ============================================================
   REVEAL + UTILITIES
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

html {
    scroll-behavior: smooth;
}

.section {
    padding: 5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

section.philosophy-section {
    padding-top: 2rem;
}

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.font-cinzel { font-family: 'Cinzel', serif; }
.text-center { text-align: center; }

/* Elegant section title underline */
.section h2::after,
.services-preview-header h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 1px;
    margin: 1.25rem auto 0;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.65;
}

/* Better text selection */
::selection {
    background: rgba(201, 168, 76, 0.28);
    color: var(--text-primary);
}

/* ============================================================
   HOMEPAGE SECTIONS (Cleaned & Merged)
   ============================================================ */
.intro-section {
    text-align: center;
}

.intro-copy {
    max-width: 650px;
    margin: 1.5rem auto 4rem;
    font-size: 1.2rem;
    line-height: 2;
    font-style: italic;
}

.trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-gold);
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item span {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.trust-item p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 4rem;
}

.process-card {
    padding: 3rem 2rem;
    border-left: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    transition: border-color 0.3s, background 0.3s;
    background:
        linear-gradient(180deg, rgba(201,168,76,0.035), transparent 55%),
        rgba(26,18,8,0.22);
}

.process-card:hover {
    border-left-color: var(--gold);
    background: var(--bg-secondary);
}

.process-number {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.6;
}

.process-card h3 {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-align: left;
    color: var(--gold-light);
}

.process-card p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.9;
}

.ethics-section {
    text-align: center;
    border-top: 1px solid var(--border-gold);
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.ethics-section .intro-copy {
    margin-bottom: 2.5rem;
}

/* ============================================================
   MOBILE (Consolidated - All in one place)
   ============================================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.9rem 1.25rem;
        gap: 0.5rem;
    }

    .nav-links {
        gap: 0.4rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .nav-logo {
        font-size: 1rem;
        white-space: nowrap;
    }

    .hero-content h1 {
        font-size: 2.35rem;
        letter-spacing: 0.16em;
        white-space: normal;
        line-height: 1.15;
    }

    .booking-hero .hero-content h1,
    .booking-intro h1 {
        font-size: 2.35rem;
        letter-spacing: 0.16em;
        white-space: normal;
    }

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

    .about-hero-bg {
        background-size: cover;
        background-position: 60% 5%;
    }

    .about-hero {
        aspect-ratio: 3 / 4;
        height: auto;
        min-height: 390px;
        max-height: 650px;
    }

    section.philosophy-section {
    padding-top: 1.25rem;
}

    .about-portrait {
        position: relative;
        right: auto;
        margin: 2rem auto 0;
        width: 85%;
        max-width: 320px;
        display: block;
    }

    .hero-tagline {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 85vh;
        padding-bottom: 4rem;
    }

    .scene {
        height: auto;
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .scene-content h2 {
        font-size: 2.2rem;
    }

    .scene-content p {
        font-size: 1.15rem;
    }

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

    .services-preview {
        padding: 5rem 1.5rem;
    }

    .services-preview-grid,
    .service-grid,
    .process-grid,
    .trust-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-preview-card {
        padding: 2.5rem 1.5rem;
        border-left: none;
        border-top: 1px solid var(--border-gold);
    }

    .service-card {
        border-left: none;
        border-top: 1px solid var(--border-gold);
    }

    .section {
        padding: 3.5rem 1.25rem;
    }

    .booking-step {
        padding-top: 2rem;
    }

    .gold-divider::before,
    .gold-divider::after {
        width: 48px;
    }

    .intro-copy {
        font-size: 1.05rem;
    }

    .process-card {
        border-left: none;
        border-top: 1px solid var(--border-gold);
    }
}

/* Very small phones (iPhone SE and similar, ~375px and under) */
@media (max-width: 600px) {
    .navbar {
        padding: 0.7rem 0.85rem;
        gap: 0.4rem;
    }

    .nav-links {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.35rem;
    }

    .nav-logo {
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .nav-links a {
        font-size: 0.42rem;
        letter-spacing: 0.05em;
    }

    .hero-content h1,
    .booking-hero .hero-content h1,
    .booking-intro h1 {
        font-size: 1.7rem;
        letter-spacing: 0.1em;
    }

    .about-hero .hero-content h1 {
        font-size: 1.85rem;
        letter-spacing: 0.18em;
    }

    .about-hero-bg {
        background-size: cover;
        background-position: 60% 5%;
    }

    .about-hero {
        aspect-ratio: 3 / 4;
        height: auto;
        min-height: 480px;
        max-height: 650px;
    }

    .scene-content h2 {
        font-size: 1.75rem;
        letter-spacing: 0.08em;
    }

    .scene-content p {
        font-size: 1rem;
    }

    .trust-item span {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
    }

    .process-number {
        letter-spacing: 0.18em;
    }

    .btn-gold,
    .btn-outline {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        padding: 0.75rem 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}