:root {
  --paper: #f2e9dc;
  --paper-light: #faf6ef;
  --ink: #29251f;
  --terracotta: #a6462c;
  --olive: #68704a;
  --wine: #552c2b;
  --line: rgba(41, 37, 31, .18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  line-height: 1.55;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  min-height: 88px;
  padding: 16px clamp(22px, 4.8vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.logo { display: inline-flex; flex-direction: column; text-decoration: none; }
.logo strong { font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: .9; }
.logo i { color: #efb084; font-weight: 400; }
.logo span { margin-top: 8px; font-size: 8px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
nav { display: flex; gap: 38px; }
nav a,
.header-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-cta { padding: 12px 18px; color: var(--ink); background: var(--paper); }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #211b16;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(24,17,12,.92) 0%, rgba(24,17,12,.69) 34%, rgba(24,17,12,.16) 69%, rgba(24,17,12,.2) 100%),
    linear-gradient(0deg, rgba(18,12,8,.7) 0%, transparent 38%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 60vw);
  padding: 150px clamp(28px, 7vw, 116px) 120px;
}
.eyebrow {
  margin: 0 0 22px;
  color: #efb084;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.olive { color: var(--olive); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(70px, 8.7vw, 142px);
  line-height: .82;
  letter-spacing: -.05em;
}
h1 em { color: #efb084; font-weight: 400; }
.hero-lead {
  max-width: 610px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.45vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.button {
  min-height: 51px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-light { color: var(--ink); background: var(--paper); }
.button-glass { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(25,18,13,.25); backdrop-filter: blur(8px); }
.hero-footer {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 7vw, 116px);
  right: clamp(28px, 7vw, 116px);
  bottom: 28px;
  display: flex;
  gap: 12px 32px;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section { padding: clamp(84px, 10vw, 150px) clamp(24px, 7vw, 116px); }
.intro {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: clamp(55px, 10vw, 160px);
  align-items: end;
}
h2 { margin: 0; font-size: clamp(55px, 6.6vw, 98px); line-height: .9; letter-spacing: -.04em; }
.intro-copy { padding-bottom: 7px; }
.intro-copy p {
  margin-top: 0;
  color: #625c53;
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.25;
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.food-gallery {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(320px, 1fr));
  gap: 16px;
}
.feature {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background: #2a211a;
}
.feature-large { grid-row: 1 / 3; min-height: 760px; }
.feature img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature:hover img { transform: scale(1.025); }
.feature::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(22,15,11,.88), transparent);
}
.feature-caption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 38px);
  color: #fff;
}
.feature-caption span {
  color: #efc3a4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.feature-caption h3 { margin: 8px 0 5px; font-size: clamp(38px, 4vw, 64px); line-height: .92; }
.feature:not(.feature-large) .feature-caption h3 { font-size: clamp(33px, 3.2vw, 48px); }
.feature-caption p { max-width: 460px; margin: 0; color: rgba(255,255,255,.77); font-size: 13px; }
.feature:nth-child(3) img { object-position: 73% center; }

.story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: #fff;
  background: var(--wine);
}
.story-image { min-height: 780px; position: relative; overflow: hidden; }
.story-image img { height: 100%; object-fit: cover; }
.story-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(0deg, rgba(30,18,15,.68), transparent);
}
.story-image span {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 28px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.story-copy {
  padding: clamp(70px, 9vw, 138px) clamp(34px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy .eyebrow { color: #efbd95; }
.story-copy p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.74); }
blockquote {
  margin: 30px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 37px);
  font-style: italic;
  line-height: 1.15;
}

.moments { background: var(--paper-light); }
.moments-heading {
  margin-bottom: clamp(50px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.05fr .55fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.moments-heading > p { max-width: 450px; margin: 0 0 9px; color: #6e675d; font-size: 16px; }
.moment-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.moment-strip article { min-height: 300px; padding: 27px 34px 35px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.moment-strip article:not(:first-child) { padding-left: 34px; }
.moment-strip article:last-child { border-right: 0; }
.moment-strip span { color: var(--terracotta); font-family: var(--serif); font-size: 34px; }
.moment-strip h3 { margin: auto 0 8px; font-size: 48px; line-height: 1; }
.moment-strip p { margin: 0; color: #6e675d; font-size: 13px; }

.visit {
  display: grid;
  grid-template-columns: 1.12fr .55fr .65fr;
  gap: clamp(38px, 7vw, 105px);
  color: #fff;
  background: var(--terracotta);
}
.visit .eyebrow { color: #f4cead; }
.visit-details { padding-top: 19px; border-top: 1px solid rgba(255,255,255,.3); }
.visit-details .label {
  margin: 0 0 24px;
  color: #f4cead;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.light-link { color: #fff; }
.phone {
  display: block;
  margin-top: 15px;
  font-family: var(--serif);
  font-size: 31px;
  text-decoration: none;
}
.visit-details .button { margin-top: 25px; }

footer {
  padding: 38px clamp(24px, 7vw, 116px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px 34px;
  background: var(--paper);
}
.footer-logo strong { font-size: 24px; }
footer p,
footer > div a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
footer > div { display: flex; gap: 17px; }
footer small {
  grid-column: 1 / -1;
  padding-top: 17px;
  color: #81796d;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

@media (max-width: 1000px) {
  .hero-copy { width: min(760px, 76vw); }
  .intro { grid-template-columns: 1fr; }
  .food-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 600px 400px; }
  .feature-large { grid-column: 1 / -1; grid-row: auto; min-height: 600px; }
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 610px; }
  .moments-heading { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr 1fr; }
  .visit-heading { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { min-height: 70px; padding: 13px 16px; }
  .logo strong { font-size: 22px; }
  .logo span,
  nav,
  .header-cta { display: none; }
  .hero { min-height: 780px; align-items: flex-end; }
  .hero-media { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(22,14,9,.96) 0%, rgba(22,14,9,.72) 56%, rgba(22,14,9,.12) 100%),
      linear-gradient(90deg, rgba(22,14,9,.42), transparent 78%);
  }
  .hero-copy { width: 100%; padding: 150px 22px 118px; }
  h1 { font-size: 62px; line-height: .85; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-footer { left: 22px; right: 22px; bottom: 25px; gap: 7px 18px; }
  .hero-footer span:last-child { display: none; }
  .section { padding: 78px 22px; }
  h2 { font-size: 55px; }
  .food-gallery { padding-top: 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .feature,
  .feature-large { grid-column: auto; min-height: 470px; }
  .feature:not(.feature-large) { min-height: 390px; }
  .feature-caption h3,
  .feature:not(.feature-large) .feature-caption h3 { font-size: 40px; }
  .story-image { min-height: 480px; }
  .story-image img { object-position: 57% center; }
  .story-copy { padding: 74px 22px; }
  .moments-heading { margin-bottom: 48px; }
  .moment-strip { grid-template-columns: 1fr; }
  .moment-strip article,
  .moment-strip article:not(:first-child) { min-height: 230px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .moment-strip article:last-child { border-bottom: 0; }
  .visit { grid-template-columns: 1fr; }
  .visit-heading { grid-column: auto; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature img { transition: none; }
}
