/* =========================================
   STARBOUND LUXE CO. — MAIN STYLESHEET
   Version: 1.0.0
   ========================================= */

/* =========================================
   1. CSS CUSTOM PROPERTIES
   ========================================= */
:root {
    /* Brand Colors — warm Explorateur-inspired palette */
    --navy:         #1c1816;
    --navy-800:     #231e1b;
    --navy-700:     #2a2420;
    --navy-600:     #332b26;
    --brand-navy:   #1a1a1a;
    --gold:         #c49a8a;
    --gold-light:   #d4afa0;
    --gold-muted:   #a8806e;
    --gold-faint:   rgba(196, 154, 138, 0.12);
    --cream:        #f7f2eb;
    --cream-dark:   #ede6da;
    --ivory:        #f7f2eb;
    --ivory-dark:   #e2d9ce;
    --white:        #ffffff;

    /* Text Colors */
    --text-dark:    #1a1a1a;
    --text-body:    #3d3830;
    --text-muted:   #7a7060;
    --text-light:   rgba(255, 255, 255, 0.80);
    --text-lighter: rgba(255, 255, 255, 0.55);

    /* Typography */
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-label:   'Cinzel', serif;
    --font-body:    'Jost', system-ui, sans-serif;

    /* Type Scale */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;

    /* Spacing */
    --section-py:     7rem;
    --section-py-sm:  4.5rem;
    --container-max:  1240px;
    --container-pad:  clamp(1.25rem, 5vw, 3rem);

    /* Transitions */
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
    --duration:     0.3s;
    --duration-slow:0.55s;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(9, 15, 30, 0.08);
    --shadow-md:  0 6px 24px rgba(9, 15, 30, 0.12);
    --shadow-lg:  0 16px 48px rgba(9, 15, 30, 0.18);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.25);

    /* Borders */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --border-gold: 1px solid rgba(212, 168, 83, 0.35);
    --border-light: 1px solid rgba(255, 255, 255, 0.12);
    --border-dark:  1px solid rgba(9, 15, 30, 0.10);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #1c1816;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--navy);
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.menu-open {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
}

p, h1, h2, h3, h4, h5, h6, li, a, span {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */

/* Eyebrow Labels */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    display: block;
    margin-bottom: 1rem;
}

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

.eyebrow--dark {
    color: var(--gold-muted);
}

/* Headings */
h1, h2, h3, h4, .h1, .h2, .h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--brand-navy);
}

h1, .h1 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

h2, .h2 {
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 300;
}

h3, .h3 {
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    font-weight: 400;
}

h4, .h4 {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 400;
}

/* Headline color variants */
.headline--light { color: var(--white); }
.headline--ivory { color: var(--ivory); }
.headline--gold  { color: var(--gold-light); font-style: italic; }

/* Body text */
.body-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.body-text--light {
    color: var(--text-light);
}

.body-text--lg {
    font-size: 1.175rem;
}

/* Decorative italic serif lead */
.lead-italic {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.45;
    color: var(--text-dark);
}

/* Section divider ornament */
.ornament {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 0.75rem;
}

/* =========================================
   4. LAYOUT & CONTAINER
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.container--narrow {
    max-width: 860px;
}

.container--wide {
    max-width: 1440px;
}

.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section--sm {
    padding-top: var(--section-py-sm);
    padding-bottom: var(--section-py-sm);
}

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

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

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

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

/* Grid helpers — minmax(0,1fr) prevents mobile overflow (master rules Section 5.2) */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}
.grid-2 > * { min-width: 0; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}
.grid-3 > * { min-width: 0; }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.grid-4 > * { min-width: 0; }

/* Section header block */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

/* =========================================
   5. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 0;
    transition:
        background-color var(--duration) var(--ease),
        color var(--duration) var(--ease),
        border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn--sm, .btn-sm {
    padding: 0.8rem 1.75rem;
    font-size: 0.75rem;
}

/* Primary — terracotta fill */
.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-primary:hover, .btn-primary:focus-visible {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(196, 154, 138, 0.35);
}

/* Secondary — outlined gold */
.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
    background-color: var(--gold);
    color: var(--white);
}

