/* ============================================================
   EVENTS BY BAYLA — ELEVATED MASTER STYLESHEET v2
   Cinematic. Editorial. Luxury studio-level design.
   Mobile-first. Base = 375px. Desktop via min-width queries.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Great+Vibes&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --navy: #243444;
    --navy-deep: #131E2A;
    --navy-mid: #1E2F40;
    --navy-light: #2E4258;
    --ivory: #F5F0EB;
    --ivory-warm: #FAF7F2;
    --ivory-mid: #F0EAE2;
    --ivory-dark: #E2D9CE;
    --gold: #C9A96E;
    --gold-light: #DEC08A;
    --gold-dim: rgba(201, 169, 110, 0.35);
    --charcoal: #1E1E1E;
    --muted: #7A8A9A;
    --white: #FFFFFF;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    --font-script: 'Great Vibes', cursive;

    --section-py: 5rem;
    --section-px: 1.5rem;

    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration-fast: 220ms;
    --duration-med: 420ms;
    --duration-slow: 700ms;
    --duration-cinematic: 1100ms;

    --radius-sm: 3px;
    --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.12);
    --shadow-navy: 0 8px 48px rgba(19, 30, 42, 0.28);
    --shadow-deep: 0 24px 64px rgba(19, 30, 42, 0.45);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--ivory-warm);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ============================================================
   3. TYPOGRAPHY — EDITORIAL SCALE
   ============================================================ */
.heading-cinematic {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 13vw, 8.5rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-style: italic;
}

.heading-display {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.01em;
}

.heading-xl {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.heading-lg {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
}

.heading-md {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    font-weight: 500;
    line-height: 1.3;
}

.heading-sm {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.script-accent {
    font-family: var(--font-script);
    font-size: 1.8em;
    color: var(--gold);
    display: block;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.1rem;
}

.body-lead {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 300;
    line-height: 2;
    font-style: italic;
    color: var(--navy-mid);
}

.body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.body-sm {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
}

.text-ivory {
    color: var(--ivory);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--muted);
}

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

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white);
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: var(--section-px);
}

.section {
    padding-block: var(--section-py);
    padding-inline: var(--section-px);
}

.section--navy {
    background-color: var(--navy);
}

.section--navy-deep {
    background-color: var(--navy-deep);
}

.section--ivory {
    background-color: var(--ivory);
}

.section--ivory-warm {
    background-color: var(--ivory-warm);
}

.section--ivory-mid {
    background-color: var(--ivory-mid);
}

/* Gold rule divider */
.divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.25rem auto;
}

.divider--left {
    margin: 1.25rem 0;
}

.divider--wide {
    width: 100%;
    max-width: 1280px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    margin-inline: auto;
}

/* ============================================================
   5. BUTTONS — REFINED MICRO-INTERACTIONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0 1.875rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    transition:
        background-color var(--duration-med) var(--ease-luxury),
        color var(--duration-med) var(--ease-luxury),
        border-color var(--duration-med) var(--ease-luxury),
        transform var(--duration-slow) var(--ease-luxury),
        box-shadow var(--duration-slow) var(--ease-luxury);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease-luxury);
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Primary — ivory */
.btn--primary {
    background: var(--ivory);
    color: var(--navy-deep);
    border: 1px solid var(--ivory);
}

.btn--primary:hover {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ivory);
    transform: translateY(-2px);
}

/* Outline gold */
.btn--outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--gold-dim);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Dark navy */
.btn--dark {
    background: var(--navy);
    color: var(--ivory);
    border: 1px solid var(--navy);
}

.btn--dark:hover {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* WhatsApp — refined navy-toned */
.btn--whatsapp {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(37, 211, 102, 0.5);
}

.btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: #25D366;
    color: #66e8a0;
    transform: translateY(-2px);
}

/* Full width on mobile */
.btn--full {
    width: 100%;
}

/* Button group — vertical mobile */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: stretch;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem var(--section-px);
    transition:
        background-color var(--duration-med) var(--ease-luxury),
        border-bottom-color var(--duration-med) var(--ease-luxury),
        box-shadow var(--duration-med) var(--ease-luxury);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(19, 30, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--gold-dim);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

