/* =====================================================================
   Conor's Family Beef — site kit
   Prefix: cfb-
   Written MOBILE FIRST: everything below is the phone layout, and the
   @media (min-width: ...) blocks at the bottom scale it up. Colours are
   sampled from the logo (logo2.JPG).
   ===================================================================== */

/* ---------- 1. Tokens ------------------------------------------------ */

:root {
  --black:    #000000;
  --dark:     #1D1D1F;
  --mid:      #3A3A3C;
  --subtle:   #6E6E73;

  --cream:    #FEFBF2;   /* the logo's backdrop — page background */
  --light:    #F4F0E4;   /* cards, alternating sections */
  --border:   #E2DCCB;
  --white:    #FFFFFF;

  --accent:   #3E5A22;   /* logo green. white text on it = 7.8:1 */
  --accent-h: #4C7A2A;
  --accent-l: #8FC96A;   /* accent text on dark backgrounds */
  --gold:     #C8A24A;   /* decorative only, on dark */

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);

  --pad: 16px;           /* page gutter, grows on bigger screens */
  --radius: 18px;
}

/* ---------- 2. Base -------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;   /* stop iOS inflating text in landscape */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* belt and braces against sideways scroll */
}

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 9vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 6.5vw, 3rem); }
h3 { font-size: 1.15rem; letter-spacing: -.02em; }
p  { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.cfb-skip {
  position: absolute; left: -9999px;
  background: var(--dark); color: #fff;
  padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 2000;
}
.cfb-skip:focus { left: 0; top: 0; }

.cfb-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 12px;
}
.cfb-hero .cfb-eyebrow, .cfb-cta .cfb-eyebrow { color: var(--accent-l); }

.cfb-lede { font-size: 1.06rem; color: var(--subtle); max-width: 62ch; }

/* ---------- 3. Layout ------------------------------------------------ */

.cfb-wrap { max-width: 1180px; margin: 0 auto; }

.cfb-section { padding: 56px var(--pad); }
.cfb-section--light { background: var(--light); }
.cfb-section--dark  { background: var(--dark); color: var(--white); }
.cfb-section--dark .cfb-lede,
.cfb-section--dark p { color: #A1A1A6; }
.cfb-section--tight { padding: 40px var(--pad); }

/* ---------- 4. Topbar + nav ------------------------------------------ */

.cfb-topbar {
  background: var(--dark); color: var(--white);
  font-size: 12.5px; text-align: center;
  padding: 9px var(--pad);
  padding-top: max(9px, env(safe-area-inset-top));
}
.cfb-topbar a { color: var(--accent-l); font-weight: 600; white-space: nowrap; }

.cfb-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(254,251,242,.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cfb-nav__inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 1180px; margin: 0 auto;
  padding: 10px var(--pad);
}
.cfb-nav__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.cfb-nav__brand:hover { text-decoration: none; }
.cfb-nav__brand img {
  /* min-width beats the global `img { max-width: 100% }`, which was squashing
     the logo to an 18px oval once the nav ran out of room. */
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%; flex: none;
  border: 1px solid var(--border);
}
.cfb-nav__name {
  font-size: 15px; font-weight: 700; letter-spacing: -.02em;
  color: var(--dark);
  /* nowrap alone let the name slide under the Menu button on very narrow
     screens; ellipsis makes it degrade instead of overlapping. */
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}

.cfb-nav__toggle {
  margin-left: auto; flex: none;
  min-height: 44px; min-width: 60px;      /* comfortable thumb target */
  padding: 10px 16px;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--dark); background: transparent;
  border: 1px solid var(--border); border-radius: 980px;
  cursor: pointer;
}

