/* =================================================================
   BELLA FOLD — Brand stylesheet
   Bella Fold Brand Standards · Volume One · MMXXVI
   Warm brown, gilded copper, a breath of blush. Cormorant + Public Sans.
   Square corners (2px), hairline rules, Ivory cards on a Paper ground.
   ================================================================= */

/* ---- Design tokens ---------------------------------------------- */
:root {
  /* Brown · the primary */
  --brown-50:  #F7F2EC;
  --brown-100: #EFE4D6;
  --brown-200: #DCC7AC;
  --copper:    #C9803A;   /* Brown 300 · rules, small caps, marks of quality */
  --brown-500: #8B5E3C;   /* primary · every primary action and brand surface */
  --brown-600: #875525;
  --brown-700: #6B4222;   /* pressed */
  --brown-800: #4A2D18;
  --brown-900: #2E1C10;

  /* Blush · the accent (never a primary action) */
  --blush-50:  #FBF2F0;
  --blush-100: #F2DCD8;
  --blush-200: #E5C0B9;
  --blush-400: #CE8A84;   /* accent */
  --blush-500: #B06E68;
  --blush-600: #8E534E;

  /* Warm neutrals — no cold grey, no pure white page */
  --ivory:    #FFFFFF;    /* cards, fields */
  --paper:    #F0ECE8;    /* page ground */
  --linen:    #E5DDD3;    /* alternating section band, one shade below Paper */
  --hairline: #E4DFDA;    /* rules and borders */
  --slate:    #5C5754;    /* secondary text */
  --ink:      #252322;    /* body text, dark surfaces */

  /* Semantic */
  --complete:  #5F7358;
  --awaiting:  #B0873C;
  --attention: #9C4A42;

  /* On dark surfaces */
  --on-dark:        var(--paper);
  --on-dark-soft:   rgba(240, 236, 232, 0.68);
  --on-dark-muted:  rgba(240, 236, 232, 0.5);
  --on-dark-rule:   rgba(240, 236, 232, 0.16);

  /* Letterforms */
  --font-display: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-text: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Shape · square corners, 2px radius */
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(24px, 6vw, 72px);
  --section: clamp(72px, 8.5vw, 120px);
  --rule: 1px solid var(--hairline);
}

/* ---- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
figure { margin: 0; }
em { font-style: italic; }
::selection { background: var(--blush-100); color: var(--ink); }
:focus-visible { outline: 1px solid var(--copper); outline-offset: 3px; }

/* ---- Typography ------------------------------------------------- */
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }

/* Display · Cormorant 300 · 76/1.05 · −1.5% */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.9rem, 6.4vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
/* Heading · Cormorant 300 · 48/1.12 */
.heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
}
/* Subhead · Cormorant 400 · 28/1.25 */
.subhead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--ink);
}
.display em, .heading em { font-weight: 300; font-style: italic; }

