/* ============================================================
   VILLA MUKINJA — v2 design system  "Voda i šuma"
   Editorial, atmospheric, motion-first. No dependencies.
   ============================================================ */

:root {
  /* palette */
  --bg:        #f4f0e6;   /* warm paper */
  --bg-2:      #eae4d4;   /* deeper paper */
  --ink:       #14201a;   /* near-black forest */
  --deep:      #0d1d16;   /* dark section bg */
  --deep-2:    #12251d;
  --water:     #2e8f7c;   /* lake teal */
  --water-2:   #77c3b1;
  --gold:      #c8a468;
  --gold-2:    #a8874d;
  --paper:     #fbf8f1;
  --mut:       rgba(20,32,26,.62);
  --mut-l:     rgba(244,240,230,.66);
  --line:      rgba(20,32,26,.14);
  --line-l:    rgba(244,240,230,.16);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --s1:.5rem; --s2:1rem; --s3:1.5rem; --s4:2rem; --s5:3rem; --s6:4.5rem; --s7:7rem; --s8:10rem;
  --r: 20px; --r-s: 12px;
  --e: cubic-bezier(.65,.05,0,1);       /* expo-ish */
  --e2: cubic-bezier(.22,.61,.36,1);
  --head-h: 84px;
  --maxw: 1440px;
}

/* view transitions between pages (progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .45s var(--e) both; }
::view-transition-new(root) { animation: vtIn .6s var(--e) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-14px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(18px); } }

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; overscroll-behavior-x: none; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16.5px; line-height: 1.7;
  font-weight: 440;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* film grain over everything */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05; animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 10% { transform: translate(-3%,2%) } 20% { transform: translate(2%,-4%) }
  30% { transform: translate(-4%,-2%) } 40% { transform: translate(3%,3%) } 50% { transform: translate(-2%,4%) }
  60% { transform: translate(4%,-3%) } 70% { transform: translate(-3%,-4%) } 80% { transform: translate(2%,2%) } 90% { transform: translate(-4%,3%) }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- type ---------- */
h1,h2,h3 { font-family: var(--serif); font-weight: 380; line-height: 1.02; letter-spacing: -.01em; }
.d1 { font-size: clamp(3rem, 9.5vw, 8.2rem); }
.d2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
.d3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
em, .it { font-style: italic; font-weight: 340; }
.kick {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2);
  display: flex; align-items: center; gap: 14px;
}
.kick::before { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .6; }
.kick.center { justify-content: center; }
.kick.center::after { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .6; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--mut); font-weight: 400; max-width: 58ch; }
.dark .lede, .dark p { color: var(--mut-l); }
.dark { background: var(--deep); color: var(--bg); }
.dark h1,.dark h2,.dark h3 { color: var(--paper); }

/* ---------- layout ---------- */
.wrap { width: min(100% - clamp(2.5rem, 6vw, 8rem), var(--maxw)); margin-inline: auto; }
.sec { padding-block: clamp(var(--s6), 11vw, var(--s8)); position: relative; }
.sec-head { max-width: 720px; margin-bottom: clamp(var(--s5), 6vw, var(--s6)); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: var(--s3); margin-bottom: var(--s3); }

/* topo divider */
.topo { display: block; width: 100%; height: 70px; color: var(--line); }
.dark .topo { color: var(--line-l); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--bg);
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 1.02em 1.9em; border-radius: 999px; overflow: hidden;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 640; font-size: .92rem; letter-spacing: .02em;
  transition: transform .5s var(--e), box-shadow .5s var(--e), background .3s, color .3s;
  will-change: transform;
}
.btn .ar { width: 17px; height: 17px; flex: none; transition: transform .45s var(--e); }
.btn:hover .ar { transform: translateX(5px); }
.btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--water); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--e); z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: #fff; }
.btn-gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn-ghost { --btn-bg: transparent; --btn-fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px transparent; }
.btn-light { --btn-bg: var(--bg); --btn-fg: var(--ink); }