.cfb-nav__links { display: none; }
.cfb-nav__links.is-open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px var(--pad) 18px; gap: 2px;
  max-height: calc(100vh - 100px); overflow-y: auto;
}
.cfb-nav__links a {
  font-size: 16px; font-weight: 500; color: var(--dark);
  padding: 14px 12px; border-radius: 12px;
  display: flex; align-items: center; min-height: 44px;
}
.cfb-nav__links a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.cfb-nav__links .cfb-btn { justify-content: center; margin-top: 10px; }
/* `.cfb-nav__links a` (0,1,1) outranks `.cfb-btn--primary` (0,1,0), which left the
   menu's Reserve button with dark text on dark green. Restate it at (0,2,0). */
.cfb-nav__links .cfb-btn--primary,
.cfb-nav__links .cfb-btn--primary[aria-current="page"] { color: var(--white); }
.cfb-nav__tel { font-weight: 700; }

/* ---------- 5. Buttons ----------------------------------------------- */

.cfb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;                        /* thumb-sized on mobile */
  padding: 13px 26px;
  font-size: 16px; font-weight: 600;
  border: 1.5px solid transparent; border-radius: 980px;
  cursor: pointer; text-align: center;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.cfb-btn:hover { text-decoration: none; }
.cfb-btn--primary { background: var(--accent); color: var(--white); }
.cfb-btn--primary:hover { background: var(--accent-h); }
.cfb-btn--outline { background: transparent; color: var(--dark); border-color: var(--border); }
.cfb-btn--outline:hover { border-color: var(--dark); }

/* On any dark surface the outline button flips to white. */
.cfb-hero .cfb-btn--outline,
.cfb-cta .cfb-btn--outline,
.cfb-section--dark .cfb-btn--outline {
  color: var(--white); border-color: rgba(255,255,255,.35);
}
.cfb-hero .cfb-btn--outline:hover,
.cfb-cta .cfb-btn--outline:hover,
.cfb-section--dark .cfb-btn--outline:hover { border-color: rgba(255,255,255,.75); }

.cfb-btn--soft { background: var(--light); color: var(--accent); border-color: transparent; }
.cfb-btn--soft:hover { background: var(--border); }

.cfb-btn--sm { min-height: 40px; padding: 9px 18px; font-size: 14px; }
.cfb-btn--block { width: 100%; }

.cfb-btns { display: flex; flex-direction: column; gap: 10px; }
.cfb-btns .cfb-btn { width: 100%; }

/* ---------- 6. Hero -------------------------------------------------- */

.cfb-hero {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--white);
  padding: 56px var(--pad) 48px;
  text-align: center;
}
.cfb-hero::before {
  content: ""; position: absolute; top: -30%; left: 50%;
  width: 130%; aspect-ratio: 1; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,154,50,.28) 0%, transparent 62%);
  pointer-events: none;
}
.cfb-hero__inner { position: relative; max-width: 900px; margin: 0 auto; }
/* <em> in a heading means "accent", not italic — but ONLY on the near-black
   hero. Over the story photo the accent gradient measures 2.1-2.5:1, below the
   3:1 floor for large text, so that heading stays white (4.9:1). */
.cfb-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-l), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cfb-hero__sub {
  color: #A1A1A6; font-size: 1.05rem;
  max-width: 54ch; margin: 0 auto 26px;
}
.cfb-hero__art {
  position: relative; margin: 34px auto 0; max-width: 460px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cfb-hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 20px 20px;
  text-align: left;
  /* scrim so the text stays legible whatever the photo does underneath */
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.cfb-hero__caption-label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-l); margin-bottom: 6px;
}
.cfb-hero__caption-text {
  display: block; font-size: 15px; line-height: 1.35;
  font-weight: 600; color: #fff; text-wrap: balance;
}
.cfb-hero--page { padding: 44px var(--pad) 40px; }

/* Stats sitting on the hero read as frosted glass rather than a solid band.
   Specificity is .cfb-hero .cfb-stats .cfb-stats__cell (0,3,0) so it beats the
   default cell dividers and the 700px breakpoint rules further down. */
