/* ════════════════════════════════════════════════════════════════════════════
   SeaNook Homestay — Stylesheet
   ─────────────────────────────────────────────────────────────────────────────
   Sections (in order):
     01. Tokens & reset            05. Section helpers           09. Gallery
     02. Typography & utilities    06. Hero                      10. Location
     03. Buttons                   07. About                     11. Testimonials
     04. Header / Navbar           08. Rooms / Amenities         12. Enquiry
     13. Footer                    14. Floats (scroll-top etc)   15. Lightbox
     16. Animations                17. Responsive                18. Reduced-motion
   ════════════════════════════════════════════════════════════════════════════ */


/* ─── 01. Tokens & reset ──────────────────────────────────────────────────── */
:root {
    /* Brand palette — pulled from the SeaNook gold-on-emerald logo */
    --c-emerald-900: #062a1f;
    --c-emerald-800: #0b3d2e;
    --c-emerald-700: #115e43;
    --c-emerald-600: #1a8463;
    --c-emerald-500: #2cae87;
    --c-gold-700:    #a87622;
    --c-gold-600:    #c79232;
    --c-gold-500:    #e0aa3e;
    --c-gold-400:    #ecc066;
    --c-gold-300:    #f5d999;
    --c-cream:       #fbf6ec;
    --c-sand:        #f3ead7;
    --c-ink:         #1c1f1d;
    --c-charcoal:    #2d3331;
    --c-mist:        #6b7572;
    --c-fog:         #c5cdc9;
    --c-paper:       #ffffff;

    /* Semantic */
    --c-bg:        var(--c-cream);
    --c-bg-alt:    var(--c-paper);
    --c-text:      var(--c-ink);
    --c-text-soft: var(--c-mist);
    --c-primary:   var(--c-emerald-800);
    --c-primary-hover: var(--c-emerald-700);
    --c-accent:    var(--c-gold-500);
    --c-accent-hover: var(--c-gold-600);
    --c-border:    rgba(11, 61, 46, 0.12);

    /* Type */
    --f-display: 'Cormorant Garamond', 'Georgia', serif;
    --f-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
    --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem; --s-10: 8rem;

    /* Misc */
    --radius-sm: 8px;
    --radius:    16px;
    --radius-lg: 28px;
    --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.06);
    --shadow:    0 12px 40px -12px rgba(11, 61, 46, 0.18);
    --shadow-lg: 0 30px 80px -20px rgba(11, 61, 46, 0.28);
    --shadow-gold: 0 12px 40px -12px rgba(224, 170, 62, 0.4);

    --header-h: 84px;
    --container-max: 1240px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 200ms;
    --t-med:  400ms;
    --t-slow: 700ms;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); overflow-x: clip; }
body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }


/* ─── 02. Typography & utilities ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--s-5); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--c-emerald-900); }
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 5.2rem); }
h2 { font-size: clamp(2rem, 2.4vw + 1rem, 3.4rem); }
h3 { font-size: clamp(1.25rem, .8vw + 1rem, 1.65rem); }
p  { color: var(--c-text); }

.section-eyebrow {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-gold-700);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--s-3);
    position: relative;
    padding-left: 36px;
}
.section-eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 28px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold-500));
}
.section-title { margin-bottom: var(--s-4); }
.section-lede { color: var(--c-text-soft); font-size: 1.1rem; max-width: 60ch; }
.section-head { text-align: center; margin: 0 auto var(--s-8); max-width: 720px; }
.section-head .section-eyebrow { padding-left: 36px; padding-right: 36px; }
.section-head .section-eyebrow::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 28px; height: 1px;
    background: linear-gradient(90deg, var(--c-gold-500), transparent);
}
.section-head .section-lede { margin: 0 auto; }


/* ─── 03. Buttons ─────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--s-2);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease-out);
    min-height: 48px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; min-height: 56px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--c-emerald-800), var(--c-emerald-700));
    color: var(--c-cream);
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    color: var(--c-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(224, 170, 62, 0.15);
    background: linear-gradient(135deg, var(--c-emerald-700), var(--c-emerald-600));
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-cream);
    border-color: rgba(251, 246, 236, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); color: var(--c-cream); border-color: var(--c-cream); }

.btn-outline {
    background: transparent;
    color: var(--c-emerald-800);
    border-color: var(--c-emerald-800);
}
.btn-outline:hover { background: var(--c-emerald-800); color: var(--c-cream); }


/* ─── 04. Header / Navbar ─────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251, 246, 236, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-med) var(--ease-out);
}
.site-header.scrolled {
    background: rgba(251, 246, 236, 0.96);
    border-bottom-color: var(--c-border);
    box-shadow: var(--shadow-sm);
}
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h);
    gap: var(--s-5);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 56px; width: auto; transition: height var(--t-med) var(--ease-out); }
.scrolled .logo img { height: 48px; }

.nav-list {
    display: flex; align-items: center; gap: var(--s-2);
}
.nav-link {
    padding: 10px 16px;
    color: var(--c-emerald-900);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: all var(--t-fast);
    position: relative;
}
.nav-link:hover { color: var(--c-emerald-700); background: rgba(11, 61, 46, 0.04); }
.nav-link.is-active {
    color: var(--c-emerald-800);
    background: rgba(224, 170, 62, 0.15);
}
.nav-link.is-active::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-gold-500);
}
.nav-cta {
    background: linear-gradient(135deg, var(--c-emerald-800), var(--c-emerald-700));
    color: var(--c-cream) !important;
    padding: 12px 24px;
    box-shadow: 0 6px 20px -8px rgba(11, 61, 46, 0.5);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--c-emerald-700), var(--c-emerald-600)); transform: translateY(-1px); }
.nav-cta.is-active { background: linear-gradient(135deg, var(--c-gold-600), var(--c-gold-500)); color: var(--c-emerald-900) !important; }
.nav-cta.is-active::after { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    border-radius: 8px;
    transition: background var(--t-fast);
}
.hamburger:hover { background: rgba(11, 61, 46, 0.06); }
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--c-emerald-900);
    border-radius: 2px;
    transition: all var(--t-fast) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed; inset: var(--header-h) 0 0 0;
    background: rgba(6, 42, 31, 0.6);
    backdrop-filter: blur(6px);
    z-index: 90;
    opacity: 0;
    transition: opacity var(--t-med);
}
.nav-overlay.active { display: block; opacity: 1; }


/* ─── 05. Section helpers ─────────────────────────────────────────────────── */
section { padding: var(--s-9) 0; position: relative; }
section:nth-child(even) { background: var(--c-bg-alt); }


