:root {
  --ink: #211a17;
  --muted: #6b625e;
  --paper: #fbf7f1;
  --cream: #fffdf8;
  --sage: #78866b;
  --clay: #a5553f;
  --wine: #662f3c;
  --charcoal: #191615;
  --line: rgba(33, 26, 23, 0.14);
  --shadow: 0 18px 44px rgba(44, 32, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(18, 14, 13, 0.76), rgba(18, 14, 13, 0));
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 13, 12, 0.88) 0%, rgba(17, 13, 12, 0.66) 42%, rgba(17, 13, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 13, 12, 0.58), rgba(17, 13, 12, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c9a8;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button,
.booking-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.booking-form button {
  background: var(--clay);
  color: #fff;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  background: var(--cream);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  background: #f3ede4;
}

.about-photo img,
.proof-grid img,
.menu-feature img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.about-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-grid figure,
.menu-feature,
.gallery-card {
  margin: 0;
}

.proof-grid figure {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.proof-grid img {
  aspect-ratio: 4 / 3;
}

figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.proof-grid figcaption {
  padding: 10px 12px 12px;
}

.intro > p,
.booking-copy p,
.menu-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-band {
  background: #eee5db;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.service-card span {
  margin-bottom: 44px;
  color: var(--sage);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--wine);
  font-weight: 900;
}

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

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-panel,
.menu-note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.menu-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.menu-panel li + li {
  margin-top: 10px;
}

.menu-note {
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3ede4;
}

.menu-feature {
  overflow: hidden;
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.menu-feature img {
  min-height: 330px;
}

.menu-feature figcaption {
  display: flex;
  align-items: end;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

.gallery-section {
  color: #fff;
  background: var(--charcoal);
}

.gallery-section .eyebrow {
  color: #f4c9a8;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.86);
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(120, 134, 107, 0.5), rgba(102, 47, 60, 0.42)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.photo-placeholder span {
  color: #f4c9a8;
  font-weight: 900;
}

.photo-placeholder p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.quote-section {
  text-align: center;
  background: var(--cream);
}

blockquote {
  max-width: 920px;
  margin: 0 auto;
  color: var(--wine);
  font-size: clamp(2rem, 4.8vw, 4.9rem);
}

.quote-section p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 84px);
  background: #e8ded2;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-copy {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    padding: 110px 0 54px;
  }

  .intro,
  .about-section,
  .service-grid,
  .menu-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

  .menu-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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

  footer {
    display: grid;
  }
}