.cfb-hero .cfb-stats {
  background: transparent; border: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 30px;
}
.cfb-hero .cfb-stats .cfb-stats__cell {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 16px 10px;
}
.cfb-hero .cfb-stats .cfb-stats__num { color: var(--accent-l); font-size: 1.7rem; }
.cfb-hero .cfb-stats .cfb-stats__label { color: rgba(255,255,255,.72); }

/* ---------- 6b. Page header with the heading over a photo ------------- */

.cfb-pagehero {
  position: relative;
  display: grid;                 /* image and overlay share one grid cell */
  background: var(--black);
  min-height: 340px;
}
.cfb-pagehero > picture,
.cfb-pagehero > picture img {
  grid-area: 1 / 1;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;   /* keeps the cow in frame on tall crops */
}
.cfb-pagehero__overlay {
  grid-area: 1 / 1;
  display: flex; align-items: flex-end;
  padding: 60px var(--pad) 32px;
  /* scrim: the heading sits on the darkened lower half, clear of the sky */
  background: linear-gradient(to top,
    rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 40%, rgba(0,0,0,.15) 75%, rgba(0,0,0,.05) 100%);
}
.cfb-pagehero__text { max-width: 760px; color: var(--white); }
.cfb-pagehero__text h1 { color: var(--white); margin-bottom: .35em; }
.cfb-pagehero__text h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-l), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cfb-pagehero .cfb-eyebrow { color: var(--accent-l); }
.cfb-pagehero__sub {
  margin: 0; font-size: 1.02rem; color: rgba(255,255,255,.86); max-width: 54ch;
}

/* ---------- 6c. Story laid over a photo -------------------------------- */

