/* ============================================================
   홍천한우애 부지 — 랜딩페이지 스타일시트 (LIGHT / 화사한 톤)
   밝은 크림·세이지·웜 톤 + 딥 그린 & 골드 / 스크롤 배경 전환
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:        oklch(0.985 0.008 95);
  --surface:   #ffffff;
  --surface-2: oklch(0.975 0.012 95);
  --panel:     oklch(1 0 0 / 0.55);
  --line:      oklch(0.45 0.03 150 / 0.16);
  --line-soft: oklch(0.45 0.03 150 / 0.09);

  --text:   oklch(0.30 0.035 165);
  --muted:  oklch(0.46 0.03 158);
  --faint:  oklch(0.58 0.025 155);

  --green:      oklch(0.50 0.115 158);
  --green-deep: oklch(0.40 0.10 160);
  --green-ink:  oklch(0.36 0.085 162);
  --green-bg:   oklch(0.93 0.045 158);

  --gold:      oklch(0.80 0.125 82);   /* bright fill */
  --gold-ink:  oklch(0.56 0.115 66);   /* readable text on light */
  --gold-bg:   oklch(0.93 0.055 84);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ff-kr: 'Pretendard Variable', 'Pretendard', system-ui, sans-serif;
  --ff-en: 'Space Grotesk', 'Pretendard', sans-serif;

  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 18px 44px -26px oklch(0.40 0.05 160 / 0.35);
  --shadow-sm: 0 8px 22px -16px oklch(0.40 0.05 160 / 0.40);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-kr);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: -0.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; touch-action: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: #fff; }

/* Fixed scroll-reactive background layer */
#bgfx {
  position: fixed; inset: 0; z-index: -2;
  background: var(--bg);
  transition: background-color .25s linear;
}
#bgfx::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 8%, oklch(0.85 0.07 82 / 0.18), transparent 60%),
    radial-gradient(55% 45% at 5% 95%, oklch(0.80 0.07 160 / 0.16), transparent 60%);
}

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

section.block {
  padding-block: clamp(64px, 9vw, 130px);
  position: relative;
}
section.alt {
  background: var(--panel);
  backdrop-filter: blur(3px);
  border-block: 1px solid var(--line-soft);
}

