:root {
  --ink: #1f1d17;
  --muted: #716b5f;
  --paper: #f6efe3;
  --panel: #fffaf1;
  --line: rgba(31, 29, 23, 0.16);
  --olive: #344b35;
  --chili: #9f3529;
  --amber: #c88a38;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 52px);
  color: #fffaf1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 239, 227, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 3px;
  width: max-content;
}

.brand span {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1;
}

.brand small,
nav,
.header-call,
.button,
.eyebrow,
.info-strip span,
.feature span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand small {
  opacity: 0.74;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
}

.header-call {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 10px 16px;
}

.hero {
  position: relative;
  min-height: 91svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 52px) 88px;
  color: #fffaf1;
}

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

.hero-image {
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.82), rgba(12, 11, 9, 0.42) 52%, rgba(12, 11, 9, 0.1)),
    linear-gradient(0deg, rgba(12, 11, 9, 0.8), rgba(12, 11, 9, 0.06) 55%);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
}

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

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9.4ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 11vw, 9.8rem);
}

h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.1;
}

.hero-content p {
  max-width: 610px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 18px;
}

.button.primary {
  background: #fffaf1;
  border-color: #fffaf1;
  color: var(--ink);
}

.button.ghost {
  color: inherit;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 52px);
  bottom: 34px;
  max-width: 260px;
  color: rgba(255, 250, 241, 0.82);
  text-align: right;
}

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

.hero-card span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 8px;
  color: #fffaf1;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.info-strip div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

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

.info-strip span,
.feature span {
  color: var(--muted);
}

.info-strip strong {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 52px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature.large {
  grid-row: span 2;
}

.feature img {
  width: 100%;
  height: 278px;
  object-fit: cover;
}

.feature.large img {
  height: 552px;
}

.feature div {
  padding: 22px;
}

.feature p,
.story p,
address {
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 52px);
  background: var(--olive);
  color: #fffaf1;
}

address {
  color: rgba(255, 250, 241, 0.76);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: #fffaf1;
}

.story {
  background: var(--chili);
  color: #fffaf1;
}

.story p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 4vw, 52px);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.65);
  font-size: 0.78rem;
}

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

  nav {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 6.4rem);
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    text-align: left;
  }

  .info-strip,
  .section-heading,
  .menu-layout,
  .visit {
    grid-template-columns: 1fr;
  }

  .info-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature.large {
    grid-row: auto;
  }

  .feature img,
  .feature.large img {
    height: clamp(240px, 58vw, 440px);
  }
}

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

  .brand span {
    font-size: 1.16rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.1rem);
    line-height: 1;
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 54px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
