@charset "UTF-8";
/* ============================================================
   Bento — aboxforyour.website (PageMotor bespoke theme)
   Hand-authored from brand-prototypes/abfyb-bento/style.css.
   Fonts: Bunny only. PageMotor chrome neutralised; the whole
   page lives in content row 1 wrapped in .bento.
   ============================================================ */
@import url("https://fonts.bunny.net/css?family=outfit:400,500,600,700,800|inter-tight:400,500,600&display=swap");

/* --- Neutralise inherited PageMotor chrome (full-bleed bespoke page) --- */
#header, #nav, #footer, .column-sidebar, .headline-area, .page-title, .byline { display: none !important; }
#content, .container, .columns, .column-content, .page-content, .page, body > .container, .bleed, .text {
  max-width: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important;
}
html, body { margin: 0 !important; padding: 0 !important; }

/* =========================================================================
   A Box For Your Business — "Bento"
   Vanilla CSS. Bunny fonts only. All visuals from CSS/gradients.
   Every selector scoped under .bento (the page wrapper).
   ========================================================================= */

.bento {
  /* Surfaces */
  --paper:        #f7f6f3;
  --paper-2:      #ffffff;
  --paper-3:      #efede7;
  --line:         #e4e1da;
  --line-strong:  #d6d2c8;

  /* Ink */
  --ink:          #16140f;
  --ink-2:        #3c382f;
  --ink-soft:     #6b6557;
  --ink-faint:    #98917f;

  /* Accents (precise, restrained) */
  --amber:        #e0612a;   /* warm signal accent */
  --amber-soft:   #f6dcc9;
  --teal:         #157a6e;   /* second precise accent */
  --teal-soft:    #cfe6e1;

  /* Type */
  --display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text:    "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --shadow-rest: 0 1px 2px rgba(22,20,15,.05), 0 8px 22px -14px rgba(22,20,15,.22);
  --shadow-lift: 0 2px 6px rgba(22,20,15,.07), 0 28px 60px -28px rgba(22,20,15,.40);

  --ease-pack: cubic-bezier(.2, .85, .3, 1);
}

/* ---------- Reset / base ---------- */
.bento *,
.bento *::before,
.bento *::after { box-sizing: border-box; }

.bento { scroll-behavior: smooth; }

.bento {
  margin: 0;
  font-family: var(--text);
  color: var(--ink-2);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(224,97,42,.06), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(21,122,110,.06), transparent 55%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

.bento h1, .bento h2, .bento h3 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.bento p { margin: 0; }

.bento a { color: inherit; }

.bento kbd {
  font-family: var(--display);
  font-size: .82em;
  font-weight: 600;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 1px 7px;
  color: var(--ink);
}

.bento .wrap {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.bento .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Focus + skip ---------- */
.bento :focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 8px;
}

.bento .skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
  z-index: 100;
  transition: top .2s var(--ease-pack);
}
.bento .skip-link:focus { top: 16px; }

