/* ========================================
   MAIN STREET WITH SETH — MAGICAL × PREMIUM
   Refreshed: magical, editorial, cinematic
   ======================================== */

/* ========================================
   FONTS
   ======================================== */

@font-face {
    font-family: 'Braisetto';
    src: url('../fonts/Braisetto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Larken';
    src: url('../fonts/Larken-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Overpass';
    src: url('../fonts/Overpass-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Overpass';
    src: url('../fonts/Overpass-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   TOKENS
   ======================================== */

:root {
    /* Brand Colors */
    --color-dark-teal: #3D5150;
    --color-deep-teal: #2A3A39;
    --color-ink:       #1c2928;
    --color-blush:     #E2B7A5;
    --color-blush-dk:  #C99685;
    --color-sage:      #BEC7B5;
    --color-mustard:   #DFC488;
    --color-gold:      #C9A84C;
    --color-beige:     #F5F1E6;
    --color-cream:     #FBF8EF;
    --color-white:     #FFFFFF;
    --color-black:     #000000;

    /* Type */
    --font-accent:   'Braisetto', cursive;
    --font-headline: 'Larken', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:     'Overpass', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4rem;
    --sp-7: 6rem;
    --sp-8: 8rem;

    /* Legacy aliases (keep destinations page working) */
    --spacing-xs: var(--sp-1);
    --spacing-sm: var(--sp-2);
    --spacing-md: var(--sp-4);
    --spacing-lg: var(--sp-5);
    --spacing-xl: var(--sp-6);
    --spacing-xxl: var(--sp-7);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --transition-fast:   0.2s cubic-bezier(.4,0,.2,1);
    --transition-normal: 0.35s cubic-bezier(.4,0,.2,1);
    --transition-slow:   0.7s cubic-bezier(.4,0,.2,1);

    --shadow-sm: 0 1px 2px rgba(28,41,40,0.08), 0 2px 6px rgba(28,41,40,0.05);
    --shadow-md: 0 4px 12px rgba(28,41,40,0.10), 0 10px 24px rgba(28,41,40,0.06);
    --shadow-lg: 0 10px 24px rgba(28,41,40,0.14), 0 24px 48px rgba(28,41,40,0.10);
    --shadow-xl: 0 30px 80px rgba(28,41,40,0.20), 0 10px 30px rgba(28,41,40,0.10);
    --shadow-gold: 0 10px 40px rgba(201,168,76,0.22);
}

/* ========================================
   RESET + BASE
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 200;
    line-height: 1.7;
    color: var(--color-dark-teal);
    background-color: var(--color-beige);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul { list-style: none; }

::selection {
    background: var(--color-mustard);
    color: var(--color-dark-teal);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.accent-text {
    font-family: var(--font-accent);
    font-weight: bold;
    text-transform: lowercase;
    color: var(--color-blush);
    display: block;
    line-height: 1.05;
    letter-spacing: 0.005em;
}

.main-text,
.main-title {
    font-family: var(--font-headline);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-dark-teal);
    display: block;
    line-height: 1.15;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--sp-3);
}

.section-label::before,
.section-label::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--sp-4);
}

section {
    padding: var(--sp-8) 0;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: var(--sp-7) 0; }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    padding: 1.1rem 2.2rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        transparent 20%,
        rgba(255,255,255,0.35) 50%,
        transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.7s cubic-bezier(.4,0,.2,1);
    z-index: -1;
}

.btn:hover::before { transform: translateX(120%); }

.btn-primary {
    background-color: var(--color-dark-teal);
    color: var(--color-cream);
    border-color: var(--color-dark-teal);
    box-shadow: 0 6px 20px rgba(61,81,80,0.28);
}

.btn-primary:hover {
    background-color: var(--color-ink);
    border-color: var(--color-ink);
    color: var(--color-mustard);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(61,81,80,0.38);
}

.btn-gold {
    background-color: var(--color-mustard);
    color: var(--color-dark-teal);
    border-color: var(--color-mustard);
    box-shadow: var(--shadow-gold);
}

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

.btn-ghost {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(245,241,230,0.5);
}

.btn-ghost:hover {
    background: rgba(245,241,230,0.08);
    border-color: var(--color-mustard);
    color: var(--color-mustard);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-teal);
    border-color: var(--color-dark-teal);
}
.btn-secondary:hover {
    background-color: var(--color-dark-teal);
    color: var(--color-cream);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(245,241,230,0.82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(61,81,80,0.06);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(245,241,230,0.96);
    box-shadow: 0 4px 30px rgba(28,41,40,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    transition: padding 0.3s ease;
}

.navbar.scrolled .container {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.nav-brand img {
    height: 76px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-brand img {
    height: 58px;
}

.nav-menu {
    display: flex;
    gap: var(--sp-4);
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: var(--color-dark-teal);
    padding: 1.25rem 0;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-blush));
    transition: width 0.4s cubic-bezier(.4,0,.2,1), left 0.4s cubic-bezier(.4,0,.2,1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link.cta-link {
    background: var(--color-dark-teal);
    color: var(--color-mustard);
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.nav-link.cta-link::after { display: none; }

.nav-link.cta-link:hover {
    background: var(--color-mustard);
    color: var(--color-dark-teal);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--color-dark-teal);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ========================================
   HERO — CINEMATIC PARALLAX
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-ink);
}

.hero-layers {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: -5%;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.08);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(28,41,40,0.5) 70%, rgba(28,41,40,0.85) 100%),
        linear-gradient(180deg, rgba(28,41,40,0.4) 0%, rgba(28,41,40,0.15) 35%, rgba(28,41,40,0.75) 100%);
    pointer-events: none;
}

/* Floating sparkle particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-mustard);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(223,196,136,0.8), 0 0 16px rgba(223,196,136,0.4);
    animation: sparkleFloat 8s infinite ease-in-out;
}

.sparkle.s1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 65%; left: 85%; animation-delay: 1.2s; }
.sparkle.s3 { top: 30%; left: 78%; animation-delay: 2.4s; width: 3px; height: 3px; }
.sparkle.s4 { top: 80%; left: 22%; animation-delay: 3.1s; }
.sparkle.s5 { top: 15%; left: 50%; animation-delay: 0.8s; width: 5px; height: 5px; }
.sparkle.s6 { top: 55%; left: 35%; animation-delay: 4.2s; }
.sparkle.s7 { top: 40%; left: 92%; animation-delay: 2s; width: 3px; height: 3px; }
.sparkle.s8 { top: 70%; left: 60%; animation-delay: 5s; }
.sparkle.s9 { top: 25%; left: 30%; animation-delay: 6.3s; }
.sparkle.s10 { top: 85%; left: 70%; animation-delay: 1.5s; width: 3px; height: 3px; }
.sparkle.s11 { top: 45%; left: 8%; animation-delay: 3.7s; }
.sparkle.s12 { top: 10%; left: 75%; animation-delay: 4.8s; width: 5px; height: 5px; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    20% { opacity: 1; transform: translate(-10px, -20px) scale(1); }
    50% { opacity: 0.8; transform: translate(15px, -40px) scale(1.1); }
    80% { opacity: 0.3; transform: translate(-5px, -60px) scale(0.7); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 880px;
    padding: 0 var(--sp-4);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--color-mustard);
    margin-bottom: var(--sp-3);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: heroIn 1.1s cubic-bezier(.4,0,.2,1) 0.1s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.hero-title {
    margin-bottom: var(--sp-4);
}

.hero-title .accent-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-blush);
    margin-bottom: 0.2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    opacity: 0;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) 0.25s forwards;
}

.hero-title .main-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--color-cream);
    letter-spacing: 0.14em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    opacity: 0;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) 0.4s forwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(245,241,230,0.88);
    margin: 0 auto var(--sp-5);
    max-width: 620px;
    line-height: 1.7;
    opacity: 0;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) 0.55s forwards;
}

.hero-buttons {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) 0.7s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: var(--sp-4);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
    color: rgba(245,241,230,0.7);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) 1s forwards;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(245,241,230,0.8), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-mustard);
    animation: scrollPulse 2.2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ========================================
   STATS STRIP
   ======================================== */

.stats-strip {
    background: linear-gradient(180deg, var(--color-dark-teal) 0%, var(--color-deep-teal) 100%);
    padding: var(--sp-5) 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    align-items: center;
}

.stat {
    text-align: center;
    color: var(--color-cream);
    padding: 0 var(--sp-2);
    position: relative;
}

.stat + .stat::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--sp-2));
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(245,241,230,0.18);
}

.stat-number {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-mustard);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,241,230,0.75);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5) var(--sp-3);
    }
    .stat + .stat::before { display: none; }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-6);
}

