:root {
  --paper: #fbfbf9;
  --paper-soft: #f0eee8;
  --ink: #1a1a1a;
  --muted: #6c675f;
  --line: rgba(26, 26, 26, 0.16);
  --dark: #11100d;
  --light: #ffffff;
  --accent: #8f6f3f;
  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, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4.5vw, 64px);
  color: var(--light);
  mix-blend-mode: difference;
}

.brand {
  display: grid;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand span {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand small {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a,
.menu-toggle {
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.04) saturate(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.03) saturate(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  gap: clamp(18px, 3vh, 34px);
  padding: clamp(110px, 16vh, 170px) 0 clamp(42px, 8vh, 84px);
  text-align: center;
}

.eyebrow,
.section-label,
.menu-card span,
.booking-panel span {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
}

h1 {
  font-size: clamp(5rem, 15vw, 14rem);
  letter-spacing: 0.01em;
}

.hero h1 {
  display: grid;
  gap: 0.04em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 small {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.76rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 1.45;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.7rem, 7vw, 7rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.hero-content p:not(.eyebrow):not(.scroll-cue) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
}

.scroll-cue {
  position: absolute;
  top: clamp(90px, 14vh, 132px);
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-statement {
  line-height: 1.65;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: 0.28em;
}

.hero .button {
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--light);
}

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

.hero .button.light {
  background: transparent;
  color: var(--light);
}

.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 5vh, 44px);
  left: 50%;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.56);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 13px 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 170ms ease, color 170ms ease;
}

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

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

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.section {
  padding: clamp(78px, 11vw, 160px) clamp(20px, 6vw, 86px);
}

.intro-layout,
.booking,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  margin-top: 28px;
}

.intro-text {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-text p:first-child {
  margin-top: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  min-height: 78svh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.split-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(62px, 8vw, 120px) clamp(20px, 6vw, 86px);
}

.split-copy p:not(.section-label) {
  max-width: 520px;
  color: var(--muted);
}

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

.takeaway-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.takeaway-heading .section-label,
.takeaway-heading h2 {
  grid-column: 1;
}

.takeaway-copy {
  grid-column: 2;
}

.takeaway-copy p {
  margin: 0;
  color: var(--muted);
}

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

.text-link {
  width: max-content;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.takeaway-preview {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.takeaway-notes {
  display: grid;
  gap: 14px;
}

.takeaway-notes article {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 24px;
}

.takeaway-notes span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.takeaway-notes strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.takeaway-notes p {
  margin: 0;
  color: var(--muted);
}

.takeaway-preview iframe {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-browser {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.category-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  max-height: calc(100svh - 120px);
  overflow: auto;
  padding-right: 10px;
}

.category-nav button {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.category-nav button:hover,
.category-nav button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.full-menu {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
}

.menu-category {
  scroll-margin-top: 110px;
}

.menu-category header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.menu-category h3 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.menu-category-count {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 60px);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.menu-item h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.menu-price {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

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

.gallery-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.gallery-layout img:first-child {
  grid-row: 1 / span 2;
}

.booking {
  background: var(--dark);
  color: var(--paper);
}

.booking-standalone h1 {
  max-width: 620px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
}

.booking .section-label,
.booking-panel span {
  color: #d2b781;
}

.booking-panel {
  display: grid;
  gap: 24px;
  border-top: 1px solid rgba(251, 251, 249, 0.2);
  padding-top: 28px;
}

.booking-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.booking-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.booking-note {
  margin: 0;
  color: rgba(251, 251, 249, 0.72);
}

.booking-actions {
  grid-column: 1 / -1;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(251, 251, 249, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form label:has(textarea),
.booking-submit,
.booking-call {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(251, 251, 249, 0.22);
  background: rgba(251, 251, 249, 0.08);
  color: var(--paper);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #d2b781;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(251, 251, 249, 0.42);
}

.booking-submit {
  width: 100%;
  margin-top: 8px;
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: #d2b781;
  font-weight: 700;
}

.booking-status.is-error {
  color: #ffb4a8;
}

.booking-whatsapp-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(251, 251, 249, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-call {
  width: 100%;
}

.booking .button.dark {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.booking .button.light {
  color: var(--paper);
  border-color: rgba(251, 251, 249, 0.8);
}

.contact-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.contact-list a::after {
  content: "Apri";
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    mix-blend-mode: normal;
    color: var(--paper);
    background: rgba(17, 16, 13, 0.92);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(17, 16, 13, 0.96);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .hero-content,
  .intro-layout,
  .split-feature,
  .takeaway-heading,
  .takeaway-preview,
  .booking,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .takeaway-copy {
    grid-column: auto;
  }

  .takeaway-preview iframe {
    min-height: 720px;
  }

  .menu-browser {
    grid-template-columns: 1fr;
  }

  .category-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow-x: auto;
    padding: 0 0 8px;
  }

  .category-nav button {
    flex: 0 0 auto;
    width: auto;
  }

  .split-feature img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 20px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .booking-standalone h1 {
    font-size: clamp(2.3rem, 13vw, 3.8rem);
    line-height: 0.95;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-top: 96px;
  }

  .hero h1 small {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .scroll-cue {
    top: 82px;
  }

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

  .hero-actions,
  .booking-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .booking-panel,
  .booking-times,
  .booking-form,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .takeaway-preview iframe {
    display: none;
  }

  .takeaway-notes {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-rows: none;
  }

  .gallery-layout img:first-child {
    grid-row: auto;
  }

  .gallery-layout img {
    min-height: 230px;
  }

  .menu-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