/* ---------- header ---------- */
.top {
  position: fixed; inset: 0 0 auto; z-index: 500; height: var(--head-h);
  display: flex; align-items: center;
  transition: transform .5s var(--e), background .4s, box-shadow .4s;
}
.top.hide { transform: translateY(-100%); }
.top.solid { background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: none; box-shadow: 0 1px 0 var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.logo { display: flex; flex-direction: column; line-height: 1; z-index: 620; }
.logo b { font-family: var(--serif); font-weight: 430; font-size: 1.5rem; letter-spacing: .01em; color: var(--bg); transition: color .3s; }
.logo span { font-size: .58rem; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.top.solid .logo b, .on-light .logo b, body.menu-on .logo b { color: var(--ink); }
.top-right { display: flex; align-items: center; gap: var(--s2); z-index: 620; }
.top .btn { padding: .8em 1.5em; font-size: .82rem; }

.lang-sw { display: flex; align-items: center; gap: 3px; font-size: .74rem; font-weight: 700; letter-spacing: .03em; color: var(--bg); transition: color .3s; }
.top.solid .lang-sw, .on-light .lang-sw, body.menu-on .lang-sw { color: var(--ink); }
.lang-sw a { padding: .35em .6em; border-radius: 999px; opacity: .55; transition: opacity .2s, background .2s; }
.lang-sw a:hover { opacity: .85; }
.lang-sw a.on { opacity: 1; background: color-mix(in srgb, currentColor 14%, transparent); }
.lang-sw span { opacity: .35; }
.menu-side .lang-sw { margin-top: 6px; }
.menu-side .lang-sw a { color: var(--ink); }

.mbtn {
  display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bg); transition: color .3s;
}
.top.solid .mbtn, .on-light .mbtn, body.menu-on .mbtn { color: var(--ink); }
.mbtn i { position: relative; width: 26px; height: 12px; display: block; }
.mbtn i::before, .mbtn i::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .45s var(--e), top .45s var(--e), width .3s;
}
.mbtn i::before { top: 0; } .mbtn i::after { top: 10px; width: 70%; }
.mbtn:hover i::after { width: 100%; }
body.menu-on .mbtn i::before { top: 5px; transform: rotate(45deg); }
body.menu-on .mbtn i::after { top: 5px; width: 100%; transform: rotate(-45deg); }

