/* =====================================================================
   The Walsh Kitchen -- "Signal Kitchen" visual identity  (v2)
   Deliberately distinct from prior builds in this account (which lean on
   warm cream + green + Playfair/serif). This build is:
     - Bright warm-white canvas with a vivid TOMATO accent + ink black
     - Geometric grotesk display type (Space Grotesk), never a serif
     - A big centered SEARCH-FIRST hero (not an image split)
     - A sticky horizontal CATEGORY CHIP RAIL under the header
     - Rounded, modern cards with a pill rating chip + tag pills
     - Numbered index badges on section headers
     - Infinite scroll on listings
   ===================================================================== */

:root {
  --paper:      #fbf9f5;
  --paper-2:    #f3efe7;
  --card:       #ffffff;
  --ink:        #16151a;
  --ink-2:      #3a3740;
  --muted:      #6c6a72;
  --line:       #e7e2d8;
  --line-2:     #d9d3c6;

  --tomato:     #ec4a24;   /* primary accent */
  --tomato-700: #c63a18;
  --tomato-50:  #fdeee9;
  --gold:       #f2b705;   /* secondary accent */
  --ink-panel:  #16151a;   /* dark sections */

  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --disp:  "Space Grotesk", "Inter", system-ui, sans-serif;

  --wrap: 1240px;
  --r:  14px;     /* card radius */
  --r-sm: 9px;
  --r-pill: 999px;
  --shadow:    0 24px 50px -30px rgba(22,21,26,.45);
  --shadow-sm: 0 10px 24px -18px rgba(22,21,26,.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--tomato-700); text-decoration: none; }
a:hover { color: var(--tomato); }

