/* ==========================================================================
   Bloom Build — Landing System
   Built to Bloom Build Brand System v1.0
   Palette, type, and voice are locked to the brand pack. Do not introduce
   colors, fonts, or tones outside this system.
   ========================================================================== */

:root {
  /* --- Color (exact hex from brand pack) --- */
  --bloom-orange: #FFAD38;  /* Primary. Logo, CTAs */
  --deep-bloom:   #E08A0E;  /* Hover, pressed, small orange text */
  --bloom-tint:   #FFE4BB;  /* Surfaces, highlights */
  --cream:        #FFF5E5;  /* Logo text on orange, hero text */
  --paper:        #FBF8F3;  /* Page background — never pure white */
  --stone:        #E8E2DA;  /* Dividers, borders, mute */
  --slate:        #5C544C;  /* Secondary text, captions */
  --ink:          #1A1410;  /* Primary text — never pure black */
  --steel:        #2E2A26;  /* Industrial accent, footers */
  --steel-raised: #3A3530;  /* Raised card on Steel (per why-we're-cheaper handoff) */
  --muted-dark:   #B8B0A6;  /* Secondary text on Steel (per why-we're-cheaper handoff) */

  /* --- Type --- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* --- Rhythm --- */
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 999px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.35s var(--ease);

  /* --- Shadow (warm, never harsh) --- */
  --shadow-sm: 0 1px 2px rgba(26, 20, 16, 0.06), 0 4px 16px rgba(26, 20, 16, 0.05);
  --shadow-md: 0 8px 30px rgba(26, 20, 16, 0.10);
  --shadow-orange: 0 10px 30px rgba(224, 138, 14, 0.28);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }

.h1, h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.h2, h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.h3, h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}
.eyebrow--light { color: var(--bloom-tint); }
.eyebrow--orange { color: var(--deep-bloom); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 56ch;
}
.lead--light { color: rgba(255, 245, 229, 0.82); }

.mono { font-family: var(--font-mono); font-feature-settings: 'tnum' 1; }

/* ==========================================================================
   Layout
   ========================================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.bg-paper  { background: var(--paper); color: var(--ink); }
.bg-cream  { background: var(--cream); color: var(--ink); }
.bg-tint   { background: var(--bloom-tint); color: var(--ink); }
.bg-steel  { background: var(--steel); color: var(--cream); }
.bg-orange { background: var(--bloom-orange); color: var(--ink); }

.section-head { max-width: 62ch; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }

/* ==========================================================================
   Logo (placeholder lockup — swap for official logo file when available)
   Orange pill, Cream wordmark. Per brand: the pill is integral to the mark.
   ========================================================================== */
.logo { display: inline-flex; align-items: center; }
.logo img, .logo svg { height: 44px; width: auto; display: block; }
/* Chooser hero logo — sized to be felt, scales with viewport height to stay one-screen */
.logo--lg img, .logo--lg svg { height: clamp(104px, 15vh, 156px); }

/* ==========================================================================
   Buttons — pill radius, Inter SemiBold (brand spec)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

/* Primary: Bloom Orange fill, Cream text, Deep Bloom on hover */
.btn--primary { background: var(--bloom-orange); color: var(--ink); box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--deep-bloom); color: var(--cream); }

/* Ghost on light surfaces */
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--stone); }
.btn--ghost:hover { border-color: var(--ink); }

/* Ghost on dark surfaces */
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(255,245,229,0.30); }
.btn--ghost-light:hover { border-color: var(--cream); background: rgba(255,245,229,0.06); }

/* Ink fill — for use on the Bloom Orange CTA band (orange-on-orange is not allowed) */
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--steel); color: var(--cream); }