.cfb-story {
  position: relative;
  display: grid;                 /* photo and text share one grid cell */
  background: var(--dark);
  isolation: isolate;
  /* Scrim strength. Tuned by eye: lower shows more photo, less text contrast. */
  --story-scrim: .35;
}
.cfb-story > picture,
.cfb-story > picture img {
  grid-area: 1 / 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.cfb-story__overlay {
  grid-area: 1 / 1;
  display: flex; align-items: center;
  padding: 56px var(--pad);
  /* The platter is a bright photo, so white body copy needs a heavier scrim
     than the dark hero did. It reads as texture behind the words. */
  background: linear-gradient(to bottom,
    rgba(12,14,10, calc(var(--story-scrim) + .03)) 0%,
    rgba(12,14,10, var(--story-scrim)) 50%,
    rgba(12,14,10, calc(var(--story-scrim) + .05)) 100%);
}
.cfb-story__text {
  max-width: 62ch; margin: 0 auto; color: var(--white);
  /* The scrim is deliberately light so the photo shows through, but the platter
     is near-white and drops local contrast to ~2.5:1. The shadow restores
     legibility over the bright patches without darkening the whole image. */
  text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 0 20px rgba(0,0,0,.45);
}

/* The scrim is light enough to show the photo, so contrast varies across it.
   Shadows under the type do the legibility work the scrim no longer does. */
.cfb-story__text h2 {
  /* Was a green/gold gradient clipped to the text. That works on the hero's solid
     black, but over the photo at a .35 scrim it sat pale-on-brown and read badly —
     and gradient-clipped text can't take the text-shadow the body copy relies on.
     Solid white keeps the heading legible over every part of the image. */
  color: var(--white);
  margin-bottom: .55em;
}
.cfb-story__text p {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.8), 0 0 22px rgba(0,0,0,.5);
}
.cfb-story__text p:last-child { margin-bottom: 0; }
.cfb-story__text strong { color: #fff; font-weight: 700; }
.cfb-story .cfb-eyebrow {
  color: #B6E39A;
  text-shadow: 0 1px 3px rgba(0,0,0,.85);
}
.cfb-story__lede {
  font-size: 1.12rem; line-height: 1.55; font-weight: 500;
}
.cfb-story__sign {
  margin-top: 26px !important;
  font-size: 1.3rem; font-weight: 600; font-style: italic;
  letter-spacing: -.01em;
  color: #B6E39A;
  text-shadow: 0 1px 4px rgba(0,0,0,.85);
}

/* ---------- 7. Stats ------------------------------------------------- */

.cfb-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--light); border-bottom: 1px solid var(--border);
}
.cfb-stats__cell {
  padding: 22px 12px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.cfb-stats__cell:nth-child(odd) { border-right: 1px solid var(--border); }
.cfb-stats__cell:nth-last-child(-n+2) { border-bottom: none; }
.cfb-stats__num {
  font-size: 1.9rem; font-weight: 700; letter-spacing: -.04em;
  color: var(--accent); line-height: 1;
}
.cfb-stats__label { font-size: 12.5px; color: var(--subtle); margin-top: 6px; }

/* ---------- 8. Cards + bento ----------------------------------------- */

.cfb-bento { display: grid; grid-template-columns: 1fr; gap: 14px; }

.cfb-card {
  position: relative; overflow: hidden;
  background: var(--light); border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cfb-card--dark { background: var(--dark); color: var(--white); }
.cfb-card--dark p { color: #A1A1A6; }
.cfb-card--accent { background: var(--accent); color: var(--white); }
.cfb-card--accent p { color: rgba(255,255,255,.85); }
.cfb-card p:last-child { margin-bottom: 0; }
.cfb-card__mark {
  position: absolute; right: -10px; bottom: -26px;
  font-size: 7rem; line-height: 1; opacity: .07; pointer-events: none;
}

/* ---------- 9. Share cards ------------------------------------------- */

.cfb-shares { display: grid; grid-template-columns: 1fr; gap: 18px; }

.cfb-share {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cfb-share__media {
  position: relative; display: block; width: 100%;
  background: var(--light); border: 0; padding: 0; margin: 0;
  cursor: pointer; overflow: hidden;
  font: inherit; color: inherit; text-align: left;
}
.cfb-share__media img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.cfb-share__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 980px;
}
.cfb-share__body { padding: 22px 20px; display: flex; flex-direction: column; flex: 1; }
.cfb-share__price {
  font-size: 1.9rem; font-weight: 700; letter-spacing: -.04em;
  color: var(--dark); line-height: 1;
  margin: 0;                    /* flex column: margins don't collapse */
}
.cfb-share__price span { font-size: .85rem; font-weight: 500; color: var(--subtle); letter-spacing: 0; }
.cfb-share__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.cfb-share__head h3, .cfb-share__head h2 { margin: 0; }
.cfb-share__weight { font-size: 13px; color: var(--subtle); margin: 8px 0 0; }
.cfb-share__short { font-size: 15px; color: var(--subtle); margin: 12px 0 0; flex: 1; }
.cfb-share__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cfb-share__actions .cfb-btn { width: 100%; }

/* ---------- 9b. "What's inside" dialog -------------------------------- */

.cfb-dialog {
  width: 92vw; max-width: 640px;
  padding: 0; border: 0; border-radius: var(--radius);
  background: transparent; color: var(--dark);
  max-height: 90vh; overflow: visible;
}
.cfb-dialog::backdrop { background: rgba(0,0,0,.6); }
.cfb-dialog__inner {
  position: relative; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  max-height: 90vh; display: flex; flex-direction: column;
}
.cfb-dialog__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--dark);
  border: 1px solid rgba(0,0,0,.08);
  font-size: 26px; line-height: 1; cursor: pointer;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.cfb-dialog__media { flex: none; max-height: 34vh; overflow: hidden; background: var(--light); }
.cfb-dialog__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.cfb-dialog__body { padding: 22px 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.cfb-dialog__body h2 { font-size: 1.6rem; }
.cfb-dialog__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 0;
}
.cfb-dialog__stats div { background: var(--light); border-radius: 12px; padding: 12px 14px; }
.cfb-dialog__stats dt {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--subtle); margin-bottom: 3px;
}
.cfb-dialog__stats dd { margin: 0; font-weight: 600; font-size: 15px; }
.cfb-dialog__note { font-size: 15px; color: var(--subtle); margin: 16px 0 0; }
.cfb-dialog__deposit {
  font-size: 14px; margin: 16px 0 0;
  background: var(--light); border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0; padding: 12px 14px;
}
.cfb-dialog__heading {
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin: 22px 0 12px;
}
.cfb-dialog__cuts { list-style: none; margin: 0; padding: 0; }
.cfb-dialog__cuts li {
  position: relative; padding: 8px 0 8px 20px; font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.cfb-dialog__cuts li:last-child { border-bottom: none; }
.cfb-dialog__cuts li::before {
  content: "•"; position: absolute; left: 4px; color: var(--accent); font-weight: 700;
}
.cfb-dialog__plus { font-size: 14px; color: var(--subtle); font-style: italic; margin: 16px 0 0; }
.cfb-dialog__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
}
.cfb-dialog__actions .cfb-btn { width: 100%; }

/* ---------- 10. Trust bar -------------------------------------------- */

.cfb-trust {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cfb-trust__item {
  background: var(--cream); padding: 22px 14px; text-align: center;
}
.cfb-trust__icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.cfb-trust__item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.cfb-trust__item span { font-size: 12.5px; color: var(--subtle); }

/* ---------- 11. Split / feature rows --------------------------------- */

.cfb-split { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
.cfb-split img { border-radius: var(--radius); width: 100%; }

.cfb-steps { counter-reset: step; display: grid; gap: 14px; }
.cfb-step {
  position: relative; background: var(--light);
  border-radius: var(--radius); padding: 24px 22px 24px 68px;
}
.cfb-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700;
}
.cfb-step h3 { margin-bottom: 6px; }
.cfb-step p { color: var(--subtle); font-size: 15px; margin: 0; }

/* ---------- 12. Reviews ---------------------------------------------- */

/* Columns, not grid: the quotes are real and wildly different lengths, so a
   fixed grid leaves a lone orphan card on the last row. Columns let them flow. */
.cfb-reviews { column-count: 1; column-gap: 14px; }
.cfb-review {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  break-inside: avoid; -webkit-column-break-inside: avoid;
  margin-bottom: 14px;
}
.cfb-review p { font-size: 15.5px; margin-bottom: 14px; }
.cfb-review footer { font-size: 13px; color: var(--subtle); font-weight: 600; }

/* ---------- 13. FAQ --------------------------------------------------- */

.cfb-faq { max-width: 820px; margin: 0 auto; }
.cfb-faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.cfb-faq summary {
  cursor: pointer; list-style: none;
  font-size: 16.5px; font-weight: 600; letter-spacing: -.02em;
  padding: 18px 40px 18px 0; position: relative;
  min-height: 44px; display: flex; align-items: center;
}
.cfb-faq summary::-webkit-details-marker { display: none; }
.cfb-faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--accent); line-height: 1;
}
.cfb-faq details[open] summary::after { content: "–"; }
.cfb-faq details p { color: var(--subtle); font-size: 15.5px; padding: 0 0 18px; margin: 0; }