/* full-screen menu */
.menu {
  position: fixed; inset: 0; z-index: 600; background: var(--bg);
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--e);
  display: flex; align-items: center; overflow: hidden;
}
body.menu-on .menu { clip-path: inset(0 0 0% 0); }
.menu .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--s6); align-items: center; }
.menu nav a {
  display: block; font-family: var(--serif); font-weight: 360;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem); line-height: 1.14; color: var(--ink);
  transform: translateY(110%); opacity: 0; transition: transform .7s var(--e), opacity .5s, color .3s;
}
.menu nav .lnw { overflow: hidden; }
body.menu-on .menu nav a { transform: none; opacity: 1; }
.menu nav a:hover { color: var(--water); font-style: italic; }
.menu nav a small { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .2em; vertical-align: super; color: var(--gold-2); margin-left: 10px; }
.menu-side { color: var(--mut); font-size: .95rem; display: flex; flex-direction: column; gap: var(--s3); opacity: 0; transition: opacity .6s .35s; }
body.menu-on .menu-side { opacity: 1; }
.menu-side b { font-weight: 700; color: var(--ink); display: block; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 6px; }
.menu-side a:hover { color: var(--water); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--bg); }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media img { opacity: 0; transition: opacity 1.8s var(--e2); transform: scale(1.06); }
.hero-media img.on { opacity: 1; animation: drift 9s var(--e2) forwards; }
@keyframes drift { from { transform: scale(1.06) } to { transform: scale(1.16) } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,29,22,.5), rgba(13,29,22,.12) 40%, rgba(13,29,22,.82) 92%);
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(6rem, 12vh, 9rem); }
.hero .kick { color: var(--gold); }
.hero h1 { color: var(--paper); margin: var(--s3) 0 var(--s4); max-width: 12ch; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln span { display: block; transform: translateY(112%); animation: lineUp 1.1s var(--e) forwards; }
.hero h1 .ln:nth-child(2) span { animation-delay: .12s; }
.hero h1 .ln:nth-child(3) span { animation-delay: .24s; }
@keyframes lineUp { to { transform: none; } }
.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.hero-foot .lede { color: var(--mut-l); max-width: 44ch; }
.hero-cta { display: flex; gap: var(--s2); flex-wrap: wrap; }
.hero-dots { position: absolute; right: clamp(6.5rem,9vw,8.5rem); bottom: clamp(2rem,5.4vh,3.2rem); z-index: 3; display: flex; gap: 9px; }
.hero-dots button { width: 30px; height: 3px; border-radius: 3px; background: rgba(244,240,230,.3); transition: background .3s; }
.hero-dots button.on { background: var(--gold); }

/* marquee ticker */
.tick { background: var(--gold); color: var(--ink); overflow: hidden; padding: 15px 0; position: relative; z-index: 4; }
.tick-in { display: flex; gap: 3.2rem; width: max-content; animation: tick 26s linear infinite; }
.tick span { font-family: var(--serif); font-style: italic; font-size: 1.06rem; white-space: nowrap; display: flex; align-items: center; gap: 3.2rem; }
.tick span::after { content: "✳"; font-style: normal; font-size: .8rem; opacity: .55; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- reveal system ---------- */
.rv { opacity: 0; transform: translateY(44px); transition: opacity 1s var(--e2), transform 1s var(--e2); }
.rv.go { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-50px); transition: opacity 1s var(--e2), transform 1s var(--e2); }
.rv-r { opacity: 0; transform: translateX(50px); transition: opacity 1s var(--e2), transform 1s var(--e2); }
.rv-l.go, .rv-r.go { opacity: 1; transform: none; }
.rv2 { transition-delay: .12s; } .rv3 { transition-delay: .24s; } .rv4 { transition-delay: .36s; }
/* image curtain reveal */
.cur { position: relative; overflow: hidden; border-radius: var(--r); }
.cur::after { content: ""; position: absolute; inset: 0; background: var(--bg-2); transform: scaleY(1); transform-origin: top; transition: transform 1.1s var(--e); z-index: 2; }
.dark .cur::after { background: var(--deep-2); }
.cur.go::after { transform: scaleY(0); }
.cur img { transform: scale(1.15); transition: transform 1.4s var(--e); }
.cur.go img { transform: scale(1); }
/* parallax image inside frame */
.plx { overflow: hidden; border-radius: var(--r); }
.plx img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
/* crop a tall/portrait photo to a landscape frame so it matches sibling images */
.cur.wide { aspect-ratio: 4 / 3; }
.cur.wide img { height: 100%; object-position: center 40%; }

/* ---------- intro split ---------- */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(var(--s3), 3vw, var(--s5)); align-items: center; }
.split > .col-img { grid-column: span 6; }
.split > .col-txt { grid-column: span 5 / -1; }
.split.flip > .col-img { order: 2; grid-column: span 6 / -1; }
.split.flip > .col-txt { order: 1; grid-column: 1 / span 5; }
/* wide-card variant (text 5 cols / card 6 cols) — desktop only, stacks on mobile */
@media (min-width: 1021px) {
  .split > .col-txt.w5 { grid-column: 1 / span 5; order: 0; }
  .split > .col-img.w6 { grid-column: span 6 / -1; }
}
.split h2 { margin: var(--s3) 0; }
.split p + p { margin-top: var(--s2); }
.split .btn { margin-top: var(--s4); }
.facts { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.fact { border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: .84rem; font-weight: 640; }
.dark .fact { border-color: var(--line-l); }

/* rotating badge */
.spin-badge { position: absolute; right: -34px; bottom: -34px; width: 150px; height: 150px; z-index: 3; }
.spin-badge svg { width: 100%; height: 100%; animation: rot 16s linear infinite; }
.spin-badge text { font-family: var(--sans); font-size: 9.2px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; fill: var(--ink); }
.spin-badge .core { position: absolute; inset: 32%; background: var(--gold); border-radius: 50%; display: grid; place-content: center; color: var(--ink); }
.spin-badge .core svg { animation: none; width: 26px; height: 26px; }
@keyframes rot { to { transform: rotate(360deg); } }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(var(--s4), 4vw, var(--s6)) var(--s3); text-align: center; border-left: 1px solid var(--line-l); }
.stat:first-child { border-left: 0; }
.stat b { font-family: var(--serif); font-weight: 340; font-size: clamp(2.6rem, 5vw, 4.6rem); color: var(--gold); display: block; line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mut-l); }