h1, h2, h3, h4 {
  font-family: var(--disp); font-weight: 600; line-height: 1.05;
  color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.wrap--narrow { max-width: 840px; }

.kicker {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em;
  font-size: 11.5px; font-weight: 700; color: var(--tomato);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  padding: 13px 24px; border-radius: var(--r-pill);
  border: 2px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn--clay, .btn--primary { background: var(--tomato); border-color: var(--tomato); }
.btn--clay:hover, .btn--primary:hover { background: var(--tomato-700); border-color: var(--tomato-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* ---------- top utility ---------- */
.utility { background: var(--ink-panel); color: #cfc9c0; font-size: 12.5px; }
.utility .wrap { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.utility a { color: #cfc9c0; }
.utility a:hover { color: var(--gold); }
.utility__links { display: flex; gap: 20px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-main {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px;
  padding: 16px 26px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--tomato); color: #fff; display: grid; place-items: center;
  font-family: var(--disp); font-weight: 700; font-size: 22px; transform: rotate(-4deg);
}
.brand__name { font-family: var(--disp); font-weight: 700; font-size: 21px; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.brand__tag { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.search {
  display: flex; align-items: center; background: var(--card);
  border: 2px solid var(--line-2); border-radius: var(--r-pill);
  padding: 3px 3px 3px 18px; min-width: 360px; transition: border-color .15s;
}
.search:focus-within { border-color: var(--ink); }
.search input { border: 0; outline: 0; background: transparent; font-family: var(--sans); font-size: 14.5px; color: var(--ink); width: 100%; padding: 9px 6px; }
.search button { border: 0; cursor: pointer; background: var(--tomato); color: #fff; border-radius: var(--r-pill); padding: 10px 18px; font-weight: 600; font-size: 13px; }
.search button:hover { background: var(--tomato-700); }

.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 13.5px; color: var(--ink);
  border: 2px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 15px; background: var(--card);
}
.icon-btn:hover { border-color: var(--ink); color: var(--ink); }
.cart-badge { min-width: 20px; height: 20px; padding: 0 5px; background: var(--tomato); color: #fff; font-size: 12px; font-weight: 700; border-radius: var(--r-pill); display: inline-grid; place-items: center; }

/* ---------- category chip rail (sticky) ---------- */
.chips { background: var(--card); border-bottom: 1px solid var(--line); }
.chips__scroll {
  display: flex; gap: 9px; align-items: center; overflow-x: auto; scrollbar-width: none;
  max-width: var(--wrap); margin: 0 auto; padding: 12px 26px;
}
.chips__scroll::-webkit-scrollbar { display: none; }
.chip {
  white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--ink-2);
  border: 1.5px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 15px; background: var(--paper);
  transition: all .14s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip--all { background: var(--tomato); color: #fff; border-color: var(--tomato); }
.chip--all:hover { background: var(--tomato-700); color: #fff; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
.mobile-search { display: none; }
.mobile-panel { display: none; }

/* ---------- section header ---------- */
.section { padding: 66px 0; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink-panel); color: #efece6; }
.section--dark h2, .section--dark h3 { color: #fff; }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.sec-head__num { font-family: var(--disp); font-size: 13px; font-weight: 700; color: var(--tomato); letter-spacing: .04em; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 4px 0 0; }
.sec-head__link {
  font-weight: 700; font-size: 13px; letter-spacing: .02em; white-space: nowrap;
  border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 9px 18px; color: var(--ink);
}
.sec-head__link:hover { background: var(--ink); color: #fff; }
.section--dark .sec-head__link { border-color: #fff; color: #fff; }
.section--dark .sec-head__link:hover { background: #fff; color: var(--ink); }

/* ---------- hero (search-first) ---------- */
.hero { position: relative; background: var(--ink-panel); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,21,26,.55), rgba(22,21,26,.86)); }
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 96px 26px 104px; text-align: center; }
.hero__eyebrow { color: var(--gold); margin-bottom: 20px; }
.hero h1 { color: #fff; font-size: clamp(40px, 6vw, 76px); letter-spacing: -.03em; margin-bottom: 20px; }
.hero__lead { font-size: 19px; color: #d9d5cd; max-width: 54ch; margin: 0 auto 30px; }
.hero__search { display: flex; gap: 10px; max-width: 620px; margin: 0 auto; background: #fff; border-radius: var(--r-pill); padding: 7px 7px 7px 22px; box-shadow: var(--shadow); }
.hero__search input { flex: 1; border: 0; outline: 0; font-size: 16px; font-family: var(--sans); color: var(--ink); background: transparent; }
.hero__search button { border: 0; background: var(--tomato); color: #fff; font-weight: 700; padding: 14px 26px; border-radius: var(--r-pill); cursor: pointer; font-size: 15px; }
.hero__search button:hover { background: var(--tomato-700); }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.hero__tags a { font-size: 13px; font-weight: 600; color: #efece6; border: 1.5px solid rgba(255,255,255,.28); border-radius: var(--r-pill); padding: 7px 15px; }
.hero__tags a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero__stats { display: flex; gap: 34px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero__stats b { font-family: var(--disp); font-size: 26px; color: #fff; display: block; }
.hero__stats span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #b9b4ab; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- recipe cards ---------- */
.rcard { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.rcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.rcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.rcard:hover .rcard__media img { transform: scale(1.05); }
.rcard__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.rcard__kicker { margin-bottom: 7px; font-size: 11px; }
.rcard__title { font-family: var(--disp); font-weight: 600; font-size: 18px; color: var(--ink); margin: 0 0 12px; line-height: 1.16; letter-spacing: -.01em; }
.rcard__title a { color: inherit; }
.rcard__title a:hover { color: var(--tomato-700); }
.rcard__meta { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.rcard__meta .pill { background: var(--paper-2); border-radius: var(--r-pill); padding: 4px 10px; font-weight: 600; color: var(--ink-2); }
.rcard__rating { position: absolute; left: 12px; bottom: 12px; z-index: 2; background: rgba(22,21,26,.86); color: #fff; font-size: 12.5px; font-weight: 700; border-radius: var(--r-pill); padding: 5px 11px; display: inline-flex; align-items: center; gap: 4px; }
.rcard__rating .s { color: var(--gold); }

/* premium + free badges */
.seal { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: var(--gold); color: #3a2c00; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 11px 6px 9px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.seal svg { width: 13px; height: 13px; }
.tag-free { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255,255,255,.92); color: var(--ink); font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--r-pill); }

/* ---------- category tiles ---------- */
.cat-tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/2; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,21,26,.9), rgba(22,21,26,.05) 62%); }
.cat-tile__body { position: relative; padding: 20px; z-index: 2; }
.cat-tile__body h3 { color: #fff; font-size: 22px; margin: 0; }
.cat-tile__body span { font-size: 12.5px; opacity: .92; }

/* ---------- product cards ---------- */
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pcard__media { aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard__name { font-family: var(--disp); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.pcard__cat { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tomato); font-weight: 700; }
.pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 10px; }
.price { font-family: var(--disp); font-size: 19px; color: var(--ink); font-weight: 700; }

/* ---------- photo mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; border-radius: var(--r-sm); }
.mosaic .tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ---------- recipe detail ---------- */
.detail-hero { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; padding: 40px 0; }
.detail-hero img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.detail-hero h1 { font-size: clamp(30px, 4.2vw, 50px); }
.meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.meta-row .m { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 16px; display: flex; flex-direction: column; min-width: 92px; }
.meta-row .m span { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.meta-row .m strong { font-family: var(--disp); font-size: 19px; color: var(--ink); font-weight: 600; }

.detail-body { display: grid; grid-template-columns: 340px 1fr; gap: 46px; padding: 22px 0 60px; }
.ing-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; align-self: start; position: sticky; top: 130px; }
.ing-box h3 { font-size: 22px; display: flex; align-items: center; gap: 10px; }
.ing-box h3::before { content: ""; width: 18px; height: 4px; background: var(--tomato); border-radius: 2px; }
.ing-list { list-style: none; margin: 16px 0 0; padding: 0; }
.ing-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; display: flex; justify-content: space-between; gap: 10px; }
.ing-list li:last-child { border-bottom: 0; }
.ing-list .amt { color: var(--tomato-700); font-weight: 700; white-space: nowrap; }

.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.steps li { position: relative; padding: 0 0 26px 60px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -4px; width: 40px; height: 40px; border-radius: 12px; background: var(--tomato); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-size: 18px; font-weight: 700; }
.steps li::after { content: ""; position: absolute; left: 19px; top: 42px; bottom: 2px; width: 2px; background: var(--line); }
.steps li:last-child::after { display: none; }

/* ---------- paywall ---------- */
.paywall { position: relative; }
.paywall__blur { filter: blur(6px); pointer-events: none; user-select: none; max-height: 250px; overflow: hidden; }
.paywall__gate { margin-top: -140px; position: relative; z-index: 3; background: linear-gradient(to bottom, rgba(251,249,245,0), var(--paper) 42%); padding-top: 150px; text-align: center; }
.paywall__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); max-width: 520px; margin: 0 auto; padding: 36px; }

/* ---------- forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 15px; border: 2px solid var(--line-2); border-radius: var(--r-sm); background: var(--card); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert { padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 18px; }
.alert--error { background: var(--tomato-50); color: #8a2c12; border: 1px solid #f0b6a5; }
.alert--ok { background: #e7f4ea; color: #1c5a34; border: 1px solid #b7dcc0; }
.alert--info { background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line); }

/* ---------- filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 18px; margin-bottom: 28px; }
.filters select, .filters input { padding: 9px 12px; border: 2px solid var(--line-2); border-radius: var(--r-sm); font-size: 14px; background: var(--card); font-family: var(--sans); }
.filters .count { margin-left: auto; font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- pagination + infinite scroll ---------- */
.pager { display: flex; gap: 6px; justify-content: center; align-items: center; margin: 44px 0 6px; flex-wrap: wrap; }
.pager a, .pager span { font-weight: 600; font-size: 14px; padding: 9px 14px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); color: var(--ink); background: var(--card); }
.pager a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager .is-active { background: var(--tomato); color: #fff; border-color: var(--tomato); }
.pager .pager__gap { border: 0; background: none; }
.infinite-sentinel { height: 1px; }
.infinite-status { text-align: center; padding: 30px 0 4px; color: var(--muted); font-size: 14px; font-weight: 600; }
.spinner { width: 26px; height: 26px; border: 3px solid var(--line-2); border-top-color: var(--tomato); border-radius: 50%; margin: 0 auto 8px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- tables ---------- */
.wk-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.wk-table th, .wk-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.wk-table th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- plans ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.plan { background: var(--card); border: 2px solid var(--line); border-radius: var(--r); padding: 32px; text-align: center; }
.plan.is-featured { border-color: var(--tomato); box-shadow: var(--shadow); }
.plan__price { font-family: var(--disp); font-size: 46px; color: var(--ink); font-weight: 700; }
.plan__price small { font-size: 15px; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.plan li { padding: 8px 0 8px 28px; position: relative; font-size: 14.5px; }
.plan li::before { content: ""; position: absolute; left: 0; top: 12px; width: 15px; height: 8px; border-left: 2.5px solid var(--tomato); border-bottom: 2.5px solid var(--tomato); transform: rotate(-45deg); }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 25%; border-radius: var(--r); }
.member h3 { margin: 14px 0 2px; font-size: 20px; }
.member .role { color: var(--tomato); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.member p { font-size: 14px; color: var(--muted); }

/* ---------- misc ---------- */
.crumbs { font-size: 12.5px; letter-spacing: .02em; color: var(--muted); padding: 22px 0 0; }
.crumbs a { color: var(--tomato-700); }
.page-head { padding: 44px 0 12px; }
.page-head h1 { font-size: clamp(30px, 4.4vw, 52px); }
.page-head p { color: var(--muted); max-width: 62ch; font-size: 17px; }

.prose { max-width: 780px; }
.prose h2 { font-size: 26px; margin-top: 36px; }
.prose h3 { font-size: 20px; margin-top: 26px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; }
.prose ul { padding-left: 20px; }

.empty-state { text-align: center; padding: 64px 20px; }
.empty-state svg { width: 54px; height: 54px; color: var(--tomato); margin-bottom: 12px; }
.divider { height: 1px; background: var(--line); margin: 40px 0; border: 0; }
.center { text-align: center; }
.mt-6 { margin-top: 24px; } .mt-4 { margin-top: 16px; } .mb-0 { margin-bottom: 0; }
.badge-lock { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--tomato-700); font-weight: 700; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-panel); color: #b9b4ab; padding: 60px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #b9b4ab; display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-brand__name { font-family: var(--disp); font-weight: 700; font-size: 24px; color: #fff; }
.footer-contact { font-size: 13.5px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; }

/* ---------- cookie consent ---------- */
.cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; max-width: 960px; margin: 0 auto; background: var(--ink-panel); color: #efece6; border-radius: var(--r); box-shadow: var(--shadow); display: flex; align-items: center; gap: 18px; padding: 16px 22px; }
.cookie p { margin: 0; font-size: 13.5px; color: #cfc9c0; }
.cookie p a { color: var(--gold); }
.cookie__btns { display: flex; gap: 10px; margin-left: auto; flex: none; }
.cookie .btn { white-space: nowrap; }
.cookie.is-hidden { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .ing-box { position: static; }
  .detail-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .header-main { grid-template-columns: auto 1fr auto; }
  .header-main .search { display: none; }
  .hamburger { display: block; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .mobile-search { display: flex !important; margin: 0 26px 14px; }
  .mobile-panel.is-open { display: block; background: var(--card); border-top: 1px solid var(--line); padding: 10px 0 18px; }
  .mobile-panel.is-open a { display: block; padding: 11px 26px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; gap: 15px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rcard__title { font-size: 16px; }
  .section { padding: 46px 0; }
  .hero__inner { padding: 68px 22px 74px; }
  .hero__search { flex-direction: column; border-radius: var(--r); padding: 10px; }
  .hero__search button { border-radius: var(--r-sm); }
}