/* ─── 06. Hero ────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(640px, 100vh, 900px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    color: var(--c-cream);
    background: linear-gradient(135deg, var(--c-emerald-900), var(--c-emerald-800));
    padding: var(--s-9) 0 var(--s-7);
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    opacity: 0.7;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(224, 170, 62, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(6, 42, 31, 0.3) 0%, rgba(6, 42, 31, 0.55) 70%, rgba(6, 42, 31, 0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 920px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--c-gold-300);
    padding: 8px 20px;
    border: 1px solid rgba(245, 217, 153, 0.4);
    border-radius: 999px;
    margin-bottom: var(--s-5);
    backdrop-filter: blur(8px);
    background: rgba(11, 61, 46, 0.3);
}
.hero-title {
    color: var(--c-cream);
    margin-bottom: var(--s-5);
    line-height: 1;
}
.hero-title-script {
    display: block;
    font-style: italic;
    font-weight: 500;
    color: var(--c-gold-300);
    font-size: 0.55em;
    letter-spacing: 0.02em;
    margin-bottom: 0.1em;
}
.hero-title-main {
    display: block;
    font-weight: 600;
    background: linear-gradient(180deg, #fff 0%, var(--c-gold-300) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    color: rgba(251, 246, 236, 0.92);
    font-size: clamp(1rem, .6vw + .9rem, 1.25rem);
    max-width: 640px;
    margin: 0 auto var(--s-7);
    line-height: 1.6;
}
.hero-subtitle strong { color: var(--c-gold-300); font-weight: 600; }

.hero-actions {
    display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap;
    margin-bottom: var(--s-8);
}

.hero-meta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--s-5);
    padding: var(--s-4) var(--s-6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.hero-meta-item strong { font-family: var(--f-display); font-size: 1.4rem; color: var(--c-gold-300); font-weight: 600; }
.hero-meta-item span  { font-size: 0.78rem; color: rgba(251, 246, 236, 0.8); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-meta-divider { width: 1px; height: 28px; background: rgba(255, 255, 255, 0.18); }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 46px;
    border: 2px solid rgba(245, 217, 153, 0.5);
    border-radius: 999px;
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 4px; height: 8px;
    background: var(--c-gold-300);
    border-radius: 999px;
    margin: 8px auto;
    animation: scrollDot 1.6s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
    0%, 20% { transform: translateY(0); opacity: 1; }
    80%, 100% { transform: translateY(18px); opacity: 0; }
}


/* ─── 07. About ───────────────────────────────────────────────────────────── */
.about { background: var(--c-bg-alt); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
    align-items: center;
}
.about-media { position: relative; perspective: 1000px; }
.about-media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
    transition: transform var(--t-med) var(--ease-out);
}
.about-media:hover .about-media-frame { transform: rotate(0); }
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media-badge {
    position: absolute; top: 24px; left: 24px;
    background: var(--c-gold-500);
    color: var(--c-emerald-900);
    border-radius: 999px;
    padding: 12px 20px;
    font-family: var(--f-display);
    text-align: center;
    line-height: 1.05;
    box-shadow: var(--shadow);
}
.about-media-badge strong { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; opacity: 0.7; }
.about-media-badge span { display: block; font-size: 1.6rem; font-weight: 700; }
.about-media-card {
    position: absolute; bottom: -32px; right: -32px;
    width: 50%; max-width: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--c-cream);
    transform: rotate(3deg);
    transition: transform var(--t-med) var(--ease-out);
}
.about-media:hover .about-media-card { transform: rotate(0); }
.about-media-card img { width: 100%; height: 100%; object-fit: cover; }

.about-text { max-width: 560px; }
.about-usps { margin: var(--s-7) 0; display: grid; gap: var(--s-5); }
.about-usps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--s-4);
    align-items: start;
}
.usp-icon {
    display: grid; place-items: center;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-emerald-700), var(--c-emerald-800));
    color: var(--c-gold-300);
    flex-shrink: 0;
    box-shadow: 0 8px 20px -10px rgba(11, 61, 46, 0.4);
}
.about-usps h3 { font-family: var(--f-body); font-size: 1.05rem; font-weight: 600; color: var(--c-emerald-900); margin-bottom: 4px; }
.about-usps p { font-size: 0.94rem; color: var(--c-text-soft); margin: 0; }


/* ─── 08. Rooms / Amenities ───────────────────────────────────────────────── */
.rooms { background: var(--c-cream); }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--s-6);
}

.room-card {
    perspective: 1500px;
    border-radius: var(--radius-lg);
    transition: transform var(--t-fast) var(--ease-out);
}
.room-card-inner {
    background: var(--c-paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
    transition: all var(--t-med) var(--ease-out);
    border: 1px solid var(--c-border);
    height: 100%;
    display: flex; flex-direction: column;
}
.room-card:hover .room-card-inner {
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(224, 170, 62, 0.2);
    transform: translateY(-6px);
}
.room-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}
.room-card:hover .room-image img { transform: scale(1.06); }
.room-price {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(11, 61, 46, 0.92);
    backdrop-filter: blur(8px);
    color: var(--c-cream);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(224, 170, 62, 0.4);
}
.room-price-amount { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; color: var(--c-gold-300); }
.room-price-unit  { font-size: 0.78rem; opacity: 0.8; margin-left: 4px; }

