:root {
  --bg: 10 13 13;
  --surface: 16 22 21;
  --accent: 45 212 191;
  --accent-strong: 94 234 212;
  --accent-deep: 15 118 110;
  --text: 232 240 238;
  --muted: 138 152 148;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: rgb(var(--bg));
  color: rgb(var(--text));
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.container.center { text-align: center; }

/* ---- Type ---- */

.kicker {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(var(--accent));
  margin-bottom: 1.6rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(3rem, 9.5vw, 6.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

.lead {
  max-width: 620px;
  margin: 1.8rem 0 2.6rem;
  font-size: 1.1rem;
  color: rgb(var(--text) / 0.82);
}

.body-lg { font-size: 1.12rem; color: rgb(var(--text) / 0.82); max-width: 680px; }
.container.center .body-lg { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgb(var(--accent));
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-solid { background: rgb(var(--accent)); color: rgb(var(--bg)); }
.btn-solid:hover { background: rgb(var(--accent-strong)); border-color: rgb(var(--accent-strong)); }

.btn-ghost { background: transparent; color: rgb(var(--accent)); }
.btn-ghost:hover { background: rgb(var(--accent) / 0.12); }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; margin-top: 2.2rem; }

.plain-link { color: rgb(var(--accent)); text-decoration: none; }
.plain-link:hover { color: rgb(var(--accent-strong)); }

/* ---- Topbar ---- */

.topbar { border-bottom: 1px solid rgb(var(--accent-deep) / 0.25); }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
}
.topbar-phone {
  color: rgb(var(--accent)); text-decoration: none;
  font-size: 12px; letter-spacing: 0.18em; font-weight: 400;
}
.topbar-tag { font-size: 11px; letter-spacing: 0.28em; color: rgb(var(--muted)); }

/* ---- Nav ---- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgb(var(--bg) / 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgb(var(--bg) / 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgb(var(--accent-deep) / 0.3);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; padding-bottom: 18px; gap: 20px;
}

.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.22em; color: rgb(var(--text));
  text-decoration: none; white-space: nowrap;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgb(var(--text) / 0.85); text-decoration: none;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: rgb(var(--accent)); }

.nav-side { display: flex; align-items: center; gap: 18px; }

.lang-toggle { display: flex; align-items: center; gap: 6px; color: rgb(var(--muted)); font-size: 12px; }
.lang-toggle button {
  background: none; border: none; cursor: pointer;
  color: rgb(var(--muted)); font-family: inherit;
  font-size: 12px; letter-spacing: 0.15em; padding: 4px;
}
.lang-toggle button.active { color: rgb(var(--accent)); }
.lang-toggle button:hover { color: rgb(var(--accent-strong)); }

.nav-cta { padding: 11px 22px; }

/* ---- Hero ---- */

.hero {
  min-height: calc(92vh - 120px);
  display: flex; align-items: center;
  position: relative;
  padding: 6rem 0 7rem;
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.4em; color: rgb(var(--muted));
}
.scroll-hint i {
  width: 1px; height: 48px;
  background: linear-gradient(rgb(var(--accent)), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- Sections ---- */

.section { padding: clamp(5rem, 12vh, 8.5rem) 0; }
.section-surface { background: rgb(var(--surface)); border-block: 1px solid rgb(var(--accent-deep) / 0.18); }

/* ---- Cards / grids ---- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.6rem; }

.card {
  background: rgb(var(--bg));
  border: 1px solid rgb(var(--accent-deep) / 0.35);
  padding: 28px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.section-surface .card { background: rgb(var(--bg) / 0.55); }
.card:hover { border-color: rgb(var(--accent) / 0.7); transform: translateY(-3px); }

.link-card { text-decoration: none; color: inherit; display: block; }
.link-card h3 {
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgb(var(--text)); margin-bottom: 8px;
}
.link-card p { color: rgb(var(--muted)); font-size: 0.95rem; }
.card-arrow { position: absolute; top: 24px; right: 24px; color: rgb(var(--accent)); }

.rating-block { display: flex; align-items: baseline; gap: 16px; margin-top: 1rem; flex-wrap: wrap; }
.rating-num { font-family: "Cormorant Garamond", serif; font-size: 3rem; line-height: 1; color: rgb(var(--text)); }
.stars { color: rgb(var(--accent)); letter-spacing: 0.2em; font-size: 1rem; }
.rating-label { color: rgb(var(--muted)); font-size: 0.9rem; letter-spacing: 0.08em; }

/* ---- Services ---- */

.services {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 2.2rem;
  border-top: 1px solid rgb(var(--accent-deep) / 0.3);
}
.service {
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid rgb(var(--accent-deep) / 0.3);
  position: relative;
}
.service:nth-child(odd) { padding-right: 48px; }
.service:nth-child(even) { padding-left: 48px; border-left: 1px solid rgb(var(--accent-deep) / 0.3); }
.service-num {
  font-family: "Cormorant Garamond", serif;
  color: rgb(var(--accent)); font-size: 1.1rem; letter-spacing: 0.1em;
  display: block; margin-bottom: 10px;
}
.service h3 {
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 10px;
}
.service p { color: rgb(var(--muted)); max-width: 46ch; }

/* ---- Reservation ---- */

.reserve-grid {
  display: grid; grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 48px; margin-top: 2.8rem; align-items: start;
}

.reserve-info { display: flex; flex-direction: column; gap: 28px; }
.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-label { font-size: 11px; letter-spacing: 0.28em; color: rgb(var(--accent)); font-weight: 400; }
.info-value { color: rgb(var(--text) / 0.9); font-size: 1.05rem; text-decoration: none; }
a.info-value:hover { color: rgb(var(--accent-strong)); }

#reserve-form {
  background: rgb(var(--surface));
  border: 1px solid rgb(var(--accent-deep) / 0.35);
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.26em; color: rgb(var(--muted)); font-weight: 400; }

.field input, .field select, .field textarea {
  background: rgb(var(--bg));
  border: 1px solid rgb(var(--accent-deep) / 0.4);
  color: rgb(var(--text));
  font-family: "Jost", sans-serif; font-weight: 300; font-size: 1rem;
  padding: 13px 14px;
  border-radius: 0;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgb(var(--accent));
}
.field select { appearance: none; }
.field input[type="date"] { color-scheme: dark; }

#form-status { font-size: 0.95rem; color: rgb(var(--accent-strong)); min-height: 1.4em; }
#form-status.error { color: rgb(255 176 130); }
#form-status a { color: rgb(var(--accent)); }

/* ---- Reviews ---- */

.review blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem; line-height: 1.45;
  color: rgb(var(--text) / 0.92);
  margin: 14px 0 18px;
}
.review figcaption { font-size: 11px; letter-spacing: 0.26em; color: rgb(var(--muted)); }
.rev-footer { margin-top: 2.4rem; color: rgb(var(--muted)); font-size: 0.95rem; }
.rev-footer a { color: rgb(var(--accent)); text-decoration: none; }
.rev-footer a:hover { color: rgb(var(--accent-strong)); }

/* ---- Footer ---- */

.footer { border-top: 1px solid rgb(var(--accent-deep) / 0.25); padding: 34px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer .wordmark { font-size: 1rem; }
.footer-meta, .footer-credit { color: rgb(var(--muted)); font-size: 0.85rem; letter-spacing: 0.08em; }

/* ---- Reveal (initial state gated on .js; GSAP animates in) ---- */

html.js .reveal { opacity: 0; transform: translateY(28px); }

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .reserve-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service:nth-child(odd) { padding-right: 0; }
  .service:nth-child(even) { padding-left: 0; border-left: none; }
}

@media (max-width: 700px) {
  .grid-3 { grid-template-columns: 1fr; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  #reserve-form { padding: 24px; }
  .topbar-tag { display: none; }
  .hero { min-height: 0; padding: 4.5rem 0 6rem; }
  .container { padding: 0 20px; }
  .nav-cta { padding: 9px 11px; letter-spacing: 0.1em; }
  .nav-inner { gap: 8px; padding-top: 14px; padding-bottom: 14px; }
  .nav-side { gap: 10px; }
  .wordmark { font-size: 0.95rem; letter-spacing: 0.1em; }
  .lang-toggle { font-size: 11px; }
  .lang-toggle button { font-size: 11px; padding: 4px 2px; }
}