/* Ghost on the orange band */
.btn--ghost-ink { background: transparent; color: var(--ink); border-color: rgba(26,20,16,0.28); }
.btn--ghost-ink:hover { border-color: var(--ink); background: rgba(26,20,16,0.04); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Site header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 16px var(--gutter);
  backdrop-filter: saturate(120%) blur(8px);
}
.site-header--paper { background: rgba(251, 248, 243, 0.82); border-bottom: 1px solid var(--stone); }
.site-header--steel { background: rgba(46, 42, 38, 0.78); border-bottom: 1px solid rgba(255,245,229,0.10); }

.site-header nav { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 0.95rem; font-weight: 500; color: var(--slate); transition: color var(--t); }
.nav-link:hover { color: var(--ink); }
.site-header--steel .nav-link { color: rgba(255,245,229,0.72); }
.site-header--steel .nav-link:hover { color: var(--cream); }

/* Compact header on phones */
@media (max-width: 560px) {
  .site-header { padding: 10px 16px; }
  .site-header .logo img { height: 36px; }
  .site-header .btn { padding: 12px 18px; font-size: 0.9rem; }
}

/* ==========================================================================
   Chooser (index) — super simple, locked to one screen (no scroll)
   ========================================================================== */
.chooser {
  min-height: 100vh; min-height: 100dvh;
  display: grid; place-items: center;
  padding: clamp(24px, 5vh, 48px) var(--gutter);
  background: var(--paper);
}
.chooser__inner {
  width: 100%; max-width: 760px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(22px, 5vh, 46px);
}
.chooser__q { font-size: clamp(1.8rem, 5vw, 3.2rem); max-width: 15ch; }