/* Header: on mobile — logo left, hamburger right.
   On desktop — centred logo with nav links split either side. */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin-inline: auto;
    position: relative;
}

/* Logo: cream-bg JPG — screen blend makes bg disappear on dark header;
   invert turns dark navy text into white */
.header__logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.header__logo img {
    height: 72px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: invert(1) contrast(1.05) brightness(1.5);
}

.header__nav {
    display: none;
}

/* Nav links — split into left/right halves on desktop */
.header__nav-left,
.header__nav-right {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header__nav-link {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.78);
    padding-bottom: 2px;
    position: relative;
    transition: color var(--duration-fast) var(--ease-luxury);
}

/* Refined underline slide-in */
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-med) var(--ease-luxury);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--ivory);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ivory);
    transition: all var(--duration-med) var(--ease-luxury);
    transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--navy-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-slow) var(--ease-luxury);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 3rem;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 9vw, 4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(245, 240, 235, 0.7);
    letter-spacing: 0.02em;
    min-height: 64px;
    display: flex;
    align-items: center;
    transition: color var(--duration-fast) var(--ease-luxury);
    padding: 0.3rem 1rem;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--gold);
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-dim);
    width: 75%;
    text-align: center;
}

.mobile-menu__contact a {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color var(--duration-fast);
}

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

/* ============================================================
   7. HERO — CINEMATIC
   ============================================================ */
.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--navy-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    transform-origin: center;
    will-change: transform;
}

/* Dual gradient overlay for cinematic depth — strengthened for readability */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(19, 30, 42, 0.88) 0%, rgba(19, 30, 42, 0.45) 60%, rgba(19, 30, 42, 0.65) 100%),
        linear-gradient(to bottom, rgba(19, 30, 42, 0.45) 0%, rgba(19, 30, 42, 0.30) 50%, rgba(19, 30, 42, 0.92) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 7rem var(--section-px) 5rem;
    max-width: 1280px;
    margin-inline: auto;
    width: 100%;
}

/* Left-aligned on large screens, centered on mobile */
.hero__text {
    text-align: center;
    max-width: 100%;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;

    /* Hidden firmly on mobile */
    display: none;


    /* Reveal animation */
    opacity: 0;
    transform: translateY(12px);
    animation: heroReveal 0.8s var(--ease-luxury) 0.2s forwards;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--gold-dim);
}

/* Both title lines: same serif weight, unified look */
.hero__title-line1 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8.2vw, 7.8rem);
    /* Same size as line 2 to keep balance */
    font-weight: 300;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--ease-luxury) 0.45s forwards;
}

.hero__title-line2 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8.2vw, 7.8rem);
    /* Scaled specifically to fit "EVENT PLANNING" perfectly on ~375px */
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--ivory);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--ease-luxury) 0.65s forwards;
    margin-top: 0.5rem;
    /* Space between line 1 and 2 */
}

/* Gold accent word */
.hero__accent {
    color: var(--gold);
    font-style: normal;
}

.hero__subtitle {
    margin: 3rem auto 0;
    max-width: 460px;
    font-family: var(--font-sans);
    font-size: clamp(0.88rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 2.1;
    color: rgba(245, 240, 235, 0.95);
    letter-spacing: 0.06em;
    opacity: 0;
    animation: heroReveal 1s var(--ease-luxury) 0.9s forwards;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    max-width: 100%;
    margin: 3.5rem auto 0;
    opacity: 0;
    animation: heroReveal 1s var(--ease-luxury) 1.15s forwards;
}

.hero__ctas .btn {
    width: 90%;
    max-width: 380px;
    min-height: 54px;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: heroReveal 1s var(--ease-luxury) 1.6s forwards;
}

.hero__scroll-hint span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.35);
    font-weight: 600;
}

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

/* Animations */
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0.2;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.2);
    }
}