.section-title {
    margin-bottom: var(--sp-3);
}

.section-title .accent-text {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 0.2rem;
}

.section-title .main-text {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-teal);
    opacity: 0.82;
    max-width: 600px;
    margin: 0 auto;
}

/* Section divider ornament */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: var(--sp-3) auto 0;
    color: var(--color-gold);
}

.section-ornament::before,
.section-ornament::after {
    content: "";
    width: 48px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.section-ornament-diamond {
    width: 8px;
    height: 8px;
    background: currentColor;
    transform: rotate(45deg);
    opacity: 0.9;
}

/* ========================================
   SERVICES — LUXE GLASS CARDS
   ======================================== */

.services {
    background: var(--color-cream);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(223,196,136,0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(226,183,165,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services > .container { position: relative; z-index: 1; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-3);
    margin-top: var(--sp-5);
}

.service-card {
    background: var(--color-white);
    padding: var(--sp-5) var(--sp-4);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(61,81,80,0.06);
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(28,41,40,0.04);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-mustard), var(--color-blush), var(--color-mustard));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(223,196,136,0.12) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--sp-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige), var(--color-cream));
    border-radius: 50%;
    color: var(--color-dark-teal);
    position: relative;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 16px rgba(28,41,40,0.06);
}

.service-icon::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mustard), var(--color-blush));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.4;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Photo version of service icon */
.service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0 auto var(--sp-3);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(28,41,40,0.10);
    background: var(--color-beige);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

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

