/* ============================================================
   Middle Earth Tavern — British aristocratic refinement
   Typography: Cinzel (display), Cormorant Garamond (body),
               Inter (UI micro-copy). Palette: aged parchment,
               bottle green, brass gold, deep oxblood ink.
   ============================================================ */
:root {
  --ink: #1c1712;
  --ink-soft: #2f2620;
  --cream: #f4ead4;
  --cream-warm: #efe2c4;
  --paper: #faf3e2;
  --paper-warm: #f2e6c9;
  --parchment: #e9d9b6;

  --gold: #b48a3c;
  --gold-deep: #8d6a26;
  --gold-soft: #d9bd83;
  --gold-glow: #ecd396;

  --bottle: #274232;
  --bottle-deep: #1b2f24;
  --oxblood: #5a2321;
  --brick: #7b3f2f;

  --charcoal: #1a120c;
  --charcoal-deep: #100a06;
  --muted: #6f6250;
  --muted-soft: #a2917a;

  --line: rgba(28, 23, 18, 0.14);
  --line-gold: rgba(180, 138, 60, 0.34);
  --line-gold-strong: rgba(180, 138, 60, 0.6);

  --font-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-body: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-ui: "Inter", "Segoe UI", Arial, sans-serif;

  --shadow-sm: 0 4px 14px rgba(28, 23, 18, 0.08);
  --shadow-md: 0 14px 34px rgba(28, 23, 18, 0.14);
  --shadow-lg: 0 30px 70px rgba(28, 23, 18, 0.22);
  --shadow-gold: 0 20px 50px rgba(141, 106, 38, 0.18);

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- Reset ------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  font-feature-settings: "liga" 1, "onum" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse at 18% 8%, rgba(180, 138, 60, 0.055), transparent 42%),
    radial-gradient(ellipse at 82% 92%, rgba(123, 63, 47, 0.05), transparent 46%);
}

a {
  color: inherit;
  transition: color 0.25s var(--ease);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

/* --- Typography ------------------------------------------------- */
h1,
h2,
h3,
p,
dl,
dt,
dd {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 6.8vw, 92px);
  line-height: 1;
  color: var(--ink);
}

h1 em {
  display: block;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.005em;
}

h2 {
  max-width: 680px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.14;
  color: var(--ink);
  font-weight: 500;
}

h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

p {
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.rooms-section .eyebrow,
.order-section .eyebrow,
.contact-section .eyebrow,
.hero-copy .eyebrow {
  color: var(--gold-soft);
}

/* Ornamental centered dingbat */
.ornament {
  display: block;
  margin: 20px 0 26px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.1em;
  line-height: 1;
  text-align: left;
}

.ornament::before {
  content: "❦";
}

.contact-section .ornament,
.gallery-section .ornament {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Utilities -------------------------------------------------- */
.sr-only,
.hero-copy.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.narrow {
  max-width: 620px;
}

.section-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.rooms-section .section-copy p:not(.eyebrow),
.order-section .section-copy p:not(.eyebrow) {
  color: rgba(244, 234, 212, 0.8);
}

/* --- Top bar ---------------------------------------------------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr auto;
  align-items: center;
  gap: var(--space-4);
  min-height: 88px;
  padding: 16px clamp(24px, 4vw, 64px);
  background: rgba(250, 243, 226, 0.9);
  border-bottom: 1px solid var(--line-gold);
  backdrop-filter: saturate(1.15) blur(14px);
  -webkit-backdrop-filter: saturate(1.15) blur(14px);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 32%, var(--gold-soft) 68%, transparent);
  opacity: 0.55;
}

.logo {
  display: inline-grid;
  gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.logo span {
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.logo strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--ink);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

nav a,
.reserve,
.button,
.text-link {
  text-decoration: none;
}

nav a {
  position: relative;
  padding: 8px 2px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 2px;
  height: 1px;
  background: var(--gold);
  transition: inset 0.35s var(--ease);
}

nav a:hover {
  color: var(--gold-deep);
}

nav a:hover::after {
  inset: auto 0 2px;
}

.reserve {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 0 26px;
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: transparent;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease);
}

.reserve:hover {
  background: var(--gold);
  color: var(--paper);
  box-shadow: var(--shadow-gold);
}

/* --- Hero (full-bleed, editorial overlay) ----------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  margin-top: 88px; /* sits below fixed topbar */
  overflow: hidden;
  background: var(--charcoal-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.03);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 10, 6, 0.72) 0%, rgba(14, 10, 6, 0.5) 32%, rgba(14, 10, 6, 0.18) 55%, rgba(14, 10, 6, 0) 78%),
    linear-gradient(180deg, rgba(14, 10, 6, 0.35) 0%, rgba(14, 10, 6, 0) 22%, rgba(14, 10, 6, 0) 70%, rgba(14, 10, 6, 0.45) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 680px;
  padding: clamp(80px, 12vh, 140px) clamp(28px, 5vw, 84px) clamp(48px, 8vh, 96px);
  color: var(--cream);
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
  color: var(--gold-soft);
}