/* Inner page hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    padding: 6rem var(--section-px) 3.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin-inline: auto;
    width: 100%;
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 8vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.05;
    color: var(--ivory);
}

.page-hero__subtitle {
    color: rgba(245, 240, 235, 0.55);
    font-size: 0.82rem;
    font-weight: 300;
    margin-top: 1rem;
    max-width: 480px;
    letter-spacing: 0.06em;
    line-height: 1.9;
}

/* ============================================================
   8. INTRODUCTION — EDITORIAL QUOTE STYLE
   ============================================================ */
.intro {
    background: var(--ivory-warm);
    padding-block: 7rem 6.5rem;
    padding-inline: var(--section-px);
    text-align: center;
    position: relative;
}

.intro::before {
    content: '\201C';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--gold-dim);
    line-height: 1;
    pointer-events: none;
    opacity: 0.4;
}

.intro__inner {
    max-width: 800px;
    margin-inline: auto;
    position: relative;
}

.intro__body {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.95;
    color: var(--navy-mid);
}

/* ============================================================
   9. SERVICES PREVIEW — BALANCED CARD GRID
   ============================================================ */
.services-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0.5rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    transition:
        background var(--duration-med) var(--ease-luxury),
        transform var(--duration-med) var(--ease-luxury),
        box-shadow var(--duration-med) var(--ease-luxury);
}

.service-card:last-child {
    border-bottom: none;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 169, 110, 0.1);
}

/* Accent bar top */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.6s var(--ease-luxury);
}

.service-card:hover::before {
    width: 3rem;
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.7;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.2;
}

.service-card__body {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.75);
    line-height: 1.95;
    flex: 1;
    max-width: 44ch;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    transition: gap var(--duration-med) var(--ease-luxury), color var(--duration-fast);
    min-height: 44px;
}

.service-card__link:hover {
    gap: 1rem;
    color: var(--gold-light);
}

.service-card__arrow {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    position: relative;
    transition: width var(--duration-med) var(--ease-luxury);
    vertical-align: middle;
}

.service-card__arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    transform: rotate(45deg);
}

.service-card__link:hover .service-card__arrow {
    width: 36px;
}

.service-editorial-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

/* Number watermark */
.service-editorial-item__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--navy-light);
    opacity: 0.3;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.service-editorial-item__content {
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--gold-dim);
}

.service-editorial-item:last-child .service-editorial-item__content {
    border-bottom: 1px solid var(--gold-dim);
}

.service-editorial-item__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.15;
}

.service-editorial-item__body {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.9;
    max-width: 380px;
}

.service-editorial-item__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    transition: gap var(--duration-med) var(--ease-luxury), color var(--duration-fast);
    min-height: 44px;
}

.service-editorial-item__link:hover {
    gap: 1rem;
    color: var(--gold-light);
}

.service-editorial-item__link svg {
    width: 20px;
    height: 1px;
    position: relative;
}

.service-editorial-item__arrow {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    position: relative;
    transition: width var(--duration-med) var(--ease-luxury);
    vertical-align: middle;
}

.service-editorial-item__arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    transform: rotate(45deg);
}

.service-editorial-item__link:hover .service-editorial-item__arrow {
    width: 36px;
}

/* ============================================================
   10. PORTFOLIO — MASONRY/BENTO LUXURY LAYOUT
   ============================================================ */
.portfolio-section {
    padding-block: var(--section-py);
    padding-inline: var(--section-px);
}

/* Mobile: 2 columns with one large hero slot */
.portfolio-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 0.375rem;
}

/* First item spans 2 cols and 2 rows = hero */
.portfolio-bento__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: span 2;
}

/* Make some items taller for visual rhythm */
.portfolio-bento__item:nth-child(5),
.portfolio-bento__item:nth-child(10),
.portfolio-bento__item:nth-child(15),
.portfolio-bento__item:nth-child(20) {
    grid-row: span 2;
}

.portfolio-bento__item {
    position: relative;
    overflow: hidden;
    background: var(--ivory-mid);
    cursor: pointer;
}

.portfolio-bento__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.portfolio-bento__item:hover img {
    transform: scale(1.08);
}

.portfolio-bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 30, 42, 0.75) 0%, rgba(19, 30, 42, 0) 50%);
    opacity: 0;
    transition: opacity var(--duration-med) var(--ease-luxury);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.portfolio-bento__item:hover .portfolio-bento__overlay {
    opacity: 1;
}

