/* ============================================================
   VALTRETS SKOLA — landing page
   Aesthetic: warm paper, deep moss-green accent, ochre detail.
   Type: Cormorant Garamond (display, italic) + Geist (UI/body).
   ============================================================ */

:root {
  --paper: #f3eee5;
  --paper-2: #e9e1d3;
  --ink: #181613;
  --ink-80: #2c2924;
  --ink-60: rgba(24,22,19,.62);
  --ink-40: rgba(24,22,19,.4);
  --ink-30: rgba(24,22,19,.22);
  --ink-15: rgba(24,22,19,.12);
  --ink-08: rgba(24,22,19,.06);
  --accent: #2d4a35;
  --accent-soft: #455e4c;
  --ochre: #b78a4a;
  --night: #1c2620;
  --night-paper: #d6cfbf;

  --font-display: "Cormorant Garamond", "EB Garamond", Garamond, serif;
  --font-ui: "Geist", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ============ RESET-y typography ============ */
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0; }

/* ============ COMMON ============ */
.v-kicker {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 22px;
}
.v-kicker-light { color: rgba(255,255,255,.55); }
.v-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-wrap: balance;
}
.v-h2 .v-em {
  color: var(--accent);
}
.v-h2-light { color: var(--paper); }
.v-h2-light .v-em { color: var(--ochre); }
.v-section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.v-section-lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-80);
  max-width: 56ch;
  text-wrap: pretty;
}

.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.v-btn:hover { transform: translateY(-1px); }
.v-btn-dark { background: var(--ink); color: var(--paper); }
.v-btn-dark:hover { background: var(--accent); }
.v-btn-light { background: var(--paper); color: var(--ink); }
.v-btn-light:hover { background: var(--ochre); color: var(--paper); }
.v-btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.45); }
.v-btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ============ NAV ============ */
.v-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center;
  padding: 18px var(--gutter);
  gap: 32px;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.v-nav.is-scrolled {
  background: rgba(243, 238, 229, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--ink-15);
  padding-top: 12px; padding-bottom: 12px;
}
.v-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--paper);
  transition: color .25s ease;
}
.is-scrolled .v-logo { color: var(--ink); }
.v-logo-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.v-logo-words { display: flex; flex-direction: column; line-height: 1.05; }
.v-logo-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.v-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.v-nav-links {
  display: flex; gap: 28px;
  margin-left: auto; margin-right: 16px;
}
.v-nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--paper);
  opacity: 0.85;
  transition: opacity .2s, color .25s ease;
}
.v-nav-links a:hover { opacity: 1; }
.is-scrolled .v-nav-links a { color: var(--ink); }
.v-nav .v-btn-dark {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 10px 18px;
}
.v-nav .v-btn-dark:hover { background: var(--accent); color: var(--paper); }
.is-scrolled .v-nav .v-btn-dark { background: var(--ink); color: var(--paper); }
.is-scrolled .v-nav .v-btn-dark:hover { background: var(--accent); }

.v-nav-burger { display: none; }

/* ============ HERO ============ */
.v-hero {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  padding: 0 var(--gutter) 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.v-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  will-change: transform;
}
.v-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.05) 60%, rgba(0,0,0,.50) 100%),
    linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.0) 55%);
}
.v-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 32px;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  will-change: transform;
}
.v-hero-fade {
  display: flex; flex-direction: column; align-items: flex-start;
  will-change: opacity;
}
.v-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,.85);
}
.v-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 0 4px rgba(183, 138, 74, 0.25);
}
.v-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 14ch;
}
.v-hero-line { display: block; }
.v-hero-sub {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.v-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
.v-hero-foot {
  position: relative; z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.78);
}

/* ============ SECTION SHELL ============ */
section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter);
}
section.v-mood,
section.v-activities {
  max-width: none;
  padding: 0;
}

/* ============ STORY ============ */
.v-story {
  padding-top: clamp(56px, 7vw, 96px) !important;
  padding-bottom: clamp(56px, 7vw, 96px) !important;
}
.v-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.v-story-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-80);
  margin-bottom: 18px;
  text-wrap: pretty;
  max-width: 50ch;
}
.v-facts {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--ink-15);
  padding-top: 28px;
}
.v-facts li {
  display: flex; flex-direction: column; gap: 4px;
}
.v-facts strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
}
.v-facts span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.v-story-imgs {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 620px;
}
.v-story-imgs img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.92);
}
.v-story-imgs img:nth-child(1) { grid-row: span 2; }