.hero-copy .eyebrow::before {
  background: var(--gold-soft);
  opacity: 0.85;
}

.hero-copy h1 {
  margin: 0;
  color: #fbf6ea;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.hero-copy h1 em {
  display: block;
  margin-top: 6px;
  color: var(--gold-glow);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.hero-copy .hero-lede {
  max-width: 480px;
  margin-top: 32px;
  color: rgba(251, 246, 234, 0.88);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* Ghost button variant for hero */
.button.ghost {
  border-color: rgba(251, 246, 234, 0.35);
  background: rgba(14, 10, 6, 0.18);
  color: var(--cream);
  backdrop-filter: blur(6px);
}

.button.ghost:hover {
  border-color: var(--gold-soft);
  background: rgba(14, 10, 6, 0.32);
  color: var(--gold-glow);
}

/* --- Buttons ---------------------------------------------------- */
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 23, 18, 0.7);
  padding: 0 30px;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--gold-deep);
  background: linear-gradient(180deg, var(--gold-glow), var(--gold) 55%, var(--gold-deep));
  color: #1a120c;
  box-shadow: 0 8px 20px rgba(141, 106, 38, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.button.primary:hover {
  box-shadow: 0 14px 30px rgba(141, 106, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(28, 23, 18, 0.32);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* Dark backgrounds override */
.order-section .button.secondary,
.hero-copy.on-dark .button.secondary,
.contact-section .button.secondary {
  color: var(--cream);
  border-color: rgba(244, 234, 212, 0.5);
}

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

.button.light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--charcoal);
}

.button.light:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button.outline {
  border-color: rgba(244, 234, 212, 0.42);
  color: var(--cream);
  background: transparent;
}

.button.outline:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.contact-section .button.dark {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--charcoal);
}

.contact-section .button.dark:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

/* --- Quick info strip ------------------------------------------- */
.quick-info {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 0.72fr 1.55fr 1fr 1fr;
  gap: 0;
  margin-top: 0;
  background: linear-gradient(180deg, var(--parchment), var(--cream-warm));
  border-top: 1px solid var(--line-gold-strong);
  border-bottom: 1px solid var(--line-gold-strong);
  box-shadow: 0 -18px 40px rgba(28, 23, 18, 0.08);
}

.quick-info > * {
  position: relative;
  min-width: 0;
  padding: 24px clamp(20px, 3vw, 44px);
  text-decoration: none;
  transition: background 0.3s var(--ease);
}

.quick-info > *:not(:last-child)::after {
  content: "";
  position: absolute;
  inset: 22% auto 22% 0;
  width: 1px;
  background: var(--line-gold);
}

.quick-info > *:first-child::after {
  content: none;
}

.quick-info a:hover {
  background: rgba(180, 138, 60, 0.08);
}

.quick-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.005em;
}

/* --- Section shared layout -------------------------------------- */
.story-section,
.rooms-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 8.5vw, 120px) clamp(24px, 5vw, 76px);
}

.menu-section,
.order-section,
.gallery-section,
.contact-section {
  padding: clamp(72px, 8.5vw, 120px) clamp(24px, 5vw, 76px);
}

.story-section {
  background: var(--paper);
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 30%, var(--gold-soft) 70%, transparent);
  opacity: 0.4;
}

.rooms-section {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  background:
    radial-gradient(ellipse at 85% 20%, rgba(180, 138, 60, 0.14), transparent 45%),
    linear-gradient(180deg, #2a2018, #1a120c);
  color: var(--cream);
}

.story-section img,
.rooms-section img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(180, 138, 60, 0.16);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.6s var(--ease);
}

.story-section img:hover,
.rooms-section img:hover {
  transform: translateY(-3px);
}

.section-copy {
  max-width: 560px;
}

.story-section .section-copy {
  max-width: 520px;
}

.story-section h2 {
  max-width: 500px;
}

.rooms-section h2,
.visit-section h2,
.menu-section h2 {
  max-width: 560px;
}

.rooms-section h2 {
  color: var(--cream);
}

/* --- Menu section ---------------------------------------------- */
.menu-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 138, 60, 0.16), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(123, 63, 47, 0.08), transparent 40%),
    var(--paper-warm);
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.menu-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: baseline;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line-gold);
  transition: padding 0.3s var(--ease);
}