.choices { display: flex; gap: clamp(14px, 2vw, 22px); width: 100%; justify-content: center; }
.choice {
  flex: 1; max-width: 300px;
  min-height: clamp(120px, 22vh, 180px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  padding: 24px; border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.choice__label { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.choice__sub { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em; }

.choice--dev { background: var(--steel); color: var(--cream); }
.choice--dev .choice__sub { color: var(--bloom-orange); }
.choice--reno { background: var(--bloom-orange); color: var(--ink); box-shadow: var(--shadow-orange); }
.choice--reno .choice__sub { color: var(--steel); }

.choice:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.choice--reno:hover { background: var(--deep-bloom); color: var(--cream); }
.choice--reno:hover .choice__sub { color: var(--bloom-tint); }
.choice:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.choice--dev:focus-visible { outline-color: var(--bloom-orange); }

.chooser__tag { font-size: 0.85rem; color: var(--slate); }
.chooser__tag b { color: var(--ink); font-weight: 600; }

@media (max-width: 560px) {
  .choices { flex-direction: column; align-items: center; gap: 14px; }
  .choice { width: 100%; max-width: 360px; min-height: clamp(94px, 15vh, 130px); }
}

/* Short viewports — landscape phones & short windows. Scale down so it still fits one screen.
   Forces buttons side-by-side (landscape has the width to spare) to reclaim vertical space. */
@media (max-height: 600px) {
  .chooser { padding-block: clamp(12px, 3vh, 22px); }
  .chooser__inner { gap: clamp(10px, 2.4vh, 22px); }
  .logo--lg img, .logo--lg svg { height: clamp(46px, 12vh, 88px); }
  .chooser__q { font-size: clamp(1.35rem, 4.4vh, 2.2rem); max-width: 22ch; }
  .choices { flex-direction: row; align-items: stretch; gap: 12px; }
  .choice { width: auto; max-width: 320px; min-height: clamp(68px, 17vh, 108px); padding: 16px; gap: 4px; }
  .choice__label { font-size: clamp(1.2rem, 5.2vh, 1.8rem); }
}

/* ==========================================================================
   Hero (landing pages)
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 9vw, 112px);
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero .eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; }

.hero__art { position: relative; }

/* Decorative brand pill motif used in place of stock photography */
.brandblock {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
}
.brandblock--warm { background: linear-gradient(150deg, var(--bloom-orange), var(--deep-bloom)); color: var(--cream); box-shadow: var(--shadow-md); }
.brandblock--steel { background: var(--steel); border: 1px solid rgba(255,245,229,0.12); color: var(--cream); }

/* Spec / landed-cost card (JetBrains Mono numerals — brand spec) */
.spec-card { background: var(--paper); color: var(--ink); border-radius: var(--radius); border: 1px solid var(--stone); box-shadow: var(--shadow-sm); overflow: hidden; }
.spec-card__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--bloom-tint); border-bottom: 1px solid var(--stone); }
.spec-card__head .eyebrow { color: var(--deep-bloom); }
.spec-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--stone); }
.spec-row:last-child { border-bottom: 0; }
.spec-row .sku { font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate); }
.spec-row .name { font-weight: 500; }
.spec-row .price { font-family: var(--font-mono); font-weight: 600; font-size: 1.02rem; color: var(--deep-bloom); align-self: center; }
.spec-card__foot { padding: 14px 20px; background: var(--bloom-orange); color: var(--ink); display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.spec-card__foot .mono { font-size: 1.05rem; }

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillars { display: grid; gap: 1px; background: var(--stone); border: 1px solid var(--stone); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { background: var(--paper); padding: 28px 24px; }
.bg-steel .pillar { background: var(--steel); }
.pillar__no { font-family: var(--font-mono); font-size: 0.8rem; color: var(--deep-bloom); }
.bg-steel .pillar__no { color: var(--bloom-orange); }
.pillar h3 { margin: 10px 0 8px; font-size: 1.15rem; letter-spacing: 0.02em; }
.pillar p { font-size: 0.96rem; color: var(--slate); line-height: 1.5; }
.bg-steel .pillar p { color: rgba(255,245,229,0.72); }

/* ==========================================================================
   Steps (how it works)
   ========================================================================== */
.steps { display: grid; gap: 24px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 26px; }
.step__no {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem;
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--bloom-tint); color: var(--deep-bloom);
  margin-bottom: 16px;
}
.bg-steel .step__no { background: rgba(255,173,56,0.16); color: var(--bloom-orange); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 0.98rem; }
.bg-steel .step p { color: rgba(255,245,229,0.74); }

/* ==========================================================================
   How it works — visual 3-step flow + "landed" explainer
   ========================================================================== */
.how__lead { margin-top: 18px; max-width: 58ch; font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; color: var(--slate); }

.flow-wrap { position: relative; margin: clamp(44px, 6vw, 72px) 0 0; }
.flow {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px);
}
/* animated route dots running through the number cards, wave travels step 1 to 3 */
.flow__dots {
  position: absolute; top: 28px; left: 28px; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
}
.flow__dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bloom-orange);
  animation: flow-dot 1.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.08s);
}
@keyframes flow-dot {
  0%, 55%, 100% { transform: translateY(0); opacity: 0.45; }
  27% { transform: translateY(-9px); opacity: 1; }
}
.flow__step { position: relative; text-align: left; }
.flow__num {
  position: relative; width: 56px; height: 56px; border-radius: 16px;
  background: var(--cream); border: 1px solid var(--stone); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; margin-bottom: 24px;
  font-weight: 800; font-size: 1.3rem; color: var(--ink);
}
.flow__step h3 { font-size: 1.2rem; margin-bottom: 12px; }
.flow__step p { color: var(--slate); font-size: 1rem; line-height: 1.6; max-width: 36ch; }

/* Stacked steps: short vertical dot runs between the steps instead of the long line */
.flow__connector { display: none; }
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; gap: 30px; max-width: 480px; margin-inline: auto; }
  .flow__step { text-align: center; }
  .flow__num { margin-inline: auto; }
  .flow__step p { margin-inline: auto; }
  .flow__dots { display: none; }
  .flow__connector {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    margin: 0 auto 22px;
  }
  .flow__connector span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--bloom-orange);
    animation: flow-dot-x 1.9s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.25s);
  }
}
@keyframes flow-dot-x {
  0%, 55%, 100% { transform: translateX(0); opacity: 0.45; }
  27% { transform: translateX(9px); opacity: 1; }
}