/* Section eyebrow: 01 / THE ASSET */
.eyebrow {
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.eyebrow .num {
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
}
.eyebrow .bar {
  width: 30px; height: 2px;
  background: var(--gold);
  display: inline-block;
  flex: none;
}

/* Headlines */
.h-sec {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 22ch;
  color: var(--green-ink);
}
.h-sec .gold { color: var(--gold-ink); }
.h-sec .green { color: var(--green); }

.lead {
  margin-top: 26px;
  font-size: clamp(16px, 1.5vw, 18.5px);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.75;
}
.lead strong { color: var(--text); font-weight: 700; }

.mono-num { font-family: var(--ff-en); font-variant-numeric: tabular-nums; }
.note { font-size: 13px; line-height: 1.65; color: var(--faint); }

/* ---------- Top bar (always solid, high-contrast) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.985 0.008 95 / 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -22px oklch(0.4 0.05 160 / 0.55);
  transition: box-shadow .3s, border-color .3s;
}
.topbar .wrap { height: 72px; display: flex; align-items: center; gap: 16px; }
.brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
  color: var(--green-ink); white-space: nowrap;
  min-width: 0; flex: 0 1 auto;
}
.brand .mark { width: 10px; height: 10px; border-radius: 3px; background: var(--gold); box-shadow: 0 0 0 4px oklch(0.80 0.125 82 / 0.22); flex: none; }
.brand .brand-logo { height: 44px; width: auto; display: block; flex: none; }
.brand .bname { font-weight: 700; font-size: 14.5px; }
.brand .bsep { opacity: 0.32; font-weight: 400; flex: none; }
.brand .bsub { font-weight: 600; font-size: 13px; opacity: 0.72; flex: none; }
.brand .sep { opacity: 0.4; font-weight: 400; }
.brand .tag { font-family: var(--ff-en); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; opacity: 0.65; }
.topbar .phone {
  margin-left: auto; white-space: nowrap; flex: none;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-en); font-weight: 700; font-size: 17px;
  font-variant-numeric: tabular-nums; letter-spacing: 0.01em;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent;
  color: #fff; background: var(--green-deep);
  box-shadow: 0 8px 20px -12px oklch(0.40 0.10 160 / 0.7);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.topbar .phone .ico { color: var(--gold); font-size: 15px; }
.topbar .phone .lbl { font-family: var(--ff-kr); font-weight: 700; font-size: 14px; opacity: 0.9; }
.topbar .phone:hover { background: var(--green-ink); box-shadow: 0 10px 24px -12px oklch(0.40 0.10 160 / 0.85); }
.topbar .phone:active { transform: translateY(1px); }

@media (max-width: 760px) {
  .brand .bsep, .brand .bsub, .brand .tag, .brand .sep { display: none; }
  .brand { overflow: hidden; }
  .brand .bname { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
}
@media (max-width: 600px) {
  .topbar .phone span.lbl { display: none; }
  .topbar .wrap { padding-inline: 16px; gap: 10px; }
  .brand { font-size: 15px; gap: 8px; }
  .brand .brand-logo { height: 38px; }
  .topbar .phone { font-size: 15px; padding: 10px 15px; gap: 7px; }
  .topbar .phone .ico { font-size: 14px; }
}

/* ---------- Buttons ---------- */
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-kr); font-weight: 700; font-size: 15.5px;
  padding: 15px 26px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold); color: oklch(0.32 0.07 70);
  box-shadow: 0 10px 26px -12px oklch(0.80 0.125 82 / 0.85);
}
.btn-gold:hover { background: oklch(0.84 0.13 84); box-shadow: 0 14px 30px -12px oklch(0.80 0.125 82 / 0.95); }
.btn-ghost {
  background: transparent; color: var(--green-ink);
  border-color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-bg); border-color: var(--green); }
.btn .arr { font-family: var(--ff-en); }