.room-body { padding: var(--s-5) var(--s-5) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.room-name { color: var(--c-emerald-900); }
.room-desc { color: var(--c-text-soft); font-size: 0.95rem; flex: 1; }
.room-features {
    display: flex; flex-wrap: wrap; gap: 6px; margin: var(--s-2) 0;
}
.room-features li {
    font-size: 0.78rem;
    padding: 5px 12px;
    background: var(--c-sand);
    color: var(--c-emerald-800);
    border-radius: 999px;
    font-weight: 500;
}
.room-cta { margin-top: var(--s-3); }

/* Amenities */
.amenities { background: var(--c-bg-alt); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4);
}
.amenity-card {
    text-align: center;
    padding: var(--s-6) var(--s-4);
    background: var(--c-paper);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    transition: all var(--t-med) var(--ease-out);
    position: relative;
    overflow: hidden;
}
.amenity-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top, rgba(224, 170, 62, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity var(--t-med);
}
.amenity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 170, 62, 0.4);
    box-shadow: var(--shadow);
}
.amenity-card:hover::before { opacity: 1; }
.amenity-icon {
    width: 64px; height: 64px;
    margin: 0 auto var(--s-4);
    display: grid; place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--c-emerald-800), var(--c-emerald-700));
    color: var(--c-gold-300);
    box-shadow: 0 10px 30px -12px rgba(11, 61, 46, 0.5);
    position: relative;
    transform-style: preserve-3d;
    transition: transform var(--t-med) var(--ease-out);
}
.amenity-card:hover .amenity-icon { transform: rotateY(180deg) scale(1.1); }
.amenity-label { font-family: var(--f-body); font-size: 1rem; font-weight: 600; color: var(--c-emerald-900); margin-bottom: 4px; position: relative; }
.amenity-desc  { color: var(--c-text-soft); font-size: 0.88rem; position: relative; }


/* ─── 09. Gallery ─────────────────────────────────────────────────────────── */
.gallery { background: var(--c-cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--s-3);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
    background: var(--c-emerald-800);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-zoom {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.4), rgba(6, 42, 31, 0.6));
    opacity: 0;
    transition: opacity var(--t-med);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { transform: scale(1.4); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }


/* ─── 10. Location ────────────────────────────────────────────────────────── */
.location { background: var(--c-bg-alt); }
.location-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--s-7);
    align-items: stretch;
}
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--c-paper);
}
.location-map iframe { display: block; width: 100%; height: 100%; min-height: 468px; }
.location-info {
    background: linear-gradient(160deg, var(--c-emerald-900), var(--c-emerald-800));
    border-radius: var(--radius-lg);
    padding: var(--s-7);
    color: var(--c-cream);
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
    position: relative;
    overflow: hidden;
}
.location-info::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 170, 62, 0.18), transparent 70%);
    pointer-events: none;
}
.location-info-title { color: var(--c-gold-300); font-family: var(--f-display); font-size: 1.6rem; margin-bottom: var(--s-4); position: relative; }

.distance-list { flex: 1; display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-5); position: relative; }
.distance-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--s-3);
    padding: var(--s-3) 0;
    border-bottom: 1px solid rgba(245, 217, 153, 0.15);
    align-items: center;
}
.distance-list li:last-child { border-bottom: 0; }
.distance-icon {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    background: rgba(224, 170, 62, 0.15);
    color: var(--c-gold-300);
    border-radius: 10px;
    flex-shrink: 0;
}
.distance-list strong { display: block; color: var(--c-cream); font-weight: 500; font-size: 0.98rem; font-family: var(--f-body); }
.distance-list span  { color: rgba(251, 246, 236, 0.7); font-size: 0.85rem; }

.location-info .btn { align-self: flex-start; background: var(--c-gold-500); color: var(--c-emerald-900); border-color: transparent; }
.location-info .btn:hover { background: var(--c-gold-400); color: var(--c-emerald-900); transform: translateY(-2px); }


