:root {
  --ink: #151312;
  --espresso: #2a1710;
  --coffee: #65412c;
  --cream: #f7f0e5;
  --paper: #fffaf2;
  --gold: #c99a45;
  --sage: #7b8a72;
  --line: rgba(42, 23, 16, .16);
  --shadow: 0 24px 70px rgba(26, 17, 12, .18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 12, 9, .82), rgba(16, 12, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.lang-switch button {
  width: 40px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch button.active {
  color: var(--espresso);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 76px) 42px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(1.02) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 10, 6, .85) 0%, rgba(18, 10, 6, .55) 44%, rgba(18, 10, 6, .18) 100%),
    linear-gradient(0deg, rgba(18, 10, 6, .72) 0%, rgba(18, 10, 6, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-bottom: 90px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 126px);
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

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

.btn.full {
  width: 100%;
  margin-top: 24px;
}

.proof-strip {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(20, 13, 8, .62);
  backdrop-filter: blur(20px);
}

.proof-strip div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

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

.proof-strip strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band,
.gallery-band,
.reviews,
.visit {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(280px, .8fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro-grid h2,
.gallery-copy h2,
.reviews h2,
.visit-panel h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 76px);
}

.intro-grid p,
.feature p,
.visit-panel,
.reviews p {
  color: rgba(21, 19, 18, .72);
  font-size: 17px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  padding: 0 clamp(20px, 6vw, 76px) clamp(70px, 9vw, 128px);
}

.feature {
  min-height: 560px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--espresso);
}

.feature.large {
  grid-row: span 2;
  min-height: 720px;
}

.feature img {
  position: absolute;
  inset: 0;
  opacity: .74;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 10, 8, .03), rgba(14, 10, 8, .86));
}

.feature.dark img {
  opacity: .58;
}

.feature div {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4vw, 48px);
}

.feature span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature h2,
.feature h3 {
  margin: 12px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.feature h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.feature p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.gallery-band {
  background: var(--espresso);
  color: #fff;
}

.gallery-copy {
  display: grid;
  grid-template-columns: .4fr .9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.wide-photo {
  height: clamp(250px, 44vw, 520px);
  box-shadow: var(--shadow);
}

.reviews {
  display: grid;
  grid-template-columns: .76fr 1fr;
  gap: clamp(32px, 6vw, 82px);
  background: var(--cream);
}

.quote-grid {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .54);
}

blockquote p {
  margin-bottom: 12px;
  color: var(--espresso);
  font-size: 20px;
  line-height: 1.45;
}

cite {
  color: rgba(21, 19, 18, .55);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, .65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.visit-image {
  min-height: 680px;
  box-shadow: var(--shadow);
}

.visit-panel {
  align-self: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--coffee);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.hours {
  padding: 22px;
  background: var(--cream);
}

.hours h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: #fff;
  background: #100c09;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding-top: 110px;
  }

  .hero-content {
    padding-bottom: 170px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .intro-grid,
  .feature-grid,
  .gallery-copy,
  .reviews,
  .visit {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature.large {
    min-height: 520px;
  }

  .visit-image {
    min-height: 440px;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
    padding: 14px;
  }

  .brand {
    font-size: 21px;
  }

  .lang-switch button {
    width: 34px;
    height: 32px;
  }

  h1 {
    font-size: 50px;
  }

  .hero {
    min-height: 780px;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .proof-strip {
    left: 16px;
    right: 16px;
  }

  .intro-band,
  .gallery-band,
  .reviews,
  .visit,
  .feature-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-grid h2,
  .gallery-copy h2,
  .reviews h2,
  .visit-panel h2 {
    font-size: 38px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }
}