/* How It Works graphic under the Main Street Difference section */
.difference-howitworks {
    margin-top: var(--sp-6, 4rem);
    text-align: center;
}

.difference-howitworks img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.service-card h3 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 1rem;
    margin-bottom: var(--sp-2);
    color: var(--color-dark-teal);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-dark-teal);
    opacity: 0.78;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--sp-3);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card .learn-more::after {
    content: "→";
    transition: transform 0.3s ease;
}
.service-card:hover .learn-more::after {
    transform: translateX(4px);
}

/* ========================================
   THE SETH DIFFERENCE — EDITORIAL
   ======================================== */

.difference {
    background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin-top: var(--sp-5);
    position: relative;
}

.difference-item {
    position: relative;
    padding: var(--sp-4) var(--sp-2) 0;
}

.difference-item::before {
    content: attr(data-num);
    position: absolute;
    top: -16px;
    left: 0;
    font-family: var(--font-headline);
    font-size: 5rem;
    color: var(--color-mustard);
    opacity: 0.22;
    line-height: 1;
    font-weight: normal;
    pointer-events: none;
}

.difference-item h3 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.1rem;
    color: var(--color-dark-teal);
    margin-bottom: var(--sp-2);
    padding-top: var(--sp-1);
    position: relative;
}

.difference-item h3::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    margin-top: var(--sp-2);
}

.difference-item p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-dark-teal);
    opacity: 0.82;
}

@media (max-width: 900px) {
    .difference-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ========================================
   FEATURED DESTINATIONS — HORIZONTAL FLOW
   ======================================== */

.featured-dest {
    background: var(--color-dark-teal);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.featured-dest::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(223,196,136,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(226,183,165,0.06) 0%, transparent 50%);
}

.featured-dest > .container { position: relative; z-index: 1; }

.featured-dest .section-label { color: var(--color-mustard); }
.featured-dest .section-title .accent-text { color: var(--color-blush); }
.featured-dest .section-title .main-text { color: var(--color-cream); }
.featured-dest .section-description { color: rgba(245,241,230,0.78); }

.dest-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-3);
    margin-top: var(--sp-5);
}

