/* ====================================================
   WEDDING KNOTS — ULTRA-PREMIUM CSS DESIGN SYSTEM
   Senior-Level Build · English Luxury Aesthetic
==================================================== */

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

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
    --gold:          #9B7B5B;
    --gold-dark:     #7A5A3A;
    --gold-light:    #C4A882;
    --gold-pale:     #F5EDE3;
    --cream:         #FDFAF6;
    --ivory:         #F9F5EE;
    --charcoal:      #1A1A1A;
    --ink:           #2D2926;
    --slate:         #6B6560;
    --line:          rgba(0,0,0,0.08);
    --white:         #FFFFFF;

    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Inter', system-ui, sans-serif;

    --ease-premium:  cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:    all 0.45s var(--ease-premium);

    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  40px;
    --r-pill: 9999px;

    --shadow-soft:   0 4px 24px rgba(0,0,0,0.06);
    --shadow-card:   0 8px 40px rgba(0,0,0,0.09);
    --shadow-lift:   0 20px 60px rgba(0,0,0,0.14);

    --section-pad:   120px 6%;
    --content-max:   1240px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

a { text-decoration:none; color:inherit; transition: var(--transition); }
img { display:block; max-width:100%; height:auto; }
ul  { list-style: none; }

/* ── UTILITIES ─────────────────────────────────── */
.text-center { text-align: center; }
.section-pad { padding: var(--section-pad); }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.title-rule {
    width: 56px;
    height: 1.5px;
    background: var(--gold);
    margin: 20px auto 40px;
}

.section-header { max-width: var(--content-max); margin: 0 auto 60px; }

.section-desc {
    font-size: 1rem;
    color: var(--slate);
    margin-top: -30px;
    margin-bottom: 50px;
}

.body-text {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 22px;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
    border-color: rgba(255,255,255,0.8);
}
.btn-light:hover { background: var(--gold-pale); color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color:rgba(255,255,255,0.8); transform:translateY(-2px); }

.btn-primary-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(155,123,91,0.35); }

.btn-dark-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: rgba(26,26,26,0.25);
}
.btn-dark-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }

/* Simple text link — "Discover More" */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    width: 100%;
    transition: color 0.3s ease, gap 0.3s ease;
}
.link-arrow::after { content: '→'; font-size: 0.95rem; }
.link-arrow:hover  { color: var(--gold-dark); gap: 10px; }

/* ══════════════════════════════════════════════════
   HEADER — CENTRE-LOGO LUXURY NAV
══════════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 5%;
    transition: var(--transition);
    /* No blur, no frosted glass — clean transparent bar */
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

#site-header.scrolled {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 5%;
    box-shadow: 0 2px 30px rgba(0,0,0,0.07);
}

/* Left nav */
.nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-start;
}

/* Right nav */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    padding: 8px 14px;
    border-radius: var(--r-pill);
    transition: var(--transition);
    position: relative;
}

/* Underline effect */
.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.7);
    transition: width 0.3s ease;
}
.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after { width: 55%; }

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active { color: var(--white); }

/* Scrolled state — dark links */
#site-header.scrolled .nav-left a,
#site-header.scrolled .nav-right a { color: var(--ink); }
#site-header.scrolled .nav-left a::after,
#site-header.scrolled .nav-right a::after { background: var(--gold); }
#site-header.scrolled .nav-left a:hover,
#site-header.scrolled .nav-right a:hover,
#site-header.scrolled .nav-left a.active,
#site-header.scrolled .nav-right a.active { color: var(--gold); }

/* Centre logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-light { height: 44px; width: auto; object-fit: contain; display: block; }
.logo-dark  { height: 44px; width: auto; object-fit: contain; display: none; }

#site-header.scrolled .logo-light { display: none; }
#site-header.scrolled .logo-dark  { display: block; }

/* Mobile hamburger — hidden on desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 2001;
    grid-column: 3;
    justify-self: end;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
#site-header.scrolled .mobile-menu-btn span { background: var(--charcoal); }

/* ── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed; inset: 0;
    background: var(--charcoal);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.mobile-nav.open { display: flex; }

.mobile-nav .close-btn {
    position: absolute;
    top: 28px; right: 5%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mobile-nav .close-btn:hover { opacity: 1; }

.mobile-nav ul { text-align: center; }
.mobile-nav ul li { margin-bottom: 20px; }
.mobile-nav ul li a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { color: var(--gold-light); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background: url('../images/other/(2).jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,8,6,0.40) 0%,
        rgba(10,8,6,0.55) 60%,
        rgba(10,8,6,0.70) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-premium) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-premium) 0.55s forwards;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.hero-sub {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-premium) 0.75s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-premium) 0.95s forwards;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 1.8s ease infinite;
}
.hero-scroll-hint p {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ══════════════════════════════════════════════════
   STAT BAR (Marquee)
══════════════════════════════════════════════════ */
.stat-bar {
    overflow: hidden;
    background: var(--charcoal);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-bar-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}

