/* =========================================================
   株式会社エスエムディシー (SMDC) コーポレートサイト
   共通スタイル
   ========================================================= */

:root {
  /* Brand palette — 信頼感・堅実 (navy + gold) */
  --navy-900: #0d1b33;
  --navy-800: #14264a;
  --navy-700: #1d3560;
  --navy-600: #2a4980;
  --gold: #b8935a;
  --gold-dark: #96773f;
  --ink: #1c2431;
  --slate: #4a5568;
  --slate-light: #6b7787;
  --line: #e2e6ec;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-navy-soft: #eef1f6;
  --white: #ffffff;

  --maxw: 1160px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(13, 27, 51, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 27, 51, 0.10);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    "YuMincho", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.4; font-weight: 700; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  color: var(--navy-800);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 720px;
}

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

section { padding: 96px 0; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.12em;
}
.brand-sub {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--slate-light);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  margin-left: 14px;
  padding: 11px 24px !important;
  background: var(--navy-800);
  color: #fff !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--navy-700); }
.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--navy-800);
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(9,18,36,0.92) 0%, rgba(13,27,51,0.72) 48%, rgba(13,27,51,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  line-height: 1.42;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero p.hero-lead {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 2;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page banner (sub pages) ---------- */
.page-banner {
  position: relative;
  padding: 92px 0 76px;
  color: #fff;
  background: var(--navy-800);
  overflow: hidden;
}
.page-banner .banner-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.page-banner .banner-bg svg { width: 100%; height: 100%; }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,27,51,0.94), rgba(20,38,74,0.72));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .en { font-size: 0.82rem; letter-spacing: 0.34em; color: var(--gold); font-weight: 700; }
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.08em;
  margin-top: 14px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.breadcrumb ol {
  display: flex; gap: 10px; list-style: none;
  padding: 16px 0; font-size: 0.82rem; color: var(--slate-light);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb li::after { content: "›"; margin-left: 10px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }

/* ---------- Business cards (home) ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.biz-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-800); }
.biz-card .thumb svg { width: 100%; height: 100%; }
.biz-card .body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.biz-card .num { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold-dark); font-weight: 700; }
.biz-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; color: var(--navy-800);
  margin: 8px 0 14px; letter-spacing: 0.05em;
}
.biz-card p { color: var(--slate); font-size: 0.95rem; flex: 1; }
.biz-card .link {
  margin-top: 22px; font-size: 0.9rem; font-weight: 700;
  color: var(--gold-dark); display: inline-flex; align-items: center; gap: 8px;
}
.biz-card:hover .link .arrow { transform: translateX(4px); }

/* ---------- Feature / strengths ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feat-item { text-align: center; }
.feat-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--bg-navy-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
}
.feat-item h3 { font-size: 1.15rem; color: var(--navy-800); margin-bottom: 12px; }
.feat-item p { color: var(--slate); font-size: 0.94rem; }

/* ---------- Stats band ---------- */
.stats {
  background: var(--navy-800);
  color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat .num small { font-size: 1.1rem; margin-left: 4px; }
.stat .label { margin-top: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.78); letter-spacing: 0.08em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  background: var(--navy-900);
  overflow: hidden;
}
.cta-band .cta-bg { position: absolute; inset: 0; opacity: 0.35; z-index: 0; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: 0.06em; margin-bottom: 18px;
}
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 34px; }

/* ---------- Service detail blocks ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-block + .svc-block { margin-top: 96px; }
.svc-block.rev .svc-visual { order: 2; }
.svc-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--navy-800); }
.svc-visual svg { width: 100%; height: 100%; }
.svc-content .num {
  font-family: var(--font-serif);
  font-size: 3rem; color: var(--bg-navy-soft);
  line-height: 1; font-weight: 700;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}
.svc-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-800); margin: 10px 0 8px; letter-spacing: 0.05em;
}
.svc-content .sub { color: var(--gold-dark); font-weight: 700; letter-spacing: 0.14em; font-size: 0.85rem; margin-bottom: 22px; }
.svc-content p { color: var(--slate); margin-bottom: 20px; }
.svc-list { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.svc-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink);
}
.svc-list li::before {
  content: "";
  flex-shrink: 0; margin-top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}

/* ---------- Company table ---------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  text-align: left; padding: 20px 16px; border-bottom: 1px solid var(--line);
  vertical-align: top; font-size: 0.96rem;
}
.info-table th {
  width: 210px; color: var(--navy-800); font-weight: 700;
  background: var(--bg-soft);
}
.info-table td { color: var(--slate); }

/* ---------- Message / greeting ---------- */
.message-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.message-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; background: var(--navy-800); }
.message-photo svg { width: 100%; height: 100%; }
.message-body h2 { font-family: var(--font-serif); font-size: 1.7rem; color: var(--navy-800); line-height: 1.6; margin-bottom: 24px; letter-spacing: 0.04em; }
.message-body p { color: var(--slate); margin-bottom: 18px; }
.message-sign { margin-top: 30px; font-size: 0.9rem; color: var(--slate-light); }
.message-sign strong { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-800); display: block; margin-top: 6px; letter-spacing: 0.1em; }