.portfolio-bento__label {
    color: var(--ivory);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Placeholder style — refined, subtle, dark */
.portfolio-bento__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ivory-dark) 0%, var(--ivory-mid) 100%);
}

.portfolio-bento__placeholder svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
    opacity: 0.2;
}

.portfolio-bento__placeholder span {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.25;
}

/* ============================================================
   11. WHY CHOOSE US — STRUCTURED CARD GRID
   ============================================================ */
.why-us {
    background: var(--navy);
    padding-block: calc(var(--section-py) * 1.2);
    padding-inline: var(--section-px);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.why-us__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-left: 2px solid var(--gold);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition:
        background var(--duration-med) var(--ease-luxury),
        border-left-color var(--duration-fast),
        transform var(--duration-med) var(--ease-luxury);
}

.why-us__item:hover {
    background: rgba(255, 255, 255, 0.055);
    border-left-color: var(--gold-light);
    transform: translateY(-2px);
}

.why-us__item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.why-us__num {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    opacity: 0.65;
    flex-shrink: 0;
}

.why-us__title {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.3;
}

.why-us__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.72);
    line-height: 1.85;
    padding-left: 0;
}

/* ============================================================
   12. STATS STRIP (New: adds credibility between sections)
   ============================================================ */
.stats-strip {
    background: var(--navy-deep);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    padding: 3.5rem var(--section-px);
    display: flex;
    justify-content: center;
}

.stats-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
    max-width: 1280px;
    width: 100%;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.stat__num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.01em;
    line-height: 1;
}

.stat__label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   13. CTA BANNER — DRAMATIC
   ============================================================ */
.cta-banner {
    background: var(--navy-deep);
    padding-block: calc(var(--section-py) * 1.3);
    padding-inline: var(--section-px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Radial glow */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__inner {
    max-width: 700px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    color: var(--ivory);
    margin: 1rem 0;
}

.cta-banner__sub {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.07em;
    color: rgba(245, 240, 235, 0.72);
    margin-bottom: 2.75rem;
    line-height: 2;
}

.cta-banner__btns {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: stretch;
    max-width: 360px;
    margin-inline: auto;
}

/* ============================================================
   14. ABOUT BLOCKS
   ============================================================ */
.about-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.about-block__image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.about-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-luxury);
}

.about-block__image:hover img {
    transform: scale(1.04);
}

.about-block__content {
    padding: 3.5rem var(--section-px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.about-block__body {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal);
}

/* Founder */
.founder {
    background: var(--ivory);
    padding-block: calc(var(--section-py) * 1.2);
    padding-inline: var(--section-px);
    text-align: center;
}

.founder__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 1px solid var(--gold-dim);
    background: var(--ivory-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px var(--ivory), 0 0 0 9px var(--gold-dim);
}

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

.founder__name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.founder__role {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.founder__bio {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal);
    max-width: 560px;
    margin-inline: auto;
}

/* ============================================================
   15. SERVICES PAGE — FULL-WIDTH SPLIT SECTIONS
   ============================================================ */
.service-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

.service-split__image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.service-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-luxury);
}

.service-split:hover .service-split__image img {
    transform: scale(1.04);
}

/* Number overlay on image */
.service-split__image-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 300;
    color: white;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.service-split__content {
    padding: 3.5rem var(--section-px);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.service-split__number {
    font-family: var(--font-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.service-split__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.1;
}

.service-split__body {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal);
}

.service-split__includes {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0.5rem 0 1.25rem;
}

.service-split__include {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-block: 0.65rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.service-split__include:first-child {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.service-split__include svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-divider-full {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    margin-inline: var(--section-px);
}

/* ============================================================
   16. CONTACT PAGE
   ============================================================ */
.contact-page {
    padding-block: var(--section-py);
    padding-inline: var(--section-px);
    max-width: 1280px;
    margin-inline: auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contact-info__body {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--ivory-dark);
    text-decoration: none;
    min-height: 60px;
    transition: padding-left var(--duration-med) var(--ease-luxury);
}

.contact-detail:first-of-type {
    border-top: 1px solid var(--ivory-dark);
}

.contact-detail:hover {
    padding-left: 0.5rem;
}

.contact-detail__icon {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--duration-fast);
}

.contact-detail:hover .contact-detail__icon {
    background: var(--gold);
}

.contact-detail__icon svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.contact-detail:hover .contact-detail__icon svg {
    color: var(--navy);
}

.contact-detail__label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.15rem;
}

.contact-detail__value {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--charcoal);
}