/* Label · Public Sans 600 · 11/1.4 · +28% */
.label {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
}
.label--copper { color: var(--copper); }
.label--blush  { color: var(--blush-600); }
.label--complete { color: var(--complete); }
.roman {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

/* Lead · Public Sans 300 · 18/1.75 */
.lead { font-size: 1.125rem; line-height: 1.75; font-weight: 300; color: var(--slate); max-width: 58ch; }
/* Caption · Public Sans 400 · 12/1.6 · +4% */
.caption { font-size: 12px; line-height: 1.6; font-weight: 400; letter-spacing: 0.04em; color: var(--slate); }

/* ---- Layout helpers --------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
/* Bands: consecutive sections alternate Paper and Linen so each one reads
   as its own chapter, with a full measure of air on both sides. */
.section--linen { background: var(--linen); }
/* Card edges run a shade deeper on Linen so they keep their definition;
   the rules inside a card sit on Ivory and stay as they are. */
.section--linen .card,
.section--linen .cardset { border-color: #D8CDC0; }
.section--brown { background: var(--brown-500); color: var(--on-dark); }
.section--ink { background: var(--ink); color: var(--on-dark); }

/* Editorial layout: numbered aside + content column (as in the standards) */
.editorial {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.aside { position: sticky; top: 112px; }
.aside .note { margin-top: 22px; font-size: 14px; line-height: 1.6; color: var(--slate); max-width: 22ch; }
.content > .heading { max-width: 22ch; margin-bottom: 24px; }
.content > .lead { margin-bottom: 48px; }
.content > .lead + .lead { margin-top: -24px; }

/* Short copper rule */
.copper-rule { width: 48px; height: 1px; background: var(--copper); border: 0; margin: 0 0 40px; }

/* ---- Cards (Ivory on Paper, hairline borders) ------------------- */
.card {
  background: var(--ivory);
  border: var(--rule);
  border-radius: var(--radius);
}
.card__pad { padding: clamp(28px, 3.4vw, 44px); }

/* A set of cards sharing borders */
.cardset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ivory);
  border: var(--rule);
  border-radius: var(--radius);
}
.cardset > * { padding: clamp(28px, 3.4vw, 40px); }
.cardset > * + * { border-left: var(--rule); }
.cardset--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cardset--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Numbered value card */
.value .numeral {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 36px;
}
.value .subhead { margin-bottom: 14px; }
.value p { max-width: 26ch; color: var(--slate); }

/* ---- Marks (line icons · 24 grid · 1px · round caps) ------------ */
.mark-icon {
  width: 24px; height: 24px;
  color: var(--copper);
  fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round;
}
.icon-label { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }

/* ---- Actions ---------------------------------------------------- */
/* Square corners, 2px radius, wide-tracked small caps.
   One clear invitation per view. Never two filled buttons side by side. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn--primary { background: var(--brown-500); color: var(--paper); border-color: var(--brown-500); }
.btn--primary:hover { background: var(--brown-600); border-color: var(--brown-600); }
.btn--primary:active { background: var(--brown-700); border-color: var(--brown-700); }
.btn--secondary { background: transparent; color: var(--copper); border-color: var(--copper); }
.btn--secondary:hover { background: rgba(201, 128, 58, 0.08); }
.btn--secondary:active { background: rgba(201, 128, 58, 0.16); }
.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: var(--ivory); border-color: var(--ivory); }
.btn--disabled, .btn[disabled] { background: transparent; color: var(--slate); border-color: var(--hairline); cursor: default; }
.btn--sm { padding: 13px 22px; }
.btn--lg { padding: 22px 40px; }
.btn--block { width: 100%; }

/* Text link · copper, tracked, underlined, with arrow */
.textlink {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--copper);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.textlink::after { content: "\2192"; margin-left: 0.6em; letter-spacing: 0; }
.textlink:hover { color: var(--brown-600); border-color: var(--brown-600); }
.textlink--light { color: var(--paper); border-color: var(--on-dark-rule); }
.textlink--light:hover { color: var(--ivory); border-color: var(--paper); }
.actions { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }

/* ---- Status marks ----------------------------------------------- */
.status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.status--complete  { background: var(--complete);  color: var(--paper); }
.status--progress  { background: var(--brown-100); color: var(--brown-700); }
.status--awaiting  { background: var(--awaiting);  color: var(--paper); }
.status--attention { background: var(--attention); color: var(--paper); }

/* ---- Notice (blush warms soft moments) -------------------------- */
.notice {
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 40px);
}
.notice .label { margin-bottom: 18px; display: block; }
.notice .subhead { margin-bottom: 12px; }
.notice p { color: var(--slate); max-width: 46ch; }

/* ---- Header / nav (Ink, continuous with the cover) -------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--on-dark);
  border-bottom: 1px solid var(--on-dark-rule);
}
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 84px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--on-dark);
}
.nav-links { display: flex; align-items: center; gap: 36px; justify-self: center; }
.nav-links a {
  color: var(--on-dark-soft);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta { display: flex; align-items: center; justify-self: end; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  justify-self: end;
}

/* ---- Cover (split hero: copy on Ink, photograph alongside) ------- */
.cover {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  min-height: min(88vh, 820px);
  background: var(--ink);
  color: var(--on-dark);
}
/* The copy column keeps its left edge on the container's text edge, so the
   hero lines up with every section beneath it. */
