:root {
  --ink: #141311;
  --muted: #6b6e69;
  --cream: #faf7ed;
  --paper: #f0efe7;
  --terracotta: #b5563f;
  --green: #426b4e;
  --blue: #245f72;
  --wine: #6d2f34;
  --line: rgba(20, 19, 17, .14);
  --shadow: 0 24px 70px rgba(32, 30, 26, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 237, .84);
}

.brand,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--terracotta));
  font-size: 28px;
  font-weight: 950;
}

.brand strong,
.brand small { display: block; }

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

nav a:hover { color: var(--wine); }

.lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.lang button,
.planner-tabs button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.lang button {
  min-width: 42px;
  padding: 9px 10px;
  font-size: 12px;
}

.lang button.is-active,
.planner-tabs button.is-active {
  color: white;
  background: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 8px 20px rgba(20, 19, 17, .08);
  font-weight: 900;
}

.button.small {
  min-height: 38px;
  padding-inline: 14px;
}

.button.primary {
  border-color: var(--terracotta);
  color: white;
  background: var(--terracotta);
}

.button.ghost {
  border-color: rgba(36, 95, 114, .28);
  color: var(--blue);
  background: rgba(250, 247, 237, .78);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, .9fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 50px;
  background:
    radial-gradient(circle at 85% 20%, rgba(36, 95, 114, .13), transparent 26%),
    linear-gradient(120deg, rgba(250,247,237,.98), rgba(240,239,231,.98) 55%, rgba(229,220,199,.82));
}

.hero-copy { max-width: 820px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(50px, 7vw, 90px);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.lead,
.section p,
.visit p {
  color: var(--muted);
  line-height: 1.58;
}

.lead {
  max-width: 670px;
  margin: 24px 0 26px;
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(150px, .34fr);
  gap: 12px;
  align-items: stretch;
}

.hero-main,
.hero-stack img,
.gallery-main {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-main {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.hero-stack {
  display: grid;
  gap: 12px;
}

.hero-stack img {
  width: 100%;
  height: 289px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, .75fr);
  gap: 10px;
  max-width: 840px;
  margin-top: 34px;
}

.stats > span {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250,247,237,.82);
}

.stats .status {
  color: white;
  background: var(--green);
  font-weight: 950;
}

.stats .status.is-closed { background: var(--wine); }

.stats strong {
  font-size: 26px;
  line-height: 1;
}

.stats small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.fact-strip div {
  min-height: 94px;
  padding: 24px clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child { border-right: 0; }

.fact-strip span,
.visit-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.fact-strip strong,
.visit-panel strong { font-size: 18px; }

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.split,
.review-section,
.visit {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.section p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 18px;
}

.planner,
.review-grid article,
.visit-panel div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250,247,237,.9);
  box-shadow: var(--shadow);
}

.planner { overflow: hidden; }

.planner-tabs {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.planner-tabs button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(36,95,114,.08);
}

.planner-result { padding: 30px; }

.planner-result strong {
  display: block;
  font-size: 34px;
  line-height: 1.04;
}

.meter {
  overflow: hidden;
  height: 13px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(20,19,17,.12);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--terracotta));
}

.review-section { background: rgba(36,95,114,.08); }

.review-grid {
  display: grid;
  gap: 14px;
}

.review-grid article {
  padding: 22px;
  box-shadow: none;
}

.review-grid span {
  color: var(--terracotta);
  font-weight: 950;
}

.review-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.review-grid p {
  margin: 8px 0 0;
  font-size: 16px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(230px, .33fr);
  gap: 18px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 620px;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.gallery-main span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 8px;
  color: white;
  background: rgba(20,19,17,.76);
  font-size: 13px;
  font-weight: 900;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumbs button {
  overflow: hidden;
  min-height: 96px;
  padding: 0;
  border: 4px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.thumbs button.is-active { border-color: var(--terracotta); }

.thumbs img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.visit {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: white;
  background: #121311;
}

.visit .eyebrow { color: #e0a86b; }
.visit p { color: rgba(255,255,255,.74); }

.visit-panel {
  display: grid;
  gap: 12px;
}

.visit-panel div {
  padding: 22px;
  color: var(--ink);
  box-shadow: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--cream);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250,247,237,.94);
  box-shadow: var(--shadow);
  visibility: hidden;
  transform: translateY(140%);
  transition: transform .2s ease;
}

.mobile-cta.is-visible {
  visibility: visible;
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 8px;
  color: white;
  background: var(--terracotta);
  font-weight: 950;
}

.mobile-cta a:last-child { background: var(--blue); }

@media (max-width: 1100px) {
  nav { display: none; }
  .hero,
  .split,
  .review-section,
  .visit,
  .gallery {
    grid-template-columns: 1fr;
  }
  .hero-main { height: 500px; }
  .hero-stack { grid-template-columns: 1fr 1fr; }
  .hero-stack img { height: 230px; }
  .gallery-main,
  .gallery-main img { min-height: 520px; height: 520px; }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
  }
  .brand small { max-width: 130px; }
  .header-actions { justify-content: flex-end; }
  .hero {
    min-height: auto;
    padding-top: 38px;
  }
  h1 {
    max-width: 11ch;
    font-size: 44px;
  }
  h2 { font-size: 34px; }
  .hero-actions,
  .header-actions { gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-media,
  .hero-stack,
  .stats,
  .fact-strip {
    grid-template-columns: 1fr;
  }
  .hero-main { height: 360px; }
  .hero-stack { grid-template-columns: 1fr 1fr; }
  .hero-stack img { height: 170px; }
  .stats > span { min-height: 74px; }
  .fact-strip div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section,
  .visit {
    padding-block: 62px;
  }
  .planner-result { padding: 22px; }
  .planner-result strong { font-size: 28px; }
  .gallery-main,
  .gallery-main img { min-height: 390px; height: 390px; }
  .thumbs {
    grid-template-columns: repeat(6, minmax(54px, 1fr));
    gap: 6px;
  }
  .thumbs button { min-height: 58px; border-width: 3px; }
  .thumbs img { height: 64px; }
  footer {
    display: grid;
    padding-bottom: 82px;
  }
  .mobile-cta { display: grid; }
}

@media (max-width: 390px) {
  h1 { font-size: 40px; }
  .button { padding-inline: 14px; }
  .gallery-main,
  .gallery-main img { min-height: 330px; height: 330px; }
}
