/* ==========================================================================
   HONEYLOVESOFT — SI Flywheel site
   Design system: SI Flywheel identity (paper · ink · gold)
   High-fidelity reconstruction of the design handoff (2026-06).
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Surfaces */
  --paper:      #F2EEE6;
  --card:       #FBF9F4;
  --card-alt:   #F0ECE3;
  --field:      #FFFEFB;

  /* Ink / text */
  --ink:        #241C26;
  --ink-deep:   #1C151E;
  --ink-soft:   #4A3F4D;
  --muted:      #6B6270;
  --faint:      #9A909C;

  /* Lines */
  --line:       #E2DBD0;
  --line-soft:  #ECE6DC;

  /* Gold accents */
  --gold:       #BD841A;
  --gold-deep:  #8F6210;
  --gold-light: #E0A93C;
  --gold-soft:  #EBDCBC;
  --gold-tint:  #F6EFDD;

  /* Dark-section helpers */
  --on-dark:        #F0EAF1;
  --on-dark-sub:    #C2B8C6;
  --on-dark-sub2:   #A99FAD;
  --on-dark-faint:  #8C808F;
  --dark-line:      #362B3C;
  --dark-line-2:    #3A2F40;

  /* Form validation */
  --error-text:   #B23A3A;
  --error-border: #C76B6B;

  /* Type */
  --sans: 'Pretendard', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1120px;
  --pad:  32px;
}

/* ---- Reset / base ------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold-soft); }

/* Flywheel diagram animations */
@keyframes hls-spin { to { transform: rotate(360deg); } }
@keyframes hls-flow { to { stroke-dashoffset: -18; } }

a { color: inherit; }

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

/* Page wrapper so the footer can sit at the bottom on short pages */
.page { display: flex; flex-direction: column; min-height: 100vh; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 238, 230, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark .accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color .15s;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); font-weight: 600; }

.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  text-decoration: none;
  padding: 9px 17px;
  border-radius: 7px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background .15s;
}
.nav-cta:hover { background: var(--gold-deep); }