/* ---------- rooms rail ---------- */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s5); }
.rail { display: flex; gap: clamp(var(--s3), 2.4vw, var(--s4)); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s3); cursor: grab; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail.grabbing { cursor: grabbing; scroll-snap-type: none; }
.rcard { flex: 0 0 min(78vw, 460px); scroll-snap-align: start; position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5.1; color: var(--paper); }
.rcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--e); }
.rcard:hover img { transform: scale(1.07); }
.rcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(13,29,22,.86) 96%); }
.rcard-body { position: absolute; inset: auto 0 0; z-index: 2; padding: var(--s4); }
.rcard-body .no { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; }
.rcard-body h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 6px 0 8px; }
.rcard-body p { color: var(--mut-l); font-size: .92rem; max-width: 34ch; }
.rcard-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.rcard-tags span { font-size: .7rem; font-weight: 700; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-l); }
.rcard .go-ic {
  position: absolute; top: var(--s3); right: var(--s3); z-index: 2; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(244,240,230,.14); backdrop-filter: blur(4px);
  display: grid; place-content: center; transition: background .3s, transform .5s var(--e);
}
.rcard:hover .go-ic { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.rail-bar { height: 2px; background: var(--line); border-radius: 2px; margin-top: var(--s2); overflow: hidden; }
.dark .rail-bar { background: var(--line-l); }
.rail-bar i { display: block; height: 100%; width: 20%; background: var(--gold); border-radius: 2px; transition: width .2s, transform .2s; }

/* ---------- big quote / reviews ---------- */
.quote-big { text-align: center; max-width: 900px; margin-inline: auto; }
.quote-big blockquote { font-family: var(--serif); font-weight: 350; font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.32; }
.quote-big blockquote em { color: var(--water); }
.quote-big figcaption { margin-top: var(--s4); font-size: .8rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--mut); }
.q-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--s3); }
.q-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
.q-dots button.on { background: var(--gold-2); transform: scale(1.3); }

/* ---------- gallery weave ---------- */
.weave { display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(10px, 1.6vw, 22px); }
.weave a { border-radius: var(--r-s); overflow: hidden; position: relative; display: block; }
.weave img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--e); }
.weave a:hover img { transform: scale(1.06); }
.weave a::after { content: "+"; position: absolute; inset: 0; display: grid; place-content: center; font-size: 2rem; color: #fff; background: rgba(13,29,22,.35); opacity: 0; transition: opacity .35s; }
.weave a:hover::after { opacity: 1; }
.w-a { grid-column: span 5; aspect-ratio: 4/5; }
.w-b { grid-column: span 4; aspect-ratio: 1; margin-top: 14%; }
.w-c { grid-column: span 3; aspect-ratio: 3/4; }
.w-d { grid-column: span 4; aspect-ratio: 1; }
.w-e { grid-column: span 4; aspect-ratio: 4/3; margin-top: -10%; }
.w-f { grid-column: span 4; aspect-ratio: 4/5; }

/* clean uniform gallery grid */
.ggrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.2vw, 16px); }
.g-tile { position: relative; display: block; border-radius: var(--r-s); overflow: hidden; aspect-ratio: 1; background: var(--bg-2); }
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--e); }
.g-tile:hover img { transform: scale(1.07); }
.g-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,16,12,.34)); opacity: 0; transition: opacity .4s; }
.g-tile:hover::after { opacity: 1; }
.g-tile .zoom { position: absolute; right: 10px; bottom: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(244,240,230,.9); color: var(--deep); display: grid; place-content: center; opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s var(--e); }
.g-tile:hover .zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 1020px) { .ggrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .ggrid { grid-template-columns: repeat(3, 1fr); gap: 6px; } }

/* ---------- CTA panorama ---------- */
.cta-pan { position: relative; overflow: hidden; color: var(--paper); text-align: center; }
.cta-pan .bgimg { position: absolute; inset: 0; }
.cta-pan .bgimg img { width: 100%; height: 118%; object-fit: cover; }
.cta-pan::after { content: ""; position: absolute; inset: 0; background: rgba(13,29,22,.72); }
.cta-pan .wrap { position: relative; z-index: 2; }
.cta-pan h2 { max-width: 16ch; margin: var(--s3) auto var(--s2); }
.cta-pan .lede { margin: 0 auto var(--s5); color: var(--mut-l); }