.stat-bar-track span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
}

.stat-bar-track .dot {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════ */
.services-section { background: var(--ivory); }

.services-section .section-header { text-align: center; }

.services-grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    transition: transform 0.35s var(--ease-premium), box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s var(--ease-premium);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-card:hover::after { width: 100%; }

.service-card-image {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
    border-radius: 0;
}

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

.service-card-body {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon {
    width: 52px; height: 52px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-bounce);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1) rotate(-6deg);
}

.service-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.service-card:hover .service-card-body h3 { color: var(--gold); }

.service-card-body p {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

/* ══════════════════════════════════════════════════
   HALLMARK / WHY US — SPLIT LAYOUT
══════════════════════════════════════════════════ */
.hallmark-section { background: var(--cream); }

.hallmark-grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Left: stacked images */
.hallmark-images {
    position: relative;
    height: 580px;
}

.hallmark-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 78%;
    height: 90%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}
.hallmark-img-main img { width:100%; height:100%; object-fit: cover; }

.hallmark-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 52%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 5px solid var(--white);
}
.hallmark-img-accent img { width:100%; height:100%; object-fit: cover; }

.hallmark-badge {
    position: absolute;
    top: 50%; left: 58%;
    transform: translate(-50%,-50%);
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(155,123,91,0.5);
    z-index: 3;
}
.badge-number {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1;
}
.badge-number sup { font-size: 1rem; }
.badge-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 3px;
    line-height: 1.4;
}

/* Right: content */
.hallmark-content { max-width: 520px; }
.hallmark-content .title-rule { margin-left: 0; }

.hallmark-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0 40px;
}

.hallmark-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
}

.hallmark-points li i {
    width: 26px; height: 26px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   FEATURED WEDDINGS GRID
══════════════════════════════════════════════════ */
.featured-section { background: var(--ivory); }
.featured-section .section-header { text-align: center; }

.featured-grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px 340px;
    gap: 18px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    display: block;
    background: var(--charcoal);
}

.featured-large {
    grid-row: 1 / 3;
}

.featured-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-premium), opacity 0.4s ease;
    border-radius: var(--r-md);
    opacity: 0.88;
}

.featured-item:hover img { transform: scale(1.05); opacity: 1; }

.featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.80) 0%, rgba(10,8,6,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: var(--r-md);
}

.featured-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.featured-overlay h3 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    transform: translateY(6px);
    transition: transform 0.4s var(--ease-premium);
}

.featured-item:hover .featured-overlay h3 { transform: translateY(0); }

/* ══════════════════════════════════════════════════
   GALLERY / PORTFOLIO SCROLL
══════════════════════════════════════════════════ */
.gallery-section { background: var(--cream); overflow: hidden; }
.gallery-section .section-header { text-align: center; }

.portfolio-scroll-wrapper { position: relative; margin-bottom: 40px; }

.portfolio-scroll-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding: 16px 6%;
}
.portfolio-scroll-track::-webkit-scrollbar { display: none; }
.portfolio-scroll-track.dragging { cursor: grabbing; }

.portfolio-img {
    flex: 0 0 300px;
    height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    scroll-snap-align: start;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
    background: var(--charcoal);
}

.portfolio-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
}

.portfolio-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
    border-radius: var(--r-lg);
    opacity: 0.9;
}

.portfolio-img:hover img { transform: scale(1.06); opacity: 1; }

.portfolio-img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(10,8,6,0.75) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-premium);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.portfolio-img:hover .portfolio-img-label { opacity: 1; transform: translateY(0); }

.portfolio-scroll-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 8px;
}

.portfolio-scroll-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.14);
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.portfolio-scroll-btn:hover { background: var(--charcoal); color: var(--white); transform: scale(1.08); }

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute; inset: 0;
}
.cta-banner-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.cta-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,8,6,0.55), rgba(10,8,6,0.75));
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
    max-width: 700px;
}