/* ---------- Brand mark (CSS box) ---------- */
.bento .brand-mark {
  position: relative;
  display: inline-block;
  width: 30px; height: 28px;
  flex: 0 0 auto;
}
.bento .brand-mark .brand-body {
  position: absolute;
  left: 2px; bottom: 0;
  width: 26px; height: 19px;
  background: linear-gradient(160deg, var(--amber), #c44e1d);
  border-radius: 5px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.12);
}
.bento .brand-mark .brand-lid {
  position: absolute;
  left: 0; top: 5px;
  width: 30px; height: 9px;
  background: var(--ink);
  border-radius: 4px;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.bento .brand-mark-sm { width: 26px; height: 24px; }
.bento .brand-mark-sm .brand-body { width: 22px; height: 16px; left: 2px; }
.bento .brand-mark-sm .brand-lid { width: 26px; height: 8px; top: 4px; }

/* ---------- Header ---------- */
.bento .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,246,243,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.bento .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.bento .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bento .brand-name-accent { color: var(--amber); }

.bento .header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bento .header-nav a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color .18s, background .18s;
}
.bento .header-nav a:hover { color: var(--ink); background: var(--paper-3); }
.bento .header-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  font-weight: 600 !important;
}
.bento .header-cta:hover { background: #2a261d !important; }

/* ---------- Intro ---------- */
.bento .intro {
  padding: clamp(56px, 9vw, 104px) 0 clamp(28px, 5vw, 52px);
  max-width: 920px;
}
.bento .eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.bento .eyebrow-centre { color: var(--teal); }

.bento h1 {
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  font-weight: 800;
}
.bento .intro-accent { color: var(--ink-soft); }

.bento .intro-lede {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.bento .intro-hint {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.bento .hint-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(21,122,110,.5);
  animation: bento-ping 2.4s var(--ease-pack) infinite;
}
@keyframes bento-ping {
  0%   { box-shadow: 0 0 0 0 rgba(21,122,110,.5); }
  70%  { box-shadow: 0 0 0 11px rgba(21,122,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(21,122,110,0); }
}

/* ---------- Bento grid ---------- */
.bento .bento-section { padding-bottom: clamp(48px, 8vw, 96px); }

.bento .bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 188px;
  gap: 16px;
}

.bento .cell { display: flex; min-width: 0; }
.bento .cell-wide { grid-column: span 2; }
.bento .cell-tall { grid-row: span 2; }

/* The card */
.bento .tile {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 22px 22px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-rest);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition:
    transform .42s var(--ease-pack),
    box-shadow .42s var(--ease-pack),
    border-color .3s;
  will-change: transform;
}
.bento .tile[role="button"]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.bento .tile[role="button"]:active { transform: translateY(-1px) scale(.995); }

/* Accent seam down the left edge of each compartment */
.bento .tile::before {
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--accent, var(--ink-faint));
  opacity: .9;
  transition: top .42s var(--ease-pack), bottom .42s var(--ease-pack);
}
.bento .cell[data-accent="amber"] { --accent: var(--amber); }
.bento .cell[data-accent="teal"]  { --accent: var(--teal); }
.bento .cell[data-accent="ink"]   { --accent: var(--ink); }

.bento .tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}
.bento .tile-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bento .tile-title {
  font-size: 1.42rem;
  font-weight: 700;
  margin-top: 14px;
}
.bento .tile-sub {
  margin-top: 7px;
  font-size: .96rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* Expand cue (a tidy plus that becomes a minus) */
.bento .tile-cue {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}
.bento .tile-cue::before,
.bento .tile-cue::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink-soft);
  transition: transform .34s var(--ease-pack), opacity .34s var(--ease-pack);
}
.bento .tile-cue::before { width: 11px; height: 2px; transform: translate(-50%,-50%); }
.bento .tile-cue::after  { width: 2px; height: 11px; transform: translate(-50%,-50%); }

/* The detail panel: collapsed by default via grid-rows trick */
.bento .tile-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition:
    grid-template-rows .46s var(--ease-pack),
    opacity .3s ease,
    margin-top .46s var(--ease-pack);
}
.bento .tile-detail > * { min-height: 0; overflow: hidden; }
.bento .tile-detail p { font-size: .95rem; color: var(--ink-soft); }
.bento .detail-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.bento .detail-list li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  color: var(--ink-2);
}
.bento .detail-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 13px; height: 8px;
  border-left: 2px solid var(--accent, var(--teal));
  border-bottom: 2px solid var(--accent, var(--teal));
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* ---------- Expanded state ---------- */
.bento .tile.is-open {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--accent, var(--line-strong));
}
.bento .tile.is-open::before { top: 14px; bottom: 14px; }
.bento .tile.is-open .tile-detail {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 16px;
}
.bento .tile.is-open .tile-cue { border-color: var(--accent); background: var(--accent); }
.bento .tile.is-open .tile-cue::before { background: var(--paper-2); }
.bento .tile.is-open .tile-cue::after  { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

/* When a tile opens we let the cell span its natural content height */
.bento .cell.is-open { align-items: stretch; }

/* ---------- Mini CSS illustrations ---------- */
.bento .tile-icon { flex: 0 0 auto; }
.bento .art {
  position: relative;
  display: block;
  width: 48px; height: 40px;
  border-radius: 9px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Website: a tiny browser */
.bento .art-website { padding: 0; }
.bento .art-website .ui-bar {
  position: absolute; left: 0; right: 0; top: 0; height: 9px;
  background: var(--line-strong);
}
.bento .art-website .ui-bar::before {
  content: ""; position: absolute; left: 5px; top: 3px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 6px 0 0 var(--ink-faint), 12px 0 0 var(--line);
}
.bento .art-website .ui-row {
  position: absolute; left: 6px; height: 3px; border-radius: 2px;
  background: var(--ink-faint); opacity: .55;
}
.bento .art-website .ui-row { top: 15px; width: 30px; }
.bento .art-website .ui-row.short { top: 22px; width: 18px; }
.bento .art-website .ui-block {
  position: absolute; left: 6px; bottom: 6px;
  width: 36px; height: 7px; border-radius: 3px;
  background: var(--amber); opacity: .85;
}

/* Plugin grid */
.bento .art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 7px;
}
.bento .art-grid span {
  background: var(--ink-faint);
  border-radius: 2px;
  opacity: .45;
}
.bento .art-grid .lit { background: var(--amber); opacity: 1; }

/* Hosting pulse */
.bento .art-pulse { background: var(--ink); border-color: var(--ink); }
.bento .art-pulse .pulse-line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent 0 14%, var(--teal) 14% 22%, transparent 22% 30%,
      var(--teal) 30% 33%, transparent 33% 60%, var(--teal) 60% 64%, transparent 64%);
  transform: translateY(-50%);
}
.bento .art-pulse::after {
  content: ""; position: absolute; right: 7px; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(21,122,110,.6);
  animation: bento-ping 2.4s var(--ease-pack) infinite;
}