.cover__copy {
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 5vw, 72px);
  padding-right: clamp(24px, 2.6vw, 44px);
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}
.cover__inner { max-width: 560px; }
.cover .label { display: block; margin-bottom: 32px; }
.cover .copper-rule { margin-bottom: 32px; }
.cover .display {
  color: var(--on-dark);
  font-size: clamp(2.6rem, 4.4vw, 3.9rem);
  margin-bottom: 28px;
}
.cover .lead { color: var(--on-dark-soft); max-width: 44ch; margin-bottom: 0; }

.cover__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: #E9E2DA;
}
.cover__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

/* Facts: a hairline, then the promises set plainly beneath it. */
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  border-top: 1px solid var(--on-dark-rule);
  margin-top: clamp(32px, 4vw, 44px);
  padding-top: clamp(22px, 2.6vw, 28px);
}
.facts li {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--on-dark-soft);
}
.cover .actions { margin-top: clamp(32px, 4vw, 44px); gap: 28px; }

/* ---- Imagery frames (tinted background shows while the photo loads) */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #E9E2DA;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.45) 34%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.35) 66%, rgba(255,255,255,0) 82%),
    linear-gradient(180deg, rgba(37,35,34,0.02), rgba(37,35,34,0.06));
}
.frame--detail { background-color: #E2DCD5; }
.frame--blush { background-color: #F0E1DD; }
.frame--plain { background-image: none; background-color: #E3DDD6; }
.frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
  margin-top: 56px;
}
.frame-grid .frame { aspect-ratio: 4 / 3; }

/* ---- Steps ------------------------------------------------------ */
.step .subhead { margin-bottom: 12px; }
.step p { color: var(--slate); max-width: 30ch; }

/* ---- Plans ------------------------------------------------------ */
.plans { align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan .label { display: block; margin-bottom: 22px; }
.plan__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 26px;
}
.plan__price {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 30px; margin-bottom: 26px;
  border-bottom: var(--rule);
}
.plan__price strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.plan__price span { color: var(--slate); font-size: 14px; }
.plan__features { flex: 1; margin-bottom: 36px; }
.plan__features li { padding: 8px 0; color: var(--ink); }
.plan--featured { background: var(--ink); color: var(--on-dark); }
.plan--featured .plan__name, .plan--featured .plan__price strong { color: var(--on-dark); }
.plan--featured .plan__price { border-color: var(--on-dark-rule); }
.plan--featured .plan__price span, .plan--featured .plan__features li { color: var(--on-dark-soft); }
.cardset > .plan--featured { border-left-color: var(--ink); }
.cardset > .plan--featured + .plan { border-left-color: var(--hairline); }
.plans-note { margin-top: 22px; }

/* ---- Additions -------------------------------------------------- */
.additions { border-top: var(--rule); }
.addition {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 30px clamp(28px, 3.4vw, 44px);
  border-bottom: var(--rule);
}
.addition:last-child { border-bottom: 0; }
.addition .numeral { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--copper); padding-top: 4px; }
.addition .subhead { font-size: 1.5rem; margin-bottom: 6px; }
.addition p { color: var(--slate); max-width: 46ch; }
.additions-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 26px clamp(28px, 3.4vw, 44px); }
.stack { display: grid; gap: 24px; }

/* ---- Order card ------------------------------------------------- */
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.order__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.order__head .label { display: block; margin-bottom: 10px; }
.order__title { font-family: var(--font-display); font-weight: 300; font-size: 2.2rem; line-height: 1.1; color: var(--ink); }
.progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 14px; }
.progress span { height: 2px; background: var(--hairline); }
.progress .done { background: var(--copper); }
.progress .now { background: var(--brown-500); }
.order__meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 34px; font-size: 14px; color: var(--slate); }
.status-row { display: flex; flex-wrap: wrap; gap: 10px; }
.status-row + .caption { margin-top: 14px; display: block; }