/* Outline light — for dark backgrounds */
.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover, .btn-outline-light:focus-visible {
    background-color: var(--white);
    color: var(--brand-navy);
    border-color: var(--white);
}

/* Ghost — no border, just arrow */
.btn-ghost {
    background: none;
    color: var(--gold);
    border: none;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
}

.btn-ghost::after {
    content: ' \2192';
    transition: transform var(--duration) var(--ease);
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

/* Focus ring */
.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* =========================================
   6. HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0;
    transition:
        background-color var(--duration-slow) var(--ease),
        padding var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease),
        backdrop-filter var(--duration) var(--ease);
}

/* Always dark — same as scrolled state */
.site-header:not(.is-scrolled) {
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scrolled state */
.site-header.is-scrolled {
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.20);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.25rem var(--container-pad);
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Always white logo — both transparent and scrolled dark header */
.logo-img--color { display: none; }
.logo-img--white  { display: block; }

/* Desktop Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--duration) var(--ease);
    white-space: nowrap;
}

.nav-link:hover,
.nav-item.is-active .nav-link {
    color: var(--gold-light);
}

.nav-arrow {
    font-size: 0.8em;
    transition: transform var(--duration) var(--ease);
}

.nav-item.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background-color: var(--navy);
    border: var(--border-gold);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition:
        opacity var(--duration) var(--ease),
        transform var(--duration) var(--ease),
        visibility var(--duration);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    padding: 0.55rem 1.25rem;
    transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.nav-dropdown li a:hover {
    color: var(--gold-light);
    background-color: rgba(212, 168, 83, 0.07);
}

/* Header Right */
.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-phone {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.70);
    white-space: nowrap;
    transition: color var(--duration) var(--ease);
}

.header-phone:hover {
    color: var(--gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px 4px;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--white);
    transition: opacity var(--duration), transform var(--duration);
}

/* Mobile Menu — Right Side Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background-color: var(--navy);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: 2rem 1.75rem 3rem;
    flex: 1;
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--white);
    display: block;
    text-align: right;
    margin-bottom: 2rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--duration);
}

.mobile-menu-close:hover { opacity: 1; }

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.80);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--duration);
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--gold-light);
}

/* Services accordion toggle row */
.mobile-nav-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.80);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    background: none;
    transition: color var(--duration);
}

.mobile-nav-services-toggle:hover,
.mobile-nav-services-toggle.is-open {
    color: var(--gold-light);
}

.mobile-nav-services-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    opacity: 0.6;
    margin-left: 0.5rem;
}

.mobile-nav-services-toggle.is-open .mobile-nav-services-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Services sub-links — collapsed by default */
.mobile-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(196, 154, 138, 0.25);
}

.mobile-nav-sub.is-open {
    max-height: 400px;
}

.mobile-nav-sub a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.45rem 0;
    transition: color var(--duration);
}

.mobile-nav-sub a:first-child { padding-top: 0.65rem; }
.mobile-nav-sub a:last-child  { padding-bottom: 0.65rem; }

.mobile-nav-sub a:hover { color: var(--gold-light); }

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-phone {
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 15, 30, 0.65);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-slow), visibility var(--duration-slow);
}

.mobile-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   7. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #1c1816;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.2s var(--ease);
    animation: heroZoom 14s ease infinite alternate;
}

.hero-slide.is-active {
    opacity: 1;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}

/* Dark overlay — directional: heavy bottom, lighter top-right */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(160deg, rgba(28,24,22,0.55) 0%, rgba(28,24,22,0.28) 50%, rgba(28,24,22,0.65) 100%),
        linear-gradient(to top, rgba(28,24,22,0.80) 0%, transparent 55%);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(4rem, 8vh, 7rem);
}

.hero-content .container {
    display: block;
}

.hero-text {
    max-width: 640px;
}

