/* Signature Catering — the client's own palette, taken from their menu cards and poster:
   near-black #10100E, warm gold #C79A3E, cream #F7F2E7. No colour here is invented. */

:root {
  --ink: #10100e;
  --ink-soft: #2a2926;
  --gold: #c79a3e;
  --gold-soft: #e0c07a;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --line: rgba(199, 154, 62, .28);
  --shadow: 0 18px 48px rgba(16, 16, 14, .16);
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: .2px; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); line-height: 1.12; margin: .2em 0 .35em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.2; margin: 0 0 .3em; }
h3 { font-size: 1.18rem; margin: .9rem 0 .35rem; }
p { margin: 0 0 1em; }
a { color: inherit; }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.wrap.narrow { width: min(680px, calc(100% - 2.5rem)); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem;
  color: var(--gold); margin: 0 0 .4em; font-weight: 600;
}
.sub { color: var(--ink-soft); max-width: 62ch; margin-bottom: 2rem; }
.fineprint { font-size: .85rem; color: #6b6a64; }

/* ── bar ─────────────────────────────────────────────────────────────────── */
.bar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(16, 16, 14, .93); backdrop-filter: blur(8px);
  color: var(--cream);
}
.wordmark { text-decoration: none; line-height: 1; }
.wordmark-main { display: block; font-family: Georgia, serif; letter-spacing: .34em; font-size: 1.02rem; }
.wordmark-sub  { display: block; letter-spacing: .42em; font-size: .58rem; color: var(--gold); margin-top: .28em; }
.wordmark-main.small { font-size: .95rem; }
.bar-nav { display: flex; align-items: center; gap: clamp(.8rem, 2.4vw, 1.7rem); font-size: .93rem; }
.bar-nav a { text-decoration: none; opacity: .88; }
.bar-nav a:hover { opacity: 1; color: var(--gold-soft); }
.bar-cta {
  border: 1px solid var(--gold); color: var(--gold-soft);
  padding: .48em 1.05em; border-radius: 999px;
}
.bar-cta:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 620px) { .bar-nav a:not(.bar-cta) { display: none; } }

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; color: var(--cream); }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,16,14,.82) 0%, rgba(16,16,14,.62) 45%, rgba(16,16,14,.88) 100%);
}
.hero-inner {
  width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5.5rem);
  max-width: 46rem;
}
.lede { font-size: clamp(1.02rem, 2.1vw, 1.2rem); color: #ece5d6; max-width: 44ch; }
.hero-note { margin-top: 1.6rem; font-size: .85rem; color: #cfc6b2; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.btn {
  display: inline-block; text-decoration: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 600; padding: .82em 1.7em; border-radius: 999px;
  transition: transform .12s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #171610; }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border: 1px solid rgba(247,242,231,.5); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-wide { width: 100%; margin-top: .4rem; }

/* ── strip ───────────────────────────────────────────────────────────────── */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); color: var(--cream); text-align: center;
}
.strip-item { padding: 1.5rem .6rem; border-left: 1px solid rgba(199,154,62,.22); }
.strip-item:first-child { border-left: 0; }
.strip-figure { display: block; font-family: Georgia, serif; font-size: 1.7rem; color: var(--gold); }
.strip-label { display: block; font-size: .78rem; letter-spacing: .06em; color: #cfc6b2; margin-top: .25em; }
@media (max-width: 640px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: 0; }
  .strip-item:nth-child(n+3) { border-top: 1px solid rgba(199,154,62,.22); }
}

/* ── bands ───────────────────────────────────────────────────────────────── */
.band { padding: clamp(3.2rem, 8vw, 5.5rem) 0; }
.band-tint { background: var(--cream); }
.band-dark { background: var(--ink); color: var(--cream); }
.band-dark .sub { color: #cfc6b2; }
.band-dark .fineprint { color: #9a958a; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow);
}
.card img { aspect-ratio: 3 / 2; object-fit: cover; }
.card h3, .card p { padding-inline: 1.15rem; }
.card p { color: var(--ink-soft); font-size: .96rem; padding-bottom: 1.2rem; }

/* ── menus ───────────────────────────────────────────────────────────────── */
.tabs { display: flex; gap: .5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.tab {
  font: inherit; cursor: pointer; background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .5em 1.3em;
}
.tab.is-on { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.menu-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.menu-card img { border-bottom: 1px solid var(--line); }
.menu-card-foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: .6rem;
  padding: .95rem 1.1rem 1.15rem;
}
.menu-price { font-family: Georgia, serif; font-size: 1.32rem; color: var(--gold); }
.menu-note { font-size: .82rem; color: #6b6a64; }

/* ── split ───────────────────────────────────────────────────────────────── */
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.split-media img { border-radius: 14px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 820px) { .split-inner { grid-template-columns: 1fr; } }
.ticks { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.ticks li { padding-left: 1.6rem; position: relative; margin-bottom: .5em; color: var(--ink-soft); }
.ticks li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: .72rem; top: .35em; }

.proof { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: center; }
.proof img { border-radius: 14px; }
@media (max-width: 720px) { .proof { grid-template-columns: 1fr; } }

/* ── form ────────────────────────────────────────────────────────────────── */
.enquiry { display: grid; gap: 1rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .86rem; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: .35em; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; padding: .72em .9em;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent;
}
.form-status { min-height: 1.4em; font-size: .92rem; color: var(--ink-soft); }
.form-status.is-bad { color: #a3341f; }
.form-status.is-good { color: #2f6b3a; }

/* ── foot + float ────────────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--cream); padding: 2.6rem 0; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: space-between; }
.foot-tag { font-family: Georgia, serif; font-style: italic; color: var(--gold-soft); margin-top: .7em; }
.foot-meta { font-size: .88rem; color: #cfc6b2; text-align: right; }
@media (max-width: 640px) { .foot-meta { text-align: left; } }

.ask-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold); color: #171610; text-decoration: none; font-weight: 600;
  padding: .72em 1.15em; border-radius: 999px; box-shadow: 0 10px 26px rgba(16,16,14,.3);
}
.ask-float:hover { background: var(--gold-soft); }
@media (max-width: 480px) { .ask-float span { display: none; } .ask-float { padding: .85em; } }

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