/* ==========================================================================
   MyCultura Peru — site styles
   Palette and type ported from the original design comp.
   ========================================================================== */

/* --- Fonts (self-hosted, latin + latin-ext subsets) ---------------------- */

@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  --bg: #faf5ee;
  --bg-alt: #f4ece0;
  --paper: #ffffff;
  --ink: #2a211b;
  --ink-soft: #5a4d42;
  --ink-mute: #6f6253;
  --ink-faint: #7a6e62;
  --brand: #b14a2c;
  --brand-dark: #993d22;
  --gold: #c7873b;
  /* Accents lifted from the Andean table-runner + dish garnishes: turquoise
     ticking, fuchsia diamonds and violet motifs against the warm terracotta/gold base. */
  --teal: #1f8a8a;
  --teal-dark: #166b6b;
  --magenta: #c23b73;
  --magenta-dark: #9c2c59;
  --violet: #6b4c93;
  --line: rgba(42, 33, 27, 0.08);
  --line-strong: rgba(42, 33, 27, 0.16);
  --on-dark: rgba(250, 245, 238, 0.82);
  --on-dark-mute: rgba(250, 245, 238, 0.62);
  --stripe-band: repeating-linear-gradient(
    90deg,
    var(--brand) 0 34px,
    var(--gold) 34px 60px,
    var(--teal) 60px 94px,
    var(--bg) 94px 104px,
    var(--magenta) 104px 138px,
    var(--violet) 138px 156px,
    var(--bg) 156px 166px
  );

  --serif: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell: 1240px;
  --gutter: 32px;
  --radius: 14px;
  --pill: 999px;
}

/* --- Base ---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 620px at 14% -8%, rgba(31, 138, 138, 0.09), transparent 60%),
    radial-gradient(1000px 560px at 108% 6%, rgba(194, 59, 115, 0.08), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(107, 76, 147, 0.07), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: inherit;
}

p { margin: 0; }

a { color: inherit; }

::selection { background: var(--magenta); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 16px; }

/* --- Shared bits --------------------------------------------------------- */

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--teal { color: var(--teal); }
.eyebrow--hero { margin-bottom: 22px; letter-spacing: 0.22em; }

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand);
  color: var(--bg);
  box-shadow: 0 10px 24px -10px rgba(177, 74, 44, 0.6);
}
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  padding-inline: 26px;
}
.btn--ghost:hover { border-color: var(--teal); background: rgba(31, 138, 138, 0.06); color: var(--teal-dark); }

