:root {
    --ink: #1b2430;
    --ink-soft: #4a5666;
    --sand: #f6f3ee;
    --line: #e4ddd2;
    --gold: #b08d57;
    --white: #ffffff;
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: .2px;
}

a { color: inherit; }

.eyebrow, .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 .6rem;
}

/* env banner */
.env-banner {
    background: #8a1f1f;
    color: #fff;
    text-align: center;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .4rem;
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1.2rem, 4vw, 3rem);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .5px;
}
.brand span { color: var(--gold); margin-left: .15em; }

.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.site-nav a { text-decoration: none; font-size: .9rem; color: var(--ink-soft); transition: color .2s; }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: .45rem 1rem;
    border-radius: 999px;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }

/* hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 4rem 1.5rem;
}
.hero-inner { max-width: 760px; }
.hero-title { font-size: clamp(3rem, 9vw, 6rem); margin: .2rem 0 .8rem; }
.hero-tagline { font-size: clamp(1rem, 2.2vw, 1.3rem); font-weight: 300; max-width: 38ch; margin: 0 auto 2rem; }
.hero-eyebrow { color: #f0e2c8; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.2rem, 5vw, 3.5rem);
    margin-bottom: 2.4rem;
}
.hero-stats div { display: flex; flex-direction: column; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; line-height: 1; }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; opacity: .85; margin-top: .35rem; }

.hero-scroll {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    text-decoration: none;
    color: #fff;
    opacity: .8;
    animation: bob 2s ease-in-out infinite;
}
@@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .03em;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    transition: all .2s ease;
    cursor: pointer;
}
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-primary:hover { background: #997748; border-color: #997748; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* sections */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--max); margin: 0 auto; }
.section-muted { max-width: none; background: var(--sand); }
.section-muted > .section-head,
.section-muted > .carousel-wrap,
.section-muted > .location-inner { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}
.highlight { padding: 1.8rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.highlight h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.highlight p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* carousel */
.carousel-wrap {
    position: relative;
}
.carousel-viewport {
    overflow: hidden;
    border-radius: 10px;
}
.carousel-track {
    display: flex;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}
.gallery-item {
    flex: 0 0 calc(100% / 3);
    flex-shrink: 0;
    height: 300px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
}
.gallery-item + .gallery-item { border-left: 3px solid var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    transition: background .15s, box-shadow .15s;
}
.carousel-btn:hover { background: #fff; box-shadow: 0 3px 16px rgba(0,0,0,.26); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-prev { left: .6rem; }
.carousel-next { right: .6rem; }
@@media (max-width: 768px) { .gallery-item { flex-basis: 50%; } }
@@media (max-width: 480px) { .gallery-item { flex-basis: 100%; } }

/* tour placeholder */
.tour-placeholder {
    border: 1.5px dashed var(--line);
    border-radius: 14px;
    padding: clamp(2.5rem, 7vw, 4.5rem);
    text-align: center;
    background: var(--sand);
}
.tour-placeholder p { margin: 0 0 .6rem; font-size: 1.15rem; }
.tour-sub { color: var(--ink-soft); font-size: .98rem !important; }

/* location */
.location-inner { text-align: center; }
.location-address { font-size: 1.25rem; max-width: 30ch; margin: 0 auto 1.6rem; }

/* enquire */
.section-enquire { max-width: none; background: var(--ink); color: #fff; text-align: center; }
.enquire-inner { max-width: var(--max); margin: 0 auto; }
.section-enquire h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .8rem; }
.section-enquire p { color: rgba(255,255,255,.8); margin: 0 auto 1.8rem; max-width: 40ch; }
.section-enquire .eyebrow { color: var(--gold); }

/* footer */
.site-footer { background: #11171f; color: rgba(255,255,255,.75); padding: 2.6rem clamp(1.2rem, 5vw, 3rem); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: end; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin: 0; color: #fff; }
.footer-addr { margin: .3rem 0 0; font-size: .9rem; }
.footer-note { margin: 0; font-size: .8rem; opacity: .65; }

/* lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 60;
    background: rgba(10,14,20,.95);
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem;
    padding: 3.5rem 1rem 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-body { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 0; }
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 6px; }
.lightbox-caption { color: rgba(255,255,255,.8); margin-top: .8rem; font-size: .92rem; text-align: center; }
.lightbox-close {
    position: absolute; top: 1rem; right: 1.4rem;
    background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; padding: 0;
}
.lightbox-nav {
    flex-shrink: 0;
    width: 3.2rem; height: 3.2rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    font-size: 2.2rem; line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
    padding: 0;
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
@@media (max-width: 560px) {
    .lightbox { padding: 3.5rem 0 1.5rem; gap: 0; }
    .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); }
    .lightbox-prev { left: .4rem; }
    .lightbox-next { right: .4rem; }
}

@@media (max-width: 640px) {
    .site-nav a:not(.nav-cta) { display: none; }
}