/* Email envelope */
.bento .art-mail { background: var(--teal-soft); border-color: var(--teal-soft); }
.bento .art-mail .mail-flap {
  position: absolute; inset: 9px 8px;
  border: 2px solid var(--teal); border-radius: 4px;
  background: var(--paper-2);
}
.bento .art-mail .mail-flap::before {
  content: ""; position: absolute; left: -2px; right: -2px; top: -2px;
  height: 14px;
  background:
    linear-gradient(135deg, transparent 49%, var(--teal) 49% 53%, transparent 53%),
    linear-gradient(225deg, transparent 49%, var(--teal) 49% 53%, transparent 53%);
}

/* Support chat bubbles */
.bento .art-chat { background: var(--amber-soft); border-color: var(--amber-soft); }
.bento .art-chat .chat-a, .bento .art-chat .chat-b {
  position: absolute; border-radius: 7px 7px 7px 2px;
}
.bento .art-chat .chat-a {
  left: 7px; top: 8px; width: 24px; height: 12px;
  background: var(--amber);
}
.bento .art-chat .chat-b {
  right: 7px; bottom: 8px; width: 18px; height: 11px;
  background: var(--paper-2); border: 1.5px solid var(--amber);
  border-radius: 7px 7px 2px 7px;
}

/* ---------- Pricing tile ---------- */
.bento .tile-pricing { background: linear-gradient(170deg, var(--paper-2), #fbfaf7); }
.bento .price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-top: 16px;
  font-family: var(--display);
  color: var(--ink);
  line-height: 1;
}
.bento .price-currency { font-size: 1.6rem; font-weight: 600; margin-top: 6px; }
.bento .price-figure { font-size: clamp(3.2rem, 7vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; }
.bento .price-period { font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Quote tile ---------- */
.bento .tile-quote { background: var(--ink); border-color: var(--ink); }
.bento .tile-quote::before { background: var(--amber); opacity: 1; }
.bento .tile-quote .tile-tag { color: rgba(247,246,243,.5); }
.bento .quote-body { margin: 14px 0 0; }
.bento .quote-body p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.28;
}
.bento .quote-by {
  margin-top: 14px;
  font-size: .9rem;
  color: rgba(247,246,243,.6);
}
.bento .tile-quote .tile-detail p { color: rgba(247,246,243,.78); }
.bento .tile-quote .tile-cue { background: rgba(247,246,243,.06); border-color: rgba(247,246,243,.22); }
.bento .tile-quote .tile-cue::before,
.bento .tile-quote .tile-cue::after { background: var(--paper); }
.bento .tile-quote.is-open .tile-cue { background: var(--amber); border-color: var(--amber); }

/* ---------- CTA tile ---------- */
.bento .tile-cta {
  background: linear-gradient(150deg, var(--amber), #c0481a);
  border-color: transparent;
  cursor: default;
}
.bento .tile-cta::before { display: none; }
.bento .tile-cta .tile-title { color: #fff; margin-top: 14px; }
.bento .tile-tag-light { color: rgba(255,255,255,.7) !important; }
.bento .tile-sub-light { color: rgba(255,255,255,.86) !important; }
.bento .cta-button {
  align-self: flex-start;
  margin-top: 16px;
  display: inline-block;
  padding: 11px 20px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s var(--ease-pack), box-shadow .2s;
}
.bento .cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(0,0,0,.5); }

/* ---------- Closing ---------- */
.bento .closing {
  text-align: center;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  max-width: 760px;
}
.bento #closing-heading {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
}
.bento .closing-lede {
  margin: 22px auto 0;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 52ch;
}
.bento .closing-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.bento .cta-button-lg {
  background: var(--ink);
  color: var(--paper);
  padding: 15px 28px;
  font-size: 1rem;
}
.bento .cta-button-lg:hover { background: #2a261d; }
.bento .cta-link {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}
.bento .cta-link:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.bento .site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.bento .footer-inner {
  padding: 40px 0;
  display: grid;
  gap: 14px;
}
.bento .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bento .footer-name {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
}
.bento .footer-tag { color: var(--ink-soft); font-size: .95rem; }
.bento .footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.bento .footer-nav a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-soft);
}
.bento .footer-nav a:hover { color: var(--amber); }
.bento .footer-fine {
  font-size: .82rem;
  color: var(--ink-faint);
  margin-top: 8px;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .bento .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento .cell-wide { grid-column: span 2; }
  .bento .cell-tall { grid-row: span 2; }
}

@media (max-width: 620px) {
  .bento .header-nav { gap: 4px; }
  .bento .header-nav a:not(.header-cta) { display: none; }

  .bento .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .bento .cell, .bento .cell-wide, .bento .cell-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .bento .tile {
    min-height: 168px;
    padding: 20px;
  }
  .bento .tile-quote, .bento .tile-cta { min-height: 0; }
  .bento .closing-actions { gap: 16px; }
}

/* =========================================================================
   Motion preference — keep everything usable, drop the movement
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .bento { scroll-behavior: auto; }
  .bento *, .bento *::before, .bento *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .bento .hint-dot, .bento .art-pulse::after { animation: none; }
  /* detail still toggles, just without the slide */
  .bento .tile-detail {
    transition: none;
  }
}
/* =========================================================================
   Bento — DEPTH PACK (css-additions.css)
   Appended to css.css. Every selector scoped under .bento so nothing
   can leak into PageMotor chrome. Reuses the existing token vocabulary
   (--paper*, --ink*, --amber, --teal, --line*, --r-*, --shadow-*, --ease-pack).
   Built for the interior pages: What's Inside, Pricing, Open the Box.
   ========================================================================= */

