/* Shared chrome for sub-pages (contact / meeting / thanks) — inherits the LP design language */
:root {
  --bg: #f6f4f9;
  --bg-2: #ffffff;
  --bg-3: #eeeaf5;
  --border: #e5e0ef;
  --border-strong: #c8c0d8;
  --fg: #1a1a1a;
  --fg-muted: #54525a;
  --fg-dim: #8a8890;
  --accent: #6d3f8d;
  --accent-2: #59316f;
  --accent-soft: #ece2f4;
  --ok: #4a8a5e;
  --ink: #241b33;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic UI', system-ui, sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-en: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg); color: var(--fg);
  font-family: var(--font-jp);
  -webkit-font-smoothing: antialiased; line-height: 1.75; font-size: 15px;
}
a { color: inherit; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* Nav — must match LP's React Nav exactly */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: inherit;
  flex-shrink: 0;
}
.brand-logo { display: block; height: 40px; width: auto; }
.brand-logo-mark { display: none; }
.brand-logo-full { display: block; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--fg); flex: 1; justify-content: center; min-width: 0; }
.nav-links a { color: inherit; text-decoration: none; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform .15s ease, background .2s, border-color .2s, box-shadow .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 500;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow .line { width: 40px; height: 1px; background: var(--border-strong); }

/* Page header */
.page-head {
  padding: 88px 0 48px; border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-head-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.page-head h1 {
  font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 18px;
}
.page-head .crumb {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.page-head .crumb a { color: var(--fg-muted); text-decoration: none; }
.page-head .crumb a:hover { color: var(--accent); }

/* Page body */
.page-body { padding: 64px 0 96px; }
.page-body p { margin-bottom: 18px; color: var(--fg-muted); }
.page-body p.lede { font-size: 17px; color: var(--fg); line-height: 1.85; }

/* Two-column layout (info + form) */
.two-col {
  display: grid; grid-template-columns: 360px 1fr; gap: 64px;
  align-items: start;
}
.two-col-info h2 {
  font-family: var(--font-serif); font-size: 17px; font-weight: 500;
  line-height: 1.4; letter-spacing: -0.01em;
  margin-bottom: 16px; padding-left: 12px; border-left: 3px solid var(--accent);
}
.bullets { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--fg);
}
.bullets li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-top: 9px; flex-shrink: 0;
}

.notice {
  background: var(--bg-3); border-radius: var(--radius);
  padding: 16px 20px; font-size: 12px; color: var(--fg-muted);
  line-height: 1.7; margin-top: 24px;
}

/* HubSpot embed slot */
.embed-slot {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 480px;
}
.embed-slot.calendar { padding: 0; min-height: 720px; overflow: hidden; }

/* Thanks */
.thanks-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 64px;
  margin-top: 16px;
}
.thanks-card h2 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.thanks-card .lede { font-size: 16px; line-height: 1.9; margin-bottom: 32px; color: var(--fg); }
.thanks-list {
  list-style: none; border-top: 1px solid var(--border);
  margin: 24px 0;
}
.thanks-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--fg-muted);
  display: flex; align-items: flex-start; gap: 14px;
}
.thanks-list li::before {
  content: '·'; color: var(--accent); font-weight: 700;
  font-size: 18px; line-height: 1;
}
.thanks-section { margin-top: 40px; }
.thanks-section h2 {
  font-family: var(--font-serif); font-size: 17px; font-weight: 500;
  line-height: 1.4; letter-spacing: -0.01em;
  margin-bottom: 12px; padding-left: 12px; border-left: 3px solid var(--accent);
}
.back-cta { display: flex; justify-content: center; margin-top: 56px; }

/* Footer — match LP */
footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  color: var(--fg-dim); font-size: 12px;
  background: var(--bg);
}
.foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.foot-links { display: flex; gap: 28px; }
.foot-links a { color: inherit; text-decoration: none; }
.foot-links a:hover { color: var(--fg); }

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .embed-slot { padding: 24px; }
  .thanks-card { padding: 40px 28px; }
  .page-head { padding: 56px 0 32px; }
}

@media (max-width: 640px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .wrap, .wrap-narrow { padding-left: 20px; padding-right: 20px; }
  .brand-logo-full { display: none; }
  .brand-logo-mark { display: block; height: 36px; width: auto; }
  .nav-cta .btn-sm { padding: 13px 12px; font-size: 12px; }
  img:not(.brand-logo), svg, video { max-width: 100%; }
}