/* ---------- 14. Forms ------------------------------------------------- */

.cfb-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  max-width: 780px; margin: 0 auto;
}
.cfb-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.cfb-field { margin-bottom: 18px; }
.cfb-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.cfb-field input, .cfb-field select, .cfb-field textarea {
  width: 100%; font: inherit;
  font-size: 16px;                        /* 16px stops iOS zooming on focus */
  min-height: 48px;
  padding: 12px 14px;
  color: var(--dark); background: var(--cream);
  border: 1px solid var(--border); border-radius: 12px;
  -webkit-appearance: none; appearance: none;
}
.cfb-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6E73' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.cfb-field textarea { min-height: 120px; resize: vertical; }
.cfb-field__hint { font-size: 12.5px; color: var(--subtle); margin: 6px 0 0; }

.cfb-note {
  background: var(--light); border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 14px 16px;
  font-size: 14.5px; margin-bottom: 22px;
}
.cfb-demo {
  font-size: 13px; color: var(--subtle);
  background: var(--light); border-radius: 12px;
  padding: 12px 14px; margin: 18px 0 0;
}

/* ---------- 15. CTA + footer ----------------------------------------- */

.cfb-cta {
  background: var(--dark); color: var(--white);
  padding: 56px var(--pad); text-align: center;
}
.cfb-cta p { color: #A1A1A6; max-width: 54ch; margin: 0 auto 24px; }

.cfb-footer {
  background: var(--dark); color: #A1A1A6;
  padding: 44px var(--pad) 0;
  font-size: 14.5px;
}
.cfb-footer a { color: #A1A1A6; }
.cfb-footer a:hover { color: #fff; }
.cfb-footer__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px;
  max-width: 1180px; margin: 0 auto;
}
/* Grid items default to min-width:auto, so long words push the columns wider
   than the page below ~320px. min-width:0 lets them shrink instead. */
.cfb-footer__grid > * { min-width: 0; }
.cfb-footer__grid a, .cfb-footer__grid p { overflow-wrap: anywhere; }
.cfb-footer__brand { grid-column: 1 / -1; }
.cfb-footer__brand img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 12px; }
.cfb-footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; letter-spacing: 0; }
.cfb-footer ul { list-style: none; margin: 0; padding: 0; }
.cfb-footer li { margin-bottom: 9px; }
.cfb-footer__bottom {
  max-width: 1180px; margin: 36px auto 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12.5px;
}

