:root {
  --ink: #101010;
  --muted: #5d5a54;
  --paper: #f6f0e6;
  --cream: #fbf7ef;
  --wine: #6f1d2f;
  --olive: #58673d;
  --gold: #c79b55;
  --line: rgba(16, 16, 16, .14);
  --shadow: 0 20px 60px rgba(16, 16, 16, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff;
  background: rgba(16, 16, 16, .74);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
}

.brand strong {
  color: var(--gold);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold);
}

.lang-toggle {
  width: 44px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
  background: #151515;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .88), rgba(10, 10, 10, .48) 52%, rgba(10, 10, 10, .18)),
    linear-gradient(0deg, rgba(10, 10, 10, .76), rgba(10, 10, 10, .1) 48%);
  z-index: -1;
}

.hero-content {
  width: min(1120px, 100%);
  padding: 160px clamp(20px, 5vw, 64px) 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.visit-actions,
.stacked-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn.dark,
.btn.compact {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.btn.outline-dark,
.btn.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.btn.compact {
  min-height: 42px;
  padding: 10px 14px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 42px 0 0;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.quick-facts div {
  padding: 18px;
  background: rgba(16, 16, 16, .58);
}

.quick-facts dt,
.info-line span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  font-weight: 750;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.visit-band,
.feature-band,
.contact-band {
  padding: clamp(54px, 8vw, 96px) 0;
}

.visit-band {
  background: var(--paper);
}

.visit-grid,
.feature-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.visit-grid p,
.copy-block p,
.feature-copy p,
.contact-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.visit-panel {
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-line:first-child {
  padding-top: 0;
}

.info-line strong {
  font-size: 17px;
}

.visit-actions {
  padding-top: 22px;
}

.split {
  padding: clamp(66px, 9vw, 116px) 0;
}

.stacked-actions {
  margin-top: 26px;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-pair img,
.feature-image,
.gallery img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(16, 16, 16, .1);
}

.image-pair img {
  height: min(44vw, 430px);
}

.image-pair img:nth-child(2) {
  margin-top: 52px;
}

.feature-band {
  color: #fff;
  background: #171713;
}

.feature-image {
  height: min(56vw, 560px);
}

.feature-copy p {
  color: rgba(255, 255, 255, .74);
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.clean-list li {
  padding-left: 24px;
  position: relative;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

.gallery-section {
  padding: clamp(64px, 8vw, 106px) 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 780px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 12px;
}

.gallery img {
  height: 300px;
}

.gallery img:first-child {
  grid-row: span 2;
  height: 612px;
}

.contact-band {
  color: #fff;
  background: var(--wine);
}

.contact-grid p {
  color: rgba(255, 255, 255, .78);
}

.contact-actions {
  justify-content: flex-end;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 98svh;
  }

  .hero-content {
    padding-top: 168px;
  }

  .quick-facts,
  .visit-grid,
  .feature-grid,
  .contact-grid,
  .split,
  .gallery {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    max-width: 100%;
  }

  .image-pair img,
  .feature-image,
  .gallery img,
  .gallery img:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .image-pair img:nth-child(2) {
    margin-top: 0;
  }

  .section-heading {
    display: block;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding: 12px 16px;
  }

  .nav {
    gap: 18px;
    font-size: 12px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy,
  .visit-grid p,
  .copy-block p,
  .feature-copy p,
  .contact-grid p {
    font-size: 16px;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .stacked-actions .btn {
    width: 100%;
  }

  .quick-facts div {
    padding: 14px;
  }
}