.hero-eyebrow {
    font-family: var(--font-label);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Right column of hero — credentials on desktop */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.hero-badge-strip {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: var(--border-light);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hero-badge img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.hero-badge span {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

/* Slide dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    right: var(--container-pad);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    border: none;
    cursor: pointer;
    transition: background var(--duration), transform var(--duration);
    padding: 0;
}

.hero-dot.is-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.hero-scroll-hint span {
    font-family: var(--font-label);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.40);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.40), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}

/* =========================================
   8. TRUST STRIP
   ========================================= */
.trust-strip {
    display: none;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item img {
    height: 38px;
    width: auto;
    object-fit: contain;
    opacity: 0.90;
    filter: brightness(1.05);
}

.trust-item-label {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.60);
    white-space: nowrap;
}

/* =========================================
   9. BRAND INTRODUCTION
   ========================================= */
.intro-section {
    padding: var(--section-py) 0;
    background-color: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.intro-content {}

.intro-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--brand-navy);
    margin-bottom: 1.75rem;
}

.intro-headline em {
    font-style: italic;
    color: var(--brand-navy);
}

.intro-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.intro-body + .intro-body {
    margin-top: 0;
}

.intro-actions {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Intro image panel */
.intro-image-panel {
    position: relative;
}

.intro-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.intro-photo-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 55%;
    height: 55%;
    border: 2px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

/* Location badge on photo */
.intro-location-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background-color: var(--brand-navy);
    color: var(--white);
    padding: 0.9rem 1.25rem;
    min-width: 160px;
    border-left: 3px solid var(--gold);
}

.intro-location-badge strong {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.2rem;
}

.intro-location-badge span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.80);
}

/* =========================================
   10. MEMORIAL / BRAND HEART
   ========================================= */
.memorial-section {
    position: relative;
    background-color: var(--navy);
    padding: var(--section-py) 0;
    overflow: hidden;
}

.memorial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.memorial-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.memorial-content {}

.memorial-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.75rem;
}

