/* =========================================================
   Zeegolf — Concept 1 ("Mirall"): slate blue, peach accent,
   giant wordmark hero, pill UI, soft white cards.
   ========================================================= */

:root {
  --bg: #7a9bac;
  --bg-deep: #6b8c9d;
  --dark: #0a0e0e;
  --dark-2: #111617;
  --white: #ffffff;
  --accent: #ffc392;
  --accent-2: #f7b77a;
  --ink: #0a0e0e;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, li, dl, dd, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

.container {
  width: min(var(--container), 100% - 2 * var(--pad));
  margin-inline: auto;
  position: relative;
}

/* subtle vertical grid lines like the reference */
.section { position: relative; padding-block: clamp(80px, 10vw, 140px); }
.section > .container::before,
.section > .container::after {
  content: "";
  position: absolute;
  inset-block: -100vh;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}
.section > .container::before { left: 0; }
.section > .container::after { right: 0; }

.label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lede { font-size: 18px; color: var(--muted); }

/* ---------- pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.pill .arrow { transition: transform .25s ease; }
.pill:hover .arrow { transform: translateX(3px); }
.pill--ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.pill--ghost:hover { background: rgba(255,255,255,.2); }
.pill--outline { border: 1px solid rgba(255,255,255,.5); }
.pill--outline:hover { background: var(--white); color: var(--ink); }
.pill--white { background: var(--white); color: var(--ink); }
.pill--white:hover { transform: translateY(-2px); }
.pill--accent { background: var(--accent); color: var(--ink); }
.pill--accent:hover { background: var(--accent-2); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: absolute; inset-inline: 0; top: 0; z-index: 50;
  padding-top: 18px;
}
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.nav__group { display: flex; gap: 8px; }
.nav__group--right { justify-content: flex-end; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand img { width: 40px; height: auto; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-text strong { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; }
.nav__brand-text small { font-size: 11px; opacity: .8; letter-spacing: .02em; }
.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); position: relative; margin-left: auto;
}
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; transition: .3s; }
.nav__burger span:first-child { top: 17px; } .nav__burger span:last-child { bottom: 17px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  margin: 14px var(--pad) 0; padding: 18px; border-radius: var(--radius);
  background: rgba(10,14,14,.85); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu a { padding: 10px 6px; font-size: 18px; }
.mobile-menu .pill { justify-content: center; margin-top: 8px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(122,155,172,.55) 0%, rgba(122,155,172,.15) 35%, rgba(122,155,172,0) 60%, rgba(122,155,172,.7) 100%),
    linear-gradient(90deg, rgba(60,85,100,.35), rgba(60,85,100,0) 50%);
}
.hero__content { padding-top: 120px; padding-bottom: 40px; min-height: 100svh; display: flex; flex-direction: column; }
.hero__meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 30px; }
.hero__meta-item { display: flex; gap: 14px; align-items: flex-start; max-width: 300px; font-size: 17px; font-weight: 500; }
.hero__meta-item--right { text-align: right; flex-direction: row-reverse; }
.hero__title {
  font-size: clamp(88px, 24vw, 370px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -0.045em;
  margin: 8px 0 0 -0.04em;
  background: linear-gradient(180deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.18));
}
.hero__callouts { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-top: 26px; flex: 1; }
.callout {
  position: relative; max-width: 350px; padding: 22px 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
  font-size: 17px; font-weight: 500;
}
.callout::before, .callout::after { content: ""; position: absolute; }
.callout--left::before { top: -40px; right: 20%; width: 1px; height: 40px; background: rgba(255,255,255,.55); transform: rotate(-35deg); transform-origin: bottom; }
.callout--left::after { top: -62px; right: calc(20% + 18px); width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.35); }
.callout--right { margin-top: 140px; }
.callout--right::before { top: -40px; left: 70%; width: 1px; height: 40px; background: rgba(255,255,255,.55); transform: rotate(35deg); transform-origin: bottom; }
.callout--right::after { top: -62px; left: calc(70% + 12px); width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.35); }
.hero__social { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; background: rgba(255,255,255,.08); transition: .25s; }
.social-btn:hover { background: #fff; color: var(--ink); }

/* ---------- concept ---------- */
.concept { text-align: center; }
.concept__title { max-width: 920px; margin: 18px auto 0; font-size: clamp(34px, 4.6vw, 64px); }
.concept__body { position: relative; margin-top: 60px; min-height: 520px; display: grid; place-items: center; }
.concept__text { max-width: 480px; font-size: 17px; color: var(--muted); display: grid; gap: 16px; justify-items: center; position: relative; z-index: 2; }
.concept__text .pill { margin-top: 8px; }
.concept__img { position: absolute; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.18); }
.concept__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.concept__img:hover img { transform: scale(1.05); }
.concept__img--a { left: 0; top: 0; width: 300px; height: 210px; }
.concept__img--b { left: 90px; top: 200px; width: 230px; height: 290px; }
.concept__img--c { right: 0; top: -40px; width: 340px; height: 260px; }
.concept__img--d { right: 60px; bottom: 0; width: 260px; height: 200px; }