/* "Landed" explainer — the equation that demystifies the pricing */
.landed {
  margin-top: clamp(44px, 6vw, 72px); padding: clamp(24px, 3.5vw, 40px);
  background: var(--cream); border: 1px solid var(--stone); border-radius: var(--radius-lg);
}
.landed__label { text-align: center; margin-bottom: 22px; color: var(--slate); font-size: 1.04rem; }
.landed__label b { color: var(--ink); }
.landed-eq { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 12px; }
.landed-eq__part {
  font-family: var(--font-mono); font-size: 0.88rem; padding: 11px 16px;
  background: var(--paper); border: 1px solid var(--stone); border-radius: var(--pill); color: var(--ink);
}
.landed-eq__op { font-weight: 700; color: var(--slate); font-size: 1.15rem; }
.landed-eq__result {
  font-weight: 700; font-size: 0.95rem; padding: 12px 20px;
  background: var(--bloom-orange); color: var(--ink); border-radius: var(--pill);
  box-shadow: var(--shadow-orange);
}

/* What you can order */
.how__supply { margin-top: clamp(32px, 4vw, 48px); text-align: center; }
.how__supply-label {
  display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.72rem; color: var(--slate); margin-bottom: 10px;
}
.how__supply-list { font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink); }

/* ==========================================================================
   Simplified hero (single column, centered)
   ========================================================================== */
.hero__simple { max-width: 760px; margin-inline: auto; text-align: center; padding-block: clamp(60px, 10vw, 116px) clamp(28px, 4vw, 48px); }

/* Hero illustration — flat brand scene (factory to site). Swap for a real factory photo when available. */
.hero__scene { padding-bottom: clamp(40px, 6vw, 72px); }
.hero__scene svg { display: block; width: min(100%, 980px); height: auto; margin-inline: auto; }
/* Phones: zoom into the middle of the scene so shapes stay legible instead of a tiny strip */
@media (max-width: 560px) {
  .hero__scene { overflow: hidden; }
  .hero__scene svg { width: 175%; max-width: none; margin-left: -37%; }
}
.hero__simple .eyebrow { margin-bottom: 18px; }
.hero__simple h1 { margin-bottom: 20px; }
.hero__simple .lead { margin: 0 auto 26px; }
.hero__simple .tag-strip { justify-content: center; margin-bottom: 32px; }
.hero__simple .btn-row { justify-content: center; }

/* ==========================================================================
   Inquiry form
   ========================================================================== */
.enquire__head { text-align: center; max-width: 54ch; margin: 0 auto clamp(28px, 4vw, 44px); }
.enquire__head .eyebrow { margin-bottom: 12px; }
.enquire__head h2 { margin-bottom: 14px; }
.enquire__head p { color: var(--slate); font-size: 1.08rem; }

.form-card {
  max-width: 560px; margin: 0 auto; background: var(--paper);
  border: 1px solid var(--stone); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; text-align: left; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--deep-bloom); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--stone); border-radius: 12px;
  padding: 13px 15px; transition: border-color var(--t), box-shadow var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate); opacity: 0.65; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--bloom-orange); box-shadow: 0 0 0 3px rgba(255, 173, 56, 0.25);
}
.field textarea { resize: vertical; min-height: 100px; }

/* Dropdowns */
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C544C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 16px;
}
.field select:required:invalid { color: var(--slate); }

/* Plans upload */
.field input[type="file"] {
  padding: 11px; border-style: dashed; font-size: 0.92rem; color: var(--slate); cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font: inherit; font-weight: 600; font-size: 0.9rem; color: var(--ink);
  background: var(--bloom-tint); border: 0; border-radius: var(--pill);
  padding: 9px 16px; margin-right: 12px; cursor: pointer;
  transition: background var(--t);
}
.field input[type="file"]::file-selector-button:hover { background: var(--bloom-orange); }
.field__hint { margin-top: 7px; font-size: 0.8rem; color: var(--slate); }