/* ---------- Current nav item ---------- */
.bento .header-nav a.is-current {
  color: var(--ink);
  background: var(--paper-3);
}
.bento .header-cta.is-current {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* ---------- Interior page lead (no full-height hero) ---------- */
.bento .page-lead {
  padding: clamp(48px, 8vw, 92px) 0 clamp(20px, 4vw, 40px);
  max-width: 920px;
}
.bento .page-lead h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
}

/* Shared section headings inside interior pages */
.bento .section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
}
.bento .section-lede {
  margin-top: 12px;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* Detail link inside an unpacked compartment */
.bento .detail-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--accent, var(--amber));
  padding-bottom: 2px;
}
.bento .detail-link:hover { color: var(--accent, var(--amber)); }
.bento .tile-quote .detail-link { color: var(--paper); }

/* ---------- Stat band (What's Inside) ---------- */
.bento .stat-band {
  padding: clamp(28px, 5vw, 48px) 0;
}
.bento .stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bento .stat {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-rest);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento .stat-figure {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.bento .stat:nth-child(1) .stat-figure { color: var(--ink); }
.bento .stat:nth-child(2) .stat-figure { color: var(--amber); }
.bento .stat:nth-child(3) .stat-figure { color: var(--teal); }
.bento .stat:nth-child(4) .stat-figure { color: var(--ink); }
.bento .stat-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- Deep bento: stacked single-column accordion on interior pages ---------- */
.bento .deep-bento { padding-top: clamp(28px, 5vw, 52px); }
.bento .deep-bento .section-lede { margin-bottom: 24px; }

/* Override the home grid: interior compartment lists stack full-width */
.bento .bento-stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 14px;
}
.bento .bento-stack .cell,
.bento .bento-stack .cell-wide,
.bento .bento-stack .cell-tall {
  grid-column: auto;
  grid-row: auto;
}
.bento .bento-stack .tile { min-height: 120px; }
.bento .faq-stack .tile { min-height: 96px; }

/* ---------- Specs table (What's Inside) ---------- */
.bento .specs { padding: clamp(40px, 7vw, 80px) 0 0; }
.bento .specs-table {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-rest);
}
.bento .specs-row {
  display: grid;
  grid-template-columns: 1.1fr 2fr .6fr;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}