/* ---- Points list (hairline rows with copper numerals) ----------- */
.points { border-top: var(--rule); margin-bottom: 48px; max-width: 520px; }
.points li {
  display: grid; grid-template-columns: 40px 1fr; gap: 12px;
  padding: 16px 0; border-bottom: var(--rule); color: var(--ink);
}
.points li span { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.3; color: var(--copper); }

/* ---- Booking card ----------------------------------------------- */
.booking-card__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 20px; margin-bottom: 20px; border-bottom: var(--rule);
}
.booking-card__head .subhead { font-size: 1.5rem; }
.booking-card #square-appointments { min-height: 260px; }

/* ---- Quotes ----------------------------------------------------- */
.quotes .label { display: block; margin-bottom: 30px; }
.quote { padding: 26px 0; border-top: var(--rule); }
.quote:first-of-type { border-top: 0; padding-top: 0; }
.quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.quote cite { font-style: normal; }

/* ---- FAQ -------------------------------------------------------- */
.faq details { border-top: var(--rule); }
.faq details:first-child { border-top: 0; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.25; color: var(--ink);
  transition: color .3s var(--ease);
}
.faq summary:hover { color: var(--brown-600); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-text); font-weight: 300; font-size: 1.3rem; color: var(--copper); line-height: 1;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 26px; max-width: 60ch; color: var(--slate); }

/* ---- CTA band (Brown 500 · text in Paper) ----------------------- */
.cta-band { padding-block: clamp(80px, 10vw, 136px); }
.cta-band .copper-rule { background: var(--brown-200); }
.cta-band .heading { color: var(--on-dark); max-width: 16ch; margin-bottom: 22px; }
.cta-band .lead { color: rgba(240, 236, 232, 0.78); margin-bottom: 44px; max-width: 48ch; }
.cta-band .textlink--light { border-color: rgba(240, 236, 232, 0.35); }

/* ---- Footer (Ink) ----------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding-block: 72px 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid var(--on-dark-rule);
}
.lockup .wordmark { font-size: 2rem; display: block; margin-bottom: 22px; }
.lockup .copper-rule { margin-bottom: 18px; }
.lockup .label { color: var(--on-dark-soft); }
.footer-col h5 { margin: 0 0 20px; }
.footer-col a { display: block; color: var(--on-dark-soft); padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; color: var(--on-dark-muted); font-size: 12px; letter-spacing: 0.06em;
}

/* ---- Reveal on scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ------------------------------------------------- */
@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; gap: 36px; }
  .aside { position: static; }
  .aside .note { max-width: 40ch; }
  .order-grid { grid-template-columns: 1fr; }
  .frame-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .cardset, .cardset--2, .cardset--4 { grid-template-columns: 1fr; }
  .cardset > * + * { border-left: 0; border-top: var(--rule); }
  .cardset > .plan--featured { border-top-color: var(--ink); }
  .cardset > .plan--featured + .plan { border-top-color: var(--hairline); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Hero stacks: photograph first, then the copy beneath it. */
  .cover { grid-template-columns: 1fr; min-height: 0; }
  .cover__figure { order: -1; height: clamp(280px, 56vw, 440px); }
  .cover__copy {
    padding-block: clamp(56px, 9vw, 80px);
    padding-inline: var(--gutter);
  }
  .cover__inner { max-width: none; }
}
@media (max-width: 760px) {
  .nav { grid-template-columns: 1fr auto; height: 72px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    justify-self: stretch; width: auto;
    position: absolute; top: 72px; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter));
    background: var(--ink); border-bottom: 1px solid var(--on-dark-rule);
    padding: 24px var(--gutter) 28px; gap: 20px;
  }
  .facts { gap: 8px 24px; }
  .addition { grid-template-columns: 40px 1fr; padding-inline: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .actions { gap: 22px; }
}