.memorial-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.memorial-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.memorial-pullquote {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    border-left: 2px solid var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

.memorial-pullquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.memorial-image-side {
    display: flex;
    justify-content: center;
}

.memorial-photo-frame {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.memorial-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.memorial-photo-accent {
    position: absolute;
    top: -1rem;
    right: -1rem;
    bottom: 1rem;
    left: 1rem;
    border: 1px solid rgba(212, 168, 83, 0.30);
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   11. WHY USE A TRAVEL ADVISOR
   ========================================= */
.why-section {
    background-color: var(--ivory);
    padding: var(--section-py) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.why-item {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-top: 2px solid var(--brand-navy);
    transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(29, 61, 114, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.why-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* =========================================
   12. SERVICES PREVIEW
   ========================================= */
.services-section {
    background-color: var(--cream);
    padding: var(--section-py) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3.5rem;
}

.service-card {
    position: relative;
    background-color: var(--white);
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(29, 61, 114, 0.08);
    display: flex;
    flex-direction: column;
    transition: background-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease);
}

.service-card:hover {
    background-color: var(--cream);
    box-shadow: var(--shadow-sm);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(29, 61, 114, 0.12);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.service-card-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    flex: 1;
    margin-bottom: 1.75rem;
}

.service-card-link {
    font-family: var(--font-label);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--duration), gap var(--duration);
    margin-top: auto;
}

.service-card-link::after {
    content: '\2192';
    transition: transform var(--duration) var(--ease);
}

.service-card:hover .service-card-link {
    color: var(--gold);
    gap: 0.75rem;
}

/* Services CTA row */
.services-footer {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   13. FEATURED DESTINATIONS
   ========================================= */
.destinations-section {
    background-color: var(--navy);
    padding: var(--section-py) 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3.5rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: block;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,15,30,0.85) 0%, rgba(9,15,30,0.15) 60%);
    transition: background var(--duration-slow) var(--ease);
}

.destination-card:hover .destination-card-overlay {
    background: linear-gradient(to top, rgba(9,15,30,0.92) 0%, rgba(9,15,30,0.25) 60%);
}

.destination-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem;
    z-index: 2;
}

.destination-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.destination-card-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 300;
}

.destination-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.destination-card:hover .destination-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   14. PLANNING PROCESS
   ========================================= */
.process-section {
    background-color: var(--white);
    padding: var(--section-py) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: 16%;
    right: 16%;
    height: 1px;
    background: var(--ivory-dark);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(29, 61, 114, 0.25);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--brand-navy);
    margin: 0 auto 1.75rem;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.process-step-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* =========================================
   15. SERVICES & FEES PREVIEW
   ========================================= */
.fees-section {
    background-color: var(--white);
    padding: var(--section-py) 0;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.fee-card {
    background-color: var(--cream);
    padding: 2.25rem 2rem;
    border-top: 2px solid var(--brand-navy);
    transition: box-shadow var(--duration) var(--ease);
}

.fee-card:hover {
    box-shadow: var(--shadow-sm);
}

.fee-card-type {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.75rem;
}

.fee-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.fee-card-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

.fees-note {
    margin-top: 2.5rem;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
}

.fees-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* =========================================
   16. CREDENTIALS
   ========================================= */
.credentials-section {
    background-color: var(--cream-dark);
    padding: var(--section-py-sm) 0;
}

.credentials-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

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

.credential-item img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.credential-item:hover img {
    transform: translateY(-2px);
    opacity: 0.85;
}

.credential-name {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* =========================================
   17. SUPPLIER PARTNERS
   ========================================= */
.suppliers-section {
    background-color: var(--white);
    padding: var(--section-py-sm) 0;
    border-top: 1px solid rgba(29, 61, 114, 0.06);
}

.suppliers-scroll-wrapper {
    overflow: hidden;
    margin-top: 2.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.supplier-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: supplierScroll 40s linear infinite;
}

.supplier-track:hover {
    animation-play-state: paused;
}

@keyframes supplierScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.supplier-logo {
    flex-shrink: 0;
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.45;
    filter: saturate(0);
    transition: opacity var(--duration), filter var(--duration);
}

.supplier-logo:hover {
    opacity: 0.75;
    filter: saturate(0.3);
}

/* =========================================
   18. INQUIRY CTA
   ========================================= */
.inquiry-cta-section {
    position: relative;
    background-color: var(--navy);
    padding: var(--section-py) 0;
    text-align: center;
    overflow: hidden;
}

.inquiry-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212,168,83,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.inquiry-cta-section .container {
    position: relative;
    z-index: 1;
}

.inquiry-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.inquiry-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.inquiry-sub {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.inquiry-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.inquiry-phone {
    font-family: var(--font-label);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.50);
    display: block;
    margin-top: 1.75rem;
}

.inquiry-phone a {
    color: rgba(255, 255, 255, 0.70);
    transition: color var(--duration);
}

.inquiry-phone a:hover {
    color: var(--gold-light);
}

/* =========================================
   19. FAQ PREVIEW
   ========================================= */
.faq-section {
    background-color: var(--cream);
    padding: var(--section-py) 0;
}

.faq-list {
    max-width: 760px;
    margin: 3.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--ivory-dark);
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: var(--brand-navy);
    cursor: pointer;
    transition: color var(--duration);
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--gold-muted);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--ivory-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    color: var(--gold-muted);
    transition: transform var(--duration) var(--ease), border-color var(--duration), background-color var(--duration);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--brand-navy);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   20. FOOTER
   ========================================= */
.site-footer {
    background-color: var(--navy);
    color: var(--white);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-contact-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    transition: color var(--duration);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--gold-light);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.40);
    margin-top: 0.25rem;
}

.footer-heading {
    font-family: var(--font-label);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--duration);
    text-decoration: none;
}

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

.footer-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer-links-mini {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.footer-links-mini a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.40);
    transition: color var(--duration);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.30);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.40);
    transition: color var(--duration);
    text-decoration: none;
}

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

.footer-credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.40);
    transition: color var(--duration);
    text-decoration: none;
}

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

/* =========================================
   21. PAGE HERO (interior pages)
   ========================================= */
.page-hero {
    position: relative;
    height: clamp(460px, 62vh, 680px);
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: clamp(3.5rem, 7vh, 6rem);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(28,24,22,0.80) 0%, rgba(28,24,22,0.28) 55%, rgba(28,24,22,0.15) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-top: clamp(5rem, 10vh, 8rem);
}

.page-hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.page-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
}

/* =========================================
   22. ABOUT PAGE
   ========================================= */

/* Story grid */
.about-story {
    background-color: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

.about-story-image {
    position: relative;
    top: 0;
}

.about-portrait {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.about-portrait-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 55%;
    height: 55%;
    border: 2px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

.about-location-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background-color: var(--brand-navy);
    color: var(--white);
    padding: 0.9rem 1.25rem;
    min-width: 170px;
    border-left: 3px solid var(--gold);
}

.about-location-badge strong {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.2rem;
}

.about-location-badge span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.80);
    display: block;
}