/* Pair short fields on wider screens */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn--primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { margin-top: 14px; text-align: center; font-size: 0.85rem; color: var(--slate); }

.form-success { display: none; text-align: center; padding: 16px 8px; }
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--bloom-tint); color: var(--deep-bloom); display: grid; place-items: center;
}
.form-success h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form-success p { color: var(--slate); max-width: 34ch; margin: 0 auto; }

/* ==========================================================================
   Why we're cheaper — receipt comparison (per design handoff)
   Two receipts pricing the same square metre: the usual way vs Bloom direct,
   then a savings pill. Prices are filled from one JS pricing object.
   ========================================================================== */
#why h2 { font-size: clamp(2.125rem, 4.5vw, 3.25rem); line-height: 1.08; }
.why-sub { color: var(--muted-dark); font-size: clamp(1rem, 1.4vw, 1.125rem); line-height: 1.5; max-width: 560px; margin-inline: auto; }

.receipts {
  margin: clamp(36px, 5vw, 56px) auto 0; max-width: 920px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.receipt { border-radius: 12px; padding: clamp(20px, 3vw, 32px); display: flex; flex-direction: column; }
.receipt--usual { background: var(--steel-raised); }
.receipt--bloom { background: var(--cream); }
.receipt__eyebrow {
  font-size: clamp(0.75rem, 1vw, 0.8125rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding-bottom: clamp(14px, 2vw, 18px);
}
.receipt--usual .receipt__eyebrow { color: var(--muted-dark); }
.receipt--bloom .receipt__eyebrow { color: var(--deep-bloom); }
.receipt__rows { flex: 1; }
.rrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: clamp(9px, 1.2vw, 11px) 0; }
.receipt--usual .rrow { border-bottom: 1px solid rgba(232, 226, 218, 0.12); }
.receipt--bloom .rrow { border-bottom: 1px solid var(--stone); }
.receipt .rrow:last-child { border-bottom: 0; }
.rrow__label { font-weight: 500; font-size: clamp(0.9375rem, 1.1vw, 1rem); }
.rrow__label small { display: block; font-weight: 400; font-size: clamp(0.8125rem, 1vw, 0.875rem); color: var(--slate); margin-top: 2px; }
.rrow__price { font-family: var(--font-mono); font-size: clamp(0.9375rem, 1.1vw, 1rem); white-space: nowrap; }
.receipt--usual .rrow__label, .receipt--usual .rrow__price { color: var(--cream); }
.receipt--bloom .rrow__label, .receipt--bloom .rrow__price { color: var(--ink); }
.receipt--usual .rrow--dim .rrow__label, .receipt--usual .rrow--dim .rrow__price { color: var(--muted-dark); }
.receipt__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding-top: clamp(14px, 2vw, 18px); margin-top: clamp(4px, 0.8vw, 8px);
}
.receipt--usual .receipt__total { border-top: 1px solid rgba(232, 226, 218, 0.3); color: var(--cream); }
.receipt--bloom .receipt__total { border-top: 1px solid var(--ink); color: var(--ink); }
.receipt__total .receipt__you { font-weight: 700; font-size: 1rem; }
.receipt__total .rprice { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.5rem); }
.receipt--bloom .receipt__total .rprice { color: var(--deep-bloom); }

.save-pill {
  margin: clamp(16px, 3vw, 32px) auto 0; width: fit-content;
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  background: var(--bloom-orange); color: var(--ink);
  border-radius: var(--pill); padding: clamp(14px, 1.6vw, 16px) clamp(24px, 5vw, 48px);
}
.save-pill__label { font-weight: 700; font-size: clamp(1rem, 1.4vw, 1.125rem); }
.save-pill__amount { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Subtle rise-in when the section scrolls into view (JS adds .in-view; static otherwise) */
#why.in-view .receipt, #why.in-view .save-pill { animation: rise-in 0.18s ease-out both; }
#why.in-view .receipt--bloom { animation-delay: 0.06s; }
#why.in-view .save-pill { animation-delay: 0.12s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 719px) {
  .receipts { grid-template-columns: 1fr; gap: 16px; }
  .save-pill { width: 100%; }
}

