:root {
  --red: #9e1a1a;
  --red-deep: #5c0d0d;
  --red-hot: #c42828;
  --gold: #d4a84b;
  --gold-bright: #f0d078;
  --gold-dim: #a67c2e;
  --ink: #140a08;
  --ink-soft: #2a1612;
  --paper: #f7f0e4;
  --paper-dim: rgba(247, 240, 228, 0.72);
  --line: rgba(212, 168, 75, 0.35);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* ——— Site chrome ——— */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(20, 10, 8, 0.92), rgba(20, 10, 8, 0.55) 70%, transparent);
  backdrop-filter: blur(4px);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.topbar-brand img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.topbar-brand span {
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.topbar nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar nav a {
  color: var(--paper-dim);
  transition: color 0.25s var(--ease);
}

.topbar nav a:hover {
  color: var(--gold-bright);
}

.topbar .call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.topbar .call-pill:hover {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 720px) {
  .topbar nav {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end center;
  padding: clamp(5.5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero- ken 22s var(--ease) both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(158, 26, 26, 0.35), transparent 70%),
    linear-gradient(180deg, rgba(20, 10, 8, 0.55) 0%, rgba(20, 10, 8, 0.35) 35%, rgba(20, 10, 8, 0.88) 78%, var(--ink) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240, 208, 120, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 60%, rgba(240, 208, 120, 0.25) 0 1px, transparent 1.5px);
  background-size: 28px 28px, 42px 42px;
  animation: drift 36s linear infinite;
  pointer-events: none;
}

.hero-inner {
  width: min(42rem, 100%);
  text-align: center;
}

.hero-logo {
  width: clamp(8.5rem, 28vw, 13rem);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: rise 1s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  animation: rise 1s var(--ease) 0.12s both;
}

.hero h1 em {
  display: block;
  margin-top: 0.35em;
  font-style: normal;
  font-weight: 500;
  font-size: 0.38em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-lede {
  margin: 1.15rem auto 0;
  max-width: 28rem;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  color: var(--paper-dim);
  animation: rise 1s var(--ease) 0.22s both;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: rise 1s var(--ease) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 168, 75, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(20, 10, 8, 0.35);
}

.btn-ghost:hover {
  background: rgba(212, 168, 75, 0.12);
}

/* ——— Sections ——— */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  width: min(44rem, 100%);
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.section-head p {
  margin-top: 0.75rem;
  color: var(--paper-dim);
  font-size: 1.02rem;
}

.section-rule {
  width: 4.5rem;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Menu */
.menu-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(158, 26, 26, 0.22), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-soft) 40%, var(--ink));
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 56rem;
}

.menu-nav button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(247, 240, 228, 0.04);
  color: var(--paper-dim);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.menu-nav button:hover,
.menu-nav button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-board {
  width: min(52rem, 100%);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(247, 240, 228, 0.97), rgba(240, 230, 210, 0.95));
  color: var(--ink);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(20, 10, 8, 0.7);
}

.menu-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
}

.tag-spicy {
  background: var(--red);
  color: #fff;
}

.tag-new {
  background: var(--red-hot);
  color: #fff;
}

.tag-nuts {
  background: var(--gold-dim);
  color: #fff;
}

.menu-category {
  scroll-margin-top: 5.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(158, 26, 26, 0.18);
}

.menu-category:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-category h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.menu-category .blurb {
  font-size: 0.88rem;
  color: rgba(20, 10, 8, 0.65);
  font-style: italic;
  margin-bottom: 0.85rem;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem 0.75rem;
  align-items: baseline;
}

.menu-item .num {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--red);
  font-size: 0.86rem;
  min-width: 1.6rem;
}

.menu-item .name-wrap {
  min-width: 0;
}

.menu-item .name {
  font-weight: 500;
  font-size: 0.95rem;
}

.menu-item .meta {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.menu-item .note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(20, 10, 8, 0.58);
  font-style: italic;
}

.menu-item .price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}

.menu-item .price::before {
  content: "£";
  font-weight: 500;
  margin-right: 0.05em;
}

.dots {
  display: none;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.box-card {
  border: 1px solid rgba(158, 26, 26, 0.35);
  padding: 0.9rem 0.85rem;
  background: rgba(158, 26, 26, 0.04);
}

.box-card .code {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--red);
  font-weight: 600;
}

.box-card .price {
  font-weight: 700;
  margin: 0.15rem 0 0.55rem;
}

.box-card ul {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(20, 10, 8, 0.75);
}

.box-card li + li {
  margin-top: 0.2rem;
}

.menu-photos {
  width: min(52rem, 100%);
  margin: 2rem auto 0;
  display: grid;
  gap: 0.85rem;
}

.menu-photos h3 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.4rem;
  text-align: center;
}

.menu-photos p {
  text-align: center;
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .photo-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-row a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.photo-row img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.photo-row a:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .photo-row {
    grid-template-columns: 1fr;
  }

  .photo-row img {
    aspect-ratio: 16 / 10;
  }
}

/* Visit */
.visit-section {
  background:
    linear-gradient(180deg, rgba(20, 10, 8, 0.72), rgba(92, 13, 13, 0.78)),
    url("assets/atmosphere-duck.jpg") center / cover no-repeat;
}

.visit-grid {
  width: min(52rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

@media (max-width: 760px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }
}

.visit-card {
  background: rgba(20, 10, 8, 0.72);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  backdrop-filter: blur(6px);
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}

.visit-card dl {
  display: grid;
  gap: 0.85rem;
}

.visit-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.visit-card dd {
  color: var(--paper-dim);
  font-size: 0.98rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.15);
  color: var(--paper-dim);
}

.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

.visit-media {
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 16rem;
}

.visit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}

/* Footer */
.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 75, 0.2);
  background: var(--ink);
}

.site-footer img {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
}

.site-footer p {
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.site-footer .fine {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: rgba(247, 240, 228, 0.45);
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 28px, -42px 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-logo,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .hero-pattern,
  .photo-row img {
    animation: none !important;
    transition: none !important;
  }
}