/* ---------- footer ---------- */
footer { background: var(--deep); color: var(--mut-l); position: relative; overflow: hidden; }
.foot-word {
  font-family: var(--serif); font-weight: 350; text-align: center; white-space: nowrap;
  font-size: clamp(3rem, 11.6vw, 10.4rem); line-height: 1; color: var(--paper);
  padding: clamp(var(--s5),7vw,var(--s7)) 0 var(--s4); opacity: .96; letter-spacing: .01em;
}
.foot-word em { color: var(--gold); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--s5); padding-block: var(--s5) var(--s5); border-top: 1px solid var(--line-l); }
.foot-grid h4 { font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s3); }
.foot-grid a { display: block; padding: 4px 0; transition: color .3s, transform .3s; }
.foot-grid a:hover { color: var(--paper); transform: translateX(5px); }
.foot-grid p { font-size: .92rem; }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); padding-block: var(--s3); border-top: 1px solid var(--line-l); font-size: .8rem; }
.socials { display: flex; gap: 10px; margin-top: var(--s3); }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-l); display: grid; place-content: center; transition: .35s var(--e2); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-4px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- page hero (subpages) ---------- */
.phero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.phero .bgimg { position: absolute; inset: 0; }
.phero .bgimg img { width: 100%; height: 116%; object-fit: cover; }
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,29,22,.42), rgba(13,29,22,.78)); }
.phero-light::after { background: linear-gradient(180deg, rgba(13,29,22,.06) 0%, rgba(13,29,22,.14) 45%, rgba(13,29,22,.62) 100%); }
.phero .wrap { position: relative; z-index: 2; padding-bottom: clamp(var(--s5), 7vh, var(--s6)); }
.phero h1 { margin-top: var(--s2); }
.phero .kick { color: var(--gold); }

/* ---------- feature list ---------- */
.flist { display: flex; flex-direction: column; gap: 14px; margin: var(--s4) 0; }
.flist li { display: block; position: relative; padding-left: 32px; font-size: 1rem; }
.flist li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--water); font-weight: 700; }
.dark .flist li::before { color: var(--water-2); }

/* ---------- forms ---------- */
.fcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(var(--s4), 4vw, var(--s5)); }
.dark .fcard { background: var(--deep-2); border-color: var(--line-l); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--s2); }
.fg label { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.fg input, .fg select, .fg textarea {
  padding: 15px 17px; border: 1.5px solid var(--line); border-radius: var(--r-s);
  background: var(--bg); color: var(--ink); font: inherit; font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
}
.dark .fg input, .dark .fg select, .dark .fg textarea { background: rgba(244,240,230,.06); border-color: var(--line-l); color: var(--paper); }
.dark .fg input::-webkit-calendar-picker-indicator { filter: invert(.85); }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: 0; border-color: var(--water); box-shadow: 0 0 0 4px rgba(46,143,124,.14); }
.fg textarea { min-height: 130px; resize: vertical; }
.fnote { font-size: .8rem; color: var(--mut); margin-top: var(--s2); }
.dark .fnote { color: var(--mut-l); }
.fok { display: none; text-align: center; padding: var(--s4); border: 1px solid var(--water); border-radius: var(--r-s); }
.fok.show { display: block; }

/* ---------- chat fab ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab-main { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-content: center; box-shadow: 0 14px 34px -10px rgba(13,29,22,.55); transition: transform .4s var(--e); }
.fab-main:hover { transform: scale(1.08) rotate(6deg); }
.fab-main svg { width: 26px; height: 26px; grid-area: 1/1; transition: opacity .25s, transform .4s var(--e); }
.fab-main .x { opacity: 0; transform: rotate(-90deg); }
.fab.on .fab-main .c { opacity: 0; transform: rotate(90deg); }
.fab.on .fab-main .x { opacity: 1; transform: none; }
.fab-opts { display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.fab-opt { display: flex; align-items: center; gap: 10px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); padding: 12px 19px; border-radius: 999px; font-weight: 700; font-size: .88rem; box-shadow: 0 10px 26px -12px rgba(13,29,22,.4); opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none; transition: .4s var(--e); }
.fab.on .fab-opt { opacity: 1; transform: none; pointer-events: auto; }
.fab-opt svg { width: 19px; height: 19px; color: var(--water); }
.fab-opt:hover { background: var(--ink); color: var(--bg); }

/* ---------- park map (v2 skin) ---------- */
.pmap-frame { position: relative; }
.pmap { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(13,29,22,.5); }
.pmap img { width: 100%; height: auto; display: block; }
.pmap::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 94%, rgba(8,16,10,.92) 97.5%, #0a120c 100%),
              linear-gradient(90deg, transparent 98%, rgba(8,16,10,.6) 100%); }