.about-location-sub {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-top: 0.15rem;
}

/* Quick facts */
.about-quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ivory-dark);
}

.about-fact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-fact-label {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.about-fact-value {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.5;
}

.about-fact-value a {
    color: var(--gold-muted);
    transition: color var(--duration);
}

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

/* Credentials section */
.about-credentials {
    background-color: var(--ivory);
    padding: var(--section-py) 0;
}

.about-cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.about-cred-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--brand-navy);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow var(--duration) var(--ease);
}

.about-cred-card:hover {
    box-shadow: var(--shadow-md);
}

.about-cred-badge {
    display: flex;
    align-items: center;
    height: 60px;
}

.about-cred-badge img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.about-cred-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1.2;
}

.about-cred-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Personal travel */
.about-travel {
    background-color: var(--white);
}

.about-destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-top: 3.5rem;
}

.about-dest-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ivory-dark);
}

.about-dest-icon {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
    padding-top: 0.55rem;
    letter-spacing: 0;
}

.about-dest-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.4rem;
}

.about-dest-detail {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Approach / what to expect */
.about-approach {
    background-color: var(--ivory);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.about-approach-item {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-top: 2px solid var(--brand-navy);
}

.about-approach-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-approach-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.about-approach-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* About page responsive */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-cred-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: clamp(280px, 45vh, 420px);
    }

    .about-quick-facts {
        grid-template-columns: 1fr;
    }

    .about-destinations-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   23. SERVICES PAGE
   ========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Service detail rows — alternating layout */
.services-detail-section {
    background-color: var(--ivory);
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    padding: var(--section-py) 0;
    border-bottom: 1px solid var(--ivory-dark);
}

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

.service-detail-row--reverse .service-detail-content {
    order: 2;
}

.service-detail-row--reverse .service-detail-image {
    order: 1;
}

.service-detail-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.service-detail-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.service-detail-list {
    list-style: none;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.service-detail-list li {
    font-size: 1rem;
    color: var(--text-body);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.service-detail-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail-row--reverse .service-detail-content {
        order: 1;
    }

    .service-detail-row--reverse .service-detail-image {
        order: 2;
    }
}

/* =========================================
   24. WHY USE A TRAVEL ADVISOR PAGE
   ========================================= */
.why-reasons-section {
    background-color: var(--white);
    padding: var(--section-py) 0;
}

.why-reason-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem 3rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--ivory-dark);
    align-items: start;
}

.why-reason-block:first-child {
    padding-top: 0;
}

.why-reason-block:last-child {
    border-bottom: none;
}

.why-reason-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1;
    text-align: center;
    padding-top: 0.25rem;
}

.why-reason-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-reason-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.why-reason-callout {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--gold);
    background-color: var(--cream-dark);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 12px rgba(196,154,138,0.13);
}

.why-reason-callout p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-muted);
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0.01em;
}

/* What advisors do section */
.what-advisors-do {
    background-color: var(--ivory);
}

.what-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.what-do-item {
    background: var(--white);
    padding: 2.25rem 2rem;
    border-top: 2px solid var(--brand-navy);
}

.what-do-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 1.25rem;
}

.what-do-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.what-do-list li {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.what-do-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 1024px) {
    .why-reason-block {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem 2rem;
    }

    .what-do-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-reason-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-reason-num {
        text-align: left;
        font-size: 2.5rem;
    }
}

/* =========================================
   25. SERVICES & FEES PAGE
   ========================================= */
.fees-full-section {
    background-color: var(--white);
    padding: var(--section-py) 0;
}

.fees-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fee-full-card {
    background-color: var(--ivory);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--brand-navy);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow var(--duration) var(--ease);
    height: 100%;
}

.fee-full-card:hover {
    box-shadow: var(--shadow-md);
}

.fee-full-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fee-full-category {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.fee-full-price-tag {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-muted);
    font-style: italic;
    background: rgba(196, 154, 138, 0.1);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    border: 1px solid rgba(196, 154, 138, 0.3);
}

.fee-full-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1.2;
}