.dest-card-mini {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    isolation: isolate;
}

.dest-card-mini:hover {
    transform: translateY(-6px);
}

.dest-card-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.dest-card-mini:hover img {
    transform: scale(1.08);
}

.dest-card-mini .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(28,41,40,0.1) 0%,
        rgba(28,41,40,0.3) 50%,
        rgba(28,41,40,0.92) 100%);
    z-index: 2;
}

.dest-card-mini .content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: var(--sp-4);
    z-index: 3;
}

.dest-card-mini .kicker {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--color-mustard);
    margin-bottom: 0.5rem;
    display: block;
}

.dest-card-mini h3 {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.dest-card-mini .tag {
    display: inline-block;
    font-size: 0.72rem;
    padding: 4px 12px;
    border: 1px solid rgba(245,241,230,0.35);
    border-radius: 999px;
    color: rgba(245,241,230,0.85);
    transition: all 0.3s ease;
}

.dest-card-mini:hover .tag {
    background: var(--color-mustard);
    color: var(--color-dark-teal);
    border-color: var(--color-mustard);
}

.dest-flow-cta {
    text-align: center;
    margin-top: var(--sp-5);
}

/* ========================================
   ABOUT — EDITORIAL SPLIT
   ======================================== */

.about {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-beige) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--sp-7);
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(28,41,40,0.15) 100%);
    pointer-events: none;
}

.image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--color-mustard);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.image-accent-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-blush);
    opacity: 0.25;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content { text-align: left; }
.about-content .section-header { text-align: left; margin-bottom: var(--sp-4); max-width: 100%; }
.about-content .section-label { color: var(--color-gold); }

.about-text p {
    margin-bottom: var(--sp-3);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-dark-teal);
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark-teal);
    font-weight: 200;
    font-style: italic;
    padding-left: var(--sp-3);
    border-left: 2px solid var(--color-mustard);
    margin-bottom: var(--sp-4);
}

.about-signature {
    margin-top: var(--sp-4);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(61,81,80,0.15);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.signature-text {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-blush);
    line-height: 1;
}

.signature-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 700;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .about-content { text-align: left; }
    .about-content .section-header { text-align: left; }
    .image-accent { display: none; }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: var(--color-dark-teal);
    padding: var(--sp-8) 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(223,196,136,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .container { position: relative; z-index: 1; }

.testimonials .section-label { color: var(--color-mustard); }
.testimonials .section-title .accent-text { color: var(--color-blush); }
.testimonials .section-title .main-text { color: var(--color-cream); }

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--sp-3);
}

.testimonial-stars .star {
    font-size: 1.3rem;
    color: var(--color-mustard);
    text-shadow: 0 0 12px rgba(223,196,136,0.4);
}

.testimonial-grid {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(245,241,230,0.06), rgba(245,241,230,0.03));
    border: 1px solid rgba(226,183,165,0.2);
    border-radius: var(--radius-lg);
    padding: var(--sp-6) var(--sp-5);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
    opacity: 0.5;
}

.testimonial-quote-mark {
    font-family: var(--font-headline);
    font-size: 120px;
    line-height: 0.5;
    color: var(--color-mustard);
    opacity: 0.25;
    position: absolute;
    top: 40px;
    left: 36px;
    pointer-events: none;
    user-select: none;
}

.testimonial-text {
    font-family: var(--font-headline);
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(245,241,230,0.92);
    font-weight: normal;
    margin: 0 0 var(--sp-4);
    padding-top: 14px;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.testimonial-photos-label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-mustard);
    font-weight: 700;
    margin: 0 0 var(--sp-2);
}

.testimonial-photo-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: var(--sp-4);
}

.testimonial-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(223,196,136,0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-thumb:hover {
    transform: scale(1.05);
    border-color: var(--color-mustard);
}

.testimonial-reviewer {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    border-top: 1px solid rgba(226,183,165,0.2);
    padding-top: var(--sp-3);
}

.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mustard), var(--color-blush));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-teal);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(223,196,136,0.3);
}