.poi { position: absolute; transform: translate(-50%,-50%); min-width: 30px; height: 30px; padding: 0 6px;
  border-radius: 999px; display: grid; place-content: center; font-weight: 800; font-size: .64rem; color: #fff;
  box-shadow: 0 5px 14px -5px rgba(0,0,0,.55), 0 0 0 2px rgba(255,255,255,.9); transition: transform .3s var(--e2); cursor: pointer; }
.poi:hover { transform: translate(-50%,-50%) scale(1.15); }
.poi.on { transform: translate(-50%,-50%) scale(1.22); box-shadow: 0 7px 18px -5px rgba(0,0,0,.6), 0 0 0 3px var(--bg); }
.poi-e { background: #1f6f5c; } .poi-st { background: #ffd41d; color: #14201a; } .poi-p { background: #e6007e; }
.poi-x { background: #3d6fa3; font-size: .56rem; }
.poi-vm { background: var(--gold); color: var(--ink); width: 40px; height: 40px; }
.poi-vm svg { width: 21px; height: 21px; }
.poi-vm::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--gold); animation: pulse 2s var(--e2) infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .9 } 100% { transform: scale(1.4); opacity: 0 } }
.poi-cover { position: absolute; transform: translate(-50%,-50%); width: 3.2%; aspect-ratio: 1; border-radius: 50%; background: #33582f; box-shadow: 0 0 10px 6px rgba(51,88,47,.95); pointer-events: none; }
.mbub { position: absolute; z-index: 20; width: clamp(230px, 33%, 330px); background: rgba(251,248,241,.97); border-radius: var(--r-s); box-shadow: 0 20px 55px -14px rgba(0,0,0,.55); border: 1px solid var(--line); padding: var(--s2) var(--s3) var(--s3); color: var(--ink); }
.mbub .x { position: absolute; top: 6px; right: 9px; color: var(--mut); }
.mbub .tg { font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 2px; }
.mbub h3 { font-size: 1.3rem; margin-bottom: 4px; }
.mbub p { font-size: .84rem; line-height: 1.55; color: var(--mut); }
.mbub ul { margin-top: 8px; padding: 9px 12px; background: rgba(46,143,124,.1); border-radius: 8px; }
.mbub li { font-size: .78rem; }
.mbub .btn { margin-top: 12px; padding: .7em 1.4em; font-size: .8rem; }
.mbub.corner { top: 10px; right: 10px; left: auto !important; }
.pm-hint { display: none; }
.fsx { position: fixed; top: 16px; right: 16px; z-index: 720; width: 46px; height: 46px; border-radius: 50%; background: var(--bg); color: var(--ink); font-size: 1.05rem; box-shadow: 0 10px 28px -8px rgba(0,0,0,.6); }

@media (max-width: 860px) {
  .pm-hint { display: block; text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-2); margin-bottom: var(--s2); text-transform: uppercase; }
  .pmap-frame { cursor: zoom-in; }
  .pmap .poi { min-width: 13px; height: 13px; padding: 0; font-size: 0; pointer-events: none; box-shadow: 0 0 0 1.5px rgba(255,255,255,.9); }
  .pmap .poi-vm { width: 19px; height: 19px; } .pmap .poi-vm svg { width: 11px; height: 11px; } .pmap .poi-vm::after { inset: -4px; }
  .pmap .mbub { display: none; }
  body.fsmap { overflow: hidden; }
  body.fsmap .pmap-frame { position: fixed; inset: 0; z-index: 700; background: rgba(8,14,10,.97); border-radius: 0; cursor: default; }
  body.fsmap .pmap { position: absolute; top: 50%; left: 50%; border-radius: 10px; }
  @media (orientation: portrait) { body.fsmap .pmap { width: min(96vh, 136vw); max-width: none; transform: translate(-50%,-50%) rotate(90deg); } }
  @media (orientation: landscape) { body.fsmap .pmap { width: min(96vw, 132vh); transform: translate(-50%,-50%); } }
  body.fsmap .pmap .poi { pointer-events: auto; min-width: 30px; height: 30px; padding: 0 6px; font-size: .62rem; box-shadow: 0 4px 12px -4px rgba(0,0,0,.5), 0 0 0 2px rgba(255,255,255,.85); }
  body.fsmap .pmap .poi-vm { width: 38px; height: 38px; } body.fsmap .pmap .poi-vm svg { width: 20px; height: 20px; }
  body.fsmap .pmap .mbub { display: block; width: clamp(200px, 38%, 290px); }
}