.btn--ghost-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250, 245, 238, 0.25);
  padding-inline: 26px;
}
.btn--ghost-light:hover { border-color: var(--teal); background: rgba(31, 138, 138, 0.18); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, 0.82);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--stripe-band);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(42, 33, 27, 0.06);
}
.brand__name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.brand__name span { color: var(--brand); }
.site-footer .brand__name { letter-spacing: 0; font-size: 19px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav__link:hover { color: var(--teal-dark); }

.basket {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.18s ease;
}
.basket:hover { background: var(--magenta); }
.basket__count {
  min-width: 20px;
  height: 20px;
  padding-inline: 6px;
  border-radius: var(--pill);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket__count[hidden] { display: none; }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle span { margin-inline: auto; position: relative; }
.nav__toggle span::before,
.nav__toggle span::after { content: ''; position: absolute; left: 0; }
.nav__toggle span::before { top: -5px; }
.nav__toggle span::after { top: 5px; }
.nav__toggle[aria-expanded='true'] span { background: transparent; }
.nav__toggle[aria-expanded='true'] span::before { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span::after { transform: translateY(-5px) rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */

@keyframes floatUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
  padding-block: 64px 40px;
}
.hero__copy { animation: floatUp 0.7s ease both; }
.hero__title {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero__lede {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
}
.hero .btn-row { margin-top: 34px; }

.hero__tags {
  margin-top: 42px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e9decf;
  box-shadow: 0 30px 60px -30px rgba(42, 33, 27, 0.35), 0 18px 0 -12px rgba(0,0,0,0.02);
  padding-bottom: 8px;
  background: var(--stripe-band), #e9decf;
}
.hero__art-img {
  width: 100%;
  height: calc(100% - 8px);
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero__caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(250, 245, 238, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: var(--pill);
}

.badge-card {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 14px 30px -14px rgba(42, 33, 27, 0.4);
  border-top: 3px solid var(--magenta);
}
.badge-card__label { font-size: 12px; color: var(--ink-faint); }
.badge-card__value {
  font-family: var(--serif);
  font-size: 19px;
  margin-top: 2px;
}

/* --- Trust strip --------------------------------------------------------- */

.trust {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(177, 74, 44, 0.07), rgba(199, 135, 59, 0.07) 25%, rgba(31, 138, 138, 0.07) 50%, rgba(194, 59, 115, 0.07) 75%, rgba(107, 76, 147, 0.07)),
    var(--bg-alt);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  margin: 0;
  list-style: none;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a7d6f;
  font-weight: 600;
}
.trust__inner li { display: flex; align-items: center; gap: 12px 24px; }
.trust__inner li + li::before { content: '·'; color: #cdbfa9; }
.trust__inner li:nth-child(6n+1) { color: var(--brand-dark); }
.trust__inner li:nth-child(6n+2) { color: var(--gold); }
.trust__inner li:nth-child(6n+3) { color: var(--teal-dark); }
.trust__inner li:nth-child(6n+4) { color: var(--magenta-dark); }
.trust__inner li:nth-child(6n+5) { color: var(--violet); }

/* --- Intro + pillars ----------------------------------------------------- */

.intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 46px;
  padding-block: 84px 24px;
}
.intro__title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  max-width: 520px;
  text-wrap: balance;
}
.intro__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  align-self: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  padding-block: 30px 20px;
  margin: 0;
  list-style: none;
}
.pillar {
  background: var(--paper);
  border: 1px solid rgba(42, 33, 27, 0.07);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.pillar:nth-of-type(2) { border-top-color: var(--teal); }
.pillar:nth-of-type(3) { border-top-color: var(--magenta); }
.pillar__num {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--brand);
  font-size: 19px;
}
.pillar:nth-of-type(2) .pillar__num { background: rgba(31, 138, 138, 0.12); color: var(--teal-dark); }
.pillar:nth-of-type(3) .pillar__num { background: rgba(194, 59, 115, 0.12); color: var(--magenta-dark); }
.pillar__title { margin: 18px 0 8px; font-size: 20px; }
.pillar__body { font-size: 14.5px; line-height: 1.6; color: var(--ink-mute); }

/* --- Menu ---------------------------------------------------------------- */

.menu {
  background: var(--ink);
  color: var(--bg);
  margin-top: 72px;
}
.menu::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--stripe-band);
}
.menu .shell { padding-block: 84px; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-head__aside {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 245, 238, 0.7);
}
.section-head__aside--dark { color: var(--ink-mute); max-width: 330px; }

.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 56px;
  margin: 0;
  list-style: none;
}
.dish {
  padding-block: 18px;
  border-bottom: 1px solid rgba(250, 245, 238, 0.12);
}
.dish__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.dish__name { font-size: 20px; }
.dish__tag {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: var(--pill);
  font-weight: 700;
}
.dish__tag--teal { background: var(--teal); color: var(--bg); }
.dish__tag--magenta { background: var(--magenta); color: var(--bg); }
.dish__tag--violet { background: var(--violet); color: var(--bg); }
.dish__desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-dark-mute);
}
.menu .btn-row { margin-top: 46px; }

/* --- Shop ---------------------------------------------------------------- */