.fee-full-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.fee-full-includes {
    margin-top: auto;
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
    border-left: 2px solid var(--gold-faint);
    min-height: 190px;
}

.page-services .services-intro,
.page-why-advisor .why-advisor-intro,
.page-fees .fees-intro {
    background-color: var(--ivory);
}

.page-services .services-intro h2,
.page-why-advisor .why-advisor-intro h2,
.page-fees .fees-intro h2,
.page-services .services-intro .body-text,
.page-why-advisor .why-advisor-intro .body-text,
.page-fees .fees-intro .body-text {
    color: var(--brand-navy);
}

.fee-full-includes-label {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.75rem;
}

.fee-full-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.fee-full-includes li {
    font-size: 0.875rem;
    color: var(--text-body);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.55;
}

.fee-full-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 1px;
    background: var(--gold-muted);
}

/* Fees FAQ section */
.fees-faq {
    background-color: var(--ivory);
}

@media (max-width: 1024px) {
    .fees-full-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   26. FAQ PAGE
   ========================================= */
.faq-page-section {
    background-color: var(--white);
}

.faq-page-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-category-nav {
    position: sticky;
    top: 100px;
}

.faq-nav-label {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    display: block;
    margin-bottom: 1rem;
}

.faq-category-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.faq-category-nav a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.45rem 0;
    border-left: 2px solid var(--ivory-dark);
    padding-left: 0.85rem;
    transition: color var(--duration), border-color var(--duration);
    line-height: 1.4;
}

.faq-category-nav a:hover {
    color: var(--gold-muted);
    border-color: var(--gold);
}

.faq-category-group {
    margin-bottom: 3.5rem;
    scroll-margin-top: 100px;
}

.faq-category-title {
    font-family: var(--font-label);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ivory-dark);
}

@media (max-width: 1024px) {
    .faq-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-category-nav {
        position: static;
        display: none;
    }
}

/* =========================================
   27. START PLANNING PAGE
   ========================================= */
.page-hero--short {
    height: clamp(360px, 45vh, 500px);
}

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

.planning-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.planning-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.planning-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.planning-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gold-muted);
    flex-shrink: 0;
    background: var(--white);
}

.planning-step-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.4rem;
}

.planning-step-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

.planning-direct-contact {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ivory-dark);
}

.planning-contact-label {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.5rem;
}

.planning-contact-link {
    display: block;
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 0.25rem;
    transition: color var(--duration);
}

.planning-contact-link:hover {
    color: var(--gold-muted);
}

.planning-form-panel {
    background-color: var(--ivory);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--brand-navy);
}

.planning-form-header {
    margin-bottom: 1.75rem;
}

.planning-form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.planning-form-sub {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
}

.planning-travefy-wrap {
    position: relative;
}

.planning-travefy-frame {
    width: 100%;
    min-height: 520px;
    border: none;
    display: block;
    background: var(--white);
}

.planning-travefy-fallback {
    display: none;
    margin-top: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    text-align: center;
    font-size: 1rem;
    color: var(--text-body);
}

/* ─── INQUIRY FORM ─────────────────────────────────── */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.iq-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.iq-group--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.iq-field { display: flex; flex-direction: column; gap: 0.4rem; }

.iq-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-navy);
    letter-spacing: 0.02em;
}

.iq-hint {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.iq-req { color: var(--gold); margin-left: 2px; }

.iq-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ivory-dark);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.iq-input:focus {
    border-color: var(--gold);
}

.iq-textarea {
    resize: vertical;
    min-height: 90px;
}

.iq-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.iq-radio-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.iq-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--text-body);
}

.iq-radio-label input[type="radio"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Budget / Hotel — card-style radio grid */
.iq-radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.iq-radio-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--ivory-dark);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-body);
    transition: border-color 0.2s, background 0.2s;
}

.iq-radio-card input[type="radio"] {
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}

.iq-radio-card:hover,
.iq-radio-card.is-selected {
    border-color: var(--gold);
    background: var(--cream);
}

/* Vibe — checkbox card grid */
.iq-check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.iq-check-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--ivory-dark);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-body);
    transition: border-color 0.2s, background 0.2s;
}

.iq-check-card input[type="checkbox"] {
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}