/* ---------- cards grid (programs / activities) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: var(--s3); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s4); transition: transform .5s var(--e), box-shadow .5s var(--e), border-color .4s; }
.card:hover { transform: translateY(-7px); box-shadow: 0 26px 54px -26px rgba(13,29,22,.35); border-color: var(--gold); }
.card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.card p { font-size: .93rem; color: var(--mut); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s3); }
.chips span { font-size: .72rem; font-weight: 700; color: var(--water); background: rgba(46,143,124,.1); padding: 6px 13px; border-radius: 999px; }
.card .btn { margin-top: var(--s3); padding: .7em 1.4em; font-size: .8rem; }
.acard { padding: 0; overflow: hidden; }
.acard .im { aspect-ratio: 16/10; overflow: hidden; }
.acard .im img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--e); }
.acard:hover .im img { transform: scale(1.08); }
.acard .bd { padding: var(--s3) var(--s4) var(--s4); }

/* hours table */
.hrs { border-top: 2px solid var(--gold); }
.hrs .row { display: flex; justify-content: space-between; gap: var(--s2); padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: .93rem; }
.hrs .row.h { font-weight: 800; text-transform: uppercase; font-size: .72rem; letter-spacing: .14em; color: var(--gold-2); border-bottom-width: 2px; }
.hrs .row b { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; }

/* booking search grid */
.rbe-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s2); }
@media (max-width: 860px) {
  .rbe-grid { grid-template-columns: repeat(2, 1fr); }
  .rbe-grid .fg:last-child { grid-column: 1 / -1; }
}

/* numbered route list */
.route { list-style: none; counter-reset: r; border-top: 2px solid var(--gold); }
.route li { counter-increment: r; position: relative; display: flex; justify-content: space-between; align-items: baseline; gap: var(--s2); padding: 12px 2px 12px 36px; border-bottom: 1px solid var(--line); font-size: .93rem; }
.route li::before { content: counter(r); position: absolute; left: 0; top: 11px; width: 23px; height: 23px; border-radius: 50%; background: var(--gold); color: var(--deep); font-size: .72rem; font-weight: 800; display: grid; place-content: center; }
.route li b { flex: none; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-2); white-space: nowrap; }
.dark .route li { border-color: var(--line-l); }

/* swipeable photo gallery */
.gal { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: 0 26px 60px -28px rgba(13,29,22,.35); }
.gal-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.gal-track::-webkit-scrollbar { display: none; }
.gal-track > * { flex: 0 0 100%; scroll-snap-align: start; min-width: 0; }
.gal-track img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.gal-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 42px; height: 42px; border-radius: 50%; background: rgba(244,240,230,.92); color: var(--ink); display: grid; place-content: center; box-shadow: 0 8px 22px -8px rgba(13,29,22,.55); transition: background .3s, transform .3s var(--e); }
.gal-btn:hover { background: var(--gold); }
.gal-btn:active { transform: translateY(-50%) scale(.92); }
.gal-btn.prev { left: 12px; } .gal-btn.next { right: 12px; }
.gal-btn svg { width: 18px; height: 18px; }
.gal-dots { position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
.gal-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(244,240,230,.6); box-shadow: 0 1px 4px rgba(13,29,22,.35); transition: background .3s, transform .3s; }
.gal-dots i.on { background: var(--gold); transform: scale(1.3); }
@media (max-width: 640px) { .gal-btn { width: 36px; height: 36px; } }

/* themed google map */
.gmap { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(13,29,22,.4); border: 1px solid var(--line); }
.gmap iframe { width: 100%; height: 480px; border: 0; display: block; filter: grayscale(.88) sepia(.36) saturate(1.05) hue-rotate(-6deg) brightness(1.04) contrast(.92); }
.gmap-tint { position: absolute; inset: 0; pointer-events: none; background: rgba(244, 240, 230, .16); box-shadow: inset 0 0 0 1px var(--line), inset 0 -70px 70px -50px rgba(13,29,22,.28); }
.gmap-card { position: absolute; left: 18px; bottom: 18px; max-width: 290px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: 0 18px 44px -18px rgba(13,29,22,.45); }
.gmap-card .gc-k { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.gmap-card h3 { font-size: 1.5rem; margin: 4px 0 2px; }
.gmap-card .gc-a { font-size: .85rem; color: var(--mut); margin-bottom: 12px; }
.gmap-card .btn { padding: .7em 1.3em; font-size: .8rem; }
@media (max-width: 640px) {
  .gmap iframe { height: 360px; }
  .gmap-card { position: static; max-width: none; border-radius: 0; border: 0; border-top: 1px solid var(--line); box-shadow: none; }
}

/* FAQ accordion */
.faqs { display: flex; flex-direction: column; gap: 10px; }
.faq { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s2); padding: 18px 22px; font-weight: 700; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-2); display: grid; place-content: center; font-weight: 600; transition: transform .35s var(--e); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] { border-color: var(--gold); }
.faq .faq-a { padding: 0 22px 18px; color: var(--mut); font-size: .95rem; }