.testimonial-name {
    font-family: var(--font-headline);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--color-cream);
    margin: 0 0 4px;
}

.testimonial-verified-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-verified {
    font-size: 0.68rem;
    color: var(--color-mustard);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonial-google-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: rgba(226,183,165,0.8);
    text-decoration: none;
    letter-spacing: 0.06em;
    border: 1px solid rgba(226,183,165,0.25);
    border-radius: 999px;
    padding: 3px 10px;
    transition: all 0.3s ease;
}

.testimonial-google-link:hover {
    color: var(--color-blush);
    border-color: var(--color-blush);
    background: rgba(226,183,165,0.05);
}

@media (max-width: 768px) {
    .testimonial-card { padding: var(--sp-4) var(--sp-3); }
    .testimonial-thumb { width: 68px; height: 68px; }
    .testimonial-quote-mark { font-size: 80px; top: 30px; left: 20px; }
    .testimonial-text { font-size: 0.98rem; }
}

/* ========================================
   FIREWORKS CTA
   ======================================== */

.finale {
    background: linear-gradient(180deg, var(--color-ink) 0%, var(--color-deep-teal) 100%);
    color: var(--color-cream);
    padding: var(--sp-8) 0;
    position: relative;
    overflow: hidden;
}

.finale-fireworks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
}

.firework.fw1 {
    top: 20%;
    left: 15%;
    background: var(--color-mustard);
    box-shadow:
        0 0 0 2px rgba(223,196,136,0.4),
        -60px -20px 0 -1px rgba(223,196,136,0.6),
        60px -20px 0 -1px rgba(223,196,136,0.6),
        -40px 40px 0 -1px rgba(223,196,136,0.6),
        40px 40px 0 -1px rgba(223,196,136,0.6),
        0 -60px 0 -1px rgba(223,196,136,0.6),
        0 60px 0 -1px rgba(223,196,136,0.6),
        -60px 20px 0 -1px rgba(223,196,136,0.6),
        60px 20px 0 -1px rgba(223,196,136,0.6);
    animation: burst 4s infinite 0.5s;
}

.firework.fw2 {
    top: 30%;
    right: 12%;
    background: var(--color-blush);
    box-shadow:
        0 0 0 2px rgba(226,183,165,0.4),
        -50px -30px 0 -1px rgba(226,183,165,0.6),
        50px -30px 0 -1px rgba(226,183,165,0.6),
        -30px 50px 0 -1px rgba(226,183,165,0.6),
        30px 50px 0 -1px rgba(226,183,165,0.6),
        0 -70px 0 -1px rgba(226,183,165,0.6),
        0 70px 0 -1px rgba(226,183,165,0.6);
    animation: burst 4s infinite 2s;
}

.firework.fw3 {
    top: 60%;
    left: 8%;
    background: var(--color-mustard);
    box-shadow:
        0 0 0 2px rgba(223,196,136,0.4),
        -40px -40px 0 -1px rgba(223,196,136,0.6),
        40px -40px 0 -1px rgba(223,196,136,0.6),
        -40px 40px 0 -1px rgba(223,196,136,0.6),
        40px 40px 0 -1px rgba(223,196,136,0.6);
    animation: burst 4s infinite 3s;
}

.firework.fw4 {
    top: 50%;
    right: 20%;
    background: var(--color-blush);
    box-shadow:
        0 0 0 2px rgba(226,183,165,0.4),
        -55px 0 0 -1px rgba(226,183,165,0.6),
        55px 0 0 -1px rgba(226,183,165,0.6),
        0 -55px 0 -1px rgba(226,183,165,0.6),
        0 55px 0 -1px rgba(226,183,165,0.6),
        -40px -40px 0 -1px rgba(226,183,165,0.6),
        40px -40px 0 -1px rgba(226,183,165,0.6),
        -40px 40px 0 -1px rgba(226,183,165,0.6),
        40px 40px 0 -1px rgba(226,183,165,0.6);
    animation: burst 4s infinite 1.2s;
}