.iq-check-card:hover,
.iq-check-card.is-selected {
    border-color: var(--gold);
    background: var(--cream);
}

.iq-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.iq-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -0.5rem;
}

/* Error banner */
.inquiry-errors {
    background: #fdf2f2;
    border: 1px solid #e8c4c4;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #8b2e2e;
    margin-bottom: 1rem;
}

.inquiry-errors ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}

/* Success state */
.inquiry-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-top: 2px solid var(--gold);
}

.inquiry-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.inquiry-success-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.inquiry-success-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .iq-group--2  { grid-template-columns: 1fr; }
    .iq-radio-grid { grid-template-columns: repeat(2, 1fr); }
    .iq-check-grid { grid-template-columns: 1fr; }
}

/* Planning tips grid */
.section--ivory {
    background-color: var(--ivory);
}

.planning-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.planning-tip {
    padding: 2rem 1.75rem;
    background: var(--white);
    border-top: 2px solid var(--gold);
}

.planning-tip-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.65rem;
}

.planning-tip-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

@media (max-width: 1024px) {
    .planning-layout {
        grid-template-columns: 1fr;
    }

    .planning-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fee-full-includes {
        min-height: 0;
    }

    .planning-tips-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   28. CONTACT PAGE
   ========================================= */
.contact-section {
    background-color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-intro {
    margin-bottom: 2.5rem;
}

.contact-details-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-details-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--ivory-dark);
    transition: background-color var(--duration);
    text-decoration: none;
    color: inherit;
}

.contact-method:last-child {
    border-bottom: none;
}

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

.contact-method-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ivory-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    flex-shrink: 0;
}

.contact-method-label {
    font-family: var(--font-label);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.contact-method-value {
    font-size: 1rem;
    color: var(--brand-navy);
    display: block;
    transition: color var(--duration);
    line-height: 1.4;
}

.contact-method-link {
    color: var(--gold-muted) !important;
}

.contact-method-link:hover {
    color: var(--gold) !important;
}

.contact-method-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.15rem;
}

.contact-response-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--ivory);
    border-left: 2px solid var(--gold-faint);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Contact CTA panel */
.contact-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cta-card {
    background-color: var(--navy);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--brand-navy);
}

.contact-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.contact-cta-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
}

.contact-cta-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    text-align: center;
}

.contact-faq-prompt {
    background-color: var(--ivory);
    padding: 2rem;
    border-top: 2px solid var(--ivory-dark);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-faq-prompt p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Contact about strip */
.contact-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.contact-about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-about-inner {
        grid-template-columns: 1fr;
    }

    .contact-about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =========================================
   29. SERVICE SUB-PAGES
   ========================================= */

/* Breadcrumb */
.service-breadcrumb {
    background-color: var(--ivory);
    border-bottom: 1px solid var(--ivory-dark);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1;
}

.breadcrumb-list a {
    color: var(--gold-muted);
    text-decoration: none;
    transition: color var(--duration);
}

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

.breadcrumb-list [aria-current="page"] {
    color: var(--text-body);
}

/* Service page 2-col grid */
.service-page-intro {
    background-color: var(--white);
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

/* Credential highlight block (for Sandals/NCL) */
.service-credential-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--ivory);
    border-left: 3px solid var(--gold);
    margin-bottom: 1.75rem;
}

.svc-badge-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.svc-credential-title {
    font-family: var(--font-label);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.3rem;
}

.svc-credential-sub {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* Sidebar card */
.service-page-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-card {
    background-color: var(--ivory);
    padding: 2rem;
    border-top: 2px solid var(--brand-navy);
    margin-bottom: 1.5rem;
}

.service-sidebar-title {
    font-family: var(--font-label);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1.25rem;
}

.service-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.service-sidebar-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.55;
}

.service-sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

.service-sidebar-cta {
    background-color: var(--navy);
    padding: 1.75rem;
    border-top: 2px solid var(--gold);
}

.service-sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

/* Destination grid for sub-pages */
.service-destinations {
    /* uses section--ivory */
}

.svc-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.svc-dest-item {
    padding: 1.75rem;
    background: var(--white);
    border-top: 2px solid var(--brand-navy);
}

