body {
    font-family: var(--font-lora);
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: clip; /* clip prevents horizontal scroll without creating a scroll container — hidden would break position:sticky */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

/* ============================================
    NEW HERO SECTION - SPLIT LAYOUT
    ============================================ */
.hero {
    position: relative;
    width: 100%;
    /* Height is managed by children, but ensures it takes viewport space */
    min-height: 85vh; 
    display: flex;
    align-items: stretch;
    background-color: var(--color-bg-beige);
    padding: 0;
}

/* The Left Box - Content Wrapper */
.hero__box {
    flex: 0 0 45%; /* Takes up 45% of width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5% 8%;
    background-color: #fdfbf7a8;
    z-index: 2;
    position: relative;
    /* Subtle texture or gradient could go here */
    box-shadow: 5px 0 30px rgba(0,0,0,0.05);
}

/* The Right Side - Spanning Image */
.hero__image-container {
    flex: 1; /* Takes up remaining space */
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Adjusted to focus on face */
    display: block;
    position: absolute;
}

/* Optional: Subtle overlay on image side only */
.hero__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    pointer-events: none;
}

/* ============================================
    HERO TYPOGRAPHY & CONTENT
    ============================================ */
.hero__tagline {
    font-family: var(--font-montserrat);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-pink);
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    border-bottom: 1px solid var(--color-accent-pink);
    padding-bottom: 5px;
}

.hero__title {
    font-family: var(--font-cormorant);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: var(--spacing-md);
    /* Adjusted text shadow for legibility on light background 
        instead of the heavy black shadow from the dark version */
    text-shadow: 1px 1px 0px rgba(217, 184, 117, 0.2); 
}

/* Highlighting specific words if needed, mimicking the Gold */
.hero__title span {
    color: var(--color-gold-dark);
    font-style: italic;
}

.hero__description {
    font-size: clamp(1.05rem, 1.2vw, 1.35rem);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero__description p {
    margin-bottom: var(--spacing-sm);
}

/* CTA Button Style — scoped to hero CTA to avoid overriding page-level .btn rules */
.hero__cta .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #2c2c2c;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.hero__cta .btn:hover {
    background-color: transparent;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.hero__cta .btn--outline {
    background-color: transparent;
    color: #2c2c2c;
    margin-left: var(--spacing-sm);
}

.hero__cta .btn--outline:hover {
    background-color: #2c2c2c;
    color: #fff;
}

/* ============================================
    SERVICES MARQUEE (Unchanged logic, but styled to fit new layout)
    ============================================ */
.services-marquee {
    background-color: #eed2be;
    color: var(--color-text-dark);
    padding: clamp(0.5rem, 1vw, 1rem) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 5; /* Sits above hero overlap if any */
}

.services-marquee__track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.services-marquee__track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .services-marquee__track {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .services-marquee__track {
        animation-duration: 14s;
    }
}

.services-marquee__item {
    display: inline-block;
    padding: 0 var(--spacing-md);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    font-family: var(--font-montserrat);
}

.services-marquee__item::after {
    content: '|';
    margin-left: var(--spacing-md);
    opacity: 0.4;
}

/* ============================================
    ANIMATIONS
    ============================================ */
@keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeInLeft 1s ease-out forwards;
}

