:root {
  /* Brand colors */
  --brand-ink:        #0E2A4E;
  --brand-ink-deep:   #061A3A;
  --brand-ink-light:  #1E4480;
  --brand-ink-mist:   #5C7AA8;

  --accent-pin:       #DC624E;
  --accent-pin-soft:  #E07A66;
  --accent-amber:     #E8A87C;
  --accent-sage:      #6E8E7F;

  --surface-white:    #FFFFFF;
  --surface-cream:    #FAF7F0;
  --surface-deep:     #F4EFE3;
  --surface-tint:     #EEF2F8;

  --ink-1:            #0A1628;
  --ink-2:            #5A6478;
  --ink-3:            #8A92A3;
  --ink-4:            #B8BDC8;

  --border-fine:      #E8E4D8;
  --border-mid:       #D4CFC0;
  --border-cool:      #DCE2EC;

  /* Sanctioned subtle gradients */
  --grad-hero:    linear-gradient(180deg, #FAF7F0 0%, #FDFBF6 50%, #FFFFFF 100%);
  --grad-cta:     linear-gradient(135deg, #0E2A4E 0%, #1E4480 100%);
  --grad-glow:    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(94, 159, 217, 0.18) 0%, transparent 70%);
  --grad-warm:    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(220, 98, 78, 0.06) 0%, transparent 60%);

  --font-display: 'Fraunces', 'Noto Serif JP', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-rounded: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
  --font-jp-serif: 'Noto Serif JP', 'Fraunces', serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-1);
  background: var(--surface-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1, "pkna" 1;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ────── NAV ────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(232, 228, 216, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand-jp {
  font-family: var(--font-jp-serif);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  border-left: 1px solid var(--border-mid);
  padding-left: 12px;
  line-height: 1.2;
}
@media (max-width: 720px) {
  .brand-jp { display: none; }
  .brand-logo { height: 28px; }
}

/* ────── BUTTONS ────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 15px; }

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 20px -8px rgba(14, 42, 78, 0.55);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 28px -8px rgba(14, 42, 78, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-ink);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  background: var(--surface-white);
  border-color: var(--brand-ink);
}

.btn-cream {
  background: var(--surface-cream);
  color: var(--brand-ink);
}
.btn-cream:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.icon-arrow { width: 14px; height: 14px; flex-shrink: 0; }

/* ────── HERO ────── */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 144px 0 120px;
}

/* ヒーロー背景画像 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ヒーロー右側マップ画像 */
.hero-map-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow:
    0 30px 60px -30px rgba(14, 42, 78, 0.25),
    0 12px 24px -12px rgba(14, 42, 78, 0.12);
  display: block;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-warm);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14,42,78,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 112px 0 80px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  font-family: var(--font-sans);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-pin);
  box-shadow: 0 0 0 3px rgba(214, 100, 74, 0.18);
}

.hero h1 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--brand-ink);
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--accent-pin);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.hero h1 .underline {
  background-image: linear-gradient(to right, rgba(214,100,74,0.4), rgba(214,100,74,0.4));
  background-size: 100% 8px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.poc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--surface-white);
  border: 1px solid var(--accent-pin);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--brand-ink);
  box-shadow: 0 4px 16px -8px rgba(214, 100, 74, 0.25);
}
.poc-badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 100, 74, 0.12);
  flex-shrink: 0;
}
.poc-badge strong {
  color: var(--accent-pin);
  font-weight: 500;
  margin-right: 4px;
  font-family: var(--font-display);
  font-style: italic;
}