.contact-wa-btn {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    border-top: 3px solid var(--gold);
    padding: 2.5rem 1.75rem;
}

.contact-form__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--ivory-dark);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.875rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--ivory-warm);
    border: 1px solid var(--ivory-dark);
    border-radius: 0;
    outline: none;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7B8D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    width: 100%;
}

.form-reassurance {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
}

.form-reassurance svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--gold-dim);
    padding-block: 4rem 2.5rem;
    padding-inline: var(--section-px);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.footer__logo img {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.4);
    line-height: 1.9;
    max-width: 260px;
    letter-spacing: 0.04em;
}

.footer__col-title {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

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

.footer__link {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.5);
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    transition: color var(--duration-fast), padding-left var(--duration-med) var(--ease-luxury);
    letter-spacing: 0.04em;
}

.footer__link:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.footer__contact-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.7;
}

.footer__contact-value {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.5);
    letter-spacing: 0.04em;
    transition: color var(--duration-fast);
}

.footer__contact-value:hover {
    color: var(--ivory);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.footer__copyright {
    font-size: 0.72rem;
    color: rgba(245, 240, 235, 0.25);
    font-weight: 300;
    letter-spacing: 0.08em;
}

/* ============================================================
   18. WHATSAPP BUBBLE — REFINED NAVY AESTHETIC
   ============================================================ */
/* ============================================================
   18. WHATSAPP BUBBLE — CLEAN & ELEGANT
   ============================================================ */
.wa-bubble {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 1100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1E3A2F;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        transform var(--duration-med) var(--ease-luxury),
        box-shadow var(--duration-med) var(--ease-luxury);
}

.wa-bubble:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(37, 211, 102, 0.5);
}

/* Gentle pulse ring */
.wa-bubble::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    animation: bubblePulse 2.8s ease-out infinite;
}

@keyframes bubblePulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.wa-bubble svg {
    width: 26px;
    height: 26px;
    fill: #25D366;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.wa-bubble__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--navy-deep);
    border: 1px solid var(--gold-dim);
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0.45rem 0.75rem;
    pointer-events: none;
    opacity: 0;
    transform: translateX(6px);
    transition: all var(--duration-fast) var(--ease-luxury);
    border-radius: 2px;
}

.wa-bubble:hover .wa-bubble__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   19. SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--duration-slow) var(--ease-luxury),
        transform var(--duration-slow) var(--ease-luxury);
}

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

.reveal-delay-1 {
    transition-delay: 120ms;
}

.reveal-delay-2 {
    transition-delay: 240ms;
}

.reveal-delay-3 {
    transition-delay: 360ms;
}