/* Mobile hamburger (hidden on desktop) */
.nav-toggle { display: none; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-gold {
  font-size: 15px;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 26px;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  font-size: 15px;
  color: var(--on-dark);
  background: transparent;
  border: 1px solid var(--ink-soft);
  padding: 14px 26px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-gold-lg {
  font-size: 16px;
  color: var(--ink);
  background: var(--gold);
  padding: 16px 34px;
  border-radius: 9px;
}
.btn-gold-lg:hover { background: var(--gold-light); }

/* ---- Section scaffolding ------------------------------------------------ */
.section { border-bottom: 1px solid var(--line); }
.section .container { padding-top: 80px; padding-bottom: 80px; }

.section--card { background: var(--card); }
.section--dark { background: var(--ink); color: var(--on-dark); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-head {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 8px;
}
.section-mark {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.section-title {
  font-size: clamp(23px, 3.4vw, 31px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 720px;
  margin: 4px 0 30px;
  line-height: 1.6;
}

/* ---- Hero (dark, Home) -------------------------------------------------- */
.hero-dark {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-dark .container { padding: 96px 32px 104px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-h1 {
  font-size: clamp(38px, 6.2vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 16ch;
  color: #F0EAF1;
}
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-lead {
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--on-dark-sub);
  max-width: 660px;
  margin: 0 0 40px;
}
.hero-lead b { color: #F0EAF1; font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--dark-line);
}
.meta-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 7px;
}
.meta-v { font-size: 15px; color: #C8BECC; }

/* Decorative concentric rings */
.deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { right: -180px; top: -180px; width: 560px; height: 560px; border: 1px solid var(--dark-line-2); opacity: .6; }
.deco-2 { right: -110px; top: -110px; width: 420px; height: 420px; border: 1px dashed #463A4C; opacity: .5; }
.deco-3 { right: 30px;   top: 60px;   width: 240px; height: 240px; border: 1px solid #34293A; opacity: .4; }

/* Light rings (Company hero) */
.deco-light-1 { left: -200px; top: -120px; width: 520px; height: 520px; border: 1px solid #E8DFD0; opacity: .7; }
.deco-light-2 { left: -120px; top: -40px;  width: 360px; height: 360px; border: 1px dashed #E2D6C0; opacity: .7; }

/* ---- Hero (paper, Product / Company / Contact) -------------------------- */
.hero-paper { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-paper .container { padding: 88px 32px 80px; position: relative; z-index: 1; }

.hero-paper-h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.034em;
  margin: 0 0 26px;
  max-width: 14ch;
}
.hero-paper-h1 em { color: var(--gold); font-style: normal; }
.hero-paper-lead {
  font-size: 18.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0;
}
.hero-paper-lead b { font-weight: 700; color: var(--ink); }

/* Product hero wordmark + meta */
.product-wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--ink);
  margin-bottom: 26px;
}
.product-wordmark .accent { color: var(--gold); }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.meta-row .meta-k { color: var(--faint); margin-bottom: 6px; }
.meta-row .meta-v { font-size: 14.5px; color: var(--ink-soft); }

/* Company facts row (larger) */
.facts-row { display: flex; flex-wrap: wrap; gap: 48px; }
.facts-row .meta-k { color: var(--faint); margin-bottom: 8px; }
.facts-row .meta-v { font-size: 16px; color: var(--ink); font-weight: 600; }

/* ---- Generic prose lead ------------------------------------------------- */
.lead {
  font-size: 19px;
  line-height: 1.74;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 18px 0 0;
}
.lead b { font-weight: 700; }

/* ==========================================================================
   HOME
   ========================================================================== */

/* Flagship teaser (2-col) */
.flagship .container {
  padding: 84px 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.flagship-h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.flagship-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 520px;
}
.pillars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pillar {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 9px;
  padding: 16px 18px;
}
.pillar-k {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.pillar p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

.text-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color .15s;
}
.text-link:hover { border-bottom-color: var(--gold); }

.flywheel-wrap { display: flex; justify-content: center; }
.flywheel-wrap svg { width: 100%; max-width: 440px; height: auto; }

/* Effect / bar chart */
.chart-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px 28px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 10px;
}
.chart-head .title { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.chart-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
}
.bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}
.bar-col { text-align: center; }
.bar-pct { font-family: var(--mono); font-size: 11px; margin-bottom: 8px; }
.bar-pct.zero { color: var(--faint); }
.bar-pct.gold { color: var(--gold-deep); }
.bar-track { height: 180px; display: flex; align-items: flex-end; }
.bar { width: 100%; border-radius: 8px 8px 0 0; }
.bar-1 { height: 100%; background: linear-gradient(180deg, #4A3F4D, #241C26); }
.bar-2 { height: 75%;  background: linear-gradient(180deg, #C99B3C, #9A6E12); }
.bar-3 { height: 57%;  background: linear-gradient(180deg, #D2A845, #BD841A); }
.bar-4 { height: 42%;  background: linear-gradient(180deg, #E0A93C, #BD841A); }
.bar-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}
.chart-note {
  font-size: 13px;
  color: var(--faint);
  margin: 24px 0 0;
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--on-dark); }
.cta-band .container { padding: 80px 32px; text-align: center; }
.cta-band--tight .container { padding: 72px 32px; }
.cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.cta-h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  line-height: 1.12;
}
.cta-band--tight .cta-h2 { font-size: clamp(24px, 3.6vw, 36px); line-height: 1.14; margin-bottom: 18px; }
.cta-text {
  font-size: 17px;
  color: var(--on-dark-sub);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band--tight .cta-text { font-size: 16px; max-width: 540px; margin-bottom: 32px; }

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.insight {
  background: var(--ink);
  color: #EFE9F0;
  border-radius: 10px;
  padding: 28px 30px;
}
.insight-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.insight p { font-size: 17px; line-height: 1.62; margin: 0; }
.insight b { color: var(--gold); font-weight: 700; }

/* Compare cards (왜 새로 만드는가) */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.compare-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 24px 20px;
  background: var(--card-alt);
}
.compare-card.us { border-color: var(--gold-soft); background: var(--card); }
.compare-k {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.compare-card.us .compare-k { color: var(--gold-deep); }
.compare-card h3 { font-size: 17px; margin: 10px 0 14px; font-weight: 700; }
.compare-card ul { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.compare-card.us ul { color: var(--ink-soft); }
.compare-card li { margin-bottom: 8px; }
.compare-card li:last-child { margin-bottom: 0; }

/* Stage tabs (§03) */
.flywheel-center { display: flex; justify-content: center; }
.flywheel-center svg { width: 100%; max-width: 540px; height: auto; }

.stage-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.stage-tab {
  flex: 1;
  min-width: 118px;
  cursor: pointer;
  text-align: left;
  padding: 15px 17px;
  border-radius: 10px;
  transition: all .15s;
  font-family: var(--sans);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-soft);
}
.stage-tab.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.stage-tab .t-sn {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.stage-tab.active .t-sn { color: var(--gold-light); }
.stage-tab .t-ko {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  white-space: nowrap;
  color: var(--ink);
}
.stage-tab.active .t-ko { color: #fff; }
.stage-tab .t-en {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-top: 3px;
}
.stage-tab.active .t-en { color: var(--on-dark-sub2); }

.stage-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 28px 30px;
}
.stage-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.stage-sn {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.stage-ko { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -0.02em; white-space: nowrap; }
.stage-en {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stage-desc { font-size: 15px; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.65; }

.stage-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}
.stage-col { background: var(--card); padding: 16px 18px; }
.stage-col-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 9px;
}
.stage-col ul { margin: 0; padding-left: 16px; font-size: 13px; line-height: 1.55; color: var(--ink); }
.stage-col li { margin-bottom: 4px; }

.stage-gate {
  margin-top: 14px;
  border-radius: 8px;
  padding: 13px 17px;
  font-size: 13.5px;
  display: flex;
  gap: 12px;
  line-height: 1.55;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--ink-soft);
}
.stage-gate.loop { background: var(--ink); border-color: var(--ink); color: #E9E3EB; }
.stage-gate-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  flex: none;
  padding-top: 2px;
}
.stage-gate.loop .stage-gate-label { color: var(--gold-light); }

/* Package grid (§04) */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pkg-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 18px;
}
.pkg-badge {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.pkg-card h3 { font-size: 16px; margin: 4px 0 7px; font-weight: 700; }
.pkg-card p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Reuse mini-diagram (§05) */
.recycle-lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 760px;
  margin: 14px 0 28px;
}
.recycle-lead b { font-weight: 700; }
.flow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 13px;
}
.flow-chip {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
}
.flow-chip.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.flow-arrow { color: var(--gold); font-weight: 700; }
.recycle-note { font-size: 14px; color: var(--faint); margin-top: 18px; line-height: 1.6; }
.recycle-note b { color: var(--ink-soft); }

/* ==========================================================================
   COMPANY
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
}
.value-k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.founder-photo {
  width: 100%;
  max-width: 260px;
  height: auto;            /* preserve the photo's native aspect ratio (no crop/stretch) */
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  display: block;
}
/* Placeholder shown until a real photo is dropped in */
.founder-photo--placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 16px;
}
.team-name-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.team-name { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin: 0; white-space: nowrap; }
.team-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.team-bio { font-size: 16.5px; color: var(--ink-soft); line-height: 1.72; margin: 14px 0 18px; max-width: 620px; }

.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  max-width: 620px;
}
.callout-k {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.callout p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.inline-link {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color .15s;
}
.inline-link:hover { border-bottom-color: var(--gold); }

/* Adoption steps */
.steps {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}
.step {
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-badge {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.step-badge.last { background: var(--gold-deep); }
.step h4 { font-size: 16px; margin: 3px 0 5px; font-weight: 700; }
.step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 36px 32px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-top: 20px; }
.field-row + .field, .field:first-child { margin-top: 0; }
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.req { color: var(--gold); }

.input, .select, .textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--field);
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.5;
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--gold); outline: none; }
.input.error, .textarea.error { border: 1px solid var(--error-border); }
input::placeholder, textarea::placeholder { color: #B6ACB8; }

.field-error {
  color: var(--error-text);
  font-size: 12.5px;
  margin-top: 6px;
}
.field-error[hidden] { display: none; }

.submit-btn {
  margin-top: 28px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 16px;
  border-radius: 9px;
  cursor: pointer;
  letter-spacing: -0.01em;
  font-family: var(--sans);
  transition: background .15s;
}
.submit-btn:hover { background: var(--gold-deep); }
.submit-btn:disabled { opacity: .6; cursor: progress; }

.form-fineprint {
  font-size: 12px;
  color: var(--faint);
  margin: 14px 0 0;
  line-height: 1.5;
  text-align: center;
}

/* Success panel */
.form-success { text-align: center; padding: 28px 8px; }
.form-success[hidden] { display: none; }
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 30px;
  color: var(--gold-deep);
}
.form-success h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 12px; }
.form-success p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; max-width: 420px; margin: 0 auto 26px; }
.reset-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid var(--gold-soft);
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .15s, background .15s;
}
.reset-btn:hover { border-color: var(--gold); background: #FBF6EA; }

/* Contact sidebar */
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.aside-card.dark { background: var(--ink); color: var(--on-dark); border: none; padding: 28px 26px; }
.aside-card.tint { background: var(--gold-tint); border-color: var(--gold-soft); padding: 22px 24px; }
.aside-k {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.aside-card.dark .aside-k { color: var(--gold-light); margin-bottom: 18px; }
.aside-block { margin-bottom: 18px; }
.aside-block:last-child { margin-bottom: 0; }
.aside-block .k { font-size: 12px; color: var(--on-dark-sub2); margin-bottom: 4px; }
.aside-mail {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--on-dark);
  text-decoration: none;
  transition: color .15s;
}
.aside-mail:hover { color: var(--gold-light); }
.aside-block .v { font-size: 15px; color: var(--on-dark); }
.aside-card ul { margin: 0; padding-left: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.aside-card li { margin-bottom: 9px; }
.aside-card li:last-child { margin-bottom: 0; }
.aside-card.tint p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.aside-card.tint a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid #D8C79A;
  font-weight: 600;
  transition: border-color .15s;
}
.aside-card.tint a:hover { border-bottom-color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-deep); color: var(--faint); padding: 48px 0; margin-top: auto; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.footer-mark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #E9E3EB;
}
.footer-mark .accent { color: var(--gold); }
.footer-mission { font-size: 13px; color: var(--on-dark-faint); margin-top: 8px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link {
  font-size: 13px;
  color: var(--on-dark-sub2);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-legal {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6B5F70;
  text-align: right;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  :root { --pad: 22px; }

  .flagship .container { grid-template-columns: 1fr; gap: 40px; }
  .compare { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-photo { width: 100%; max-width: 320px; }
  .stage-cols { grid-template-columns: 1fr; }
  .stage-tab { flex: 1 1 100%; }

  .hero-dark .container { padding: 72px 22px 80px; }
  .hero-paper .container { padding: 64px 22px 56px; }
  .section .container { padding-top: 60px; padding-bottom: 60px; }
  .flagship .container { padding: 60px 22px; }

  /* Mobile nav: collapsible */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    color: var(--ink);
  }
  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links .nav-cta { text-align: center; margin-top: 12px; }
}

@media (max-width: 560px) {
  .bars { gap: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .footer-inner { flex-direction: column; }
  .footer-legal { text-align: left; }
}

/* ==========================================================================
   MOTION PREFERENCES — stop flywheel animations
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