/* ---------- Access / map ---------- */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 340px; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.access-info { padding: 8px 0; }
.access-info h3 { font-size: 1.2rem; color: var(--navy-800); margin-bottom: 16px; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 700; color: var(--navy-800); }
.field .req { color: #c0392b; font-size: 0.75rem; margin-left: 8px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 150px; }
.form-note { font-size: 0.82rem; color: var(--slate-light); }
.contact-aside { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.contact-aside h3 { font-size: 1.1rem; color: var(--navy-800); margin-bottom: 20px; }
.contact-aside .tel { font-family: var(--font-serif); font-size: 1.9rem; color: var(--navy-800); letter-spacing: 0.04em; }
.contact-aside .hours { font-size: 0.86rem; color: var(--slate-light); margin-top: 6px; }
.contact-aside .divider { height: 1px; background: var(--line); margin: 26px 0; }
.contact-aside p { font-size: 0.92rem; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding: 72px 0 30px; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 20px; line-height: 1.9; color: rgba(255,255,255,0.6); font-size: 0.86rem; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.16em; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---------- Chocopla brand band ---------- */
.chocopla-band { background: linear-gradient(135deg, #fbf6ee 0%, #f2ead9 100%); }
.chocopla-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; }
.chocopla-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/11; }
.chocopla-visual img { width: 100%; height: 100%; object-fit: cover; }
.chocopla-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.chocopla-brand img { width: 56px; height: 56px; }
.chocopla-brand .cn { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: #c0563a; letter-spacing: 0.08em; line-height: 1.2; }
.chocopla-brand .cn small { display: block; font-size: 0.6rem; letter-spacing: 0.22em; color: #a58a63; font-weight: 700; }
.chocopla-tag { display: inline-block; font-size: 0.78rem; letter-spacing: 0.2em; color: #b07a3a; font-weight: 700; margin-bottom: 12px; }
.chocopla-content h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.05rem); color: #5c4a2c; line-height: 1.5; margin-bottom: 16px; letter-spacing: 0.03em; }
.chocopla-content p { color: #6c5c44; margin-bottom: 18px; }
.chocopla-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.chocopla-list li { background: #fff; border: 1px solid #e7dcc6; color: #7a6a4e; font-size: 0.85rem; padding: 8px 15px; border-radius: 100px; font-weight: 600; }
.btn-chocopla { background: #d98a3d; color: #fff; }
.btn-chocopla:hover { background: #c2762d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Chocopla detail page ---------- */
.cp-hero {
  position: relative;
  color: #fff;
  padding: 108px 0 96px;
  background: linear-gradient(120deg, #2f9f96 0%, #7c9a3f 55%, #e0954a 100%);
  overflow: hidden;
}
.cp-hero .container { position: relative; z-index: 2; }
.cp-confetti { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.cp-hero-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.cp-hero-brand img { width: 66px; height: 66px; background: #fff; border-radius: 50%; padding: 6px; }
.cp-hero-brand .cn { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.2; }
.cp-hero-brand .cn small { display: block; font-size: 0.66rem; letter-spacing: 0.26em; opacity: 0.85; font-weight: 700; }
.cp-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.5; letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
  margin-bottom: 20px;
}
.cp-hero p { font-size: clamp(1rem, 1.8vw, 1.15rem); max-width: 620px; line-height: 2; color: rgba(255,255,255,0.95); }

.cp-section { padding: 90px 0; }
.cp-bg-cream { background: linear-gradient(135deg, #fbf6ee 0%, #f2ead9 100%); }
.cp-label { display: inline-block; font-size: 0.78rem; letter-spacing: 0.28em; color: #c0563a; font-weight: 700; margin-bottom: 14px; }
.cp-title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3.2vw, 2.2rem); color: #5c4a2c; letter-spacing: 0.05em; line-height: 1.5; margin-bottom: 18px; }
.cp-lead { color: #6c5c44; max-width: 720px; font-size: 1.02rem; line-height: 2; }
.cp-head { margin-bottom: 52px; }
.cp-head.center { text-align: center; }
.cp-head.center .cp-lead { margin: 0 auto; }

.cp-what { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.cp-what-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/11; }
.cp-what-visual img { width: 100%; height: 100%; object-fit: cover; }

.cp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.cp-step { background: #fff; border: 1px solid #ece3d2; border-radius: var(--radius); padding: 34px 28px; text-align: center; position: relative; }
.cp-step .st-num { font-family: var(--font-serif); font-size: 0.8rem; letter-spacing: 0.2em; color: #c0563a; font-weight: 700; }
.cp-step .st-icon { width: 66px; height: 66px; margin: 16px auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.cp-step:nth-child(1) .st-icon { background: #7c9a3f; }
.cp-step:nth-child(2) .st-icon { background: #2f9f96; }
.cp-step:nth-child(3) .st-icon { background: #e0954a; }
.cp-step h3 { font-size: 1.15rem; color: #5c4a2c; margin-bottom: 10px; }
.cp-step p { font-size: 0.92rem; color: #6c5c44; }
.cp-step .st-arrow { position: absolute; top: 50%; right: -20px; transform: translateY(-50%); color: #d9c9a8; font-size: 1.6rem; z-index: 2; }
.cp-step:last-child .st-arrow { display: none; }

.cp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cp-benefit { background: #fff; border: 1px solid #ece3d2; border-radius: var(--radius); padding: 30px 26px; display: flex; gap: 16px; align-items: flex-start; }
.cp-benefit .bi { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.cp-benefit:nth-child(1) .bi { background: #e0524e; }
.cp-benefit:nth-child(2) .bi { background: #e0954a; }
.cp-benefit:nth-child(3) .bi { background: #7c9a3f; }
.cp-benefit:nth-child(4) .bi { background: #2f9f96; }
.cp-benefit:nth-child(5) .bi { background: #6a5aa0; }
.cp-benefit h3 { font-size: 1.02rem; color: #5c4a2c; margin-bottom: 6px; }
.cp-benefit p { font-size: 0.88rem; color: #6c5c44; }

.cp-cta { text-align: center; color: #fff; padding: 82px 0; background: linear-gradient(120deg, #e0954a 0%, #e0524e 100%); }
.cp-cta h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: 0.05em; margin-bottom: 16px; }
.cp-cta p { color: rgba(255,255,255,0.95); margin-bottom: 32px; }
.btn-cream { background: #fff; color: #c0563a; }
.btn-cream:hover { background: #fff4e6; transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 900px) {
  .cp-what { grid-template-columns: 1fr; gap: 30px; }
  .cp-steps { grid-template-columns: 1fr; gap: 30px; }
  .cp-step .st-arrow { top: auto; bottom: -24px; right: 50%; transform: translateX(50%) rotate(90deg); }
  .cp-benefits { grid-template-columns: 1fr; }
}

/* ---------- Bank list ---------- */
.bank-list { color: var(--slate); line-height: 2; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 78px 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 12px 0; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform 0.35s var(--ease); }
  .nav.open { transform: none; }
  .nav a { padding: 15px 24px; border-radius: 0; }
  .nav a.active::after { display: none; }
  .nav-cta { margin: 10px 24px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .biz-grid, .feat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .svc-block, .svc-block.rev { grid-template-columns: 1fr; gap: 30px; }
  .svc-block.rev .svc-visual { order: 0; }
  .chocopla-inner { grid-template-columns: 1fr; gap: 32px; }
  .message-wrap { grid-template-columns: 1fr; }
  .message-photo { max-width: 320px; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 68px 0; }
  .hero { min-height: 560px; }
  .info-table th { width: 130px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; }
}
