:root {
  --ink: #191512;
  --paper: #f7f0e4;
  --paper-soft: #fff9ef;
  --jade: #315c56;
  --teal: #133936;
  --brass: #b98b45;
  --coral: #b85b4c;
  --line: rgba(25, 21, 18, 0.16);
  --shadow: 0 24px 70px rgba(24, 18, 12, 0.16);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(25, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--paper-soft));
  background-size: 72px 72px, auto;
}

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

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

.skip-link {
  left: 1rem;
  position: absolute;
  top: -10rem;
}

.skip-link:focus {
  top: 1rem;
  z-index: 10;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 240, 228, 0.88);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(12rem, 1fr) auto auto;
  left: 0;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  display: grid;
  gap: 0.1rem;
}

.brand-mark {
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.brand-sub {
  color: rgba(25, 21, 18, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.primary-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
  color: rgba(25, 21, 18, 0.72);
  font-size: 0.92rem;
}

.primary-nav a:hover,
.site-footer a:hover {
  border-color: var(--brass);
  color: var(--ink);
}

.nav-cta,
.button {
  align-items: center;
  background: var(--teal);
  color: #fff9ef;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.1rem;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  min-height: min(820px, calc(100vh - 74px));
}

.hero-copy {
  align-content: center;
  display: grid;
  gap: 1.4rem;
  padding: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.98;
  max-width: 11ch;
}

.page-title h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

p {
  color: rgba(25, 21, 18, 0.74);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  max-width: 42rem;
}

.hero-media {
  min-height: 34rem;
  position: relative;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-panel {
  background: rgba(19, 57, 54, 0.92);
  bottom: 1.5rem;
  color: var(--paper-soft);
  display: grid;
  gap: 0.35rem;
  left: 1.5rem;
  padding: 1rem;
  position: absolute;
  right: 1.5rem;
}

.hero-panel p,
.hero-panel strong {
  color: var(--paper-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  max-width: 34rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section.alt {
  background: var(--teal);
  color: var(--paper-soft);
}

.section.alt p {
  color: rgba(255, 249, 239, 0.76);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.7fr) minmax(18rem, 0.3fr);
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.content-card,
.menu-card,
.review-card {
  background: rgba(255, 249, 239, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.content-card {
  box-shadow: var(--shadow);
}

.card img,
.gallery-item img,
.content-card img {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}

.feature-split {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.feature-split img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.page-title {
  display: grid;
  gap: 1rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.meta-row {
  color: rgba(25, 21, 18, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.6rem;
}

.menu-price {
  color: var(--teal);
  font-weight: 800;
}

.cms-body :global(p),
.cms-body p {
  margin-top: 0.7rem;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  display: grid;
  gap: 0.55rem;
}

.gallery-item:nth-child(3n + 1) {
  grid-row: span 2;
}

.gallery-item:nth-child(3n + 1) img {
  aspect-ratio: 3 / 4;
}

.contact-panel {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours li {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 2rem clamp(1rem, 4vw, 3rem);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 249, 239, 0.72);
}

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

  .primary-nav {
    grid-column: 1 / -1;
  }

  .hero,
  .feature-split,
  .section-head,
  .grid.two,
  .grid.three,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand-sub {
    display: none;
  }

  .nav-cta {
    min-height: 2.35rem;
    padding: 0.65rem 0.9rem;
  }

  .hero-copy {
    padding-top: 2rem;
  }

  .hero-media {
    min-height: 24rem;
  }

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

  .gallery-item:nth-child(3n + 1) {
    grid-row: auto;
  }

  .gallery-item:nth-child(3n + 1) img {
    aspect-ratio: 4 / 3;
  }
}