.reveal-delay-4 {
    transition-delay: 480ms;
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity var(--duration-slow) var(--ease-luxury), transform var(--duration-slow) var(--ease-luxury);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   20. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-left {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__eyebrow,
    .hero__title-line1,
    .hero__title-line2,
    .hero__subtitle,
    .hero__ctas {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================================
   21. TABLET 768px+
   ============================================================ */
@media (min-width: 768px) {
    :root {
        --section-py: 7rem;
        --section-px: 2.5rem;
    }

    /* Hero left-aligned */
    .hero__text {
        text-align: left;
    }

    .hero__eyebrow--desktop {
        display: flex;
        justify-content: flex-start;
    }

    .hero__eyebrow--desktop::after {
        max-width: 60px;
    }

    .hero__eyebrow--desktop::before {
        display: none;
    }

    .hero__ctas {
        flex-direction: row;
        max-width: unset;
        margin-inline: 0;
        gap: 1rem;
    }

    .hero__title-line1 {
        font-size: clamp(3.2rem, 11vw, 7.8rem);
        line-height: 1.0;
    }

    .hero__title-line2 {
        font-size: clamp(3.2rem, 11vw, 7.8rem);
        line-height: 1.0;
        margin-top: 0;
    }

    .hero__ctas .btn {
        width: auto;
        min-height: 48px;
    }

    .hero__subtitle {
        margin-inline: 0;
    }

    /* Portfolio */
    .portfolio-bento {
        grid-auto-rows: 220px;
        gap: 0.5rem;
    }


    /* Stats strip — horizontal layout with dividers */
    .stats-strip__inner {
        flex-direction: row;
        justify-content: space-evenly;
        gap: 0;
    }

    .stat {
        flex: 1;
        padding-inline: 2rem;
        position: relative;
    }

    /* Vertical gold divider between stat items */
    .stat+.stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: var(--gold-dim);
    }

    /* CTA banner */
    .cta-banner__btns {
        flex-direction: row;
        justify-content: center;
        max-width: unset;
        flex-wrap: wrap;
    }

    .cta-banner__btns .btn {
        width: auto;
    }

    /* Services card grid — 3 columns on tablet+ */
    .services-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .service-card {
        border-bottom: none;
        border-right: 1px solid rgba(201, 169, 110, 0.18);
    }

    .service-card:last-child {
        border-right: none;
    }

    /* Why Us — 2 columns */
    .why-us__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    /* About block */
    .about-block {
        grid-template-columns: 1fr 1fr;
    }

    .about-block__image {
        aspect-ratio: 4/5;
    }

    .about-block--reverse .about-block__image {
        order: 2;
    }

    .about-block--reverse .about-block__content {
        order: 1;
    }

    .about-block__content {
        padding: 4rem 3rem;
    }

    /* Service split */
    .service-split {
        grid-template-columns: 1fr 1fr;
    }

    .service-split__image {
        aspect-ratio: auto;
        min-height: 480px;
    }

    .service-split--reverse .service-split__image {
        order: 2;
    }

    .service-split--reverse .service-split__content {
        order: 1;
    }

    .service-split__content {
        padding: 4rem 3rem;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    /* Button groups */
    .btn-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn--full {
        width: auto;
    }
}

/* ============================================================
   22. DESKTOP 1024px+
   ============================================================ */
@media (min-width: 1024px) {
    :root {
        --section-py: 9rem;
        --section-px: 3rem;
    }

    /* Split-nav: hamburger hidden, left/right nav shown, logo centered */
    .header__hamburger {
        display: none;
    }

    /* Hide simple .header__nav (mobile fallback), show split halves */
    .header__nav {
        display: none;
    }

    .header__nav-left,
    .header__nav-right {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    /* Absolute-centered logo, nav sidebars fill each side */
    .header__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        column-gap: 3rem;
        align-items: center;
    }

    .header__nav-left {
        justify-content: flex-end;
        padding-right: 0.5rem;
    }

    .header__nav-right {
        justify-content: flex-start;
        padding-left: 0.5rem;
    }

    /* Hero parallax */
    .hero__bg {
        background-attachment: fixed;
    }

    /* Portfolio — more columns, better rhythm */
    .portfolio-bento {
        grid-auto-rows: 240px;
        gap: 0.625rem;
    }

    .portfolio-bento__item:nth-child(1) {
        grid-column: 1 / 3;
    }

    /* Services — 3 equal boxes */
    .services-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .service-card {
        border-bottom: none;
        border-right: 1px solid var(--gold-dim);
    }

    .service-card:last-child {
        border-right: none;
    }

    /* Footer 3-col */
    .footer__top {
        grid-template-columns: 1.8fr 1fr 1fr;
    }
}

/* ============================================================
   23. WIDE 1440px+
   ============================================================ */
@media (min-width: 1440px) {
    :root {
        --section-py: 10rem;
    }

    .portfolio-bento {
        grid-auto-rows: 280px;
    }

    .portfolio-bento__item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: span 2;
    }

    .portfolio-bento {
        grid-template-columns: repeat(5, 1fr);
    }
}