/* ---------- experience ---------- */
.experience__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.experience__text { text-align: right; display: grid; gap: 20px; justify-items: end; }
.experience__text .lede { max-width: 380px; }
.experience__cards { position: relative; height: 520px; }
.ecard {
  position: absolute; inset: 0; margin: auto; width: min(100%, 540px); height: 480px;
  background: #fff; color: var(--ink); border-radius: 22px; padding: 12px 24px 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s, filter .6s;
  display: flex; flex-direction: column; gap: 16px;
}
.ecard__img { border-radius: 14px; overflow: hidden; height: 260px; }
.ecard__img img { width: 100%; height: 100%; object-fit: cover; }
.ecard h3 { font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.ecard__meta { display: grid; gap: 6px; color: #55707d; font-size: 15px; }
.ecard__meta div { display: flex; gap: 12px; } .ecard__meta dt { min-width: 56px; }
.ecard__go {
  position: absolute; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center; font-size: 22px; transition: .3s;
}
.ecard__go:hover { transform: rotate(-45deg) scale(1.06); }
.ecard.is-active { transform: none; z-index: 3; opacity: 1; }
.ecard.is-next { transform: rotate(-6deg) translate(-24px, 10px) scale(.96); z-index: 2; opacity: .9; filter: brightness(.96); }
.ecard.is-prev { transform: rotate(5deg) translate(28px, 18px) scale(.94); z-index: 1; opacity: .8; filter: brightness(.92); }
.dots { grid-column: 1 / -1; display: flex; justify-content: center; gap: 14px; margin-top: 10px; }
.dots button { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.5); transition: .3s; }
.dots button[aria-selected="true"] { background: #fff; transform: scale(1.1); }

/* ---------- rooms (dark) ---------- */
.section--dark { background: var(--dark); }
.section--dark > .container::before, .section--dark > .container::after { background: rgba(255,255,255,.08); }
.rooms__head { display: grid; grid-template-columns: 1.2fr 1.4fr auto; gap: 40px; align-items: start; padding-bottom: 60px; }
.rooms__head p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 440px; }
.rooms__head .pill { justify-self: end; }
.rooms__list { border-top: 1px solid rgba(255,255,255,.1); }
.rooms__row {
  position: relative; display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.rooms__row h3 { font-size: 20px; font-weight: 600; }
.rooms__row p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 520px; }
.rooms__more { justify-self: end; color: var(--accent); font-weight: 500; display: inline-flex; gap: 8px; }
.rooms__more .arrow { transition: .25s; } .rooms__row:hover .rooms__more .arrow { transform: translateX(4px); }
.rooms__peek {
  position: absolute; right: 22%; top: 50%; width: 180px; height: 130px; object-fit: cover; border-radius: 12px;
  transform: translateY(-50%) rotate(-4deg) scale(.9); opacity: 0; pointer-events: none;
  transition: .4s cubic-bezier(.2,.7,.2,1); box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.rooms__row:hover .rooms__peek { opacity: 1; transform: translateY(-50%) rotate(-4deg) scale(1); }

/* ---------- booking ---------- */
.booking { text-align: center; }
.booking h2 { max-width: 820px; margin: 0 auto; }
.bookbar {
  margin: 56px auto 0; max-width: 1020px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-inline: 1px solid rgba(255,255,255,.35);
}
.bookbar__field {
  display: grid; gap: 14px; text-align: left; padding: 6px 40px 22px; border-right: 1px solid rgba(255,255,255,.35); position: relative;
}
.bookbar__field:last-of-type { border-right: 0; }
.bookbar__field span { text-align: center; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.bookbar__field input, .bookbar__field select {
  appearance: none; -webkit-appearance: none; width: 100%; background: transparent; border: 0; color: #fff;
  font: inherit; font-size: 18px; font-weight: 500; padding: 4px 0; outline: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='white' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center;
}
.bookbar__field input::-webkit-calendar-picker-indicator { opacity: 0; position: absolute; inset: 0; width: 100%; cursor: pointer; }
.bookbar__field select option { color: #111; }
.bookbar__submit { grid-column: 1 / -1; display: grid; justify-items: center; gap: 14px; padding-top: 36px; }
.bookbar__note { font-size: 14px; color: rgba(255,255,255,.7); min-height: 1.4em; }

/* ---------- testimonials ---------- */
.testimonials { padding-bottom: clamp(80px, 10vw, 140px); }
.tcard {
  position: relative; overflow: hidden; background: var(--accent); color: var(--ink); border-radius: 22px;
  padding: 48px 40px 40px; display: grid; grid-template-columns: 220px 1fr; gap: 60px; min-height: 480px;
}
.tcard__mark { position: absolute; right: 30px; top: -20px; width: 300px; opacity: .22; filter: brightness(20) ; mix-blend-mode: soft-light; pointer-events: none; }
.tcard__tabs li button { width: 100%; text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(10,14,14,.3); font-size: 15px; color: rgba(10,14,14,.45); transition: .25s; }
.tcard__tabs li.is-active button { color: var(--ink); border-color: var(--ink); font-weight: 500; }
.tcard__body { display: grid; gap: 12px; align-content: start; padding-top: 30px; max-width: 700px; }
.tcard__quote { font-size: 90px; line-height: .6; font-weight: 700; }
.tcard__body blockquote { font-size: clamp(20px, 2.2vw, 28px); font-style: italic; font-weight: 500; line-height: 1.4; letter-spacing: -0.01em; transition: opacity .35s; }
.tcard__foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: auto; }
.tcard__rating { font-size: 14px; font-weight: 500; opacity: .8; }
.tcard__nav { display: flex; gap: 12px; }
.circle-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 20px; transition: .25s; }
.circle-btn:hover { transform: translateX(-2px); }
.circle-btn--dark { background: var(--ink); color: #fff; } .circle-btn--dark:hover { transform: translateX(2px); }

/* ---------- dining ---------- */
.dining__head { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; margin-bottom: 40px; }
.dining__badge { display: flex; align-items: center; gap: 14px; font-size: 30px; font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
.tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.5); font-size: 15px; font-weight: 500; transition: .25s; }
.tag:hover { background: rgba(255,255,255,.15); }
.tag.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
.dining__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.dcard { background: #fff; color: var(--ink); border-radius: 22px; padding: 12px 12px 22px; position: relative; }
.dcard__img { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.dcard__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s; }
.dcard__row { display: grid; grid-template-columns: 90px 1fr 60px; gap: 24px; align-items: center; padding: 22px 12px 0; }
.dcard__label { color: #55707d; font-size: 15px; line-height: 1.3; }
.dcard h3 { font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.dcard .ecard__go { position: static; }
.dining__text { display: grid; gap: 24px; justify-items: start; padding-top: 10px; }
.dining__text h2 { font-size: clamp(38px, 4.6vw, 64px); }
.dining__text p { color: var(--muted); font-size: 17px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; padding-block: clamp(100px, 12vw, 170px); background: var(--dark); }
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,14,.75) 0%, rgba(10,14,14,.35) 60%, rgba(10,14,14,.55) 100%); }
.cta__mark { position: absolute; right: 8%; top: 50%; width: 320px; transform: translateY(-50%); opacity: .18; pointer-events: none; }
.cta__content { display: grid; gap: 28px; justify-items: start; }
.cta__content h2, .cta__content .label { max-width: 780px; }
.cta__content h2 { font-size: clamp(36px, 4.8vw, 68px); }
.cta__content h2 span { color: var(--accent); }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--dark); overflow: hidden; padding-top: 90px; }
.footer .container::before, .footer .container::after { content: ""; position: absolute; top: -90px; bottom: 0; width: 1px; background: rgba(255,255,255,.08); }
.footer .container::before { left: 0; } .footer .container::after { right: 0; }
.footer__top { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer__links { display: grid; gap: 16px; font-size: 15px; }
.footer__links--right { justify-items: end; }
.footer__contact { display: grid; gap: 14px; text-align: center; }
.footer__contact a { font-size: clamp(28px, 4.4vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.footer__contact .accent { color: var(--accent); }
.footer__bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 80px; font-size: 15px; color: rgba(255,255,255,.7); }
.footer__bottom p:nth-child(2) { text-align: center; } .footer__bottom p:nth-child(3) { text-align: right; }
.footer__wordmark {
  font-size: clamp(120px, 25vw, 400px); font-weight: 600; letter-spacing: -0.045em; line-height: .72;
  color: rgba(255,255,255,.14); text-align: center; margin-top: 60px; height: .55em; overflow: hidden;
  user-select: none;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .concept__img--a { width: 220px; height: 160px; }
  .concept__img--b { left: 60px; top: 160px; width: 180px; height: 220px; }
  .concept__img--c { width: 260px; height: 200px; }
  .concept__img--d { right: 20px; width: 200px; height: 150px; }
  .rooms__head { grid-template-columns: 1fr 1fr; } .rooms__head .pill { grid-column: 1 / -1; justify-self: start; }
  .dining__grid { gap: 40px; }
}
@media (max-width: 900px) {
  .nav__group { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__brand { order: -1; }
  .nav__burger { display: block; }
  .hero__meta { flex-direction: column; gap: 16px; }
  .hero__meta-item--right { flex-direction: row; text-align: left; }
  .hero__callouts { flex-direction: column; margin-top: 30px; }
  .callout--right { margin-top: 0; }
  .callout::before, .callout::after { display: none; }
  .concept__body { min-height: 0; }
  .concept__img { position: static; width: 100%; height: 220px; }
  .concept__body { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .concept__text { grid-column: 1 / -1; max-width: none; padding-top: 20px; }
  .experience__grid { grid-template-columns: 1fr; gap: 40px; }
  .experience__text { text-align: left; justify-items: start; }
  .experience { overflow-x: clip; }
  .experience__cards { height: 500px; }
  .ecard { height: 460px; }
  .ecard.is-next { transform: rotate(-4deg) translate(-8px, 10px) scale(.96); }
  .ecard.is-prev { transform: rotate(3deg) translate(8px, 16px) scale(.94); }
  .rooms__head { grid-template-columns: 1fr; gap: 20px; padding-bottom: 40px; }
  .rooms__row { grid-template-columns: 1fr; gap: 10px; }
  .rooms__more { justify-self: start; } .rooms__peek { display: none; }
  .bookbar { grid-template-columns: 1fr 1fr; border: 0; }
  .bookbar__field { border: 1px solid rgba(255,255,255,.3); padding: 16px 20px; margin: -1px 0 0 -1px; }
  .bookbar__field:last-of-type { border-right: 1px solid rgba(255,255,255,.3); }
  .tcard { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .tcard__tabs { display: flex; gap: 14px; overflow-x: auto; }
  .tcard__tabs li button { white-space: nowrap; padding: 8px 4px; }
  .tcard__body { padding-top: 10px; }
  .tcard__mark { width: 200px; }
  .dining__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__links, .footer__links--right { justify-items: center; }
  .footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .footer__bottom p:nth-child(3) { text-align: center; }
}
@media (max-width: 560px) {
  .hero__title { font-size: 26vw; }
  .concept__body { grid-template-columns: 1fr; }
  .concept__img { height: 200px; }
  .bookbar { grid-template-columns: 1fr; }
  .ecard { padding: 10px 16px 24px; height: 440px; } .ecard__img { height: 200px; }
  .dcard__row { grid-template-columns: 1fr; gap: 12px; }
  .cta__mark { display: none; }
}
