:root {
  --ink: #18211b;
  --ink-soft: #394237;
  --cream: #f7f1e4;
  --paper: #fff9ed;
  --stone: #d9c7a5;
  --green: #183b2b;
  --green-2: #27513b;
  --brass: #b8893a;
  --claret: #7a2e28;
  --line: rgba(24, 33, 27, 0.16);
  --shadow: 0 20px 60px rgba(24, 33, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--paper);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 241, 228, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(24, 33, 27, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 6px;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

.nav a,
.header-call {
  position: relative;
  padding: 10px 0;
}

.nav a::after,
.header-call::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.header-call:hover::after,
.header-call:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--green);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 30, 23, 0.88), rgba(18, 30, 23, 0.42) 48%, rgba(18, 30, 23, 0.18)),
    linear-gradient(0deg, rgba(18, 30, 23, 0.78), rgba(18, 30, 23, 0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(96px, 14vh, 150px) clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(56px, 10vw, 124px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.25;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 22px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.light {
  background: var(--paper);
  color: var(--ink);
}

.button.ghost {
  color: var(--paper);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 28px;
  z-index: 2;
  width: min(430px, calc(100% - 36px));
  display: grid;
  gap: 9px;
  border-left: 1px solid rgba(255, 249, 237, 0.55);
  padding: 4px 0 4px 22px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.hero-panel strong {
  font-size: 18px;
}

.band {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1.22fr;
  gap: clamp(38px, 7vw, 96px);
  background: var(--paper);
}

.intro h2,
.section-head h2,
.feature-copy h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intro-grid div,
.room-grid div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.intro-grid strong,
.room-grid strong {
  font-size: 24px;
  line-height: 1;
}

.intro-grid span,
.room-grid span {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.45;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 140px) clamp(18px, 5vw, 72px);
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.clean-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-family: "Segoe UI", sans-serif;
}

.clean-list li {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.menu-section {
  background: var(--green);
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.6fr);
  gap: 32px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.section-head p {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.65;
  opacity: 0.78;
}

.dish-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid rgba(255, 249, 237, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.07);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dish-card div {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.dish-card span {
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.dish-card h3 {
  margin: 12px 0 10px;
  font-size: 26px;
  line-height: 1.02;
}

.dish-card p {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.78;
}

.dish-card strong {
  margin-top: auto;
  padding-top: 24px;
  font-size: 24px;
  color: var(--brass);
}

.pub-section {
  background: var(--cream);
}

.quote-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: var(--claret);
  color: var(--paper);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.quote-panel span {
  font-family: "Segoe UI", sans-serif;
  opacity: 0.78;
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.note-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}

.rooms {
  background: var(--paper);
}

.section-head.narrow {
  display: block;
  max-width: 800px;
  margin: 0 0 42px;
}

.section-head.narrow p {
  margin-top: 22px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-height: 620px;
  background: var(--green);
  color: var(--paper);
}

.visit-map {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 72px);
  background:
    linear-gradient(rgba(24, 59, 43, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 59, 43, 0.18) 1px, transparent 1px),
    var(--stone);
  background-size: 38px 38px;
}

.map-card {
  width: min(420px, 100%);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  box-shadow: var(--shadow);
}

.map-card span {
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--claret);
}

.map-card strong {
  display: block;
  margin-top: 12px;
  font-size: 38px;
  line-height: 1;
}

.map-card p,
.visit-copy p {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.65;
}

.visit-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 72px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-family: "Segoe UI", sans-serif;
}

.contact-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 249, 237, 0.24);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px) 96px;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  background: var(--ink);
  color: rgba(255, 249, 237, 0.76);
}

.mobile-actions {
  display: none;
}

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

  .header-call,
  .nav {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    gap: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-header.is-open .nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 0;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .site-header.is-open .nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0 20px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 30, 23, 0.9), rgba(18, 30, 23, 0.18) 72%),
      linear-gradient(90deg, rgba(18, 30, 23, 0.72), rgba(18, 30, 23, 0.1));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 178px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .hero-panel {
    right: 18px;
    bottom: 82px;
    left: 18px;
    width: auto;
    padding-left: 16px;
  }

  .intro,
  .split,
  .reverse,
  .section-head,
  .visit {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .dish-grid,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .dish-card {
    display: grid;
    grid-template-columns: 132px 1fr;
  }

  .dish-card img {
    height: 100%;
    min-height: 210px;
    aspect-ratio: auto;
  }

  .dish-card div {
    min-height: 210px;
  }

  .site-footer {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 249, 237, 0.24);
    border-radius: 999px;
    background: rgba(24, 33, 27, 0.92);
    color: var(--paper);
    box-shadow: 0 16px 36px rgba(24, 33, 27, 0.28);
    backdrop-filter: blur(18px);
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-actions a {
    min-height: 52px;
    display: grid;
    place-items: center;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 249, 237, 0.18);
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .button {
    flex: 1 1 auto;
    padding: 0 16px;
  }

  .band,
  .split {
    padding-right: 18px;
    padding-left: 18px;
  }

  .dish-card {
    grid-template-columns: 1fr;
  }

  .dish-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
