/* ─── Variables ─────────────────────────────────────── */
:root {
  --charcoal: #4A4A4A;
  --charcoal-soft: #6b6b6b;
  --ink: #0E0E0E;
  --blue: #0781F9;
  --blue-hover: #0668c9;
  --paper: #FFFFFF;
  --cream: #FAF8F5;
  --mist: #F1F2F4;
  --line: #E6E6E6;
  --line-dark: rgba(255, 255, 255, .10);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── Typography ────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow.center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display .it { font-style: italic; font-weight: 400; }
h1.display { font-size: clamp(36px, 4.4vw, 66px); }
h2.display { font-size: clamp(36px, 4.4vw, 60px); }
h3.display { font-size: clamp(24px, 2.2vw, 32px); }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 62ch;
  text-wrap: pretty;
}

/* ─── Layout ────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: calc(clamp(80px, 11vw, 140px) * var(--section-scale, 1)) 0; }
.section-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 64px; max-width: 760px; }
.section-head.center { align-items: center; text-align: center; margin-inline: auto; }

/* ─── Site Header ───────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 108px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 76px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--charcoal); transition: color .2s; }
.nav a:hover { color: var(--blue); }
.nav .links { display: flex; gap: 32px; }
.nav .phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums;
}
.nav .phone svg { width: 14px; height: 14px; color: var(--blue); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border: 1px solid var(--ink); border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink);
  transition: all .2s ease;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
@media (max-width: 880px) { .nav .links { display: none; } }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 30px; border-radius: 4px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  background: var(--ink); color: #fff;
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(72px, 8vw, 120px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
  opacity: .95;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,14,.78) 0%, rgba(14,14,14,.55) 38%, rgba(14,14,14,.20) 65%, rgba(14,14,14,.40) 100%),
    linear-gradient(180deg, rgba(14,14,14,.15) 0%, transparent 35%, rgba(14,14,14,.35) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(7,129,249,.10), transparent 60%),
    linear-gradient(transparent 96%, rgba(255,255,255,.04) 96%);
  background-size: auto, 100% 56px;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .eyebrow { color: #9aa0a6; }
.hero h1.display { color: #fff; margin-top: 28px; }
.hero .hero-tagline {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255,255,255,.55);
  margin: 10px 0 0;
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: .01em;
}
.hero p.lede { color: #cfd2d6; max-width: 52ch; margin-top: 28px; }
.hero-meta {
  margin-top: 44px; display: flex; flex-wrap: wrap;
  gap: 28px 36px; align-items: center;
  font-size: 13px; color: #9aa0a6;
}
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); display: inline-block;
  margin-right: 10px; vertical-align: middle;
}

/* ─── Enquiry form card ─────────────────────────────── */
.enquiry {
  background: #fff; color: var(--ink);
  border-radius: 6px; padding: 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55), 0 2px 0 0 var(--blue);
}
.enquiry h3 {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  line-height: 1.15; margin: 0 0 6px; color: var(--ink);
}
.enquiry .sub { font-size: 13px; color: var(--charcoal-soft); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--charcoal-soft);
}
.field input, .field select, .field textarea {
  appearance: none; -webkit-appearance: none;
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 13px 14px; font-size: 15px; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7,129,249,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry .btn { width: 100%; margin-top: 8px; }
.enquiry .legal { font-size: 11px; color: var(--charcoal-soft); margin-top: 14px; line-height: 1.5; }

/* ─── Trust bar ─────────────────────────────────────── */
.trust { padding: 0; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-cell {
  padding: 48px clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.trust-cell:first-child { border-left: 0; }
.trust-num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 4.4vw, 58px);
  color: var(--ink); line-height: 1; letter-spacing: -.02em;
}
.trust-num .unit { font-size: .45em; vertical-align: top; margin-left: 2px; color: var(--blue); font-style: italic; }
.trust-label {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--charcoal-soft); font-weight: 600; margin-top: 8px;
}
.trust-sub { font-size: 13px; color: var(--charcoal); margin-top: 2px; }
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(3) { border-left: 0; }
  .trust-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ─── Why choose us ─────────────────────────────────── */