.hero__image-container {
    animation: fadeInRight 1.5s ease-out forwards;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

/* Tablets & Below */
@media (max-width: 992px) {
    .hero {
        flex-direction: column; /* Stack vertically */
        min-height: auto;
    }

    /* Image goes on top for visual impact on mobile */
    .hero__image-container {
        flex: none;
        width: 100%;
        height: 40vh;
        min-height: 300px;
        order: 1; /* Image first */
    }

    /* Box goes below */
    .hero__box {
        flex: none;
        width: 100%;
        order: 2; /* Text second */
        padding: 3rem 1.5rem;
        align-items: center;
        text-align: center;
        box-shadow: none;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

/* Mobile Adjustments */
@media (max-width: 575px) {
    .hero__box {
        padding: 2.5rem 1rem;
    }

    .hero__title {
        margin-bottom: 1rem;
    }

    .hero__cta .btn {
        width: 100%;
        margin-bottom: 1rem;
        margin-left: 0;
    }
}

/* ============================================
   MEDIA QUERY: 1440px AND ABOVE
   ============================================ */
@media (min-width: 1440px) {
    .hero__cta {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }

    .hero__cta .btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 1rem;
        min-width: 280px;
        text-align: center;
    }

    .hero__cta .btn--outline {
        margin-bottom: 0;
    }
}

/* =====================================================
   LARGE SCREEN HERO (1440px+)
   ===================================================== */
@media (min-width: 1440px) {
    .hero {
        min-height: 84vh;
        max-height: 900px; /* Prevents the hero becoming a full-page monster */
    }

    .hero__box {
        flex: 0 0 40%; /* Slightly narrower content box on large screens */
        padding: 5% 6%;
    }

    .hero__title {
        font-size: 6rem;
    }

    .hero__description {
        font-size: 1.25rem;
        max-width: 520px;
    }
}

/* Ultra-wide (1920px+) */
@media (min-width: 1920px) {
    .hero {
        margin: 0 auto;
        max-height: 850px;
    }

    .hero__box {
        padding: 4% 8%;
    }
}

/* Landscape phones (568px and below, landscape orientation) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }

    .hero__image-container {
        height: 60vw;
        min-height: 200px;
    }

    .hero__box {
        padding: 2rem 1.5rem;
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.75rem;
    }
}

/* Extra small phones (375px and below) */
@media (max-width: 375px) {
    .hero__box {
        padding: 2rem 1rem;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__description {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        position: relative;
        min-height: 59svh;
        align-items: stretch;
    }

    /* Image fills the full hero */
    .hero__image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: unset;
    }

    .hero__image {
        object-position: center 15%;
    }

    /* Slightly lighter gradient than mobile — more image visible */
    .hero__image-overlay {
        background: linear-gradient(
            to top,
            rgba(20, 15, 10, 0.82) 0%,
            rgba(20, 15, 10, 0.38) 40%,
            rgba(20, 15, 10, 0.04) 100%
        );
    }

    /* Text box overlays at the bottom left */
    .hero__box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 55%; /* Doesn't span full width — leaves image breathing room on the right */
        max-width: 560px;
        background: transparent;
        box-shadow: none;
        padding: 3rem 3.5rem 4rem;
        align-items: flex-start;
        text-align: left;
        z-index: 3;
        order: unset;
    }

    .hero__tagline {
        color: rgba(249, 225, 180, 0.85);
        border-bottom-color: rgba(249, 225, 180, 0.5);
    }

    .hero__title {
        color: #ffffff;
        font-size: clamp(3.5rem, 7vw, 5rem);
        margin-bottom: 1rem;
        text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    }

    .hero__title span {
        color: var(--color-gold-dark);
    }

    .hero__description {
        color: rgba(255, 255, 255, 0.82);
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 460px;
    }

    .hero__cta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero__cta .btn {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1.5px solid rgba(255, 255, 255, 0.6);
        color: #ffffff;
        padding: 0.95rem 2.2rem;
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .hero__cta .btn:hover {
        background-color: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        transform: none;
    }
}

/* iPad Pro / large tablets in portrait (1024px) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .hero__box {
        width: 65%;
        padding: 3rem 3rem 5rem;
    }

    .hero__title {
        font-size: clamp(3.8rem, 8vw, 5.5rem);
    }
}

/* Tablets in landscape — more like a small desktop, keep split layout */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 85svh;
    }

    .hero__box {
        width: 48%;
        padding: 2.5rem 3rem 3.5rem;
    }

    .hero__title {
        font-size: clamp(3rem, 5.5vw, 4.5rem);
    }

    .hero__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        flex-direction: column;
        min-height: 65svh; /* svh = small viewport height, accounts for mobile browser chrome */
        align-items: stretch;
    }

    /* Image fills the entire hero */
    .hero__image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: unset;
    }

    .hero__image {
        object-position: center 15%; /* Keep focus on the face */
    }

    /* Gradient overlay rising from the bottom */
    .hero__image-overlay {
        background: linear-gradient(
            to top,
            rgba(20, 15, 10, 0.88) 0%,
            rgba(20, 15, 10, 0.45) 45%,
            rgba(20, 15, 10, 0.05) 100%
        );
    }

    /* Text box floats over the image at the bottom */
    .hero__box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 2rem 1.75rem 3rem;
        align-items: flex-start;
        text-align: left;
        z-index: 3;
        order: unset;
    }

    /* Flip text colours for dark background */
    .hero__tagline {
        color: rgba(249, 225, 180, 0.85); /* your --color-gold, softened */
        border-bottom-color: rgba(249, 225, 180, 0.5);
    }

    .hero__title {
        color: #ffffff;
        font-size: clamp(2.8rem, 12vw, 4rem);
        margin-bottom: 0.75rem;
        text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }

    .hero__title span {
        color: var(--color-gold-dark); /* gold italic stays */
    }

    .hero__description {
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    /* Keep only the primary CTA on mobile, hide secondary if present */
    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .hero__cta .btn--outline {
        display: none; /* Hide secondary button on mobile to reduce clutter */
    }

    .hero__cta .btn {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1.5px solid rgba(255, 255, 255, 0.6);
        color: #ffffff;
        width: auto;
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 0.12em;
    }

    .hero__cta .btn:hover {
        background-color: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        transform: none;
    }
}

/* Very small phones — tighten everything slightly */
@media (max-width: 390px) {
    .hero__box {
        padding: 1.5rem 1.25rem 2.5rem;
    }

    .hero__title {
        font-size: 2.6rem;
    }

    .hero__description p:last-child {
        display: none; /* Drop the second description line on tiny screens */
    }
}