@keyframes burst {
    0%   { opacity: 0; transform: scale(0); }
    15%  { opacity: 1; transform: scale(0.6); }
    60%  { opacity: 0.7; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(1.8); }
}

.finale-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.finale-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-mustard);
    margin-bottom: var(--sp-3);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.finale-eyebrow::before,
.finale-eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.finale-title {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: var(--sp-3);
}

.finale-title .flourish {
    font-family: var(--font-accent);
    text-transform: lowercase;
    color: var(--color-blush);
    letter-spacing: 0;
    display: block;
    font-size: 0.9em;
    line-height: 1;
}

.finale-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245,241,230,0.82);
    margin-bottom: var(--sp-5);
}

/* ========================================
   DESTINATIONS PAGE (preserved)
   ======================================== */

.destinations-hero {
    padding-top: calc(80px + var(--sp-6));
    padding-bottom: var(--sp-5);
    background: linear-gradient(135deg, var(--color-dark-teal) 0%, var(--color-deep-teal) 100%);
    position: relative;
    overflow: hidden;
}

.destinations-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(223,196,136,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(226,183,165,0.08) 0%, transparent 50%);
}

.destinations-hero .container { position: relative; z-index: 1; }

.destinations-hero .section-label { color: var(--color-mustard); }
.destinations-hero .section-title .accent-text { color: var(--color-blush); }
.destinations-hero .section-title .main-text { color: var(--color-cream); }
.destinations-hero .section-description { color: rgba(245,241,230,0.85); }

.destinations-grid-section {
    background: var(--color-cream);
    padding: var(--sp-7) 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-3);
}

.quote-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(61,81,80,0.06);
}

.quote-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.quote-card-header {
    background: linear-gradient(135deg, var(--color-dark-teal), var(--color-deep-teal));
    color: var(--color-cream);
    padding: var(--sp-3) var(--sp-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-card-header::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
    transition: left 0.8s ease;
}

.quote-card:hover .quote-card-header::before { left: 100%; }

.quote-card-header h3 {
    font-family: var(--font-headline);
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
    font-weight: normal;
}

.quote-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-3);
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.quote-card-image img {
    max-width: 200px;
    height: auto;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.quote-card:hover .quote-card-image img {
    transform: scale(1.08);
}

.quote-card .btn {
    width: 100%;
    border-radius: 0;
    letter-spacing: 0.22em;
}

.quote-card.coming-soon { opacity: 0.7; }
.quote-card.coming-soon .quote-card-image { filter: grayscale(100%); position: relative; }

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-mustard);
    color: var(--color-dark-teal);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    z-index: 10;
}

