/* ============================================================================
   The Handoff Studio — global design system
   Ported from the v2 mockup. Warm cream palette, three typefaces.
   ========================================================================== */

:root {
  --accent: #e08a5a;
  --accent-deep: color-mix(in oklab, var(--accent) 60%, #2e1c10);
  --accent-soft: color-mix(in oklab, var(--accent) 18%, #fbf5ee);

  --bg: #f6efe9;
  --paper-soft: #fbf5ee;
  --panel: #fff;
  --form-bg: #efe3d8;

  --ink: #2b2521;
  --ink-soft: #6f645b;
  --ink-mute: #8a7d70;
  --ink-faint: #a2937f;

  --rule: #e7dccf;
  --rule-2: #eadbcb;
  --rule-3: #e2d6c8;

  --serif: 'Space Grotesk', sans-serif; /* display */
  --sans: 'Figtree', sans-serif;        /* body */
  --mono: 'IBM Plex Mono', monospace;   /* labels / meta */

  --maxw: 1120px;
  --play: running;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* The `hidden` attribute must beat class-level `display` rules (e.g. .btn). */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: #8f4c2b; }
img { max-width: 100%; }
input, textarea, select { font-family: inherit; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(224, 138, 90, .18);
}

@media (prefers-reduced-motion: reduce) {
  :root { --play: paused; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ── Keyframes ────────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal { from { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(5px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes growX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -18px) scale(1.06); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes travel { 0% { left: 0; opacity: 0; } 14% { opacity: 1; } 86% { opacity: 1; } 100% { left: calc(100% - 8px); opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: scale(.5); } 60% { transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
@keyframes stepIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Scroll-reveal utility (JS toggles .in-view) */
.reveal { opacity: 0; }
.reveal.in-view { animation: reveal .7s cubic-bezier(.2,.7,.2,1) both; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.ph {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: #9a8b7c; text-align: center;
  background: repeating-linear-gradient(45deg, #e7d8ca, #e7d8ca 7px, #f0e5d9 7px, #f0e5d9 14px);
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(246, 239, 233, .82);
  border-bottom: 1px solid var(--rule);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 19px; letter-spacing: -.02em; display: flex; align-items: center; gap: 2px; color: var(--ink); }
.brand__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; margin-left: 3px; }
.nav__links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.nav__links a { color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: 13.5px;
  padding: 10px 18px; border-radius: 100px; transition: all .25s;
}
.nav__cta:hover { background: var(--accent-deep); color: var(--bg); }
.nav__progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--accent);
  transform-origin: left; transform: scaleX(0);
}
.nav__progress.animate { animation: growX 1s linear both; animation-timeline: scroll(); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { cursor: pointer; font-weight: 600; border-radius: 100px; transition: all .25s; display: inline-flex; align-items: center; justify-content: center; border: none; }
.btn--primary { background: var(--accent); color: #fff; font-size: 15.5px; padding: 14px 24px; box-shadow: 0 12px 28px -10px var(--accent); }
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-deep); color: #fff; }
.btn--ghost { border: 1px solid #d8ccbe; font-size: 15.5px; padding: 14px 24px; color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: var(--accent-deep); }

/* ── Section headers ─────────────────────────────────────────────────────── */
.eyebrow { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.sec-title { font-family: var(--serif); font-weight: 700; font-size: 38px; letter-spacing: -.02em; margin: 14px 0 10px; }
.sec-rule { width: 52px; height: 3px; background: var(--accent); border-radius: 2px; transform-origin: left; }
.reveal.in-view .sec-rule { animation: growX .8s .1s both; }
.sec-lead { font-size: 16.5px; color: var(--ink-soft); max-width: 54ch; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 32px 0; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: visible; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(50px); }
.hero__blob--a { top: -80px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, var(--accent-soft), transparent 65%); opacity: .9; animation: drift 14s ease-in-out infinite; animation-play-state: var(--play); }
.hero__blob--b { bottom: -120px; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle, #dde6d5, transparent 65%); filter: blur(60px); opacity: .8; animation: drift 18s ease-in-out infinite reverse; animation-play-state: var(--play); }
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 92px 32px 84px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__kicker { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); animation: fadeUp .6s .05s both; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: 56px; line-height: 1.02; letter-spacing: -.03em; margin: 20px 0; text-wrap: pretty; }
.hero h1 span { display: inline-block; animation: fadeUp .55s both; }
.hero h1 .accent { color: var(--accent-deep); }
.hero__lead { font-size: 17.5px; line-height: 1.6; color: var(--ink-soft); max-width: 46ch; animation: fadeUp .6s .5s both; }
.hero__actions { display: flex; gap: 12px; margin-top: 30px; animation: fadeUp .6s .6s both; flex-wrap: wrap; }
.hero__fine { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 22px; animation: fadeUp .6s .7s both; }
.hero__panel-wrap { position: relative; animation: fadeUp .8s .35s both; }
.hero__panel { background: #fff; border-radius: 24px; padding: 26px; box-shadow: 0 30px 70px -28px rgba(80, 55, 35, .4); }
.hero__panel-head { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #7fa374; animation: blink 2.2s infinite; animation-play-state: var(--play); }
.hero__panel-head span:last-child { font-family: var(--mono); font-size: 11.5px; color: var(--ink-mute); }
.pipe { display: flex; align-items: center; gap: 10px; }
.pipe__node { flex: none; font-size: 12.5px; font-weight: 600; background: var(--bg); border: 1px solid var(--rule); border-radius: 10px; padding: 9px 12px; }
.pipe__node--done { background: var(--accent-soft); border-color: transparent; color: var(--accent-deep); }
.pipe__line { position: relative; flex: 1; height: 2px; background: var(--rule-2); }
.pipe__line span { position: absolute; top: 50%; left: 0; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--accent); animation: travel 2.6s ease-in-out infinite; animation-play-state: var(--play); }
.pipe__line--delay span { animation-delay: 1.3s; }
.hero__rows { margin-top: 24px; display: grid; gap: 10px; }
.hero__row { display: flex; justify-content: space-between; align-items: center; background: var(--paper-soft); border-radius: 12px; padding: 12px 16px; transition: all .5s; }
.hero__row.active { background: var(--accent-soft); }
.hero__row span:first-child { font-size: 13.5px; color: #5f554b; }
.hero__row .status { font-family: var(--mono); font-size: 11px; }
.hero__row .status--run { color: var(--accent-deep); }
.hero__row .status--done { color: #7fa374; }
.hero__toast { position: absolute; top: -18px; right: -14px; background: #fff; border-radius: 14px; padding: 10px 15px; box-shadow: 0 14px 34px -14px rgba(80,55,35,.45); font-family: var(--mono); font-size: 11.5px; color: #5f554b; animation: toastIn .5s both; }
.hero__float { position: absolute; bottom: -20px; left: -18px; background: #fff; border-radius: 14px; padding: 10px 15px; box-shadow: 0 14px 34px -14px rgba(80,55,35,.45); font-family: var(--mono); font-size: 11.5px; color: #5f554b; animation: floaty 6.5s ease-in-out 1s infinite; animation-play-state: var(--play); }

/* ── Marquee ─────────────────────────────────────────────────────────────── */
.marquee { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 18px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; animation-play-state: var(--play); }
.marquee__item { flex: none; margin-right: 12px; font-family: var(--mono); font-size: 12px; color: var(--ink-mute); border: 1px solid var(--rule-3); background: var(--paper-soft); border-radius: 100px; padding: 8px 16px; }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--rule); }
.stat { padding: 34px 8px 34px 28px; border-right: 1px solid var(--rule); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat__num { font-family: var(--serif); font-size: 36px; font-weight: 700; }
.stat__label { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); margin-top: 4px; }

/* ── Cards / grids ───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.card { background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 14px 40px -26px rgba(80,55,35,.5); transition: all .3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(80,55,35,.55); }
.card__icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.card__meta { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 18px; }

/* Process steps */
.step { position: relative; background: var(--paper-soft); border: 1px solid var(--rule-2); border-radius: 18px; padding: 24px; transition: all .3s; }
.step:hover { transform: translateY(-4px); }
.step__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 14px; }
.step__time { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

/* Work case cards */
.work-card { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 14px 40px -26px rgba(80,55,35,.5); transition: all .3s; }
.work-card:hover { transform: translateY(-5px); }
.work-card__body { padding: 26px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; color: var(--accent-deep); }
.work-card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 10px 0 8px; }
.work-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.work-card__quote { font-size: 14px; font-style: italic; color: var(--ink-mute); margin-top: 12px; }
.work-card__pills { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.pill { font-family: var(--mono); font-size: 11px; background: var(--bg); border-radius: 100px; padding: 6px 12px; color: #5f554b; }

/* ── Work: flagship deep dive ────────────────────────────────────────────── */
.deepdive { margin-top: 40px; background: #fff; border-radius: 26px; padding: 40px; box-shadow: 0 20px 60px -34px rgba(80,55,35,.5); }
.deepdive__head { max-width: 62ch; margin-bottom: 32px; }
.deepdive__tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--accent-deep); }
.deepdive__head h3 { font-family: var(--serif); font-weight: 700; font-size: 26px; letter-spacing: -.02em; margin: 12px 0 10px; }
.deepdive__head p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

.dd-flow { display: grid; gap: 0; }
.dd-step { display: grid; grid-template-columns: 56px 1fr; gap: 8px; }
.dd-step__rail { position: relative; display: flex; justify-content: center; }
.dd-step__rail::before { content: ''; position: absolute; top: 34px; bottom: -6px; width: 2px; background: var(--rule-2); }
.dd-step--last .dd-step__rail::before { display: none; }
.dd-step__num { z-index: 1; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--rule-2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 13px; }
.dd-step__body { padding: 0 0 30px 8px; }
.dd-step--last .dd-step__body { padding-bottom: 0; }
.dd-step__time { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: var(--ink-faint); }
.dd-step__body h4 { font-family: var(--serif); font-weight: 600; font-size: 18px; margin: 6px 0 6px; }
.dd-step__body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }

/* Faux UI artifacts */
.ui-card { margin-top: 16px; max-width: 440px; border-radius: 14px; padding: 16px 18px; font-size: 13px; }
.ui-brief { background: #2b2521; color: #f0e5d9; }
.ui-brief__label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: #d8b79f; margin-bottom: 10px; }
.ui-brief__summary { font-size: 14px; line-height: 1.55; color: #f6efe9; margin-bottom: 12px; }
.ui-brief__row { font-size: 12.5px; color: #cdbdae; padding-top: 8px; border-top: 1px solid #4a3f36; }
.ui-brief__row span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: #a2937f; margin-right: 6px; }
.ui-brief__row b { color: var(--accent); }
.ui-brief__row--warn { color: #e8b98f; }

.ui-notion { background: var(--paper-soft); border: 1px solid var(--rule-2); }
.ui-notion__head { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); margin-bottom: 12px; }
.ui-dot { width: 7px; height: 7px; border-radius: 50%; background: #7fa374; }
.ui-notion__title { font-family: var(--serif); font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.ui-notion__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tagpill { font-family: var(--mono); font-size: 10.5px; padding: 4px 9px; border-radius: 6px; background: #fff; border: 1px solid var(--rule-2); color: #5f554b; }
.tagpill--red { background: #f7e2d8; border-color: transparent; color: #b5502e; }
.tagpill--accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-deep); }
.ui-notion__summary { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

.ui-tasks { background: var(--paper-soft); border: 1px solid var(--rule-2); padding: 8px 10px; }
.ui-task { display: flex; align-items: center; gap: 10px; padding: 9px 8px; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--rule-2); }
.ui-task:last-child { border-bottom: none; }
.ui-task span:nth-child(2) { flex: 1; }
.ui-task--done span:nth-child(2) { color: var(--ink-mute); text-decoration: line-through; }
.chk { flex: none; width: 15px; height: 15px; border-radius: 5px; border: 1.5px solid #c9b8a4; }
.chk--done { border: none; background: #7fa374; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.due { flex: none; font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }

.ui-slack { background: #fff; border: 1px solid var(--rule-2); box-shadow: 0 10px 30px -20px rgba(80,55,35,.4); border-left: 3px solid var(--accent); }
.ui-slack__head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 13px; }
.ui-slack__avatar { width: 20px; height: 20px; border-radius: 5px; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 11px; }
.ui-slack__app { font-family: var(--mono); font-size: 8.5px; letter-spacing: .06em; color: var(--ink-faint); background: var(--paper-soft); border: 1px solid var(--rule-2); border-radius: 3px; padding: 1px 4px; }
.ui-slack__title { font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.ui-slack__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-bottom: 10px; }
.ui-slack__fields div { font-size: 13px; color: var(--ink); }
.ui-slack__fields span { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 1px; }
.ui-slack__summary { font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 12px; }
.ui-slack__btn { display: inline-block; font-size: 12.5px; font-weight: 600; color: #fff; background: var(--accent); border-radius: 8px; padding: 7px 14px; }

.dd-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rule); }
.dd-metric__num { font-family: var(--serif); font-size: 30px; font-weight: 700; letter-spacing: -.02em; }
.dd-metric__label { font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); margin-top: 4px; line-height: 1.4; }

/* Supporting use-case cards */
.usecase { background: var(--paper-soft); border: 1px solid var(--rule-2); border-radius: 18px; padding: 24px; transition: all .3s; display: flex; flex-direction: column; }
.usecase:hover { transform: translateY(-4px); }
.usecase__tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: var(--accent-deep); }
.usecase h4 { font-family: var(--serif); font-weight: 600; font-size: 18px; margin: 10px 0 8px; letter-spacing: -.01em; }
.usecase p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.usecase__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.usecase--dark { background: var(--ink); }
.usecase--dark .usecase__tag { color: #d8b79f; }
.usecase--dark h4 { color: var(--bg); }
.usecase--dark p { color: #cdbdae; }
.pill--cta { background: var(--accent); color: #fff; font-weight: 600; }
.pill--cta:hover { background: var(--accent-deep); color: #fff; }
a.usecase, a.usecase:hover { color: inherit; text-decoration: none; }
a.usecase:hover { box-shadow: 0 18px 40px -28px rgba(80,55,35,.55); border-color: #d8c5ae; }
.usecase__more { font-family: var(--mono); font-size: 11.5px; color: var(--accent-deep); margin-top: 14px; }
a.usecase:hover .usecase__more { text-decoration: underline; }

@media (max-width: 720px) {
  .deepdive { padding: 24px 18px; }
  .dd-metrics { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .ui-slack__fields { grid-template-columns: 1fr 1fr; }
}

/* Pricing */
.grid-price { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; align-items: stretch; }
.price { background: var(--paper-soft); border: 1px solid var(--rule-2); border-radius: 22px; padding: 26px; transition: all .3s; }
.price:hover { transform: translateY(-5px); }
.price--dark { background: var(--ink); color: var(--bg); box-shadow: 0 24px 54px -22px rgba(43,37,33,.7); }
.price__tag { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.price--dark .price__tag { color: #d8b79f; }
.price h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; margin: 10px 0 4px; }
.price__amt { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); margin-bottom: 14px; }
.price--dark .price__amt { color: var(--accent); }
.price p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.price--dark p { color: #cdbdae; }
.price__list { margin-top: 18px; display: grid; gap: 8px; font-size: 13.5px; color: #5f554b; }
.price--dark .price__list { color: #e6dbcd; }
.price-note { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 20px; text-align: center; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin: 0 auto; padding: 104px 32px 0; }
.faq-list { margin-top: 32px; display: grid; gap: 12px; }
.faq { cursor: pointer; background: var(--paper-soft); border: 1px solid var(--rule-2); border-radius: 16px; padding: 20px 24px; transition: all .3s; }
.faq:hover { border-color: #d8c5ae; }
.faq__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q { font-family: var(--serif); font-weight: 600; font-size: 17px; }
.faq__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.faq.open .faq__icon { transform: rotate(45deg); }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1); }
.faq.open .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__a { font-size: 15px; line-height: 1.6; color: var(--ink-soft); padding-top: 12px; max-width: 60ch; }

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-section { max-width: var(--maxw); margin: 0 auto; padding: 110px 32px 96px; }
.form-card { background: var(--form-bg); border-radius: 30px; padding: 56px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.form-intro h2 { font-family: var(--serif); font-weight: 700; font-size: 36px; letter-spacing: -.02em; margin: 14px 0 12px; text-wrap: pretty; }
.form-intro p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.form-points { margin-top: 30px; display: grid; }
.form-point { display: flex; gap: 14px; padding-bottom: 20px; border-left: 2px solid #ddcbb8; padding-left: 18px; position: relative; }
.form-point:last-child { border-left-color: transparent; padding-bottom: 0; }
.form-point::before { content: ''; position: absolute; left: -6px; top: 2px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.form-point b { font-size: 14.5px; }
.form-point div div { font-size: 13.5px; color: var(--ink-mute); margin-top: 2px; }
.form-contact { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 30px; }

.form-panel { background: #fff; border-radius: 24px; padding: 34px; box-shadow: 0 24px 60px -30px rgba(80,55,35,.45); }
.form-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.form-top span { font-family: var(--mono); font-size: 11.5px; color: var(--ink-mute); }
.form-top span:last-child { color: #c9b8a4; }
.form-progress { height: 4px; background: #f0e5d9; border-radius: 100px; margin-bottom: 28px; overflow: hidden; }
.form-progress__bar { height: 100%; width: 33%; background: var(--accent); border-radius: 100px; transition: width .5s cubic-bezier(.2,.7,.2,1); }
.form-step { animation: stepIn .45s both; display: grid; gap: 18px; }
.form-step[hidden] { display: none; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-mute); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--rule-3); background: var(--paper-soft); font-size: 15px; transition: all .2s; }
.field textarea { line-height: 1.5; resize: vertical; }
.field .warn { font-size: 12.5px; color: #b5502e; margin-top: 6px; }
.field .warn[hidden] { display: none; }
.field--invalid input, .field--invalid textarea { border-color: #d98b6a !important; background: #fdf3ee; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; font-size: 13.5px; font-weight: 500; padding: 9px 15px; border-radius: 100px; border: 1px solid #ddd0c0; background: var(--paper-soft); color: #5f554b; transition: all .2s; user-select: none; }
.chip.sel { font-weight: 600; background: var(--accent); border-color: transparent; color: #fff; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.form-back { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink-mute); padding: 12px 18px; border-radius: 100px; transition: all .2s; background: none; border: none; }
.form-back:hover { color: var(--ink); }
.form-next, .form-submit { font-size: 15px; padding: 13px 26px; }
.form-next { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px var(--accent); }
.form-next:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-submit { background: var(--ink); color: var(--bg); }
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-submit[disabled], .form-next[disabled] { opacity: .55; pointer-events: none; }
.form-success { text-align: center; padding: 26px 8px; animation: stepIn .45s both; }
.form-success__check { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: popIn .6s both; }
.form-success h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.form-success p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 38ch; margin: 0 auto; }
.form-success__mail { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 20px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--rule); margin-top: 96px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 36px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer .brand { font-size: 16px; }
.footer__meta { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.footer__copy { font-family: var(--mono); font-size: 12px; color: #c9b8a4; }
.footer__legal { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.footer__legal a { color: inherit; text-decoration: none; }
.footer__legal a:hover { color: var(--accent-deep); text-decoration: underline; }
.form-consent { font-family: var(--mono); font-size: 11.5px; line-height: 1.6; color: var(--ink-faint); margin-top: 22px; }
.form-consent a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .grid-2, .grid-4, .grid-price { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat, .stat:first-child { padding: 24px 16px; border-right: none; border-bottom: 1px solid var(--rule); }
  .form-card { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .section, .faq-wrap, .form-section { padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 36px; }
  .stats { grid-template-columns: 1fr; }
  .sec-title { font-size: 30px; }
}