.menu-list article:hover {
  padding-left: 12px;
}

.menu-list h3 {
  font-size: 25px;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.menu-list article:hover h3 {
  color: var(--oxblood);
}

.menu-list span {
  color: var(--brick);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(123, 63, 47, 0.32);
  border-radius: 999px;
}

.menu-list p {
  max-width: 62ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
}

/* --- Order section ---------------------------------------------- */
.order-section {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(180, 138, 60, 0.1), transparent 40%),
    linear-gradient(180deg, #2a2018, #1a120c);
  color: var(--cream);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: var(--space-6);
}

.order-menu {
  display: grid;
  gap: 14px;
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid rgba(244, 234, 212, 0.14);
  background: linear-gradient(180deg, rgba(244, 234, 212, 0.06), rgba(244, 234, 212, 0.03));
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.order-item:hover {
  border-color: rgba(217, 189, 131, 0.42);
  background: linear-gradient(180deg, rgba(244, 234, 212, 0.09), rgba(244, 234, 212, 0.04));
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.order-item h3 {
  margin-top: 8px;
  font-size: 24px;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.order-item p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(244, 234, 212, 0.72);
  font-size: 17px;
  font-style: italic;
}

.item-tag {
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.item-buy {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.item-buy strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.item-buy button,
.cart-row button,
.order-actions button {
  cursor: pointer;
  font: inherit;
}

.item-buy button {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--gold-deep);
  background: linear-gradient(180deg, var(--gold-glow), var(--gold) 55%, var(--gold-deep));
  color: #1a120c;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px rgba(141, 106, 38, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.3s var(--ease);
}

.item-buy button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(141, 106, 38, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.order-panel {
  position: sticky;
  top: 110px;
  padding: 30px 28px;
  border: 1px solid rgba(217, 189, 131, 0.2);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(180, 138, 60, 0.08), transparent 60%),
    rgba(16, 11, 7, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(217, 189, 131, 0.08);
  backdrop-filter: blur(6px);
}

.order-panel h3 {
  font-size: 26px;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.cart-list {
  display: grid;
  gap: 12px;
  min-height: 56px;
  margin-top: 22px;
}

.empty-cart {
  color: rgba(244, 234, 212, 0.5);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 234, 212, 0.12);
}

.cart-row strong {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cream);
  font-size: 18px;
}

.cart-row span {
  display: block;
  color: rgba(244, 234, 212, 0.6);
  font-family: var(--font-ui);
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.cart-row button {
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.cart-row button:hover {
  color: var(--brick);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 189, 131, 0.28);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 234, 212, 0.7);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  text-transform: none;
}

.order-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 234, 212, 0.75);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 234, 212, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: rgba(244, 234, 212, 0.06);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: 0;
  border-color: var(--gold-soft);
  background: rgba(244, 234, 212, 0.09);
  box-shadow: 0 0 0 3px rgba(180, 138, 60, 0.16);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(244, 234, 212, 0.38);
  font-style: italic;
}

.order-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.order-actions .button {
  width: 100%;
}

.order-note {
  margin-top: 18px;
  color: rgba(244, 234, 212, 0.55);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

/* --- Rooms text-link ------------------------------------------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease), color 0.25s var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.text-link:hover {
  color: var(--gold-glow);
  gap: 16px;
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* --- Gallery ---------------------------------------------------- */
.gallery-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(180, 138, 60, 0.08), transparent 40%),
    var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #24170f;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}

.gallery-grid figure:first-child img {
  height: 560px;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 10, 6, 0.78));
  pointer-events: none;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.05) brightness(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 24px;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 1;
}

.gallery-grid figcaption::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 10px;
  background: var(--gold-soft);
}

/* --- Visit ------------------------------------------------------ */
.visit-section {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(180, 138, 60, 0.14), transparent 45%),
    var(--parchment);
}

.visit-section iframe {
  width: 100%;
  height: min(56vh, 520px);
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(180, 138, 60, 0.18);
}