/* ---------- 16. Sticky mobile CTA ------------------------------------ */

.cfb-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: flex; gap: 10px;
  padding: 10px var(--pad);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(254,251,242,.94);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.cfb-sticky .cfb-btn { flex: 1; }
.cfb-sticky .cfb-btn--outline { flex: 0 0 34%; background: var(--white); }
/* keep the sticky bar from covering the end of the page */
body { padding-bottom: 78px; }

/* ---------- 17. Scale up --------------------------------------------- */

@media (min-width: 700px) {
  :root { --pad: 22px; }

  .cfb-section { padding: 80px var(--pad); }
  .cfb-hero { padding: 84px var(--pad) 72px; }
  .cfb-hero--page { padding: 64px var(--pad) 56px; }
  .cfb-cta { padding: 80px var(--pad); }

  .cfb-btns { flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
  .cfb-btns .cfb-btn { width: auto; }
  .cfb-center .cfb-btns { justify-content: center; }

  .cfb-stats { grid-template-columns: repeat(4, 1fr); }
  .cfb-stats__cell { border-bottom: none; }
  .cfb-stats__cell:nth-child(odd) { border-right: none; }
  .cfb-stats__cell + .cfb-stats__cell { border-left: 1px solid var(--border); }
  .cfb-stats__num { font-size: 2.4rem; }

  .cfb-shares { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cfb-share__actions { flex-direction: row; }
  .cfb-share__actions .cfb-btn { flex: 1; width: auto; }
  .cfb-dialog__actions { flex-direction: row; }
  .cfb-dialog__actions .cfb-btn { width: auto; }
  .cfb-dialog__actions .cfb-btn--primary { flex: 1; }
  .cfb-dialog__body { padding: 30px 28px; }
  .cfb-reviews { column-count: 2; }
  .cfb-trust { grid-template-columns: repeat(4, 1fr); }
  .cfb-steps { grid-template-columns: 1fr 1fr; }
  .cfb-split { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cfb-row { grid-template-columns: 1fr 1fr; gap: 0 18px; }

  .cfb-card { padding: 36px 32px; min-height: 240px; }
  .cfb-card__mark { font-size: 9rem; }

  .cfb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .cfb-footer__brand { grid-column: auto; }
  .cfb-footer__bottom { flex-direction: row; justify-content: space-between; }

  .cfb-hero__art { max-width: 560px; }
  .cfb-pagehero { min-height: 420px; }
  .cfb-story__overlay { padding: 88px var(--pad); }
  .cfb-story__lede { font-size: 1.2rem; }
  .cfb-story__sign { font-size: 1.45rem; }
  .cfb-pagehero__overlay { padding: 80px var(--pad) 44px; max-width: 1180px; margin: 0 auto; width: 100%; }
  /* hold the headline left of the cow so it doesn't run across her */
  .cfb-pagehero__text { max-width: min(720px, 66%); }
  .cfb-pagehero__sub { font-size: 1.1rem; }
  .cfb-hero .cfb-stats { grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
  .cfb-hero .cfb-stats .cfb-stats__cell { padding: 20px 12px; }
  .cfb-hero .cfb-stats .cfb-stats__num { font-size: 2rem; }
  .cfb-hero__caption { padding: 56px 26px 24px; }
  .cfb-hero__caption-text { font-size: 16.5px; }
}

@media (min-width: 1000px) {
  /* Once the full nav (with its Reserve button) is visible, the sticky bar
     is redundant. Hidden at the same breakpoint the nav expands, never before. */
  .cfb-sticky { display: none; }
  body { padding-bottom: 0; }

  .cfb-nav__toggle { display: none; }
  .cfb-nav__links {
    display: flex; align-items: center; gap: 2px;
    margin-left: auto; position: static; padding: 0;
    background: none; border: none; max-height: none; overflow: visible;
  }
  .cfb-nav__links a {
    font-size: 14px; padding: 8px 12px; border-radius: 980px;
    min-height: 0; white-space: nowrap;
  }
  .cfb-nav__links a:hover { background: rgba(0,0,0,.05); text-decoration: none; }
  .cfb-nav__links .cfb-btn { margin-top: 0; margin-left: 8px; }

  .cfb-shares { grid-template-columns: repeat(4, 1fr); }
  .cfb-reviews { column-count: 3; }
  .cfb-steps { grid-template-columns: repeat(4, 1fr); }

  .cfb-bento { grid-template-columns: repeat(12, 1fr); gap: 16px; }
  .cfb-bento-lg   { grid-column: span 8; }
  .cfb-bento-sm   { grid-column: span 4; }
  .cfb-bento-half { grid-column: span 6; }

  .cfb-card:hover {
    background: var(--white); border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    transform: translateY(-4px);
  }
  .cfb-card--dark:hover, .cfb-card--accent:hover { transform: translateY(-4px); }
  .cfb-share:hover { box-shadow: 0 10px 34px rgba(0,0,0,.10); transform: translateY(-4px); }
  .cfb-share:hover .cfb-share__media img { transform: scale(1.04); }
  .cfb-btn--primary:hover { transform: scale(1.03); }
}

/* ---------- 18. Motion preference ------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .cfb-card:hover, .cfb-share:hover, .cfb-btn--primary:hover { transform: none; }
  .cfb-share:hover .cfb-share__media img { transform: none; }
}

/* ---------- 19. Footer social + form honeypot ------------------------ */

.cfb-footer__social { display: flex; gap: 14px; margin-top: 16px; }
.cfb-footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); color: #A1A1A6;
}
.cfb-footer__social a:hover { color: #fff; border-color: rgba(255,255,255,.5); text-decoration: none; }

/* Spam honeypot — hidden from people, visible to bots that fill everything. */
.cfb-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- 20. Form error + invalid states -------------------------- */

.cfb-formerror {
  background: #FDECEC; border-left: 3px solid #B3261E;
  border-radius: 0 10px 10px 0; padding: 12px 14px;
  font-size: 14.5px; color: #7A1C16; margin: 0 0 18px;
}
.cfb-field [aria-invalid="true"] { border-color: #B3261E; background: #FDF7F7; }
.cfb-btn[disabled] { opacity: .65; cursor: not-allowed; }
.cfb-btn[disabled]:hover { transform: none; background: var(--accent); }