/* ─── 11. Testimonials ────────────────────────────────────────────────────── */
.testimonials { background: var(--c-cream); position: relative; overflow: hidden; }
.testimonials::before, .testimonials::after {
    content: '"'; position: absolute;
    font-family: var(--f-display);
    font-size: 24rem;
    line-height: 0.8;
    color: rgba(11, 61, 46, 0.04);
    pointer-events: none;
    font-weight: 700;
}
.testimonials::before { top: 60px; left: 5%; }
.testimonials::after { bottom: 60px; right: 5%; transform: rotate(180deg); }

.testimonials-slider { position: relative; max-width: 820px; margin: 0 auto; }
.testimonials-track {
    position: relative;
    min-height: 360px;
}
.testimonial-card {
    position: absolute; inset: 0;
    background: var(--c-paper);
    border-radius: var(--radius-lg);
    padding: var(--s-7);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
    pointer-events: none;
}
.testimonial-card.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial-stars { display: inline-flex; gap: 4px; color: var(--c-gold-500); margin-bottom: var(--s-4); }
.testimonial-quote {
    font-family: var(--f-display);
    font-size: clamp(1.1rem, 1vw + 1rem, 1.5rem);
    line-height: 1.5;
    color: var(--c-emerald-900);
    margin-bottom: var(--s-5);
    font-weight: 500;
}
.testimonial-author strong { display: block; font-family: var(--f-body); color: var(--c-emerald-800); font-weight: 600; }
.testimonial-author span { display: block; font-size: 0.9rem; color: var(--c-text-soft); }

.testimonials-controls {
    display: flex; align-items: center; justify-content: center;
    gap: var(--s-4);
    margin-top: var(--s-6);
}
.testimonial-prev, .testimonial-next {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1.5px solid var(--c-border);
    background: var(--c-paper);
    color: var(--c-emerald-800);
    transition: all var(--t-fast);
}
.testimonial-prev:hover, .testimonial-next:hover { background: var(--c-emerald-800); color: var(--c-cream); border-color: var(--c-emerald-800); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--c-fog);
    transition: all var(--t-fast);
}
.testimonial-dot.is-active { background: var(--c-gold-500); width: 28px; border-radius: 999px; }


/* ─── 12. Enquiry ─────────────────────────────────────────────────────────── */
.enquiry { background: var(--c-bg-alt); }
.enquiry-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-6);
    align-items: start;
}

.enquiry-form-wrap {
    background: var(--c-paper);
    border-radius: var(--radius-lg);
    padding: var(--s-7);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}
.enquiry-form { display: grid; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.86rem; font-weight: 500; color: var(--c-emerald-900); }
.req { color: var(--c-gold-700); }

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    background: var(--c-bg);
    transition: all var(--t-fast);
    font-size: 0.95rem;
    color: var(--c-text);
    font-family: var(--f-body);
    width: 100%;
    min-height: 48px;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--c-emerald-600); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--c-emerald-700);
    background: var(--c-paper);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(11, 61, 46, 0.08);
}
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid { border-color: #c44; box-shadow: 0 0 0 4px rgba(196,68,68,0.08); }
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
.checkbox-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 0.86rem; color: var(--c-text-soft); }
.checkbox-label input { width: 18px; height: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--c-emerald-700); }

.consent-field { padding-top: 28px; }
.captcha-field input { font-weight: 600; }

#enquirySubmit { position: relative; }
#enquirySubmit .btn-loading { display: none; }
#enquirySubmit.is-loading .btn-label { opacity: 0.4; }
#enquirySubmit.is-loading .btn-loading { display: inline-flex; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#enquirySubmit.is-loading .btn-loading svg { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-fineprint { font-size: 0.8rem; color: var(--c-text-soft); text-align: center; margin-top: 4px; }