/* --- Contact ---------------------------------------------------- */
.contact-section {
  text-align: center;
  background:
    radial-gradient(ellipse at center 20%, rgba(180, 138, 60, 0.14), transparent 55%),
    linear-gradient(180deg, #1a120c, #100a06);
  color: var(--cream);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.5;
}

.contact-section .eyebrow {
  justify-content: center;
}

.contact-section h2 {
  margin: 0 auto;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.contact-section p:not(.eyebrow) {
  margin: 14px auto 0;
  max-width: 520px;
  color: rgba(244, 234, 212, 0.78);
  font-size: 20px;
  font-style: italic;
}

.contact-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* --- Footer ----------------------------------------------------- */
footer {
  padding: 24px clamp(24px, 5vw, 76px);
  background: #0d0906;
  color: rgba(244, 234, 212, 0.5);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  border-top: 1px solid rgba(217, 189, 131, 0.1);
}

/* --- Responsive ------------------------------------------------- */
@media (max-width: 1000px) {
  .topbar {
    position: fixed;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  nav {
    display: none;
  }

  .reserve {
    justify-self: end;
  }

  .hero {
    min-height: 88vh;
    margin-top: 76px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 80px 24px 60px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 10, 6, 0.55) 0%, rgba(14, 10, 6, 0.25) 30%, rgba(14, 10, 6, 0) 60%, rgba(14, 10, 6, 0.55) 100%);
  }

  .quick-info,
  .story-section,
  .rooms-section,
  .visit-section,
  .order-layout,
  .menu-board,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-info > *:not(:last-child)::after {
    inset: auto 22% 0;
    width: auto;
    height: 1px;
  }

  .order-panel {
    position: static;
  }

  .section-copy,
  .story-section .section-copy {
    max-width: 620px;
  }

  .gallery-grid img,
  .gallery-grid figure:first-child img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .topbar {
    min-height: 0;
    gap: 10px;
    padding: 12px 16px;
    background: var(--paper);
  }

  .logo span {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .logo strong {
    font-size: 17px;
  }

  nav {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a:nth-child(2),
  nav a:nth-child(5),
  nav a:nth-child(6) {
    display: none;
  }

  .reserve {
    width: auto;
    min-height: 38px;
    justify-self: start;
    padding: 0 16px;
    font-size: 10px;
  }

  /* Mobile hero: stacked layout — full image on top, text below */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    margin-top: 60px;
    padding: 0;
    background: linear-gradient(180deg, #1a120c 0%, #100a06 100%);
    overflow: visible;
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: center;
    z-index: 0;
    filter: saturate(1.05) contrast(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .hero-overlay {
    display: none;
  }

  .hero-copy {
    position: relative;
    max-width: 100%;
    padding: 40px 22px 48px;
    color: var(--cream);
    z-index: 1;
  }

  .hero-copy .eyebrow {
    color: var(--gold-soft);
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--cream);
    white-space: normal;
    text-shadow: none;
  }

  .hero-copy h1 em {
    color: var(--gold-glow);
    white-space: normal;
  }

  .hero-copy .hero-lede {
    color: rgba(244, 234, 212, 0.85);
    font-size: 16.5px;
    line-height: 1.6;
    margin-top: 22px;
    text-shadow: none;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 28px;
  }

  h1 {
    font-size: 46px;
  }

  /* Ensure topbar stays clean on mobile */
  .topbar {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  h3 {
    font-size: 20px;
  }

  .story-section,
  .rooms-section,
  .visit-section,
  .menu-section,
  .order-section,
  .gallery-section,
  .contact-section {
    padding: 52px 22px;
  }

  .section-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.65;
  }

  .contact-actions,
  .order-item {
    display: grid;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .item-buy {
    justify-items: start;
  }

  .button {
    width: 100%;
  }

  .quick-info > * {
    padding: 20px 22px;
  }

  .quick-info span {
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .quick-info strong {
    font-size: 17px;
    line-height: 1.3;
  }

  .quick-info > *:not(:last-child)::after {
    inset: auto 20% 0;
    width: auto;
    height: 1px;
  }

  .menu-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 4px;
  }

  .menu-list h3 {
    font-size: 22px;
  }

  .menu-list p {
    font-size: 16px;
  }

  .menu-list span {
    justify-self: start;
    white-space: normal;
  }

  /* Order section on mobile */
  .order-item {
    padding: 20px 20px;
    gap: 14px;
  }

  .order-item h3 {
    font-size: 21px;
  }

  .order-item p {
    font-size: 15.5px;
  }

  .item-buy {
    justify-self: start;
  }

  .item-buy button {
    width: 100%;
  }

  .order-panel {
    padding: 24px 22px;
  }

  .order-panel h3 {
    font-size: 22px;
  }

  /* Story / rooms images */
  .story-section img,
  .rooms-section img {
    aspect-ratio: 4 / 3;
    margin-top: 12px;
  }

  /* Gallery images */
  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid figcaption {
    padding: 16px 18px;
    font-size: 10px;
  }

  /* Section headings feel less shouty on tiny screens */
  h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
  }

  /* Contact block */
  .contact-section h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .contact-section p:not(.eyebrow) {
    font-size: 17px;
  }

  /* Visit map slightly shorter on mobile */
  .visit-section iframe {
    height: 320px;
    min-height: 320px;
  }
}