/* ────── HERO MAP MOCKUP ────── */
.map-card-wrap { position: relative; }
.map-card-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: var(--grad-glow);
  z-index: 0;
  pointer-events: none;
}
.map-card {
  position: relative;
  background: var(--surface-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-fine);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -30px rgba(14, 42, 78, 0.25),
    0 12px 24px -12px rgba(14, 42, 78, 0.12);
  overflow: hidden;
  z-index: 1;
}
.map-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-fine);
  background: var(--surface-cream);
}
.map-search {
  flex: 1;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-chips {
  display: flex;
  gap: 6px;
  padding: 12px 16px 8px;
  overflow-x: auto;
  background: var(--surface-white);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--surface-cream);
  border: 1px solid var(--border-fine);
  color: var(--ink-2);
  white-space: nowrap;
  cursor: pointer;
  transition: all 150ms ease;
}
.chip:hover { border-color: var(--brand-ink); }
.chip.active {
  background: var(--brand-ink);
  color: #fff;
  border-color: var(--brand-ink);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-pin); }

.map-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #F0EDE3;
  overflow: hidden;
}
.pin-popup {
  position: absolute;
  left: 52%;
  top: 38%;
  width: 200px;
  background: var(--surface-white);
  border-radius: var(--r-md);
  border: 1px solid var(--border-fine);
  box-shadow: 0 10px 30px -10px rgba(14, 42, 78, 0.25);
  padding: 12px;
  z-index: 5;
  transform: translate(-50%, -110%);
}
.pin-popup::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--surface-white);
  border-right: 1px solid var(--border-fine);
  border-bottom: 1px solid var(--border-fine);
}
.pp-cat {
  font-size: 10px;
  color: var(--accent-pin);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 4px;
}
.pp-title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-ink);
  margin-bottom: 6px;
}
.pp-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--ink-3);
  align-items: center;
}
.pp-rating { color: var(--accent-amber); }

/* ────── SECTIONS ────── */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--accent-pin);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--brand-ink);
  letter-spacing: -0.005em;
  margin-bottom: 20px;
  max-width: 720px;
}
h2 .accent {
  color: var(--accent-pin);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.85;
}
.section-head { margin-bottom: 64px; }

/* ────── PROBLEM ────── */
.problem-section { background: var(--surface-cream); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 36px 32px;
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  border-radius: var(--r-lg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(14, 42, 78, 0.15);
}
.problem-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--accent-pin);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.problem-card h3 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--brand-ink);
  line-height: 1.5;
  margin-bottom: 14px;
}
.problem-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.85;
}

/* ────── WHAT IS ────── */
.what-section { background: var(--surface-white); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .what-grid { grid-template-columns: 1fr; gap: 48px; }
}

.what-text h2 { margin-bottom: 24px; }
.what-text p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.what-bullet-list {
  list-style: none;
  margin-top: 24px;
}
.what-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-1);
  line-height: 1.65;
}
.what-bullet-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent-sage);
}

/* What is セクション左画像 */
.what-visual {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-fine);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.what-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

/* ────── HOW IT WORKS ────── */
.flow-section { background: var(--surface-tint); }

.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 920px) {
  .flow-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; }
}

.flow-step {
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
}

.flow-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--accent-pin);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 42, 78, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--brand-ink);
}

.flow-step h4 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-ink);
  margin-bottom: 8px;
  line-height: 1.4;
}

.flow-step p {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--brand-ink-mist);
  flex-shrink: 0;
}

/* ────── PLAN ROWS ────── */
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-fine);
  gap: 8px;
}
.plan-label {
  font-size: 13px;
  color: var(--brand-ink);
  font-weight: 500;
}
.plan-rooms {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 4px;
}
.plan-price {
  font-size: 13px;
  color: var(--accent-pin);
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-display);
}

/* ────── MERIT (TABS) ────── */
.merit-section { background: var(--surface-cream); }

.tab-nav {
  display: inline-flex;
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 200ms ease;
  font-family: var(--font-sans);
}
.tab-btn.active {
  background: var(--brand-ink);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .tab-content.active { grid-template-columns: 1fr; }
}