/* Alerts */
.alert { padding: var(--s-3) var(--s-4); border-radius: 12px; margin-bottom: var(--s-4); display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.alert strong { display: block; }
.alert-success { background: rgba(44, 174, 135, 0.1); border: 1px solid rgba(44, 174, 135, 0.3); color: var(--c-emerald-700); }
.alert-error   { background: rgba(196, 68, 68, 0.08);  border: 1px solid rgba(196, 68, 68, 0.3);  color: #a33;  }

/* Enquiry info cards */
.enquiry-info { display: grid; gap: var(--s-4); }
.info-card {
    background: var(--c-paper);
    border-radius: var(--radius);
    padding: var(--s-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
}
.info-card h3 { font-size: 1.15rem; margin-bottom: var(--s-3); color: var(--c-emerald-900); }
.info-card p { color: var(--c-text-soft); font-size: 0.92rem; margin-bottom: var(--s-3); }
.info-card-primary {
    background: linear-gradient(160deg, var(--c-emerald-900), var(--c-emerald-800));
    color: var(--c-cream);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}
.info-card-primary::before {
    content: ''; position: absolute; bottom: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 170, 62, 0.2), transparent 70%);
}
.info-card-primary h3 { color: var(--c-gold-300); position: relative; }
.info-card-primary p  { color: rgba(251, 246, 236, 0.8); position: relative; }
.info-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-cream);
    font-weight: 500;
    margin-bottom: 10px;
    transition: all var(--t-fast);
    position: relative;
    min-height: 48px;
}
.info-link:last-child { margin-bottom: 0; }
.info-link:hover { background: rgba(224, 170, 62, 0.15); border-color: var(--c-gold-500); color: var(--c-gold-300); transform: translateX(2px); }
.info-link-whatsapp svg { color: #25D366; }

.why-list { display: grid; gap: 10px; }
.why-list li {
    padding-left: 28px;
    position: relative;
    color: var(--c-text-soft);
    font-size: 0.92rem;
}
.why-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 16px; height: 8px;
    border-left: 2px solid var(--c-emerald-600);
    border-bottom: 2px solid var(--c-emerald-600);
    transform: rotate(-45deg);
}


