:root {
  --ink: #17110c;
  --muted: #766858;
  --paper: #f3eadc;
  --cream: #fff9ed;
  --wood: #6d3f22;
  --amber: #c78335;
  --green: #47624c;
  --red: #a04431;
  --blue: #2c6f79;
  --line: rgba(23, 17, 12, .14);
  --shadow: 0 24px 70px rgba(33, 21, 12, .22);
}

* { 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 {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: rgba(243, 234, 220, .9);
  backdrop-filter: blur(16px);
}

.site-header.is-raised { border-bottom-color: var(--line); }

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

.mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--wood), var(--red));
  font-weight: 950;
}

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

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

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

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

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

.lang button,
.vibe-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,
.vibe-tabs button.is-active {
  color: white;
  background: var(--wood);
}

.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(33, 21, 12, .1);
  font-weight: 900;
}

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

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

.button.ghost {
  border-color: rgba(160, 68, 49, .28);
  color: var(--red);
  background: rgba(255, 249, 237, .74);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(370px, .92fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(120deg, rgba(255,249,237,.96), rgba(243,234,220,.98) 48%, rgba(229,218,196,.85));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  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(52px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}

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

.lead {
  max-width: 680px;
  margin: 24px 0 26px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
}

.hero-media {
  position: relative;
  min-height: 610px;
}

.hero-main {
  width: 82%;
  height: 590px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-detail {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  width: min(470px, 72%);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: white;
  background: rgba(23, 17, 12, .86);
  backdrop-filter: blur(12px);
}

.hero-detail img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.hero-detail strong,
.hero-detail span { display: block; }

.hero-detail span {
  margin-top: 8px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}

.stats {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, .75fr);
  gap: 10px;
  max-width: 830px;
  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(255,249,237,.78);
}

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

.status.is-closed { background: var(--red) !important; }

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

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

.quick-grid a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.quick-grid a:last-child { border-right: 0; }

.quick-grid span,
.visit-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-grid strong { font-size: clamp(16px, 1.4vw, 20px); }

.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section p {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.vibe-card,
.review-board article,
.visit-panel > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.vibe-card { overflow: hidden; }

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

.vibe-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(109, 63, 34, .12);
}

.vibe-result {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 30px;
}

.vibe-result strong { font-size: 36px; }
.vibe-result p { margin: 0; }

.vibe-meter {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23,17,12,.1);
}

.vibe-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--red), var(--blue));
}

.proof { background: #e8e3d3; }

.review-board {
  display: grid;
  gap: 12px;
}

.review-board article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.review-board span {
  color: var(--red);
  font-weight: 950;
}

.review-board p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .42fr);
  gap: 16px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
}

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

.gallery-main span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: white;
  background: rgba(23,17,12,.78);
  font-weight: 900;
}

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

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

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

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

.visit {
  background: var(--ink);
  color: white;
}

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

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

.visit-panel > div {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 237, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateY(150%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .2s ease;
}

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

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

.mobile-cta a:last-child {
  color: var(--ink);
  background: white;
}

@media (max-width: 1060px) {
  nav { display: none; }

  .hero,
  .split,
  .proof,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero-main { height: 500px; }

  .quick-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand small,
  .header-actions .button { display: none; }

  .mark {
    width: 39px;
    height: 39px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    max-width: 12ch;
    font-size: 45px;
  }

  h2 { font-size: 36px; }
  .lead { font-size: 18px; }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button { width: 100%; }

  .hero-media { min-height: auto; }

  .hero-main {
    width: 100%;
    height: 360px;
  }

  .hero-detail {
    position: static;
    grid-template-columns: 106px 1fr;
    width: 100%;
    margin-top: 12px;
  }

  .hero-detail img {
    width: 106px;
    height: 96px;
  }

  .gallery,
  .quick-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .quick-grid a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid a:last-child { border-bottom: 0; }

  .vibe-result { padding: 22px; }

  .gallery-main img { height: 380px; }

  .thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .thumbs img { height: 74px; }

  .site-footer {
    display: grid;
    padding-bottom: 92px;
  }

  .mobile-cta { display: grid; }
}

@media (max-width: 390px) {
  h1 { font-size: 39px; }

  .lang button {
    min-width: 36px;
    padding-inline: 8px;
  }
}