.merit-card {
  padding: 28px 28px;
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  border-radius: var(--r-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.merit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--surface-cream);
  border: 1px solid var(--border-fine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-pin);
}
.merit-card h4 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-ink);
  margin-bottom: 6px;
}
.merit-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* ────── POC SECTION ────── */
.poc-section { background: var(--surface-white); }

.poc-card {
  background: var(--brand-ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.poc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(214,100,74,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 20% 50%, rgba(94,159,217,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.poc-card-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .poc-card { padding: 40px 28px; }
  .poc-card-inner { grid-template-columns: 1fr; gap: 32px; }
}
.poc-card .section-eyebrow { color: var(--accent-amber); }
.poc-card h2 { color: #fff; margin-bottom: 16px; }
.poc-card-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 15.5px;
  line-height: 1.85;
}
.poc-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.poc-spec {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 20px 22px;
}
.poc-spec .spec-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--accent-amber);
  margin-bottom: 6px;
}
.poc-spec .spec-value {
  font-family: var(--font-jp-serif);
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.poc-spec .spec-detail {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ────── PRICING ────── */
.pricing-section { background: var(--surface-cream); }

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-grid .price-card {
  width: 100%;
  max-width: 440px;
}
@media (max-width: 720px) { .pricing-grid { flex-direction: column; align-items: center; } }

.price-card {
  background: var(--surface-white);
  border: 1px solid var(--border-fine);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card.featured {
  border: 2px solid var(--accent-pin);
  box-shadow: 0 30px 60px -30px rgba(214, 100, 74, 0.25);
}
.price-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--accent-pin);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.price-tier {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-pin);
  margin-bottom: 8px;
}
.price-card h3 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--brand-ink);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
}
.price-suffix {
  font-size: 14px;
  color: var(--ink-3);
  margin-left: 4px;
}
.price-divider {
  height: 1px;
  background: var(--border-fine);
  margin: 24px 0;
}
.price-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(220, 98, 78, 0.06);
  border: 1px dashed var(--accent-pin);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--brand-ink);
}
.price-addon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-pin);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--font-rounded);
}
.price-addon-text strong {
  font-weight: 600;
  color: var(--accent-pin);
  margin-right: 4px;
}
.price-note {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: -8px 0 20px;
  padding: 0 2px;
}
.price-list {
  list-style: none;
  margin-bottom: 28px;
}
.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.price-feat svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent-sage);
}

/* ────── CONTACT FORM ────── */
.contact-section {
  background: var(--surface-white);
}
.contact-section .section-head { text-align: center; margin: 0 auto 56px; }
.contact-section .section-eyebrow,
.contact-section h2,
.contact-section .section-lede { margin-left: auto; margin-right: auto; }

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-cream);
  border: 1px solid var(--border-fine);
  border-radius: var(--r-xl);
  padding: 48px 48px;
}
@media (max-width: 720px) { .form-wrap { padding: 32px 24px; } }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-ink);
  margin-bottom: 8px;
}
.form-group label span {
  color: var(--accent-pin);
  margin-left: 4px;
}
.form-control {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  background: var(--surface-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink-1);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--brand-ink);
  box-shadow: 0 0 0 3px rgba(14, 42, 78, 0.08);
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238A92A3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
textarea.form-control {
  min-height: 120px;
  padding: 14px 16px;
  line-height: 1.7;
  resize: vertical;
  height: auto;
}
.form-note {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(110, 142, 127, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sage);
}
.form-success h3 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--brand-ink);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--ink-2);
  line-height: 1.85;
}

/* ────── FOOTER ────── */
footer {
  background: var(--surface-cream);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border-fine);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.foot-tagline {
  font-family: var(--font-jp-serif);
  color: var(--ink-2);
  font-size: 13px;
  max-width: 280px;
  line-height: 1.85;
  margin-top: 12px;
}
.foot-company {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 8px;
}
.foot-copy {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 32px;
  text-align: center;
  border-top: 1px solid var(--border-fine);
  padding-top: 24px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
