/* ============================================================
   Vibe Interiors — design system
   ============================================================ */
:root {
  /* palette */
  --ink: #14110f;
  --ink-2: #241f1b;
  --cream: #f7f2ea;
  --cream-2: #efe7db;
  --sand: #e7dccb;
  --paper: #fffdf9;
  --muted: #6b6157;
  --line: rgba(20, 17, 15, 0.1);

  /* accents */
  --coral: #e2725b;
  --coral-d: #c8583f;
  --amber: #f0a34e;
  --olive: #7b8a5a;
  --plum: #6c4a72;

  --grad: linear-gradient(120deg, #e2725b 0%, #f0a34e 45%, #d98a5a 100%);
  --grad-soft: linear-gradient(135deg, rgba(226,114,91,.14), rgba(240,163,78,.12));

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20,17,15,.06);
  --shadow: 0 18px 50px -22px rgba(20,17,15,.35);
  --shadow-lg: 0 40px 90px -40px rgba(20,17,15,.5);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .8rem 1.3rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn.full { width: 100%; }
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--coral-d); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(200,88,63,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- promise bar ---------- */
.promise-bar {
  background: var(--ink); color: var(--cream);
  font-size: .82rem; text-align: center; padding: .55rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.promise-bar strong { color: var(--amber); }
.promise-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(226,114,91,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(226,114,91,.55);} 70%{box-shadow:0 0 0 8px rgba(226,114,91,0);} 100%{box-shadow:0 0 0 0 rgba(226,114,91,0);} }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(247,242,234,.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.brand-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); rotate: 8deg; }
.brand-dot { color: var(--coral); }
.brand-lock { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-sub { font-family: var(--font-body); font-weight: 600; font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin: 3px 0 0 2px; }
.site-footer .brand-sub { color: rgba(247,242,234,.55); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a:not(.btn) { font-size: .93rem; font-weight: 500; color: var(--ink-2); opacity: .82; transition: opacity .2s; }
.nav a:not(.btn):hover { opacity: 1; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem,5vw,4rem); overflow: hidden; }
.hero-glow { position: absolute; inset: -30% -10% auto -10%; height: 620px; background: radial-gradient(60% 60% at 70% 20%, rgba(240,163,78,.28), transparent 60%), radial-gradient(50% 50% at 15% 30%, rgba(226,114,91,.22), transparent 60%); filter: blur(10px); z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-d); margin-bottom: 1rem; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -.02em; }
.hero h1 em { color: var(--coral-d); font-style: italic; }
.strike { position: relative; opacity: .55; }
.strike::after { content: ""; position: absolute; left: -4%; right: -4%; top: 52%; height: 3px; background: var(--coral); rotate: -6deg; }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-2); margin: 1.4rem 0 1.8rem; max-width: 33ch; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; gap: 1.8rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust li { font-size: .85rem; color: var(--muted); }
.hero-trust b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }

/* interactive demo room */
.hero-demo { position: relative; }
.demo-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg); }
.demo-room {
  position: relative; height: 320px; border-radius: 20px; overflow: hidden;
  --wall: #efe9e0; --floor: #d8c3a5; --sofa: #b9c2b0; --rug: #cbb79a; --accent: #e2725b; --light: 1;
  transition: filter .5s;
}
.demo-room[data-time="night"] { --light: .5; }
.room-wall { position: absolute; inset: 0 0 34% 0; background: linear-gradient(180deg, color-mix(in srgb, var(--wall) 88%, #fff), var(--wall)); transition: background .5s; }
.room-floor { position: absolute; inset: 66% 0 0 0; background: linear-gradient(180deg, var(--floor), color-mix(in srgb, var(--floor) 80%, #000)); transition: background .5s; }
.room-window { position: absolute; top: 34px; right: 34px; width: 120px; height: 92px; background: linear-gradient(180deg,#bfe0ef,#e8f4fa); border: 6px solid #fff; border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,.12); overflow: hidden; }
.room-window::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(255,255,255,.5)); }
.sun { position: absolute; top: 14px; left: 16px; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, #ffe9b0, #ffcf6b); box-shadow: 0 0 30px 8px rgba(255,207,107,.7); transition: .5s; }
.demo-room[data-time="night"] .sun { background: radial-gradient(circle,#eef2ff,#cfd8ff); box-shadow: 0 0 26px 6px rgba(180,196,255,.6); top: 16px; left: 60px; width: 22px; height: 22px; }
.demo-room[data-time="night"] .room-window { background: linear-gradient(180deg,#1f2b45,#2f3f63); }
.demo-room[data-time="night"]::before { content:""; position:absolute; inset:0; background: rgba(20,20,45,.28); z-index: 5; pointer-events:none; transition:.5s; }
.room-rug { position: absolute; left: 50%; bottom: 20px; width: 62%; height: 60px; translate: -50% 0; background: var(--rug); border-radius: 50%; filter: blur(.3px); opacity: .9; transition: background .5s; box-shadow: inset 0 0 0 6px color-mix(in srgb, var(--rug) 70%, #000); }
.room-sofa { position: absolute; left: 50%; bottom: 42px; translate: -50% 0; width: 200px; height: 74px; background: var(--sofa); border-radius: 16px 16px 10px 10px; box-shadow: 0 16px 30px -12px rgba(0,0,0,.4); transition: background .5s; }
.room-sofa::before { content:""; position:absolute; left:10px; right:10px; top:-16px; height:34px; background: color-mix(in srgb, var(--sofa) 88%, #000); border-radius: 14px; }
.room-sofa .cushion { position:absolute; top:-6px; width: 40px; height: 30px; background: var(--accent); border-radius: 8px; transition: background .5s; }
.room-sofa .cushion:nth-child(1){ left: 26px; rotate: -6deg; }
.room-sofa .cushion:nth-child(2){ right: 26px; rotate: 6deg; }
.room-plant { position: absolute; left: 24px; bottom: 40px; width: 46px; height: 90px; }
.room-plant .pot { position:absolute; bottom:0; left:6px; width:34px; height:34px; background:#b98a5e; border-radius: 4px 4px 8px 8px; }
.room-plant .leaf { position:absolute; bottom:28px; width:16px; height:44px; background: var(--olive); border-radius: 50% 50% 50% 50%/70% 70% 30% 30%; transform-origin: bottom center; }
.room-plant .l1{ left:14px; rotate:-20deg;} .room-plant .l2{ left:16px; rotate:2deg;} .room-plant .l3{ left:18px; rotate:22deg;}
.room-lamp { position: absolute; right: 40px; bottom: 40px; width: 40px; height: 120px; }
.room-lamp .stem { position:absolute; bottom:0; left:18px; width:4px; height:110px; background:#8a8072; }
.room-lamp .shade { position:absolute; top:0; left:2px; width:36px; height:26px; background: var(--amber); border-radius: 6px 6px 2px 2px; box-shadow: 0 0 24px rgba(240,163,78,calc(.5*var(--light))); }
.room-art { position: absolute; left: 40px; top: 40px; width: 70px; height: 54px; background: var(--grad-soft); border: 5px solid #fff; border-radius: 4px; box-shadow: var(--shadow-sm); }
.demo-badge { position:absolute; left: 14px; bottom: 12px; z-index: 6; font-size: .72rem; font-weight: 600; background: rgba(20,17,15,.75); color: #fff; padding: .35rem .7rem; border-radius: 100px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

/* theme variants */
.demo-room[data-theme="wabi"]   { --wall:#e6ddcf; --floor:#c7a983; --sofa:#c9a07c; --rug:#b79b76; --accent:#a5673d; }
.demo-room[data-theme="south"]  { --wall:#eae4d0; --floor:#9c6b3f; --sofa:#5f7355; --rug:#c19a54; --accent:#b83b2e; }
.demo-room[data-theme="artdeco"]{ --wall:#1f2530; --floor:#2c2530; --sofa:#3c4a63; --rug:#8a6b3a; --accent:#d9b45a; }
.demo-room[data-theme="artdeco"] .demo-badge { background: rgba(217,180,90,.9); color:#1f2530; }

/* --- budget & theme upgrades: wallpaper, wall lights, pendant, sofa --- */
.room-wallpaper, .room-sconces .sconce, .room-pendant, .room-sofa .leg, .room-sofa .cushion.c3 {
  opacity: 0; transition: opacity .5s ease, transform .5s ease, background .5s ease;
}
/* layering so upgrades sit correctly behind furniture */
.room-wall { z-index: 0; }
.room-wallpaper { z-index: 0; }
.room-window, .room-art, .room-sconces, .room-pendant { z-index: 1; }
.room-floor { z-index: 1; }
.room-rug, .room-sofa, .room-plant, .room-lamp { z-index: 2; }

/* wallpaper accent panel (full wall) */
.room-wallpaper {
  position: absolute; inset: 0 0 34% 0;
  background:
    repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent) 18%, transparent) 0 7px, transparent 7px 18px),
    linear-gradient(180deg, color-mix(in srgb, var(--wall) 92%, #fff), var(--wall));
}
.demo-room[data-theme="artdeco"] .room-wallpaper {
  background:
    repeating-linear-gradient(0deg, rgba(217,180,90,.24) 0 2px, transparent 2px 15px),
    repeating-linear-gradient(90deg, rgba(217,180,90,.18) 0 2px, transparent 2px 15px),
    linear-gradient(180deg,#2a3240,#1e2530);
}
/* wallpaper shows on Art Deco always, and from the Comfort budget up */
.demo-room[data-theme="artdeco"] .room-wallpaper,
.demo-room[data-budget="comfort"] .room-wallpaper,
.demo-room[data-budget="premium"] .room-wallpaper,
.demo-room[data-budget="luxe"] .room-wallpaper { opacity: 1; }

/* wall sconces (multiple wall lights) */
.room-sconces { position: absolute; inset: 0; pointer-events: none; }
.sconce {
  position: absolute; top: 44%; width: 12px; height: 22px; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--amber), #d98a2f);
  box-shadow: 0 0 16px 4px rgba(240,163,78,.55); transform: translateY(-6px);
}
.sconce.s1 { left: 40%; } .sconce.s2 { right: 40%; }
.sconce.s3 { left: 26%; } .sconce.s4 { right: 26%; }
/* South Indian theme gets a pair of traditional wall lamps by default;
   premium adds a pair; luxe lights up all four */
.demo-room[data-theme="south"] .sconce.s1,
.demo-room[data-theme="south"] .sconce.s2,
.demo-room[data-budget="premium"] .sconce.s1,
.demo-room[data-budget="premium"] .sconce.s2,
.demo-room[data-budget="luxe"] .sconce { opacity: 1; transform: translateY(0); }

/* pendant light (luxe) */
.room-pendant { position: absolute; top: 0; left: 50%; translate: -50% 0; }
.room-pendant .cord { position: absolute; top: 0; left: 50%; translate: -50% 0; width: 2px; height: 58px; background: #6b6157; }
.room-pendant .bulb {
  position: absolute; top: 52px; left: 50%; translate: -50% 0; width: 34px; height: 18px; border-radius: 4px 4px 15px 15px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000));
  box-shadow: 0 8px 26px 4px rgba(240,163,78,.5);
}
.demo-room[data-budget="luxe"] .room-pendant { opacity: 1; }

/* sofa upgrades (luxe): extra centre cushion + wooden legs */
.room-sofa .cushion.c3 { left: 50%; translate: -50% 0; top: -4px; rotate: 0deg; background: color-mix(in srgb, var(--accent) 78%, #fff); }
.room-sofa .leg { position: absolute; bottom: -12px; width: 10px; height: 14px; background: #6b4a2f; border-radius: 0 0 3px 3px; }
.room-sofa .leg.ll { left: 18px; } .room-sofa .leg.lr { right: 18px; }
.demo-room[data-budget="luxe"] .room-sofa .cushion.c3,
.demo-room[data-budget="luxe"] .room-sofa .leg { opacity: 1; }

.demo-controls { padding: 14px 6px 4px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .9rem; }
.chip { font-size: .8rem; font-weight: 600; padding: .45rem .8rem; border-radius: 100px; border: 1px solid var(--line); background: var(--cream); cursor: pointer; transition: .2s; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.demo-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.toggle-day { position: relative; border: 1px solid var(--line); background: var(--cream); border-radius: 100px; padding: .35rem; display: inline-flex; cursor: pointer; font-size: .8rem; font-weight: 600; }
.toggle-day span { padding: .25rem .6rem; border-radius: 100px; transition: .25s; opacity: .55; }
.toggle-day .ico-day { background: var(--paper); opacity: 1; box-shadow: var(--shadow-sm); }
.toggle-day[aria-pressed="true"] .ico-day { background: transparent; opacity: .55; box-shadow: none; }
.toggle-day[aria-pressed="true"] .ico-night { background: var(--ink); color: var(--paper); opacity: 1; }
.budget { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.budget label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.budget input[type=range] { accent-color: var(--coral); width: 110px; }
.budget output { font-family: var(--font-display); font-weight: 600; white-space: nowrap; min-width: 92px; }
.demo-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: .8rem; }

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: var(--cream); overflow: hidden; padding: .8rem 0; }
.marquee-track { display: flex; gap: 1.6rem; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.05rem; opacity: .9; }
.marquee-track span:nth-child(even){ color: var(--amber); }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section--flush { padding-top: 0; }
.section-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.06; letter-spacing: -.02em; }
.section-head h2 em { color: var(--coral-d); font-style: italic; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }

/* value grid */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.value-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform .3s, box-shadow .3s, border-color .3s; }
.section-alt .value-card { background: var(--cream); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.v-ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); color: var(--coral-d); font-size: 1.3rem; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: .4rem; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* --- illustrations for value cards (2D human-figure SVGs) --- */
.v-art { position: relative; height: 132px; border-radius: 14px; overflow: hidden; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #efe7db, #e4d8c4); }
.v-art svg { width: auto; height: 92px; }
.art-side   { background: linear-gradient(160deg,#f0e7da,#e7d9c3); }
.art-refund { background: linear-gradient(160deg,#f1e6d3,#ead9bf); }
.art-3d     { background: linear-gradient(160deg,#e9ece4,#d9e0d2); }
.art-quotes { background: linear-gradient(160deg,#eee6d8,#e3d6c0); }
.art-pros   { background: linear-gradient(160deg,#ece4d5,#e0d3bd); }
.art-qa     { background: linear-gradient(160deg,#ede5d7,#e2d5bf); }
.art-copilot { background: linear-gradient(160deg,#e9ece4,#dbe2d3); }
.art-mood    { background: linear-gradient(160deg,#f1e7d6,#e7d8bf); }
.art-tracker { background: linear-gradient(160deg,#eae4d6,#ded3bd); }

/* steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; counter-reset: s; }
.step { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.step-n { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--coral); opacity: .5; line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: .6rem 0 .4rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* split / MCP */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem,3.4vw,2.6rem); line-height: 1.08; letter-spacing: -.02em; }
.split-copy h2 em { color: var(--coral-d); font-style: italic; }
.split-copy > p { color: var(--muted); margin: 1.1rem 0 1.4rem; font-size: 1.05rem; }
.check-list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.check-list li { position: relative; padding-left: 1.9rem; font-size: .96rem; color: var(--ink-2); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; background: var(--ink); color: var(--paper); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.chat-mock { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-lg); font-size: .9rem; }
.chat-top { display: flex; align-items: center; gap: .4rem; font-size: .72rem; opacity: .6; margin-bottom: 1rem; }
.chat-top span { width: 10px; height: 10px; border-radius: 50%; background: #4b443d; }
.chat-top span:nth-child(1){ background:#e2725b;} .chat-top span:nth-child(2){ background:#f0a34e;} .chat-top span:nth-child(3){ background:#7b8a5a;}
.chat-top { }
.bubble { border-radius: 14px; padding: .8rem 1rem; margin-bottom: .7rem; }
.bubble.user { background: rgba(255,255,255,.1); margin-left: 2rem; }
.bubble.ai { background: rgba(240,163,78,.14); border: 1px solid rgba(240,163,78,.25); }
.bubble.ai b { color: var(--amber); }
.bubble.ai i { opacity: .7; font-size: .82rem; }
.mini-boq { margin: .7rem 0; display: grid; gap: .3rem; }
.mini-boq div { display: flex; justify-content: space-between; font-size: .84rem; opacity: .9; }
.mini-boq .tot { border-top: 1px dashed rgba(255,255,255,.25); padding-top: .4rem; margin-top: .2rem; font-weight: 700; opacity: 1; }
.mini-boq .tot b, .mini-boq b { color: var(--cream); }

/* feature rows (Kickstart toolkit) */
.feature-row { margin-top: 3.2rem; align-items: center; }
.split-copy h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,2.9vw,2.1rem); line-height: 1.12; letter-spacing: -.02em; }
.split-copy h3 em { color: var(--coral-d); font-style: italic; }
.feature-row .split-copy > p { color: var(--muted); margin: 1rem 0 1.3rem; font-size: 1.02rem; }
@media (max-width: 940px) {
  .split.reverse .split-copy { order: -1; }
}

/* mood-board mockup */
.mood-mock { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-lg); }
.mm-top { font-size: .75rem; font-weight: 600; color: var(--muted); margin-bottom: 1rem; }
.mm-body { display: flex; align-items: center; gap: .9rem; }
.mm-pins { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; flex: 1; }
.mm-pins .pin { height: 46px; border-radius: 8px; }
.pin.p1 { background: #b9c2b0; } .pin.p2 { background: #e2725b; } .pin.p3 { background: #f0a34e; } .pin.p4 { background: #6f7a8a; }
.mm-arrow { font-size: 1.5rem; color: var(--coral-d); font-weight: 700; }
.mm-render { position: relative; flex: 1; height: 104px; border-radius: 10px; overflow: hidden; background: #efe9e0; box-shadow: var(--shadow-sm); }
.mm-wall { position: absolute; inset: 0 0 38% 0; background: #efe9e0; }
.mm-floor { position: absolute; inset: 62% 0 0 0; background: #d8c3a5; }
.mm-sofa { position: absolute; left: 50%; translate: -50% 0; bottom: 14px; width: 66%; height: 26px; border-radius: 8px 8px 4px 4px; background: #b9c2b0; box-shadow: 0 8px 14px -8px rgba(0,0,0,.4); }
.mm-tag { position: absolute; left: 8px; bottom: 8px; font-size: .62rem; font-weight: 600; background: rgba(20,17,15,.72); color: #fff; padding: .2rem .5rem; border-radius: 100px; }
.mm-chips { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.mm-chips span { font-size: .75rem; font-weight: 600; background: var(--grad-soft); color: var(--coral-d); padding: .3rem .7rem; border-radius: 100px; }

/* project-tracker mockup */
.tracker-mock { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-lg); }
.tm-top { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 1rem; }
.tm-top b { color: var(--coral-d); }
.tm-budget { margin-bottom: 1.1rem; }
.tm-brow { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .4rem; }
.tm-brow b { font-family: var(--font-display); }
.tm-bar { height: 10px; border-radius: 100px; background: var(--cream-2); overflow: hidden; }
.tm-bar span { display: block; height: 100%; width: 68%; border-radius: 100px; background: var(--grad); }
.tm-list { list-style: none; display: grid; gap: .6rem; }
.tm-list li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--muted); }
.tm-tick { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; position: relative; }
.tm-list li.done { color: var(--ink); }
.tm-list li.done .tm-tick { background: var(--olive); border-color: var(--olive); }
.tm-list li.done .tm-tick::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: 2px solid #fff; border-top: 0; border-left: 0; rotate: 45deg; }
.tm-list li.active { color: var(--ink); font-weight: 600; }
.tm-list li.active .tm-tick { border-color: var(--coral); background: radial-gradient(circle, var(--coral) 40%, transparent 42%); }

/* pledge */
.pledge { background: var(--ink); color: var(--cream); text-align: center; padding: clamp(3rem,6vw,5rem) 0; position: relative; overflow: hidden; }
.pledge::before { content:""; position: absolute; inset: -50% 20% auto 20%; height: 300px; background: radial-gradient(circle, rgba(240,163,78,.25), transparent 70%); }
.pledge-inner { position: relative; max-width: 800px; margin: 0 auto; }
.pledge h2 { font-family: var(--font-display); font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.pledge-line { font-family: var(--font-display); font-size: clamp(1.5rem,3.4vw,2.4rem); line-height: 1.2; margin: 1.2rem 0 2rem; font-weight: 500; }

/* pricing preview */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; align-items: start; }
.price-card { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform .3s, box-shadow .3s; }
.section-alt .price-card { background: var(--paper); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.ribbon { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--grad); color: #fff; padding: .3rem .7rem; border-radius: 100px; }
.pc-head h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.pc-sub { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.price-card.featured .pc-sub { color: rgba(247,242,234,.7); }
.pc-price { margin: 1.1rem 0 1.3rem; display: flex; align-items: baseline; gap: .5rem; }
.pc-price .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; }
.pc-price .per { font-size: .85rem; color: var(--muted); }
.price-card.featured .per { color: rgba(247,242,234,.7); }
.pc-list { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.6rem; }
.pc-list li { position: relative; padding-left: 1.6rem; font-size: .92rem; }
.pc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.price-card.featured .pc-list li::before { color: var(--amber); }

/* faq */
.faq { display: grid; gap: .7rem; }
.faq-item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: .3rem 1.2rem; transition: box-shadow .25s; }
.section-alt .faq-item { background: var(--paper); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1rem 0; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--coral); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 1rem; font-size: .95rem; }

/* claim */
.claim { padding: clamp(3.5rem,7vw,6rem) 0; background: var(--paper); }
.claim-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.claim h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 600; letter-spacing: -.02em; }
.claim > .claim-inner > p { color: var(--muted); margin: 1rem 0 2rem; }
.claim-form { display: grid; gap: 1rem; text-align: left; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field input, .field select { font-family: inherit; font-size: 1rem; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(226,114,91,.15); }
.form-msg { font-size: .9rem; font-weight: 600; min-height: 1rem; text-align: center; }
.form-msg.ok { color: var(--olive); }
.form-fine { font-size: .78rem; color: var(--muted); text-align: center; }

/* footer */
.site-footer { background: var(--ink); color: var(--cream); padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.foot-brand p { color: rgba(247,242,234,.6); font-size: .92rem; max-width: 34ch; }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.foot-cols h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: .9rem; }
.foot-cols a { display: block; font-size: .92rem; color: rgba(247,242,234,.75); padding: .28rem 0; transition: color .2s; }
.foot-cols a:hover { color: var(--cream); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: .82rem; color: rgba(247,242,234,.6); flex-wrap: wrap; gap: .6rem; }
.pledge-chip { background: rgba(240,163,78,.14); color: var(--amber); padding: .3rem .8rem; border-radius: 100px; font-weight: 600; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-demo { max-width: 460px; }
  .value-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: stretch; gap: .3rem; background: var(--paper); padding: 90px 1.4rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
  .nav.open { transform: none; }
  .nav a:not(.btn) { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: .5rem; }
  .nav-toggle { display: flex; z-index: 60; }
  .value-grid, .price-grid, .steps { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-trust { gap: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Sub-pages: pricing, about, shared components
   ============================================================ */

/* page hero (pricing/about) */
.page-hero { position: relative; overflow: hidden; padding: clamp(3rem,7vw,5.5rem) 0 clamp(2rem,4vw,3rem); text-align: center; }
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,5.5vw,4rem); line-height: 1.04; letter-spacing: -.02em; }
.page-hero h1 em { color: var(--coral-d); font-style: italic; }
.lede.center { margin-left: auto; margin-right: auto; max-width: 60ch; text-align: center; }

/* plans teaser (home) */
.teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.teaser-card { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform .3s, box-shadow .3s; }
.section-alt .teaser-card { background: var(--paper); }
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.teaser-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.teaser-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.tc-sub { color: var(--coral-d); font-weight: 600; font-size: .85rem; margin: .2rem 0 .8rem; }
.teaser-card.featured .tc-sub { color: var(--amber); }
.teaser-card > p:last-child { color: var(--muted); font-size: .95rem; }
.teaser-card.featured > p:last-child { color: rgba(247,242,234,.82); }
.teaser-card b { color: inherit; }
.teaser-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* price card extras */
.pc-blurb { color: var(--muted); font-size: .92rem; margin: -.4rem 0 1.1rem; }
.price-card.featured .pc-blurb { color: rgba(247,242,234,.72); }
.plan-fine { text-align: center; color: var(--muted); font-size: .84rem; max-width: 70ch; margin: 2rem auto 0; }

/* how we're paid */
.paid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.paid-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; font-size: .96rem; color: var(--ink-2); }
.paid-card b { color: var(--ink); }

/* where you might pay more (add-ons) */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.addon { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; display: flex; flex-direction: column; gap: .3rem; transition: transform .3s, box-shadow .3s; }
.addon:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.addon b { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.addon span { color: var(--muted); font-size: .85rem; flex: 1; }
.addon em { font-style: normal; font-weight: 700; color: var(--coral-d); font-size: .95rem; margin-top: .4rem; }

/* directory card */
.dir-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow); }
.dir-head { margin-bottom: 1rem; }
.dir-badge { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--olive); background: rgba(123,138,90,.14); padding: .3rem .7rem; border-radius: 100px; }
.dir-row { display: flex; align-items: center; gap: .8rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.dir-avatar { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff; background: var(--grad); flex: none; }
.dir-meta { flex: 1; line-height: 1.3; }
.dir-meta b { display: block; font-size: .96rem; }
.dir-meta span { font-size: .8rem; color: var(--muted); }
.dir-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .25rem .6rem; border-radius: 100px; background: var(--ink); color: var(--paper); }
.dir-quote { margin-top: 1rem; font-style: italic; font-size: .9rem; color: var(--ink-2); background: var(--grad-soft); padding: .8rem 1rem; border-radius: 12px; }
.dir-quote i { color: var(--muted); font-style: normal; font-size: .8rem; }

/* comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare thead th { padding: 1.2rem 1rem; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.compare thead th.feat { text-align: left; }
.compare thead th.hi { background: var(--ink); color: var(--cream); border-radius: 12px 12px 0 0; }
.compare thead th.hi span { color: var(--amber); }
.compare td { padding: .85rem 1rem; text-align: center; font-size: .92rem; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.compare td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.compare td.hi { background: rgba(20,17,15,.035); font-weight: 600; color: var(--ink); }
.compare tr.grp td { background: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-d); text-align: left; }
.compare tr.cta-row td { border-bottom: 0; padding-top: 1.2rem; padding-bottom: 1.2rem; }
.compare tr.cta-row .btn { width: 100%; }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; background: var(--ink); border-radius: var(--radius-lg); padding: 2rem 1.5rem; }
.stat { text-align: center; color: var(--cream); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 600; line-height: 1; color: var(--amber); }
.stat span { font-size: .84rem; color: rgba(247,242,234,.7); margin-top: .4rem; display: block; }

/* pull quote (about) */
.pull-quote { font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,1.7rem); line-height: 1.35; font-style: italic; color: var(--ink); background: var(--cream); border-left: 4px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.section-alt .pull-quote { background: var(--paper); }
.pull-quote cite { display: block; margin-top: 1rem; font-size: .9rem; font-style: normal; color: var(--muted); font-family: var(--font-body); }

/* timeline (about) */
.timeline { list-style: none; position: relative; padding-left: 1.5rem; margin-top: 1rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--coral), var(--amber)); }
.tl-item { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 1.2rem; padding: 1rem 0; align-items: start; }
.tl-item::before { content: ""; position: absolute; left: -1.5rem; top: 1.5rem; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 3px solid var(--coral); }
.tl-year { font-family: var(--font-display); font-weight: 600; color: var(--coral-d); font-size: 1.1rem; }
.tl-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: .3rem; }
.tl-item p { color: var(--muted); font-size: .95rem; }

@media (max-width: 940px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .paid-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 70px 1fr; gap: .8rem; }
}