/* ---------- Badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 9px; }
.badge {
  font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.badge.hot { border-color: var(--gold); color: var(--gold-ink); background: var(--gold-bg); }
.badge.hot .dot { background: var(--gold-ink); }

/* ---------- Hero (two-column: left message / right photo) ---------- */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  padding-block: clamp(64px, 7vh, 96px) clamp(72px, 9vh, 104px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #061512; }
.hero-bg img, .hero-bg image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 0; object-fit: cover; }
/* image lives on the RIGHT — building exterior, signs, lighting */
.hero-img { filter: brightness(0.74) saturate(0.92) contrast(1.02); object-position: 70% center; }
/* Left half: deep calm dark panel that hides the white signboard behind the headline,
   fading smoothly into the photo on the right (no hard split). */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      #061512 0%,
      #071A15 40%,
      rgba(7, 26, 21, 0.95) 54%,
      rgba(7, 26, 21, 0.66) 70%,
      rgba(7, 26, 21, 0.26) 86%,
      rgba(7, 26, 21, 0.06) 100%),
    linear-gradient(180deg, rgba(6,21,18,0.34) 0%, transparent 24%, transparent 66%, rgba(6,21,18,0.62) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
@media (max-height: 680px) { .hero-inner { transform: none; } }
.hero-copy { max-width: 680px; }
@media (min-width: 1320px) { .hero-copy { max-width: 720px; } }
.hero .eyebrow { color: oklch(0.92 0.04 90); margin-bottom: 20px; }
.hero .eyebrow .num { color: var(--gold); }
.hero .eyebrow .bar { background: var(--gold); }
.hero h1.hero-h1 {
  font-size: clamp(33px, 8.4vw, 54px);
  max-width: 720px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: pretty;
  color: #F5F3EC;
  margin: 0;
}
.hero h1.hero-h1 .ht-main { padding-bottom: 0.06em; }
.hb-mobile { display: none; }
.hero h1.hero-h1 .ht-sub {
  display: block;
  font-size: 0.82em;
  font-weight: 700;
  color: rgba(245, 243, 236, 0.82);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hero h1.hero-h1 .ht-main {
  display: block;
  font-weight: 800;
  color: #F5F3EC;
}
.hero h1.hero-h1 .ht-accent { color: #E8B64B; white-space: nowrap; }
.hero .sub { margin-top: 26px; }
@media (max-width: 760px) {
  .hero h1.hero-h1 { line-height: 1.14; letter-spacing: -0.03em; }
  .hero h1.hero-h1 .ht-sub { font-size: 0.9em; }
  .hb-mobile { display: inline; }
  .hb-desk { display: none; }
  /* Phone: same intent as desktop — message first on a solid deep panel,
     photo recedes to a calm glow at the BOTTOM (never behind the headline). */
  .hero {
    min-height: min(88vh, 740px);
    align-items: flex-start;
    padding-block: clamp(40px, 7vh, 72px) 0;
  }
  .hero-img { object-position: 64% 78%; filter: brightness(0.6) saturate(0.95) contrast(1.02); }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        #061512 0%,
        #071A15 42%,
        rgba(7, 26, 21, 0.86) 58%,
        rgba(7, 26, 21, 0.52) 78%,
        rgba(7, 26, 21, 0.34) 100%);
  }
  .hero-copy { max-width: 100%; }
  .hero .sub { max-width: 100%; }
}
@media (max-width: 980px) and (min-width: 761px) {
  /* tablet: shift the dark panel a touch wider (≈55/45) */
  .hero-scrim {
    background:
      linear-gradient(90deg,
        #061512 0%, #071A15 46%,
        rgba(7,26,21,0.95) 60%, rgba(7,26,21,0.62) 76%,
        rgba(7,26,21,0.22) 90%, rgba(7,26,21,0.05) 100%),
      linear-gradient(180deg, rgba(6,21,18,0.34) 0%, transparent 24%, transparent 66%, rgba(6,21,18,0.62) 100%);
  }
}
.hero .sub {
  margin-top: 22px; font-size: clamp(15.5px, 1.5vw, 18px);
  color: oklch(0.93 0.012 95); max-width: 50ch; line-height: 1.7;
}
.hero .sub strong { color: #fff; font-weight: 700; }
.hero .badges { margin-top: 22px; }
.hero .badge {
  background: oklch(1 0 0 / 0.10); border-color: oklch(1 0 0 / 0.22);
  color: #F5F3EC; backdrop-filter: blur(6px);
}
.hero .badge .dot { background: var(--gold); }
.hero .badge.hot { background: var(--gold); color: oklch(0.32 0.07 70); border-color: transparent; }
.hero .badge.hot .dot { background: oklch(0.32 0.07 70); }
.hero .btns { margin-top: 32px; }
.hero .btn-ghost { color: #fff; border-color: oklch(1 0 0 / 0.55); background: oklch(1 0 0 / 0.08); }
.hero .btn-ghost:hover { background: oklch(1 0 0 / 0.18); border-color: #fff; }
.hero .hero-phone {
  margin-top: 18px; font-size: 14.5px; color: oklch(0.9 0.015 95);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero .hero-phone b {
  font-family: var(--ff-en); font-weight: 600; font-variant-numeric: tabular-nums;
  color: #fff; letter-spacing: 0.01em;
}

/* ---------- Spec table ---------- */
.spec {
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.spec .row { display: grid; grid-template-columns: 200px 1fr; border-top: 1px solid var(--line-soft); }
.spec .row:first-child { border-top: 0; }
.spec .k {
  padding: 17px 24px;
  font-family: var(--ff-en); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: var(--green-bg);
  border-right: 1px solid var(--line-soft);
  display: flex; align-items: center;
}
.spec .v { padding: 17px 24px; font-size: 15.5px; color: var(--text); display: flex; align-items: center; }
.spec .v .em { color: var(--gold-ink); font-weight: 700; }
@media (max-width: 620px) {
  .spec .row { grid-template-columns: 1fr; }
  .spec .k { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-block: 12px; }
}

/* asset 2-col */
.asset-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

/* opportunity: cooperation chips + sub-section titles */
.h-sec .nb { white-space: nowrap; }
.kicker {
  font-family: var(--ff-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  margin-bottom: 13px;
}
.coop { margin-top: 32px; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  font-size: 14px; font-weight: 600; color: var(--green-ink);
  padding: 8px 14px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--line-soft);
}
.opt.accent { background: var(--gold-bg); border-color: oklch(0.80 0.125 82 / 0.40); color: var(--gold-ink); }
.coop-note { margin-top: 13px; font-size: 13px; color: var(--faint); line-height: 1.6; }
.spec-block { margin-top: 30px; }
.spec-block .spec { margin-top: 13px; }

.asset-media { aspect-ratio: 5/6; position: relative; }
.asset-media image-slot, .asset-media img.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); }
.asset-media .cap { position: absolute; left: 14px; bottom: 14px; font-family: var(--ff-en); font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; background: oklch(0.25 0.03 160 / 0.62); backdrop-filter: blur(4px); padding: 6px 11px; border-radius: 6px; }
@media (max-width: 880px) { .asset-grid { grid-template-columns: 1fr; } .asset-media { aspect-ratio: 16/10; } }

/* ---------- Card grid ---------- */
.cards { display: grid; gap: 18px; margin-top: 52px; }
.cards.c4 { grid-template-columns: repeat(2, 1fr); }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .cards.c4, .cards.c3, .cards.c2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 2.4vw, 34px);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.card .idx { font-family: var(--ff-en); font-size: 13px; font-weight: 700; color: var(--gold-ink); font-variant-numeric: tabular-nums; letter-spacing: 0.05em; }
.card .ctitle { margin-top: 12px; font-size: 19.5px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; color: var(--green-ink); }
.card .ctitle .unit { color: var(--gold-ink); }
.card .cbody { margin-top: 13px; font-size: 14.8px; color: var(--muted); line-height: 1.72; }
.card .cbody .em { color: var(--text); font-weight: 700; }
.card .cnote { margin-top: 14px; font-size: 12.5px; color: var(--faint); line-height: 1.6; }

/* ---------- Metric row ---------- */
.metrics {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.metrics .m { padding: 32px 26px; border-left: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 8px; }
.metrics .m:first-child { border-left: 0; }
.metrics .m .mlabel { font-size: 13.5px; color: var(--muted); }
.metrics .m .mval { font-family: var(--ff-en); font-weight: 700; font-size: clamp(28px, 3.4vw, 42px); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; color: var(--green); line-height: 1; }
.metrics .m .mval .u { font-size: 0.42em; color: var(--muted); margin-left: 4px; font-weight: 500; letter-spacing: 0; }
@media (max-width: 760px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics .m:nth-child(odd) { border-left: 0; }
  .metrics .m:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}

/* big stat trio */
.stat-trio { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 2.6vw, 38px); box-shadow: var(--shadow-sm); }
.stat .sv { font-family: var(--ff-en); font-weight: 700; font-size: clamp(40px, 5.5vw, 66px); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; line-height: 0.95; color: var(--gold-ink); }
.stat .sv .u { font-size: 0.34em; color: var(--muted); font-weight: 500; margin-left: 3px; letter-spacing: 0; }
.stat .sl { margin-top: 16px; font-size: 14.8px; color: var(--muted); line-height: 1.6; }
@media (max-width: 760px) { .stat-trio { grid-template-columns: 1fr; } }

/* metric bars */
.bars { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.bars .bar { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 18px; padding: 16px 22px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--shadow-sm); }
.bars .bv { font-family: var(--ff-en); font-weight: 700; font-size: 24px; font-variant-numeric: tabular-nums; color: var(--gold-ink); }
.bars .bl { font-size: 14.5px; color: var(--muted); }
.bars .btrack { height: 7px; border-radius: 999px; background: var(--green-bg); overflow: hidden; }
.bars .bfill { height: 100%; background: linear-gradient(90deg, var(--green-deep), var(--green)); border-radius: 999px; }
@media (max-width: 620px) { .bars .bar { grid-template-columns: 110px 1fr; } .bars .btrack { grid-column: 1 / -1; } }

/* ---------- Scenario image cards ---------- */
.scen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.scen .scard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: border-color .25s, transform .25s, box-shadow .25s; }
.scen .scard:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.scen .scard .simg { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.scen .scard .simg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.scen .scard:hover .simg img { transform: scale(1.04); }
.scen .scard .stag { position: absolute; left: 14px; top: 14px; z-index: 2; font-family: var(--ff-en); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: oklch(0.25 0.03 160 / 0.6); backdrop-filter: blur(5px); padding: 6px 11px; border-radius: 7px; }
.scen .scard .sbody { padding: clamp(22px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 12px; }
.scen .scard .sidx { font-family: var(--ff-en); font-weight: 700; font-size: 13px; color: var(--gold-ink); }
.scen .scard .stitle { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; color: var(--green-ink); }
.scen .scard .stext { font-size: 14.8px; color: var(--muted); line-height: 1.72; }
@media (max-width: 820px) { .scen { grid-template-columns: 1fr; } }

/* ---------- Map feature ---------- */
.mapwrap { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); position: relative; box-shadow: var(--shadow); }
.mapwrap img { width: 100%; height: auto; display: block; }
.mapcap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 16px 22px; border-top: 1px solid var(--line-soft); font-size: 13.5px; color: var(--muted); background: var(--surface); }
.mapcap .pin { color: var(--gold-ink); }
.mapcap .addr { font-weight: 700; color: var(--green-ink); }

/* ---------- Pull quote ---------- */
.pull {
  margin-top: 46px;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 26px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700; line-height: 1.5; letter-spacing: -0.02em;
  color: var(--green-ink); max-width: 52ch; text-wrap: balance;
}
.pull.small { font-size: clamp(15px, 1.6vw, 17px); font-weight: 500; color: var(--muted); border-color: var(--green); }

/* ---------- For whom ---------- */
.whom .card .ctitle { font-size: 20px; }
.whom .card .role { font-family: var(--ff-en); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }

/* ---------- Site visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.checklist { display: flex; flex-direction: column; gap: 2px; }
.checklist li { list-style: none; display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--line-soft); font-size: 16px; color: var(--text); }
.checklist li:first-child { border-top: 0; }
.checklist .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 13px; margin-top: 1px; }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { margin-top: 44px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 48px 24px 0; position: relative; font-size: 17.5px; font-weight: 700; letter-spacing: -0.02em; color: var(--green-ink); display: flex; gap: 14px; align-items: baseline; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-ink); }
.faq summary .q { font-family: var(--ff-en); color: var(--green); font-size: 14px; font-weight: 700; flex: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-family: var(--ff-en); font-size: 22px; font-weight: 400; color: var(--faint); transition: transform .25s, color .2s; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--gold-ink); }
.faq .a { padding: 0 48px 26px 38px; font-size: 15.3px; color: var(--muted); line-height: 1.75; max-width: 70ch; }

/* ---------- Final CTA (deep green band) ---------- */
.final { position: relative; overflow: hidden; text-align: center; color: #fff; background: linear-gradient(165deg, oklch(0.40 0.085 162) 0%, oklch(0.30 0.07 165) 100%); border: 0; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 80% at 50% 0%, oklch(0.80 0.10 84 / 0.18), transparent 60%); pointer-events: none; }
.final .wrap { position: relative; }
.final-logo { height: 72px; width: auto; display: block; margin: 0 auto 28px; opacity: 0.96; }
@media (max-width: 600px) { .final-logo { height: 58px; margin-bottom: 22px; } }
.final h2 { font-size: clamp(28px, 4.4vw, 54px); font-weight: 800; line-height: 1.18; letter-spacing: -0.03em; text-wrap: balance; max-width: 20ch; margin: 0 auto; color: #fff; }
.final h2 .gold { color: var(--gold); }
.final .summary-line { margin-top: 26px; font-size: 15px; color: oklch(0.92 0.025 150); letter-spacing: 0.01em; display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: center; }
.final .summary-line .dotsep { color: var(--gold); }
.final .subline { margin-top: 14px; font-size: 16px; color: #fff; }
.final .bignum { margin-top: 40px; font-family: var(--ff-en); font-weight: 700; font-variant-numeric: tabular-nums; font-size: clamp(40px, 7vw, 84px); letter-spacing: -0.02em; color: var(--gold); line-height: 1; }
.final .bignum a { display: inline-flex; align-items: center; gap: 16px; }
.final .btns { margin-top: 34px; justify-content: center; }
.final .btn-ghost { color: #fff; border-color: oklch(1 0 0 / 0.5); }
.final .btn-ghost:hover { background: oklch(1 0 0 / 0.14); border-color: #fff; }

/* ---------- Footer ---------- */
footer { padding-block: 54px 130px; background: oklch(0.26 0.05 165); color: oklch(0.9 0.02 150); }
.footer-brand { display: inline-flex; flex: none; }
.footer-logo { height: 72px; width: auto; display: block; }
footer .frow { display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; }
footer .brand { font-size: 16px; color: #fff; }
footer .brand .mark { box-shadow: 0 0 0 4px oklch(0.80 0.125 82 / 0.22); }
footer .fmeta { font-size: 14px; color: oklch(0.85 0.02 150); display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer .fmeta .em { color: var(--gold); font-family: var(--ff-en); font-variant-numeric: tabular-nums; font-weight: 600; }
footer .disclaimer { margin-top: 30px; padding-top: 26px; border-top: 1px solid oklch(1 0 0 / 0.12); font-size: 12.5px; line-height: 1.85; color: oklch(0.78 0.02 150); max-width: 90ch; }

/* ---------- Fixed CTA (desktop) ---------- */
.dock { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s; }
.dock.show { opacity: 1; transform: none; pointer-events: auto; }
.dock a { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 14.5px; box-shadow: 0 14px 30px -14px oklch(0.4 0.05 160 / 0.6); transition: transform .15s; }
.dock a:active { transform: translateY(1px); }
.dock .d-call { background: var(--gold); color: oklch(0.32 0.07 70); }
.dock .d-visit { background: var(--surface); color: var(--green-ink); border: 1px solid var(--line); }
.dock a .ico { font-size: 15px; }
@media (max-width: 760px) { .dock { display: none; } }

/* ---------- Fixed CTA (mobile bottom bar) ---------- */
.mobar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: oklch(0.99 0.006 95 / 0.95); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.mobar a { flex: 1; text-align: center; padding: 15px; border-radius: 12px; font-weight: 700; font-size: 15.5px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.mobar .m-call { background: var(--gold); color: oklch(0.32 0.07 70); }
.mobar .m-ask { background: var(--surface); color: var(--green-ink); border: 1px solid var(--green-deep); }
@media (max-width: 760px) { .mobar { display: flex; } body { padding-bottom: 92px; } }

/* ---------- Reveal / dynamic page-turn (flip-rise) ---------- */
/* Opacity stays 1 (content always present for print/export); motion is transform-only. */
.reveal { transform: perspective(1300px) translateY(38px) rotateX(9deg) scale(.97); transform-origin: 50% 100%; transition: transform .8s cubic-bezier(.16,.84,.28,1); will-change: transform; backface-visibility: hidden; }
.reveal.in { transform: none; }

/* staggered children (grids) */
.stagger > * { transform: perspective(1100px) translateY(34px) rotateX(8deg) scale(.97); transform-origin: 50% 100%; transition: transform .75s cubic-bezier(.16,.84,.28,1); will-change: transform; backface-visibility: hidden; }
.stagger.in > * { transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .07s; }
.stagger.in > *:nth-child(3) { transition-delay: .14s; }
.stagger.in > *:nth-child(4) { transition-delay: .21s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
@media print {
  .reveal, .stagger > * { transform: none !important; }
}