.cta-banner-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 18px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 40px;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--ivory);
}
.testimonials-section .section-header { text-align: center; }

.testimonial-wrapper {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px) scale(0.98);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium), visibility 0.6s;
    background: var(--white);
    padding: 52px 56px;
    border-radius: var(--r-lg);
    box-shadow: 0 16px 60px rgba(155,123,91,0.10);
    border: 1px solid rgba(155,123,91,0.12);
    text-align: left;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative;
}

.testimonial-slide.leaving {
    opacity: 0;
    transform: translateX(-30px) scale(0.98);
    position: absolute;
    pointer-events: none;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #C9A84C;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.testimonial-author-avatar {
    width: 46px; height: 46px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal);
}
.testimonial-author-info span {
    display: block;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.04em;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.testimonial-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(155,123,91,0.2);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 4px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(155,123,91,0.25);
    background: var(--white);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}
.testimonial-prev:hover,
.testimonial-next:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ══════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════ */
.contact-section { background: var(--cream); }
.contact-section .section-header { text-align: center; }

.contact-grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 14px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(155,123,91,0.08);
}

.contact-form textarea { min-height: 130px; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.contact-info-card i {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.contact-info-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-info-card span {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
}

.map-embed { border-radius: var(--r-md); overflow: hidden; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.65);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px 6% 60px;
    max-width: calc(var(--content-max) + 12%);
    margin: 0 auto;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    margin: 24px 0 28px;
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 0;
    display: inline-block;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s ease;
}
.footer-links-col ul li a:hover { color: var(--gold-light); }

.footer-contact-col p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
}
.footer-contact-col i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    max-width: calc(var(--content-max) + 12%);
    margin: 0 auto;
    padding: 22px 6%;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 14px 36px rgba(37,211,102,0.45); }
.whatsapp-float::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
    z-index: -1;
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes pulse-ring {
    0%   { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.5);  opacity: 0; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .featured-large { grid-row: auto; }
    .hallmark-grid { gap: 50px; }
}

@media (max-width: 900px) {
    :root { --section-pad: 80px 5%; }
    .hallmark-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .hallmark-images { height: 400px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 767px) {
    .nav-left, .nav-right, .btn-header { display: none; }
    .mobile-menu-btn { display: flex; }

    /* ── Logo perfectly centered on mobile ── */
    #site-header {
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        justify-content: center;
        grid-column: 2;
    }

    .mobile-menu-btn {
        grid-column: 3;
        justify-self: end;
    }

    /* ── Center-align all content on mobile ── */
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }

    .section-header,
    .section-header * { text-align: center !important; }

    .eyebrow { text-align: center; }

    .section-title { font-size: 2rem; text-align: center !important; }

    .title-rule { margin-left: auto !important; margin-right: auto !important; }

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

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .service-card-body { text-align: center; align-items: center; }
    .service-icon { margin-left: auto; margin-right: auto; }
    .link-arrow { justify-content: center; }

    /* Featured */
    .featured-grid { grid-template-columns: 1fr; }

    /* Hallmark */
    .hallmark-content { text-align: center; }
    .hallmark-content .eyebrow { text-align: center; }
    .hallmark-points { align-items: center; }
    .hallmark-points li { justify-content: center; }
    .hallmark-content .btn { display: inline-flex; }
    .hallmark-images { height: 300px; }
    .hallmark-badge { width: 80px; height: 80px; }
    .badge-number { font-size: 1.4rem; }

    /* Testimonials */
    .testimonial-slide { padding: 32px 28px; text-align: center; }
    .testimonial-author { justify-content: center; flex-direction: column; align-items: center; text-align: center; }

    /* CTA Banner */
    .cta-banner-content { text-align: center; }

    /* Footer — center on mobile */
    .footer-top { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-logo { text-align: center; display: flex; justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-links-col { text-align: center; }
    .footer-contact-col { text-align: center; }
    .footer-contact-col p { justify-content: center; }

    /* Contact form */
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .contact-info { text-align: center; }
    .contact-info-card { flex-direction: column; align-items: center; text-align: center; }

    /* About page story */
    .story-content,
    .story-grid > .reveal { text-align: center; }
    .story-grid > .reveal .btn { display: inline-flex; }

    /* Service detail (services page) */
    .service-detail-txt { text-align: center; }
    .service-tags { justify-content: center; }
    .service-detail-txt .title-rule { margin-left: auto !important; margin-right: auto !important; }

    /* Highlights (destinations page) */
    .highlights-content { text-align: center; }
    .highlights-content .title-rule { margin-left: auto !important; margin-right: auto !important; }
    .highlight-list li { justify-content: center; text-align: left; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .portfolio-img { flex: 0 0 260px; }
}

/* ══════════════════════════════════════════════════
   FORM & MISC (other pages inherit)
══════════════════════════════════════════════════ */
.bg-light    { background: var(--ivory); }
.bg-dark     { background: var(--charcoal); color: var(--white); }

/* Professional Form Elements (contact page) */
.form-section-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--charcoal);
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    margin-top: 35px;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px 0;
}
.custom-option:hover { color: var(--gold); }