.why { background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
  padding: 48px var(--why-pad-x, 32px) 40px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.why-cell:first-child { border-left: 0; padding-left: 0; }
.why-cell:last-child { padding-right: 0; }
.why-cell .n { font-family: var(--mono); font-size: 11px; color: var(--blue); letter-spacing: .14em; font-weight: 500; }
.why-cell h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; margin: 0; color: var(--ink); }
.why-cell p { margin: 0; font-size: 15px; color: var(--charcoal); line-height: 1.6; }
@media (max-width: 980px) {
  .why-cell { padding: 40px var(--why-pad-x, 24px) 32px; }
  .why-cell:nth-child(odd) { border-left: 0; padding-left: 0; }
  .why-cell:nth-child(2) { padding-right: 0; }
  .why-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ─── Kitchen styles ────────────────────────────────── */
.styles { background: var(--cream); }
.styles-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 760px) { .styles-head { grid-template-columns: 1fr; } }
.styles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
}
@media (max-width: 980px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .styles-grid { grid-template-columns: 1fr; } }
.style-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--card-radius, 0);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; overflow: hidden;
}
.style-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(14,14,14,.25); }
.style-card .ph { aspect-ratio: 4/5; border: 0; border-bottom: 1px solid var(--line); }
.style-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.style-card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--blue); text-transform: uppercase; }
.style-card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0; color: var(--ink); line-height: 1.1; }
.style-card p { margin: 0; font-size: 14px; color: var(--charcoal); line-height: 1.55; }
.style-card .more {
  margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.style-card .more .arrow { transition: transform .2s; }
.style-card:hover .more .arrow { transform: translateX(4px); color: var(--blue); }

/* ─── Image containers ──────────────────────────────── */
.ph {
  position: relative; width: 100%;
  background: var(--mist);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
}
.ph.has-img { background: none; border: 0; }
.ph.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── How it works ──────────────────────────────────── */
.how { background: #fff; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }
.step {
  padding: 40px 32px 36px; background: var(--cream);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; min-height: 280px;
}
.step .n { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 64px; line-height: 1; color: var(--blue); letter-spacing: -.02em; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0; color: var(--ink); line-height: 1.1; }
.step p { margin: 0; font-size: 14.5px; color: var(--charcoal); line-height: 1.6; }
.step .duration { margin-top: auto; font-family: var(--mono); font-size: 11px; color: var(--charcoal-soft); letter-spacing: .1em; text-transform: uppercase; padding-top: 18px; border-top: 1px solid var(--line); }

/* ─── Testimonials ──────────────────────────────────── */
.reviews { background: #fff; }
.reviews-pull {
  max-width: 920px; margin: 0 auto 64px; text-align: center;
  padding: 48px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}
.reviews-pull::before {
  content: "\201C"; position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  background: #fff; padding: 0 14px;
  font-family: var(--serif); font-size: 80px; line-height: 1;
  color: var(--blue); font-style: italic;
}
.reviews-pull blockquote { margin: 0; font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.15; letter-spacing: -.01em; color: var(--ink); font-style: italic; }
.reviews-pull cite { display: block; margin-top: 20px; font-style: normal; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal-soft); font-family: var(--sans); font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--card-radius, 0); padding: 32px 28px 28px; display: flex; flex-direction: column; gap: 18px; }
.review-stars { display: flex; gap: 3px; color: var(--blue); font-size: 16px; letter-spacing: 2px; }
.review-card blockquote { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 17px; line-height: 1.55; color: var(--ink); }
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }
.review-meta { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13px; }
.review-meta strong { color: var(--ink); font-weight: 600; font-family: var(--sans); }
.review-meta .date { color: var(--charcoal-soft); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* ─── Fitter section ────────────────────────────────── */
.fitter { background: var(--ink); color: #fff; }
.fitter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 880px) { .fitter-grid { grid-template-columns: 1fr; } }
.fitter h2.display { color: #fff; margin-bottom: 24px; }
.fitter .eyebrow { color: #9aa0a6; }
.fitter .lede { color: #cfd2d6; max-width: 46ch; }
.fitter-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.fitter-list .row { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.fitter-list .row .n { font-family: var(--mono); font-size: 11px; color: var(--blue); letter-spacing: .14em; padding-top: 4px; }
.fitter-list .row h4 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 0 0 6px; color: #fff; }
.fitter-list .row p { margin: 0; color: #9aa0a6; font-size: 14.5px; line-height: 1.6; }
.fitter-foot { margin-top: 32px; font-size: 14px; color: #cfd2d6; }
.fitter-foot a { color: var(--blue); border-bottom: 1px solid rgba(7,129,249,.4); }

/* ─── About area accordion ──────────────────────────── */
.about-area { background: var(--cream); }
.about-area .section-head { margin-bottom: 40px; }
.about-acc { border-top: 1px solid var(--line); max-width: 980px; margin: 0 auto; }
.about-acc .item { border-bottom: 1px solid var(--line); }
.about-acc .q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 4px; text-align: left;
  font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 2vw, 26px);
  color: var(--ink); line-height: 1.2;
}
.about-acc .q .plus {
  flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--charcoal); border-radius: 50%;
  display: grid; place-items: center; position: relative; transition: all .25s ease;
}
.about-acc .q .plus::before, .about-acc .q .plus::after { content: ""; position: absolute; background: var(--ink); }
.about-acc .q .plus::before { width: 13px; height: 1px; }
.about-acc .q .plus::after { width: 1px; height: 13px; transition: transform .25s ease; }
.about-acc .item.open .q .plus { background: var(--blue); border-color: var(--blue); }
.about-acc .item.open .q .plus::before, .about-acc .item.open .q .plus::after { background: #fff; }
.about-acc .item.open .q .plus::after { transform: rotate(90deg); }
.about-acc .a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.about-acc .a-inner { padding: 0 60px 30px 4px; color: var(--charcoal); font-size: 16px; line-height: 1.75; max-width: 72ch; }
.about-acc .a-inner p { margin: 0 0 14px; }
.about-acc .a-inner p:last-child { margin-bottom: 0; }
.about-acc .item.open .a { max-height: 900px; }
@media (min-width: 881px) { .about-acc .item.start-open .a { max-height: 900px; } }

/* ─── FAQ ───────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.4fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-aside p { font-size: 15px; color: var(--charcoal); margin: 0 0 24px; }
.faq-aside .contact { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.faq-aside .contact .label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; }
.faq-aside .contact .num { font-family: var(--serif); font-size: 30px; color: var(--ink); font-weight: 400; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; text-align: left;
  font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--ink); line-height: 1.25;
}
.faq-q .plus {
  flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--charcoal); border-radius: 50%;
  display: grid; place-items: center; position: relative; transition: all .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); }
.faq-q .plus::before { width: 12px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 12px; transition: transform .25s ease; }
.faq-item.open .faq-q .plus { background: var(--blue); border-color: var(--blue); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: #fff; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 60px 26px 0; color: var(--charcoal); font-size: 15px; line-height: 1.7; max-width: 65ch; }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── Closing CTA ───────────────────────────────────── */
.closing {
  background: var(--ink); color: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative; overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(7,129,249,.14), transparent 60%);
}
.closing .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .closing .inner { grid-template-columns: 1fr; } }
.closing h2.display { color: #fff; max-width: 18ch; }
.closing .eyebrow { color: #9aa0a6; }
.closing .cta-side { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.closing .cta-side .btn { padding: 20px 32px; }
.closing .meta { font-size: 13px; color: #9aa0a6; display: flex; flex-direction: column; gap: 6px; }
.closing .meta strong { color: #fff; font-weight: 500; }

/* ─── Site footer ───────────────────────────────────── */
.site-footer { background: #0a0a0a; color: #9aa0a6; padding: 60px 0 28px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-grid .logo img { height: 60px; filter: brightness(0) invert(.9); }
.footer-grid h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 14px; font-weight: 600; }
.footer-grid a { display: block; padding: 5px 0; color: #9aa0a6; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid .blurb { margin: 18px 0 0; line-height: 1.6; max-width: 36ch; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #6f7479; }