/* ============ ROOMS ============ */
.v-rooms { background: var(--paper); }
.v-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  row-gap: 56px;
}
.v-room {
  cursor: pointer;
  transition: transform .25s ease;
}
.v-room:hover { transform: translateY(-4px); }
.v-room:hover .v-room-img img { transform: scale(1.03); }
.v-room-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ink-08);
}
.v-room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.v-room-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(243, 238, 229, 0.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.v-room-body { padding-top: 18px; }
.v-room-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 4px;
}
.v-room-sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  margin-bottom: 12px;
}
.v-room-beds {
  font-size: 14px;
  color: var(--ink-80);
  padding-top: 10px;
  border-top: 1px solid var(--ink-15);
}

/* ============ SPACES (DARK) ============ */
.v-spaces {
  background: var(--night);
  color: var(--paper);
  max-width: none;
  width: 100%;
  margin: 0;
}
.v-spaces > .v-section-head,
.v-spaces > .v-spaces-grid,
.v-spaces > .v-amenities {
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.v-spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.v-space {
  background: var(--night);
  padding: 36px 32px 40px;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.v-space-icon {
  color: var(--ochre);
  margin-bottom: 24px;
}
.v-space h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  margin-bottom: 12px;
}
.v-space p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}
.v-amenities {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
}
.v-amenities-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.v-amenities ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}
.v-amenities li {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  padding-left: 16px;
  position: relative;
}
.v-amenities li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--ochre);
}

/* ============ STRIP ============ */
.v-strip {
  max-width: none; width: 100%; margin: 0; padding: 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
}
.v-strip-track {
  display: flex;
  gap: 0;
  animation: v-strip 60s linear infinite;
  width: max-content;
}
.v-strip:hover .v-strip-track { animation-play-state: paused; }
.v-strip-cell {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  border: 0;
  padding: 0;
  background: var(--ink-08);
  overflow: hidden;
  border-right: 1px solid var(--paper);
  cursor: pointer;
}
.v-strip-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
  opacity: 0.92;
}
.v-strip-cell:hover img { opacity: 1; transform: scale(1.05); }
@keyframes v-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ MOOD BAND ============ */
.v-mood {
  position: relative;
  width: 100%;
  height: clamp(440px, 60vw, 720px);
  overflow: hidden;
  margin: 0;
}
.v-mood-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-mood-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
}
.v-mood-text {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  bottom: clamp(28px, 5vw, 64px);
  color: var(--paper);
  max-width: 640px;
}
.v-kicker-light {
  color: rgba(255,255,255,0.75) !important;
  border-color: rgba(255,255,255,0.35) !important;
}
.v-mood-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  margin-top: 18px;
  color: var(--paper);
  max-width: 16ch;
  text-wrap: balance;
}

/* ============ ACTIVITIES ============ */
.v-activities {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(56px, 7vw, 96px) !important;
}
.v-act-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 55vw, 680px);
  display: grid;
  align-items: end;
}
.v-act-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.v-act-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.v-act-hero-text {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding: clamp(40px, 6vw, 96px) var(--gutter);
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.v-act-hero-text .v-kicker {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.v-act-hero-text .v-h2 { color: var(--paper); }
.v-act-hero-text .v-section-lede {
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
}

.v-act-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.v-act-right { display: flex; flex-direction: column; }
.v-act-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--ink-15);
}
.v-act-row:last-child { border-bottom: 1px solid var(--ink-15); }
.v-act-row h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  margin-bottom: 4px;
}
.v-act-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  margin-bottom: 10px;
}
.v-act-row p {
  font-size: 15px;
  color: var(--ink-80);
  text-wrap: pretty;
}

.v-act-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.v-act-pair figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-act-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.94);
}
.v-act-pair figcaption {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  font-style: italic;
}
.v-map {
  background: var(--paper-2);
  border-radius: 4px;
  border: 1px solid var(--ink-15);
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

/* ============ QUOTES ============ */
.v-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  border-top: 1px solid var(--ink-15);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.v-quote { margin: 0; }
.v-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.v-quote figcaption {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ============ FAQ ============ */
.v-faq-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--ink-15);
}
.v-faq-list li {
  border-bottom: 1px solid var(--ink-15);
}
.v-faq-list button {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: 0;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  transition: color .2s ease;
}
.v-faq-list button:hover { color: var(--accent); }
.v-faq-plus {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 22px;
  color: var(--accent);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.v-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,.1,.3,1);
}
.v-faq-body p {
  padding-bottom: 28px;
  max-width: 70ch;
  font-size: 16px;
  color: var(--ink-80);
  text-wrap: pretty;
}

/* ============ FOOTER ============ */
.v-footer {
  background: var(--ink);
  color: var(--night-paper);
  padding: clamp(60px, 8vw, 120px) var(--gutter) 36px;
}
.v-footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.v-footer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 12px;
}
.v-footer-sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.v-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.v-footer-cols h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
  font-weight: 500;
}
.v-footer-cols p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}
.v-footer-bot {
  max-width: var(--max);
  margin: 36px auto 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.4);
}

