:root {
  --black: #080706;
  --charcoal: #171412;
  --iron: #26221f;
  --cream: #f4eadc;
  --paper: #fbf6ee;
  --copper: #b2763d;
  --gold: #d3a85e;
  --steel: #9ea1a0;
  --line: rgba(244, 234, 220, .16);
  --dark-line: rgba(23, 20, 18, .16);
  --shadow: 0 30px 90px rgba(8, 7, 6, .32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(8, 7, 6, .88), rgba(8, 7, 6, 0));
}

.brand {
  display: grid;
  line-height: .9;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold);
  font: 900 28px "Barlow Condensed", sans-serif;
}

.brand strong {
  font: 800 15px "Barlow Condensed", sans-serif;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(244, 234, 220, .28);
  background: rgba(244, 234, 220, .1);
}

.lang button {
  width: 40px;
  height: 34px;
  border: 0;
  color: var(--cream);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang button.active {
  color: var(--black);
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 42px;
  color: var(--cream);
  overflow: hidden;
  background: var(--black);
}

.hero-img,
.shade {
  position: absolute;
  inset: 0;
}

.hero-img {
  opacity: .74;
  filter: saturate(.92) contrast(1.1);
}

.shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .92) 0%, rgba(8, 7, 6, .64) 46%, rgba(8, 7, 6, .16) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, .82) 0%, rgba(8, 7, 6, 0) 48%);
}

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

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(70px, 11vw, 154px);
  line-height: .78;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: .84;
}

h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: .9;
}

.lead,
.intro-copy p,
.service-grid p,
.visit-card,
.reviews blockquote {
  font-size: 18px;
  line-height: 1.65;
}

.lead {
  max-width: 610px;
  color: rgba(244, 234, 220, .82);
}

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

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

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

.btn.ghost {
  color: var(--cream);
  background: rgba(244, 234, 220, .08);
}

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

.proof {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 7, 6, .72);
}

.proof div {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

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

.proof strong {
  display: block;
  font: 900 44px "Barlow Condensed", sans-serif;
  line-height: .85;
}

.proof span {
  color: rgba(244, 234, 220, .7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro,
.services,
.atmosphere,
.reviews,
.visit {
  padding: clamp(76px, 10vw, 138px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: .9fr .8fr;
  gap: clamp(34px, 7vw, 94px);
}

.intro-copy p {
  color: rgba(23, 20, 18, .72);
}

.intro-copy blockquote {
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 5px solid var(--copper);
  font: 900 clamp(28px, 3.5vw, 44px) "Barlow Condensed", sans-serif;
  line-height: .96;
  text-transform: uppercase;
}

.visual-break {
  height: clamp(360px, 54vw, 680px);
  background: var(--black);
}

.services {
  background: var(--charcoal);
  color: var(--cream);
}

.section-head {
  max-width: 1050px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  display: grid;
  min-width: 0;
  background: var(--iron);
}

.service-grid img {
  height: clamp(360px, 42vw, 560px);
}

.service-grid div {
  padding: 26px;
}

.service-grid p {
  margin-bottom: 0;
  color: rgba(244, 234, 220, .72);
}

.atmosphere {
  display: grid;
  gap: 36px;
}

.atmosphere h2 {
  max-width: 1060px;
}

.atmosphere img {
  height: clamp(270px, 42vw, 520px);
  box-shadow: var(--shadow);
}

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

.quotes {
  display: grid;
  gap: 14px;
}

.quotes blockquote {
  margin: 0;
  padding: 26px;
  border-left: 5px solid var(--copper);
  background: rgba(255, 255, 255, .52);
  font-weight: 800;
}

.visit {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, .65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  background: var(--paper);
}

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

.visit-card {
  align-self: center;
  padding: clamp(30px, 5vw, 54px);
  color: var(--cream);
  background: var(--black);
}

.contact {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.contact span,
.hours span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact a {
  overflow-wrap: anywhere;
  font-weight: 900;
}

.hours {
  padding: 22px;
  background: rgba(244, 234, 220, .08);
}

.hours h3 {
  color: var(--gold);
  font-size: 26px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

  .nav { display: none; }

  .hero {
    min-height: 850px;
  }

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

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

  .proof div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .intro,
  .service-grid,
  .reviews,
  .visit {
    grid-template-columns: 1fr;
  }

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

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

  .brand span {
    font-size: 24px;
  }

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

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .hero,
  .intro,
  .services,
  .atmosphere,
  .reviews,
  .visit {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .actions .btn {
    width: 100%;
  }

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

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