/* ==========================================================
   クラリス社会保険労務士事務所 LP
   Design: 信頼のネイビー × 白 / 高視認性・誠実・シンプル
   ========================================================== */

:root {
  --navy: #14304f;
  --navy-deep: #0d2138;
  --navy-light: #1f4569;
  --gold: #b89b5e;
  --gold-light: #d4bc8a;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --gray-bg: #eef2f6;
  --text: #2a3540;
  --text-light: #5a6a78;
  --border: #dde5ec;
  --shadow: 0 4px 24px rgba(13, 33, 56, 0.08);
  --shadow-hover: 0 10px 36px rgba(13, 33, 56, 0.14);
  --radius: 10px;
  --font-serif: "Noto Serif JP", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: box-shadow 0.3s;
  border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.3; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  transition: background 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--navy);
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(13, 33, 56, 0.88) 0%, rgba(20, 48, 79, 0.78) 55%, rgba(13, 33, 56, 0.82) 100%),
    url("images/hero_handshake.jpg") center 40% / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 188, 138, 0.65);
  border-radius: 999px;
  padding: 10px 32px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease 0.05s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--gold-light); }

/* テキストアニメーション：行ごとにフェード＆スライドアップ */
.anim-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: lineUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.anim-line:nth-child(1) { animation-delay: 0.2s; }
.anim-line:nth-child(2) { animation-delay: 0.55s; }
.anim-line:nth-child(3) { animation-delay: 0.9s; }
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* CTAバンド（ヒーロー直下） */
.cta-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.cta-band-message {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 28px;
}
.cta-band-message .accent {
  background: linear-gradient(transparent 62%, rgba(184, 155, 94, 0.35) 62%);
  padding: 0 2px;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-band .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.cta-band .btn-outline:hover { background: var(--gray-bg); }

/* スマホ専用改行 */
.sp-br { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.section-desc {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Problem（お困りごと） ---------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.problem-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}
.problem-item .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 4px;
}

.problem-answer {
  text-align: center;
  margin-top: 48px;
}
.problem-answer .big {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}
.problem-answer .big .underline {
  background: linear-gradient(transparent 62%, rgba(184, 155, 94, 0.35) 62%);
  padding: 0 2px;
}

/* ---------- Stats（数字で見る） ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}
.stat-value .unit { font-size: 1.1rem; margin-left: 2px; }
.stat-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* ---------- Service Cards ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--navy); }
.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 2px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.service-desc { font-size: 0.92rem; color: var(--text-light); flex-grow: 1; margin-bottom: 24px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.service-link .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s, background 0.3s;
}
.service-card:hover .service-link .arrow { transform: translateX(4px); background: var(--gold); }

/* ---------- Promise（当所の約束） ---------- */
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.promise-item {
  text-align: center;
  padding: 32px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.promise-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); }
.promise-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 8px; }
.promise-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Flow ---------- */
.flow { max-width: 720px; margin: 0 auto; }
.flow-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.flow-body p { font-size: 0.9rem; color: var(--text-light); }

/* ---------- Greeting preview ---------- */
.greeting-box {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.greeting-photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 3rem;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.greeting-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Book（著書紹介） ---------- */
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.book-cover-img {
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(13, 33, 56, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.book-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.book-points span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--navy);
  border-radius: 4px;
  padding: 4px 12px;
}
@media (max-width: 600px) {
  .book-points { justify-content: center; }
}
.book-info .book-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  border-radius: 4px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.book-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.book-info .book-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 14px; }
.book-info p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; }

@media (max-width: 600px) {
  .book-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-info .book-label { margin-top: 4px; }
}
.greeting-body .name-role { font-size: 0.85rem; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.greeting-body .name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}
.greeting-body p { font-size: 0.94rem; color: var(--text-light); margin-bottom: 20px; }

/* ---------- Law info ---------- */
.law-list { max-width: 760px; margin: 0 auto; }
.law-item {
  display: flex;
  gap: 20px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  align-items: baseline;
}
.law-date {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  min-width: 110px;
}
.law-text { font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta-section {
  background:
    radial-gradient(ellipse 80% 90% at 20% 100%, rgba(184, 155, 94, 0.15), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 20px auto 36px; font-size: 0.95rem; }
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact / Access ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.contact-row dt { flex-shrink: 0; width: 90px; font-weight: 700; color: var(--navy); }
.contact-row dd { color: var(--text-light); }

.sns-row { display: flex; gap: 16px; margin-top: 28px; }
.sns-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.sns-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.sns-line { background: #06c755; }
.sns-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-btn svg { width: 20px; height: 20px; fill: var(--white); }

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-office .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-office .logo-sub { color: rgba(255,255,255,0.5); }
.footer-office p { margin-top: 14px; line-height: 1.9; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { transition: color 0.25s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-sns { display: flex; gap: 14px; margin-top: 18px; }
.footer-sns a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.footer-sns a:hover { background: var(--gold); }
.footer-sns svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Subpage ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 90% 80% at 85% 0%, rgba(184, 155, 94, 0.14), transparent 55%),
    linear-gradient(155deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 160px 0 72px;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
}
.page-hero .page-lead { color: rgba(255,255,255,0.8); margin-top: 16px; font-size: 0.95rem; }

/* 価格テーブル */
.price-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--off-white); }
.price-table .num { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }

.price-highlight {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
}
.price-highlight .label { font-size: 0.85rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; }
.price-highlight .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: 700;
}
.price-highlight .price .small { font-size: 1rem; }
.price-highlight .strike { text-decoration: line-through; color: var(--text-light); font-size: 1.1rem; margin-right: 12px; }

/* 汎用コンテンツブロック */
.content-block { max-width: 800px; margin: 0 auto 56px; }
.content-block h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.4rem;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  margin-bottom: 24px;
  line-height: 1.5;
}
.content-block p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.content-block .lead-strong { color: var(--text); font-weight: 500; }

.feature-list { display: grid; gap: 14px; }
.feature-list li {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  font-size: 0.93rem;
  align-items: baseline;
}
.feature-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Bias cards（採用支援） */
.bias-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bias-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.bias-card .bias-from { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.bias-card .bias-arrow { color: var(--gold); font-size: 1.3rem; margin: 8px 0; }
.bias-card .bias-to { font-size: 0.82rem; color: var(--text-light); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.35s ease;
    z-index: 1050;
  }
  .nav.open { right: 0; }
  .nav a { color: var(--white); font-size: 1rem; }
  .hamburger { display: flex; }
  body.nav-open .hamburger span { background: var(--white); }

  .services, .problem-list, .contact-grid, .bias-cards { grid-template-columns: 1fr; }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .greeting-box { grid-template-columns: 1fr; text-align: center; }
  .greeting-photo { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .promises { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 128px 0 64px; }
  .hero-title {
    font-size: 1.45rem;
    letter-spacing: 0;
    line-height: 1.8;
  }
  .hero-lead { font-size: 0.9rem; }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    padding: 11px 26px;
  }
  .cta-band-message { font-size: 1.12rem; }
  .sp-br { display: inline; }
  .cta-band { padding: 28px 0; }
  .cta-band-inner { flex-direction: column; }
  .cta-band .btn { width: 100%; max-width: 320px; justify-content: center; }
  .btn { padding: 14px 28px; font-size: 0.88rem; }
  .flow-step { gap: 16px; }
}