/* ─── 13. Footer ──────────────────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(180deg, var(--c-emerald-900) 0%, #04201a 100%);
    color: rgba(251, 246, 236, 0.8);
    padding: var(--s-9) 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold-500), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: var(--s-7);
    padding-bottom: var(--s-8);
}
.footer-brand .footer-logo { width: 180px; height: auto; margin-bottom: var(--s-4); }
.footer-tagline { color: var(--c-gold-300); font-family: var(--f-display); font-size: 1.2rem; margin-bottom: var(--s-3); }
.footer-blurb { font-size: 0.92rem; line-height: 1.65; color: rgba(251, 246, 236, 0.65); }

.footer-heading { color: var(--c-gold-300); font-family: var(--f-display); font-size: 1.2rem; margin-bottom: var(--s-4); }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(251, 246, 236, 0.75); font-size: 0.92rem; transition: all var(--t-fast); }
.footer-links a:hover { color: var(--c-gold-300); padding-left: 6px; }

.footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(251, 246, 236, 0.75); font-size: 0.9rem; }
.footer-contact svg { color: var(--c-gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(251, 246, 236, 0.85); }
.footer-contact a:hover { color: var(--c-gold-300); }

.footer-find { font-size: 0.9rem; color: rgba(251, 246, 236, 0.7); margin-bottom: var(--s-3); }
.footer-maps-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(245, 217, 153, 0.4);
    border-radius: 999px;
    color: var(--c-gold-300);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--t-fast);
}
.footer-maps-btn:hover { background: var(--c-gold-500); color: var(--c-emerald-900); border-color: var(--c-gold-500); }

.footer-bottom {
    border-top: 1px solid rgba(245, 217, 153, 0.12);
    padding: var(--s-4) 0;
    background: rgba(0, 0, 0, 0.15);
}
.footer-bottom-row {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: var(--s-3);
    font-size: 0.85rem;
    color: rgba(251, 246, 236, 0.5);
}
.footer-credits { color: var(--c-gold-400); }


/* ─── 14. Floats (scroll-top, whatsapp) ───────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--c-emerald-800);
    color: var(--c-gold-300);
    box-shadow: var(--shadow);
    display: grid; place-items: center;
    opacity: 0; pointer-events: none;
    transform: translateY(8px);
    transition: all var(--t-med);
    z-index: 80;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--c-gold-500); color: var(--c-emerald-900); transform: translateY(-2px); }

.float-whatsapp {
    position: fixed; bottom: 84px; right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
    z-index: 80;
    transition: all var(--t-med);
    animation: pulse 2s var(--ease-in-out) infinite;
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50%      { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}


/* ─── 15. Lightbox ────────────────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(6, 42, 31, 0.95);
    backdrop-filter: blur(16px);
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: var(--s-5);
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
    max-width: 90vw; max-height: 86vh;
    text-align: center;
    animation: lbZoom var(--t-med) var(--ease-out);
}
@keyframes lbZoom { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-img {
    max-width: 100%; max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-caption {
    color: rgba(251, 246, 236, 0.85);
    font-size: 0.9rem;
    margin-top: var(--s-3);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-cream);
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 217, 153, 0.3);
    transition: all var(--t-fast);
    display: grid; place-items: center;
}
.lightbox-close { top: 24px; right: 24px; font-size: 32px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--c-gold-500); color: var(--c-emerald-900); border-color: var(--c-gold-500); }


/* ─── 16. Animations ──────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
    transition-delay: var(--delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }


/* ─── 17. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-list { gap: 0; }
    .nav-link { padding: 8px 12px; font-size: 0.9rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
    .about-grid, .location-grid, .enquiry-grid { grid-template-columns: 1fr; gap: var(--s-7); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 860px) {
    :root { --header-h: 72px; }
    section { padding: var(--s-8) 0; }
    .container { padding: 0 var(--s-4); }
    h1 { font-size: clamp(2.2rem, 8vw + 1rem, 3.4rem); }
    h2 { font-size: clamp(1.7rem, 4vw + 1rem, 2.4rem); }

    /* Mobile nav — remove backdrop-filter on header so fixed nav can escape it */
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(251, 246, 236, 0.96); }
    .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .primary-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        max-height: calc(100vh - var(--header-h));
        background: var(--c-cream);
        padding: var(--s-5);
        z-index: 95;
        transform: translateY(-110%);
        transition: transform var(--t-med) var(--ease-out);
        box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
        overflow-y: auto;
    }
    .primary-nav.open { transform: translateY(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 6px; }
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 48px;
        display: flex; align-items: center;
    }
    .nav-cta { justify-content: center; margin-top: var(--s-3); }
    .hamburger { display: flex; }

    .hero { min-height: 580px; padding: var(--s-7) 0; }
    .hero-meta { gap: var(--s-3); padding: var(--s-3) var(--s-4); }
    .hero-meta-item strong { font-size: 1.15rem; }
    .hero-meta-item span { font-size: 0.7rem; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
    .hero-scroll { display: none; }

    .about-media-card { display: none; }
    .about-media-frame { transform: rotate(0); aspect-ratio: 4/3; }

    .form-row { grid-template-columns: 1fr; }
    .consent-field { padding-top: 0; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); padding-bottom: var(--s-6); }

    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .hero-meta-divider { display: none; }
    .hero-meta { flex-direction: column; gap: 12px; }
    .hero-meta-item { flex-direction: row; gap: 6px; }
    .hero-meta-item strong { font-size: 1rem; }
    .hero-meta-item span { margin-top: 0; }

    .testimonial-card { padding: var(--s-5); }
    .gallery-item:nth-child(1) { grid-row: span 2; }
}


/* ─── 18. Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .float-whatsapp { animation: none !important; }
    .hero-bg { display: none !important; }
}