/* Standards closer — under the receipts (per handoff) */
.standards-note {
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
  font-size: clamp(1rem, 1.3vw, 1.0625rem); line-height: 1.5; color: var(--muted-dark);
}
.standards-note svg { flex: none; width: 24px; height: 24px; color: var(--bloom-orange); }
.standards-note b { font-weight: 700; color: var(--cream); }
@media (max-width: 560px) {
  .standards-note { flex-direction: column; gap: 12px; max-width: 300px; }
}

/* ==========================================================================
   Feature cards (renovator)
   ========================================================================== */
.cards { display: grid; gap: 22px; }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--stone); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--bloom-tint); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--bloom-tint); color: var(--deep-bloom);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.98rem; }

/* ==========================================================================
   Founder quote
   ========================================================================== */
.quote { display: grid; gap: 28px; align-items: center; }
@media (min-width: 820px) { .quote { grid-template-columns: auto 1fr; } }
.quote__mark {
  width: clamp(96px, 14vw, 140px); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, var(--bloom-orange), var(--deep-bloom));
  display: grid; place-items: center; color: var(--cream);
  font-family: var(--font-mono); font-weight: 600; font-size: 2rem;
  box-shadow: var(--shadow-orange);
}
.quote blockquote { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 0.95rem; color: var(--slate); }
.quote cite b { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 16px; max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 0 auto 30px; text-align: center; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--steel); color: var(--cream); padding-block: clamp(48px, 6vw, 72px); }
.site-footer__top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.site-footer__tag { margin-top: 18px; max-width: 34ch; color: rgba(255,245,229,0.72); font-size: 0.96rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 28px; }
.site-footer .nav-link { color: rgba(255,245,229,0.72); }
.site-footer .nav-link:hover { color: var(--bloom-orange); }
.site-footer__rule { height: 1px; background: rgba(255,245,229,0.12); margin-block: 32px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: 0.85rem; color: rgba(255,245,229,0.55); }
.site-footer__bottom .mono { color: rgba(255,245,229,0.72); }

/* ==========================================================================
   Misc
   ========================================================================== */
.tag-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  padding: 7px 13px; border-radius: var(--pill);
  background: var(--bloom-tint); color: var(--deep-bloom);
}
.bg-steel .tag { background: rgba(255,173,56,0.14); color: var(--bloom-orange); }

.rule { height: 1px; background: var(--stone); border: 0; }

/* ==========================================================================
   Geo gate — visitors outside Australia get the waiting list
   ========================================================================== */
.geo-gate {
  position: fixed; inset: 0; z-index: 999;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  padding: var(--gutter); overflow: auto;
}
.geo-gate__card { max-width: 540px; text-align: center; }
.geo-gate__logo { height: 64px; width: auto; margin: 0 auto 28px; }
.geo-gate__card h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin-bottom: 14px; }
.geo-gate__card > p { color: var(--slate); font-size: 1.05rem; line-height: 1.55; margin-bottom: 26px; }
.geo-gate__form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 18px; }
.geo-gate__form input {
  flex: 1; min-width: 0; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--stone); border-radius: var(--pill);
  padding: 13px 20px;
}
.geo-gate__form input:focus { outline: none; border-color: var(--bloom-orange); box-shadow: 0 0 0 3px rgba(255, 173, 56, 0.25); }
.geo-gate__form .btn { white-space: nowrap; }
.geo-gate__done { color: var(--deep-bloom); font-weight: 600; margin-bottom: 18px; }
.geo-gate__foot { font-size: 0.85rem; color: var(--slate); }
.geo-gate__foot a { color: var(--deep-bloom); font-weight: 600; text-decoration: underline; }
@media (max-width: 560px) {
  .geo-gate__form { flex-direction: column; }
  .geo-gate__form .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
}