.shop {
  padding-block: 88px 30px;
  background: linear-gradient(180deg, rgba(31, 138, 138, 0.05), transparent 240px);
}
.shop .section-head { margin-bottom: 42px; }

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin: 0;
  list-style: none;
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -22px rgba(42, 33, 27, 0.45);
}
.product__art {
  position: relative;
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(135deg, #efe6d6, #efe6d6 11px, #e6d9c2 11px, #e6d9c2 22px);
}
.product:nth-of-type(6n+1) .product__art { background: repeating-linear-gradient(135deg, #f3e6df, #f3e6df 11px, #e9c9ba 11px, #e9c9ba 22px); }
.product:nth-of-type(6n+2) .product__art { background: repeating-linear-gradient(135deg, #f2ecdd, #f2ecdd 11px, #e3d3ac 11px, #e3d3ac 22px); }
.product:nth-of-type(6n+3) .product__art { background: repeating-linear-gradient(135deg, #e2eeee, #e2eeee 11px, #bcdcdc 11px, #bcdcdc 22px); }
.product:nth-of-type(6n+4) .product__art { background: repeating-linear-gradient(135deg, #f3e3ea, #f3e3ea 11px, #e4b9cb 11px, #e4b9cb 22px); }
.product:nth-of-type(6n+5) .product__art { background: repeating-linear-gradient(135deg, #eae3f0, #eae3f0 11px, #cebbdd 11px, #cebbdd 22px); }
.product__ph {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  background: rgba(255, 255, 255, 0.82);
  padding: 4px 8px;
  border-radius: 5px;
}
.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--brand);
  padding: 4px 9px;
  border-radius: var(--pill);
  font-weight: 700;
}
.product__badge--teal { background: var(--teal); }
.product__badge--gold { background: var(--gold); color: var(--ink); }
.product__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__name { font-size: 18px; }
.product__desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-faint);
  flex: 1;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.product__price {
  font-family: var(--serif);
  font-size: 19px;
}
.product__add {
  border: none;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.product__add:hover { background: var(--brand); }

.shop__note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* --- About --------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
  padding-block: 88px;
  background: radial-gradient(720px 480px at 85% 30%, rgba(107, 76, 147, 0.06), transparent 60%);
}
.about__art {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius);
  background: #e9decf;
  box-shadow: 0 30px 60px -34px rgba(42, 33, 27, 0.4);
  outline: 3px solid var(--violet);
  outline-offset: 8px;
}
.about__title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  text-wrap: balance;
}
.about__body {
  margin-top: 24px;
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.about__body + .about__body { margin-top: 18px; }

.byline {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}
.byline__avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: #e9decf;
}
.byline__name { font-family: var(--serif); font-size: 17px; }
.byline__meta { font-size: 13.5px; color: var(--ink-faint); }

/* --- Contact ------------------------------------------------------------- */

.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.contact .shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  padding-block: 84px;
}
.contact__lede {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 420px;
}
.contact__list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 15px;
}
.contact__list li::before {
  content: '';
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--brand);
}
.contact__list li:nth-child(2)::before { background: var(--teal); }
.contact__list li:nth-child(3)::before { background: var(--magenta); }
.contact__list li:nth-child(4)::before { background: var(--violet); }
.contact__list a { text-decoration: none; }
.contact__list a:hover { color: var(--brand); }

.enquiry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 138, 138, 0.14);
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.enquiry__submit { margin-top: 4px; padding: 15px; width: 100%; }
.enquiry__error {
  margin: 0;
  font-size: 13.5px;
  color: var(--brand-dark);
}

.thanks {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
}
.thanks__tick {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.thanks__title { margin: 22px 0 8px; font-size: 26px; }
.thanks__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 320px;
}
.thanks[hidden] { display: none; }

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--bg);
}
.site-footer::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--stripe-band);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  padding-block: 54px 40px;
}
.site-footer__blurb {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 245, 238, 0.6);
}
.site-footer .brand { color: var(--bg); margin-bottom: 16px; }
.site-footer__heading {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 245, 238, 0.45);
  margin-bottom: 14px;
}
.site-footer__grid > div:nth-child(2) .site-footer__heading { color: var(--teal); }
.site-footer__grid > div:nth-child(3) .site-footer__heading { color: var(--magenta); }
.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--on-dark);
}
.site-footer__list a { text-decoration: none; transition: color 0.18s ease; }
.site-footer__list a:hover { color: var(--teal); }
.site-footer__grid > div:nth-child(3) .site-footer__list a:hover { color: var(--magenta); }
.site-footer__legal { border-top: 1px solid rgba(250, 245, 238, 0.1); }
.site-footer__legal .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-block: 18px;
  font-size: 13px;
  color: rgba(250, 245, 238, 0.5);
}

/* --- Toast --------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 36px -18px rgba(42, 33, 27, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 860px) {
  :root { --gutter: 22px; }

  .nav__toggle { display: grid; place-items: center; }

  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px var(--gutter) 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 30px -26px rgba(42, 33, 27, 0.6);
  }
  .nav__links[hidden] { display: none; }
  .nav__link { padding-block: 12px; font-size: 16px; }
  .basket { margin-top: 10px; justify-content: center; }

  .hero { padding-block: 44px 32px; gap: 40px; }
  .hero__art { order: -1; aspect-ratio: 1 / 1; }
  .hero__caption { left: 14px; bottom: 14px; font-size: 12px; }
  .badge-card { top: 14px; right: 14px; padding: 11px 14px; }

  .intro { padding-block: 62px 20px; gap: 26px; }
  .menu { margin-top: 56px; }
  .menu .shell,
  .contact .shell { padding-block: 62px; }
  .dishes { gap: 0 32px; }
  .shop { padding-block: 64px 24px; }
  .about { padding-block: 64px; gap: 38px; }
  .contact .shell { gap: 38px; }
  .enquiry { padding: 24px; }
}

@media (max-width: 520px) {
  .field-pair { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Print --------------------------------------------------------------- */

@media print {
  .site-header, .nav__toggle, .toast, .btn-row, .enquiry { display: none !important; }
  body { background: #fff; }
  .menu, .site-footer { background: #fff; color: #000; }
  .dish__desc, .section-head__aside { color: #444; }
}
