/* ==========================================================================
   LNL Kitchen — public site
   Parent group palette is fixed; each brand page overrides --brand/--accent
   inline, so every component below themes itself automatically.
   ========================================================================== */

:root {
  --maroon: #7a1230;
  --maroon-dark: #58091f;
  --gold: #c8a45c;
  --ink: #17120f;
  --ink-soft: #4a423d;
  --muted: #857a72;
  --cream: #faf6f0;
  --paper: #ffffff;
  --line: #e8ded2;

  /* Overridden per brand */
  --brand: var(--maroon);
  --accent: var(--gold);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(23, 18, 15, .06), 0 8px 24px rgba(23, 18, 15, .06);
  --shadow-lg: 0 2px 4px rgba(23, 18, 15, .06), 0 24px 60px rgba(23, 18, 15, .14);
  --max: 1200px;
  --nav-h: 74px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #f3ece4; }
.section--ink h2, .section--ink h3 { color: #fff; }

.kicker {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  flex: none;
}
.section--ink .kicker { color: var(--gold); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section--ink .lead { color: #cbbfb4; }

/* ---------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* Inline SVGs carry no intrinsic size — without this they default to 300×150. */
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--sm svg { width: 16px; height: 16px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 20px -6px color-mix(in srgb, var(--brand) 70%, transparent); }
.btn--primary:hover { background: color-mix(in srgb, var(--brand) 88%, #000); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--ink); }
.btn--wa { background: #25d366; color: #06301a; }
.btn--wa:hover { background: #1eb855; }
.btn--sm { padding: 10px 18px; font-size: .86rem; }
.btn--block { width: 100%; }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brandmark { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; }
.brandmark__badge {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: .04em;
  flex: none;
}
.brandmark__badge--emoji { font-size: 1.2rem; letter-spacing: 0; }
.brandmark small { display: block; font-family: var(--sans); font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav__links a:hover { background: rgba(0, 0, 0, .05); color: var(--ink); }
.nav__links a.is-active { color: var(--brand); font-weight: 600; }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 12px; border-radius: 10px; }
  .nav__links .btn { margin-top: 8px; justify-content: center; }
}

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

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 9vw, 110px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 12% 0%, color-mix(in srgb, var(--brand) 62%, transparent) 0%, transparent 62%),
    radial-gradient(70% 100% at 100% 100%, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 60%);
  opacity: .95;
}
.hero > * { position: relative; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lead { color: rgba(255, 255, 255, .78); max-width: 56ch; font-size: 1.2rem; }
.hero .kicker { color: var(--accent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 7vw, 76px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.hero__stats div span {
  display: block;
  margin-top: 7px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
@media (max-width: 700px) { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }

/* ------------------------------------------------------------ Brand cards */

.brandgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.bcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s cubic-bezier(.2, .7, .3, 1), box-shadow .22s, border-color .22s;
}
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.bcard__art {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 20% 15%, color-mix(in srgb, var(--bc) 88%, #fff) 0%, var(--bc) 55%, color-mix(in srgb, var(--bc) 78%, #000) 100%);
  overflow: hidden;
}
.bcard__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 9px);
  opacity: .7;
}
.bcard__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Monogram placeholder, shown until real artwork is uploaded in the CMS. */
.bcard__mono {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
.bcard__mono::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translateX(-50%);
  width: 34px; height: 2px;
  background: rgba(255, 255, 255, .55);
}
.bcard:hover .bcard__mono { transform: scale(1.06); }

.bcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bcard__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--bc);
  margin-bottom: 8px;
}
.bcard h3 { margin: 0 0 6px; font-size: 1.4rem; }
.bcard__tag { font-size: .93rem; color: var(--muted); margin: 0 0 16px; flex: 1; }
.bcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.bcard__go { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--bc); }
.bcard__go svg { width: 15px; height: 15px; transition: transform .2s; }
.bcard:hover .bcard__go svg { transform: translateX(4px); }

/* --------------------------------------------------------------- Services */

.svcgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .2s, box-shadow .2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  margin-bottom: 18px;
}
.svc h3 { font-size: 1.22rem; margin-bottom: 8px; }
.svc p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ------------------------------------------------------- Brand microsites */

.bhero {
  position: relative;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
}
.bhero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 130% at 88% 0%, color-mix(in srgb, var(--accent) 46%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .34));
}
.bhero__watermark {
  position: absolute;
  right: 2%;
  bottom: -18%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(12rem, 26vw, 22rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  opacity: .09;
  pointer-events: none;
  user-select: none;
}
.bhero > * { position: relative; }
.bhero h1 { color: #fff; margin-bottom: 14px; }
.bhero__cuisine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.bhero p { color: rgba(255, 255, 255, .84); max-width: 62ch; }
.bhero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.crumbs { font-size: .84rem; color: rgba(255, 255, 255, .62); margin-bottom: 20px; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* Branch picker */
.branchbar {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.branchbar__inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.branchbar__label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.branchpills { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .16s;
}
.pill:hover { border-color: var(--brand); color: var(--brand); }
.pill.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.pill .dot { width: 9px; height: 9px; border-radius: 3px; display: inline-block; margin-right: 8px; vertical-align: 0; }

.brandmark__badge { font-size: .82rem; }
.svc__icon svg { display: block; }

/* Anchor offset must clear both the sticky nav and the sticky branch bar —
   the branch pills wrap onto extra lines on narrow screens. */
.menuanchor { scroll-margin-top: calc(var(--nav-h) + 76px); }
@media (max-width: 720px) { .menuanchor { scroll-margin-top: calc(var(--nav-h) + 165px); } }

/* Menu */
.menucat { margin-bottom: 52px; }
.menucat__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.menucat__head h2 { margin: 0; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.menucat__head span { flex: 1; height: 1px; background: var(--line); }
.menucat__head em { font-style: normal; font-size: .8rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.menugrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 16px; }

.mitem {
  display: flex;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.mitem:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); box-shadow: var(--shadow); }
.mitem__thumb {
  width: 74px; height: 74px;
  flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 1.9rem;
  background: color-mix(in srgb, var(--brand) 9%, #fff);
  overflow: hidden;
}
.mitem__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mitem__initial {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--brand) 62%, #fff);
}
.mitem__main { flex: 1; min-width: 0; }
.mitem__top { display: flex; align-items: flex-start; gap: 10px; justify-content: space-between; }
.mitem h4 { margin: 0; font-family: var(--sans); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; }
.mitem__price { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--brand); white-space: nowrap; }
.mitem__desc { margin: 5px 0 0; font-size: .89rem; line-height: 1.5; color: var(--muted); }
.mitem__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand);
}
.badge--hot { background: #fdecea; color: #c62828; }
.badge--veg { background: #e8f5e9; color: #2e7d32; }
.badge--star { background: color-mix(in srgb, var(--accent) 26%, #fff); color: #6b4c00; }

.addbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-size: .84rem;
  font-weight: 600;
  transition: all .16s;
}
.addbtn:hover { background: var(--brand); color: #fff; }
.addbtn.is-added { background: #25d366; border-color: #25d366; color: #06301a; }

/* Branch cards */
.branchgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.branchcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.branchcard h3 { font-family: var(--sans); font-size: 1.06rem; font-weight: 600; letter-spacing: 0; margin-bottom: 4px; }
.branchcard__area { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 12px; }
.branchcard dl { margin: 0 0 18px; display: grid; gap: 9px; font-size: .9rem; }
.branchcard dl div { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.branchcard dl svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--muted); }
.branchcard .btn { width: 100%; }

/* ------------------------------------------------------------ Cart drawer */

.cartfab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 0;
  background: #25d366;
  color: #06301a;
  font-weight: 700;
  box-shadow: 0 10px 34px -8px rgba(37, 211, 102, .8);
  transition: transform .18s;
}
.cartfab.is-visible { display: flex; }
.cartfab:hover { transform: translateY(-3px); }
.cartfab__count {
  min-width: 24px; height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  display: grid; place-items: center;
  font-size: .82rem;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(23, 18, 15, .5); backdrop-filter: blur(3px); }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
  animation: slidein .26s cubic-bezier(.2, .7, .3, 1);
}
@keyframes slidein { from { transform: translateX(100%); } }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin: 0; font-size: 1.2rem; }
.drawer__close { background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--muted); padding: 0 4px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 18px 22px calc(18px + env(safe-area-inset-bottom)); background: var(--cream); }

.cartrow { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cartrow:last-child { border-bottom: 0; }
.cartrow__name { flex: 1; min-width: 0; font-size: .94rem; font-weight: 500; }
.cartrow__name small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; }
.qty { display: flex; align-items: center; gap: 4px; }
.qty button {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 1rem;
  line-height: 1;
}
.qty button:hover { border-color: var(--brand); color: var(--brand); }
.qty span { min-width: 24px; text-align: center; font-weight: 600; font-size: .92rem; }

/* Optional name + Zone/Street/Building captured before the order is sent. */
.custform { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.custform[hidden] { display: none; }
.custform h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.custform h4 span {
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--muted);
  margin-left: 6px;
}
.custform__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.custform__field { display: grid; gap: 5px; margin-bottom: 12px; }
.custform__field label { font-size: .78rem; font-weight: 600; color: var(--ink-soft); }
.custform__field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.custform__field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
}
.custform__note { margin: 2px 0 0; font-size: .78rem; color: var(--muted); line-height: 1.5; }

.carttotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-size: 1.05rem; }
.carttotal strong { font-family: var(--serif); font-size: 1.5rem; }
.cartnote { font-size: .78rem; color: var(--muted); margin: 12px 0 0; text-align: center; line-height: 1.5; }

/* ------------------------------------------------------------------ Forms */

.form { display: grid; gap: 16px; }
.form--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form--2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
}
.field textarea { min-height: 130px; resize: vertical; }

.formnote {
  padding: 14px 18px;
  border-radius: 11px;
  font-size: .92rem;
  display: none;
}
.formnote.is-ok { display: block; background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.formnote.is-err { display: block; background: #fdecea; color: #b71c1c; border: 1px solid #ef9a9a; }

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

.footer { background: var(--ink); color: #b9aca1; padding: clamp(56px, 7vw, 84px) 0 32px; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .92rem; }
.footer__intro { font-size: .93rem; max-width: 40ch; }
.footer .brandmark { color: #fff; margin-bottom: 16px; }
.footer .brandmark small { color: #8e8178; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: #7f736a;
}

/* -------------------------------------------------------------- Utilities */

.demobar {
  background: #17120f;
  color: #f0d9a8;
  font-size: .82rem;
  padding: 9px 0;
  text-align: center;
}
.demobar strong { color: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

.center { text-align: center; }
.center .kicker { justify-content: center; }
.center .kicker::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: clamp(36px, 5vw, 56px); }

.emptystate {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.emptystate strong { display: block; font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