.custom-option input[type="radio"],
.custom-option input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.custom-option input[type="radio"] { border-radius: 50%; }
.custom-option input[type="checkbox"] { border-radius: 3px; }
.custom-option input[type="radio"]:checked,
.custom-option input[type="checkbox"]:checked { border-color: var(--gold); background: var(--gold); }

/* ── MOBILE NAV EXTRA ─────────────────────── */
@media (max-width: 767px) {
    .mobile-menu-btn span { background: var(--white); }
    #site-header.scrolled .mobile-menu-btn span { background: var(--charcoal); }
}

/* ══════════════════════════════════════════════════
   LEAD FORM SYSTEM — Premium UI
══════════════════════════════════════════════════ */

/* Section subtext beneath heading */
.lead-form-subtext {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.75;
    max-width: 580px;
    margin: -20px auto 0;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Contact page form header (inside form card) */
.lead-form-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.lead-form-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.lead-form-title em {
    font-style: italic;
    color: var(--gold);
}

.lead-form-subtitle {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ── Lead form group (index.html version) ──── */
.lead-form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.lead-form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.lead-form-group input,
.lead-form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--ivory);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 15px 20px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    outline: none;
    width: 100%;
}

.lead-form-group input:hover,
.lead-form-group textarea:hover {
    border-color: rgba(155,123,91,0.3);
}

.lead-form-group input:focus,
.lead-form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(155,123,91,0.08);
}

.lead-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ── Field-level error messages ──────────── */
.field-error {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: #C0392B;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s var(--ease-premium);
    padding-left: 2px;
    letter-spacing: 0.01em;
}

.field-error.visible {
    min-height: 18px;
    max-height: 40px;
    opacity: 1;
    margin-top: 6px;
}

/* Error state on inputs */
.input-error {
    border-color: #C0392B !important;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important;
}

/* ── Submit button loading state ─────────── */
.lead-submit-btn {
    position: relative;
    overflow: hidden;
}

.lead-submit-btn .btn-label {
    transition: opacity 0.3s ease;
}

.lead-submit-btn .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spinLoader 0.7s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

.lead-submit-btn.loading .btn-label {
    opacity: 0;
}

.lead-submit-btn.loading .btn-spinner {
    display: block;
}

.lead-submit-btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

/* ── Success / Error feedback messages ───── */
.lead-form-feedback {
    display: none;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 20px;
    animation: feedbackSlideIn 0.5s var(--ease-premium) forwards;
    font-family: var(--font-sans);
}

.lead-form-feedback.show {
    display: flex;
}

.lead-form-feedback i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lead-form-feedback p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.lead-form-feedback p strong {
    display: block;
    margin-bottom: 2px;
}

.lead-form-success {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border: 1px solid #A5D6A7;
    color: #2E7D32;
}

.lead-form-success i { color: #2E7D32; }

.lead-form-error {
    background: linear-gradient(135deg, #FFEBEE, #FFF3E0);
    border: 1px solid #EF9A9A;
    color: #C62828;
}

.lead-form-error i { color: #C62828; }

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

/* ── Lead form responsive ────────────────── */
@media (max-width: 900px) {
    .lead-form-subtext {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    .lead-form-subtext {
        font-size: 0.9rem;
        margin-top: -14px;
    }

    .lead-form-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .lead-form-title {
        font-size: 1.5rem;
    }

    .lead-form-group label {
        font-size: 0.78rem;
    }

    .lead-form-group input,
    .lead-form-group textarea {
        padding: 13px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .lead-form-feedback {
        padding: 16px 18px;
        gap: 10px;
    }

    .lead-form-feedback p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .lead-form-subtext {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .lead-form-title {
        font-size: 1.35rem;
    }
}