.svc-dest-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.svc-dest-detail {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* Service process section */
.service-process {
    background-color: var(--white);
}

@media (max-width: 1024px) {
    .service-page-grid {
        grid-template-columns: 1fr;
    }

    .service-page-sidebar {
        position: static;
    }

    .svc-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-dest-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   30. LEGAL PAGES (privacy, terms)
   ========================================= */
.legal-section {
    background-color: var(--white);
}

.legal-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
}

.legal-updated {
    font-family: var(--font-label);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

.legal-body h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 400;
    color: var(--brand-navy);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ivory-dark);
}

.legal-body h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-body p {
    margin-bottom: 1.25rem;
}

.legal-body ul {
    list-style: none;
    margin: 0.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.legal-body ul li {
    padding-left: 1.25rem;
    position: relative;
}

.legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.legal-body a {
    color: var(--gold-muted);
    text-decoration: underline;
    text-decoration-color: rgba(184, 146, 74, 0.35);
    transition: color var(--duration);
}

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

/* =========================================
   31. FLOATING WIDGET
   ========================================= */
.float-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(196, 154, 138, 0.50);
    transition: background-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.float-call-btn:hover {
    background: var(--gold-light);
    transform: scale(1.08);
}

/* =========================================
   32. COOKIE BANNER
   ========================================= */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--navy-800);
    border-top: 1px solid rgba(212,168,83,0.25);
    padding: 1rem var(--container-pad);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(212,168,83,0.4);
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-label);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 0;
    cursor: pointer;
    transition: background-color var(--duration), color var(--duration);
}

.cookie-btn--accept {
    background: var(--gold);
    color: var(--brand-navy);
    border: 1px solid var(--gold);
}
.cookie-btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-btn--decline {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.20);
}
.cookie-btn--decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* =========================================
   33. FOOTER SOCIAL
   ========================================= */
.footer-social {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--duration);
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--gold-light);
}

/* =========================================
   34. SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }
.reveal-delay-5 { transition-delay: 0.52s; }

/* =========================================
   22. MEDIA QUERIES
   ========================================= */

/* Large — ≤ 1200px */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {

    .main-nav,
    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content .container {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-dots {
        flex-direction: row;
        bottom: 1.5rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-image-panel {
        max-width: 480px;
        margin: 0 auto;
    }

    .memorial-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .memorial-image-side {
        order: -1;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .process-step-num {
        margin: 0;
        flex-shrink: 0;
    }

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

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
    :root {
        --section-py: 4.5rem;
        --section-py-sm: 3rem;
    }

    .header-right .btn {
        display: none;
    }

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

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

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

    .destination-card {
        aspect-ratio: 16 / 9;
    }

    .trust-strip-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .trust-strip-inner::-webkit-scrollbar {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .inquiry-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 38px;
    }

    .credentials-grid {
        gap: 1.5rem;
    }

    .float-call-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 46px;
        height: 46px;
    }
}

/* ─── MOBILE-SPECIFIC FIXES ─────────────────────────────────────── */

/* Footer bottom — reset right padding on mobile */
@media (max-width: 768px) {
    .footer-bottom {
        padding-right: 0;
    }
}

/* Inquiry form — collapse 2-col to 1-col on mobile */
@media (max-width: 680px) {
    .iq-group--2 {
        grid-template-columns: 1fr;
    }
    .iq-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .iq-check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .iq-radio-grid,
    .iq-check-grid {
        grid-template-columns: 1fr;
    }
    .iq-submit {
        font-size: 0.82rem;
    }
}

/* Page hero — smaller on mobile */
@media (max-width: 768px) {
    .page-hero {
        height: clamp(320px, 50vh, 480px);
    }
    .page-hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
}

/* Memorial section — mobile */
@media (max-width: 768px) {
    .memorial-pullquote {
        margin-top: 1.5rem;
        padding: 1.25rem 1.25rem;
    }
}

/* Supplier track — mobile spacing */
@media (max-width: 768px) {
    .supplier-track {
        gap: 2rem;
    }
}

/* Section spacing on small mobile */
@media (max-width: 480px) {
    :root {
        --section-py: 3.5rem;
        --section-py-sm: 2.5rem;
    }
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero-headline {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-actions .btn {
        width: 100%;
    }
    /* CTA section buttons */
    .inquiry-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