.bento .specs-row:first-child { border-top: 0; }
.bento .specs-row-head {
  background: var(--paper-3);
  font-family: var(--display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bento .specs-row span:first-child {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
}
.bento .specs-row [role="cell"]:nth-child(2) { color: var(--ink-soft); }

/* Tick / cross glyphs */
.bento .tick, .bento .cross, .bento .inc {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 6px;
  position: relative;
}
.bento .tick, .bento .inc { background: var(--teal-soft); }
.bento .tick::after, .bento .inc::after {
  content: "";
  position: absolute;
  left: 6px; top: 4px;
  width: 6px; height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(40deg);
}
.bento .cross { background: var(--paper-3); }
.bento .cross::before, .bento .cross::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 2px;
  background: var(--ink-faint);
  transform: translate(-50%,-50%) rotate(45deg);
}
.bento .cross::after { transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Principles grid (What's Inside) ---------- */
.bento .principles { padding: clamp(48px, 8vw, 88px) 0 0; }
.bento .principles-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bento .principle {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-rest);
  position: relative;
}
.bento .principle-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: .06em;
}
.bento .principle h3 {
  margin-top: 10px;
  font-size: 1.22rem;
  font-weight: 700;
}
.bento .principle p {
  margin-top: 8px;
  font-size: .96rem;
  color: var(--ink-soft);
}

/* ---------- Pull quote break ---------- */
.bento .pull { padding: clamp(48px, 8vw, 96px) 0; }
.bento .pull-quote {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  border: 0;
}
.bento .pull-quote p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.bento .pull-quote p::first-letter { color: var(--amber); }

/* ---------- Strip CTA (interior page close) ---------- */
.bento .strip-cta {
  text-align: center;
  padding: clamp(36px, 6vw, 64px) 0 clamp(48px, 8vw, 96px);
  max-width: 760px;
}
.bento .strip-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
}
.bento .strip-cta .closing-actions { margin-top: 28px; }

/* ---------- Overview cards (Home teaser to interior pages) ---------- */
.bento .overview {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0 clamp(16px, 3vw, 32px);
  max-width: 1100px;
}
.bento .overview-heading {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-top: 10px;
}
.bento .overview-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.bento .overview-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-rest);
  text-decoration: none;
  color: inherit;
  transition: transform .42s var(--ease-pack), box-shadow .42s var(--ease-pack), border-color .3s;
}
.bento .overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.bento .overview-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--amber);
  letter-spacing: .08em;
}
.bento .overview-card h3 {
  margin-top: 12px;
  font-size: 1.36rem;
  font-weight: 700;
}
.bento .overview-card p {
  margin-top: 10px;
  font-size: .96rem;
  color: var(--ink-soft);
  flex: 1 1 auto;
}
.bento .overview-go {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  align-self: flex-start;
}
.bento .overview-card:hover .overview-go { color: var(--amber); }

/* ---------- Price band + card (Pricing) ---------- */
.bento .price-band { padding: clamp(20px, 4vw, 40px) 0 clamp(28px, 5vw, 48px); }
.bento .price-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.4fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--paper-2);
}
.bento .price-card-main {
  background: linear-gradient(165deg, var(--ink), #2a261d);
  color: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento .price-card-main .tile-tag { color: rgba(247,246,243,.55); }
.bento .price-xl { margin-top: 14px; }
.bento .price-xl .price-figure { font-size: clamp(3.6rem, 8vw, 5.2rem); color: var(--paper); }
.bento .price-xl .price-currency { color: var(--paper); }
.bento .price-xl .price-period { color: rgba(247,246,243,.7); }
.bento .price-note {
  margin-top: 12px;
  font-size: .92rem;
  color: rgba(247,246,243,.7);
}
.bento .price-card-main .cta-button {
  margin-top: 24px;
  background: var(--amber);
  color: #fff;
}
.bento .price-card-main .cta-button:hover { background: #c0481a; }
.bento .price-list {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 14px;
  align-content: center;
}
.bento .price-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--ink-2);
}
.bento .price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .2em;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--teal-soft);
}
.bento .price-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: .42em;
  width: 5px; height: 9px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(40deg);
}