/* ========================================
   MODAL (preserved)
   ======================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(28,41,40,0.92);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--sp-4);
}

.modal.active { display: grid; }

.modal-content {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: var(--sp-2); right: var(--sp-2);
    background: var(--color-dark-teal);
    color: var(--color-cream);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--color-blush);
    transform: rotate(90deg);
}

.modal-body { padding: var(--sp-5); }
.modal-body iframe { width: 100%; min-height: 600px; border: none; }

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, var(--color-ink) 0%, #131d1d 100%);
    color: var(--color-beige);
    padding: var(--sp-7) 0 var(--sp-3);
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.4;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: var(--sp-6);
    margin-bottom: var(--sp-5);
    align-items: flex-start;
}

.footer-brand { text-align: left; }

.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: var(--sp-3);
    filter: brightness(1.05);
}

.footer-tagline {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 200;
    color: rgba(245,241,230,0.8);
    max-width: 280px;
}

.footer-tagline .accent-text {
    color: var(--color-mustard);
    display: inline;
    font-size: 1.3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.footer-column h4 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    margin-bottom: var(--sp-3);
    color: var(--color-mustard);
    position: relative;
    padding-bottom: var(--sp-1);
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background: var(--color-gold);
}

.footer-column ul li { margin-bottom: var(--sp-1); }

.footer-column ul li a {
    color: rgba(245,241,230,0.75);
    font-size: 0.9rem;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--color-mustard);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(245,241,230,0.12);
    padding-top: var(--sp-3);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245,241,230,0.6);
}

.footer-disclaimer {
    margin-top: var(--sp-1);
    font-size: 0.72rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

@media (max-width: 968px) {
    .footer-content { grid-template-columns: 1fr; gap: var(--sp-4); }
    .footer-brand { text-align: center; }
    .footer-tagline { margin-left: auto; margin-right: auto; }
    .footer-links { grid-template-columns: 1fr 1fr; text-align: left; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85%);
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        padding: 100px var(--sp-4) var(--sp-4);
        gap: var(--sp-3);
        transition: right 0.4s cubic-bezier(.4,0,.2,1);
        box-shadow: -20px 0 60px rgba(28,41,40,0.25);
        overflow-y: auto;
        z-index: 999;
        align-items: stretch;
    }

    .nav-menu.active { right: 0; }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(61,81,80,0.08);
    }
    .nav-menu li:last-child { border-bottom: none; }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--sp-2);
        font-size: 0.85rem;
    }

    .nav-link.cta-link { margin-top: var(--sp-2); }

    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--sp-2);
        align-items: center;
    }
    .hero-buttons .btn { width: 100%; max-width: 320px; }

    .services-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
    .service-card { max-width: 420px; margin: 0 auto; }

    .nav-brand img { max-width: 140px; height: auto; }
    .footer-logo { max-width: 160px; }

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

    .footer-links { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    :root { font-size: 14px; }
    .container { padding: 0 var(--sp-2); }
    .hero { min-height: 560px; }
    .scroll-indicator { bottom: var(--sp-3); }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-bg { transform: none !important; }
}

/* ========================================
   UTILITIES + LEGACY PRESERVATION
   ======================================== */

.fade-in-up { animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1); }

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

.text-center { text-align: center; }
.mt-1 { margin-top: var(--sp-2); }
.mt-2 { margin-top: var(--sp-4); }
.mt-3 { margin-top: var(--sp-5); }
.mb-1 { margin-bottom: var(--sp-2); }
.mb-2 { margin-bottom: var(--sp-4); }
.mb-3 { margin-bottom: var(--sp-5); }

/* Forms (preserved) */
.form-container {
    padding: var(--sp-5) var(--sp-4);
}

.form-container iframe {
    padding: var(--sp-4);
    border-radius: var(--radius-lg);
    background: var(--color-white);
}

.cognito-form {
    padding: var(--sp-4);
    background: var(--color-white);
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .form-container { padding: var(--sp-4) var(--sp-2); }
    .form-container iframe,
    .cognito-form { padding: var(--sp-2); }
}

/* Trust bar (still referenced by other pages) */
.trust-bar { background-color: var(--color-dark-teal); padding: var(--sp-4) 0; }
.trust-items { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-icon { font-size: 1.1rem; }
.trust-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-beige);
}
.trust-divider { width: 1px; height: 24px; background-color: rgba(245,241,230,0.25); }

@media (max-width: 768px) {
    .trust-divider { display: none; }
    .trust-items { gap: var(--sp-2); }
}

/* Legacy destination-card pattern */
.destination-cards {
    display: flex;
    justify-content: center;
    gap: var(--sp-5);
    flex-wrap: wrap;
    margin-top: var(--sp-6);
}

.destination-card {
    max-width: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--color-beige);
}

.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.destination-image { position: relative; height: 300px; overflow: hidden; }
.destination-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.destination-card:hover .destination-image img { transform: scale(1.05); }

.destination-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(28,41,40,0.92), transparent);
    padding: var(--sp-4);
    color: var(--color-cream);
}

.destination-overlay h3 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.destination-overlay p { font-size: 0.9rem; opacity: 0.9; }

.destination-card .btn { width: 100%; border-radius: 0; }

.view-all-destinations { text-align: center; margin-top: var(--sp-5); }

/* Legacy why-choose (still used on destinations) */
.why-choose {
    background-color: var(--color-sage);
    padding: 0;
}
.why-choose-content { width: 100%; }
.why-choose-image { width: 100%; height: auto; display: block; }
