:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --deep: #1b1b1a;
  --radius: 0px;
  --radius-btn: 6px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --max: 1400px;
  --section-pad: 136px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  height: var(--header-h);
}

.site-header__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 47px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary);
  font-variant: small-caps;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.page-main {
  padding-top: var(--header-h);
}

.band,
.band--alt,
.band--plain,
.band--surface {
  padding: var(--section-pad) 0;
}

.band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

.band--surface {
  background: var(--surface);
}

.band--plain {
  background: var(--bg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  padding: 72px 0 96px;
  text-align: center;
}

.hero__copy {
  max-width: 920px;
  margin: 0 auto 64px;
}

.hero__copy p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}

.hero__notice {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.hero-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  max-width: 1100px;
  margin-inline: auto;
}

.hero-frames figure {
  margin: 0;
  position: relative;
}

.hero-frames img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-frames figure:nth-child(1) img {
  height: 280px;
}

.hero-frames figure:nth-child(2) img {
  height: 420px;
}

.hero-frames figure:nth-child(3) img {
  height: 340px;
}

.hero-frames figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.category-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.category-band--flip .category-band__media {
  order: 2;
}

.category-band--flip .category-band__body {
  order: 1;
}

.steps--spaced {
  margin-top: 48px;
}

.category-band__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.category-band__body h2 {
  margin-bottom: 0.5em;
}

.category-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.6em;
}

.amenities-lead {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-tile {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 24px;
}

.amenity-tile h3 {
  font-size: 22px;
  margin-bottom: 0.4em;
}

.amenity-tile p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.closing-cta__panel {
  border: 1px solid var(--border);
  padding: 36px 32px;
  background: var(--surface);
}

.closing-cta__panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: var(--accent);
  max-width: 900px;
  margin-bottom: 36px;
}

.mission-body {
  max-width: 760px;
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent-2);
}

.step h3 {
  font-size: 24px;
  margin-bottom: 0.5em;
}

.step p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

.page-title {
  padding: 72px 0 48px;
  max-width: 820px;
}

.page-title h1 {
  margin-bottom: 0.4em;
}

.page-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.catalog-close {
  padding: 64px 0 var(--section-pad);
  max-width: 720px;
  color: var(--text-muted);
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}

.venue-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.venue-card--flip {
  flex-direction: column-reverse;
}

.venue-card__media {
  position: relative;
}

.venue-card__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.venue-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: rgba(27, 27, 26, 0.55);
  color: var(--on-accent);
}

.venue-card__overlay h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--on-accent);
  margin: 0;
  letter-spacing: -0.8px;
}

.venue-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.venue-card__meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-card__body p {
  color: var(--text-muted);
  font-size: 16px;
  flex: 1;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 48px;
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.venue-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.venue-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-row__center {
  text-align: center;
}

.venue-row__center h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.35em;
}

.venue-row__center .venue-card__meta {
  display: block;
  margin-bottom: 0.6em;
}

.venue-row__center p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  align-items: stretch;
}

.season-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.season-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.season-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.season-card__city {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.season-card__body h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 0.5em;
}

.season-card__body p {
  color: var(--text-muted);
  font-size: 16px;
  flex: 1;
  margin-bottom: 24px;
}

.season-card__body .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.editorial-lead {
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.45;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.6px;
  max-width: 1100px;
  margin: 0 0 72px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.editorial-block h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.6em;
}

.editorial-block p {
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.contact-intro p {
  color: var(--text-muted);
}

.contact-email {
  margin-top: 28px;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.form-agree input {
  margin-top: 6px;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.form-error {
  color: #8a3030;
  font-size: 14px;
  margin: 0 0 16px;
  min-height: 1.2em;
}

.form-error:empty {
  display: none;
}

.contact-confirm {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
}

.contact-confirm h2 {
  margin-bottom: 0.5em;
}

.contact-confirm p {
  color: var(--text-muted);
}

.legal-content {
  padding: 72px 0 var(--section-pad);
  max-width: 820px;
}

.legal-content h1 {
  margin-bottom: 0.35em;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 2em;
  margin-bottom: 0.55em;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 1.4em;
  margin-bottom: 0.45em;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.2em;
  margin: 0 0 1.1em;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: var(--section-pad);
}

.sitemap-group h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1em;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-group li {
  margin-bottom: 10px;
}

.sitemap-group a {
  color: var(--text-muted);
  text-decoration: none;
}

.sitemap-group a:hover {
  color: var(--accent-2);
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
}

.footer-notice {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 28px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-upper {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 340px;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin-bottom: 8px;
}

.footer-group a,
.footer-group button {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent-2);
}

.footer-lower {
  background: var(--surface-alt);
  padding: 28px 0 36px;
}

.footer-lower__inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-lower__inner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-lower__inner .cookie-line {
  font-size: 12px;
}

.footer-lower__inner button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-lower__inner button:hover {
  color: var(--accent-2);
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(251, 251, 249, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: var(--text);
}

.consent[hidden] {
  display: none !important;
}

.consent__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px 40px;
  align-items: start;
}

.consent__copy h2 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 0.35em;
}

.consent__copy p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0.8em;
}

.consent__copy a {
  font-size: 14px;
}

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 8px;
}

.consent__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}

.consent__actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 12px;
  white-space: nowrap;
}

.consent__actions .btn--accept {
  order: -1;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

  .footer-upper {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-band__media img {
    height: 380px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav a {
    font-size: 13px;
    padding: 10px 0;
  }

  .category-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-band--flip .category-band__media,
  .category-band--flip .category-band__body {
    order: initial;
  }

  .closing-cta {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .season-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --header-h: 80px;
  }

  .container,
  .site-header__inner,
  .footer-upper,
  .footer-notice,
  .footer-lower__inner,
  .consent__inner {
    width: min(100% - 32px, var(--max));
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .hero-frames figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frames figure img,
  .hero-frames figure:nth-child(1) img,
  .hero-frames figure:nth-child(2) img,
  .hero-frames figure:nth-child(3) img {
    height: 280px;
  }

  .masonry {
    grid-template-columns: 1fr;
  }

  .venue-row {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .venue-row__thumb {
    width: 96px;
    height: 96px;
  }

  .venue-row__center {
    text-align: left;
  }

  .venue-row__center p {
    margin-inline: 0;
  }

  .venue-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps::before {
    display: none;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .consent__inner {
    grid-template-columns: 1fr;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .page-title {
    padding: 48px 0 32px;
  }

  .category-band__media img {
    height: 260px;
  }

  .venue-card__media img,
  .season-card__media img {
    height: 220px;
  }

  .contact-form,
  .contact-confirm {
    padding: 28px 20px;
  }
}