/* ---------- Compare table (Pricing) ---------- */
.bento .compare { padding: clamp(48px, 8vw, 88px) 0 0; }
.bento .compare-table {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-rest);
}
.bento .compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}
.bento .compare-row:first-child { border-top: 0; }
.bento .compare-row-head {
  background: var(--paper-3);
  font-family: var(--display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bento .compare-row span:first-child {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
}
.bento .compare-row [role="cell"]:nth-child(2) { color: var(--ink-soft); }
.bento .compare-ours { color: var(--teal); font-weight: 600; }
.bento .compare-row-head .compare-ours { color: var(--teal); }
.bento .compare-row-total {
  background: var(--paper-3);
  font-family: var(--display);
}
.bento .compare-row-total span { font-weight: 700; color: var(--ink); }
.bento .compare-row-total .compare-ours { color: var(--teal); }
.bento .compare-fine {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--ink-faint);
  max-width: 60ch;
}

/* ---------- Step flow (Open the Box) ---------- */
.bento .steps { padding: clamp(36px, 6vw, 64px) 0 0; }
.bento .step-flow {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.bento .step {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-rest);
  position: relative;
}
.bento .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
}
.bento .step:nth-child(2) .step-num { background: var(--amber); }
.bento .step:nth-child(3) .step-num { background: var(--teal); }
.bento .step h3 {
  margin-top: 16px;
  font-size: 1.18rem;
  font-weight: 700;
}
.bento .step p {
  margin-top: 8px;
  font-size: .95rem;
  color: var(--ink-soft);
}

/* ---------- Tell-us index strip (Open the Box) ---------- */
.bento .tell { padding: clamp(48px, 8vw, 88px) 0 0; }
.bento .tell-strip {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-rest);
}
.bento .tell-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-2);
}
.bento .tell-item:nth-child(1),
.bento .tell-item:nth-child(2) { border-top: 0; }
.bento .tell-item:nth-child(odd) { border-right: 1px solid var(--line); }
.bento .tell-key {
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--amber);
  letter-spacing: .06em;
  flex: 0 0 auto;
}

/* ---------- Enquiry panel (Open the Box) ---------- */
.bento .enquiry-band { padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 8vw, 96px); }
.bento .enquiry-panel {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--paper-2);
}
.bento .enquiry-copy {
  padding: clamp(32px, 4vw, 52px);
}
.bento .enquiry-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
}
.bento .enquiry-lede {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 50ch;
}
.bento .closing-actions-left {
  justify-content: flex-start;
  margin-top: 28px;
}
.bento .enquiry-reassure {
  list-style: none;
  margin: 0;
  padding: clamp(32px, 4vw, 52px);
  background: linear-gradient(165deg, var(--paper-3), var(--paper));
  border-left: 1px solid var(--line);
  display: grid;
  gap: 16px;
  align-content: center;
}
.bento .enquiry-reassure li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
}
.bento .re-tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--teal);
  position: relative;
}
.bento .re-tick::after {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

/* =========================================================================
   Scroll reveal (interior depth components) — paired with app.js safety net
   ========================================================================= */
.bento .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-pack), transform .6s var(--ease-pack);
  will-change: opacity, transform;
}
.bento .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Responsive — depth components
   ========================================================================= */
@media (max-width: 1080px) {
  .bento .stat-row { grid-template-columns: repeat(2, 1fr); }
  .bento .overview-grid { grid-template-columns: 1fr; }
  .bento .step-flow { grid-template-columns: repeat(2, 1fr); }
  .bento .price-card { grid-template-columns: 1fr; }
  .bento .enquiry-panel { grid-template-columns: 1fr; }
  .bento .enquiry-reassure { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .bento .header-nav { gap: 4px; }
  .bento .header-nav a:not(.header-cta) { display: none; }

  .bento .stat-row { grid-template-columns: 1fr 1fr; }
  .bento .principles-grid { grid-template-columns: 1fr; }
  .bento .step-flow { grid-template-columns: 1fr; }
  .bento .tell-strip { grid-template-columns: 1fr; }
  .bento .tell-item:nth-child(2) { border-top: 1px solid var(--line); }
  .bento .tell-item:nth-child(odd) { border-right: 0; }

  /* Stacked tables become label/value cards */
  .bento .specs-row,
  .bento .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .bento .specs-row-head,
  .bento .compare-row-head { display: none; }
  .bento .specs-row [role="cell"],
  .bento .compare-row [role="cell"] {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }
  .bento .specs-row [role="cell"]::before,
  .bento .compare-row [role="cell"]::before {
    content: attr(data-th);
    font-family: var(--display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .bento .specs-row span:first-child,
  .bento .compare-row span:first-child {
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  .bento .specs-row span:first-child::before,
  .bento .compare-row span:first-child::before { display: none; }
}

/* =========================================================================
   Motion preference — depth components
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .bento .reveal { opacity: 1; transform: none; transition: none; }
  .bento .overview-card { transition: none; }
}