/* ============ MODAL ============ */
.v-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 18, 14, 0.65);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  animation: v-fade .25s ease;
}
.v-modal[hidden] { display: none; }
.v-modal-card {
  position: relative;
  background: var(--paper);
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 6px;
  padding: 40px 44px;
  box-shadow: 0 60px 120px rgba(0,0,0,.4);
  animation: v-rise .35s cubic-bezier(.2,.8,.2,1);
}
.v-modal-x {
  position: absolute; top: 16px; right: 18px;
  background: none; border: 0;
  font-size: 28px;
  color: var(--ink-60);
  width: 36px; height: 36px;
  border-radius: 50%;
}
.v-modal-x:hover { color: var(--ink); background: var(--ink-08); }
.v-modal-head { margin-bottom: 32px; }
.v-modal-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  margin-bottom: 8px;
}
.v-modal-head p {
  font-size: 14px;
  color: var(--ink-60);
}
.v-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.v-field { display: flex; flex-direction: column; gap: 6px; }
.v-field-full { grid-column: 1 / -1; }
.v-field-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.v-field input,
.v-field select,
.v-field textarea {
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-30);
  padding: 10px 0 10px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
}
.v-field input:focus,
.v-field select:focus,
.v-field textarea:focus {
  border-color: var(--accent);
}
.v-field textarea { resize: vertical; }
.v-field input[type="range"] { padding: 12px 0; border-bottom: 0; }
.v-range-foot {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-40);
  margin-top: -4px;
}
.v-field.has-err input,
.v-field.has-err select { border-color: #b04a2f; }
.v-field-err {
  font-size: 11px;
  color: #b04a2f;
}
.v-extras {
  grid-column: 1 / -1;
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 8px;
}
.v-extras label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--ink-30);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}
.v-extras label:hover { border-color: var(--ink); }
.v-extras label.is-on {
  background: var(--accent); color: var(--paper);
  border-color: var(--accent);
}
.v-extras input[type="checkbox"] { display: none; }
.v-modal-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-15);
}
.v-modal-summary { font-size: 14px; color: var(--ink-80); }
.v-muted { color: var(--ink-40); }
.v-sent { text-align: center; padding: 40px 20px; }
.v-sent[hidden] { display: none; }
.v-sent-mark { color: var(--accent); margin: 0 auto 20px; display: inline-block; }
.v-sent h3 { font-family: var(--font-display); font-style: italic; font-size: 36px; margin-bottom: 12px; }
.v-sent p { font-size: 15px; color: var(--ink-80); margin-bottom: 24px; max-width: 38ch; margin-left: auto; margin-right: auto; }

/* ============ LIGHTBOX ============ */
.v-lightbox {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,.92);
  display: grid; place-items: center;
  padding: 32px;
  animation: v-fade .25s ease;
  cursor: zoom-out;
}
.v-lightbox[hidden] { display: none; }
.v-lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 4px;
  object-fit: contain;
}
.v-lightbox-x {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 0;
  font-size: 36px;
  color: rgba(255,255,255,.8);
}

@keyframes v-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes v-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .v-nav-links, .v-nav .v-btn { display: none; }
  .v-nav-burger {
    display: grid; gap: 5px;
    margin-left: auto;
    background: none; border: 0; padding: 8px;
  }
  .v-nav-burger span {
    width: 22px; height: 1.5px; background: var(--paper);
    transition: background .25s;
  }
  .is-scrolled .v-nav-burger span { background: var(--ink); }
  .v-nav-mobile {
    position: fixed; inset: 0;
    background: var(--paper);
    z-index: 60;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 24px;
  }
  .v-nav-mobile[hidden] { display: none; }
  .v-nav-mobile a {
    text-decoration: none;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--ink);
  }
  .v-story-grid { grid-template-columns: 1fr; }
  .v-story-imgs { height: 380px; }
  .v-rooms-grid, .v-spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .v-amenities { grid-template-columns: 1fr; }
  .v-amenities ul { grid-template-columns: repeat(2, 1fr); }
  .v-act-grid { grid-template-columns: 1fr; }
  .v-quotes { grid-template-columns: 1fr; gap: 32px; }
  .v-footer-top { grid-template-columns: 1fr; }
  .v-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .v-form-grid { grid-template-columns: 1fr; }
  .v-modal-card { padding: 32px 24px; }
  .v-hero-foot { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 600px) {
  .v-rooms-grid, .v-spaces-grid { grid-template-columns: 1fr; }
  .v-amenities ul { grid-template-columns: 1fr; }
  .v-footer-cols { grid-template-columns: 1fr; }
  .v-strip-cell { width: 240px; height: 170px; }
}