/* dinner menu pages */
.weave.menu-weave { max-width: 860px; margin-inline: auto; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .weave.menu-weave { grid-template-columns: 1fr; } }

/* lightbox */
.lbx { position: fixed; inset: 0; z-index: 800; background: rgba(9,16,12,.96); display: none; place-items: center; padding: clamp(14px,4vw,40px); }
.lbx.on { display: grid; }
.lbx img { max-width: min(94vw, 1400px); max-height: 86vh; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.lbx-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: rgba(244,240,230,.12); color: var(--paper); display: grid; place-content: center; transition: background .3s, transform .3s var(--e); backdrop-filter: blur(6px); }
.lbx-btn:hover { background: var(--gold); color: var(--deep); }
.lbx-btn:active { transform: translateY(-50%) scale(.9); }
.lbx-btn svg { width: 24px; height: 24px; }
.lbx-prev { left: clamp(10px,3vw,28px); } .lbx-next { right: clamp(10px,3vw,28px); }
.lbx-close { position: absolute; top: clamp(12px,3vw,26px); right: clamp(12px,3vw,26px); z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: rgba(244,240,230,.12); color: var(--paper); display: grid; place-content: center; font-size: 1.1rem; transition: background .3s; backdrop-filter: blur(6px); }
.lbx-close:hover { background: var(--gold); color: var(--deep); }
.lbx-count { position: absolute; bottom: clamp(14px,3vw,26px); left: 50%; transform: translateX(-50%); z-index: 2; color: var(--paper); font-size: .82rem; letter-spacing: .12em; font-weight: 600; background: rgba(9,16,12,.5); padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
@media (max-width: 640px) { .lbx-btn { width: 42px; height: 42px; } .lbx-btn svg { width: 20px; height: 20px; } }

/* cursor (fine pointers only) */
@media (pointer: fine) {
  .cursor { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; mix-blend-mode: difference; }
  .cursor i { position: absolute; top: -5px; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: #f4f0e6; display: block; transition: transform .25s var(--e2); }
  .cursor.big i { transform: scale(3.4); }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .split > .col-img, .split > .col-txt, .split.flip > .col-img, .split.flip > .col-txt { grid-column: 1 / -1; order: initial; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; border-top: 1px solid var(--line-l); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .menu .wrap { grid-template-columns: 1fr; gap: var(--s4); align-content: center; }
  .weave { grid-template-columns: repeat(6, 1fr); }
  .w-a { grid-column: span 3; } .w-b { grid-column: span 3; margin-top: 0; }
  .w-c { grid-column: span 2; } .w-d { grid-column: span 2; } .w-e { grid-column: span 2; margin-top: 0; } .w-f { display: none; }
}
@media (max-width: 640px) {
  :root { --head-h: 70px; }
  body { font-size: 15.5px; }
  .hero .wrap { padding-bottom: 5.5rem; }
  .hero h1 { max-width: none; }
  .hero-cta .btn { flex: 1 1 auto; min-width: max-content; justify-content: center; padding: .95em 1.1em; font-size: .85rem; white-space: nowrap; }
  .frow { grid-template-columns: 1fr; }
  .top .btn { display: none; }
  .rcard { flex-basis: 82vw; }
  .weave { grid-template-columns: repeat(2, 1fr); }
  .w-a,.w-b,.w-c,.w-d,.w-e { grid-column: span 1; aspect-ratio: 1; }
  .foot-base { flex-direction: column; }
  .spin-badge { width: 110px; height: 110px; right: -12px; bottom: -22px; }
  .hrs .row { font-size: .85rem; gap: var(--s1, 10px); }
  .fcard { padding: var(--s3) var(--s3) var(--s4); }
}
