/* ============================================================
   キムリフォーム株式会社 サンプルLP
   ============================================================ */

:root {
  --navy: #1A2840;
  --navy-deep: #0F1A2D;
  --gold: #C9A368;
  --gold-deep: #A6843E;
  --orange: #D77A40;
  --ivory: #F8F5EE;
  --white: #FFFFFF;
  --char: #1F2933;
  --char-soft: #4A5568;
  --stone: #D5DCE0;
  --stone-soft: #EEF1F4;
  --shadow-soft: 0 8px 24px rgba(15, 26, 45, 0.08);
  --shadow-mid: 0 12px 36px rgba(15, 26, 45, 0.12);
  --shadow-deep: 0 20px 60px rgba(15, 26, 45, 0.18);
  --container: 1180px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--char);
  background: var(--ivory);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px; /* sample banner height */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }

/* ============ Section eyebrow & h2 ============ */
.section-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.section-lead {
  margin-top: -32px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--char-soft);
  line-height: 2;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-soft);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.logo-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  border-right: 2px solid var(--gold);
  padding-right: 8px;
  line-height: 1;
}
.logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--char-soft);
  letter-spacing: 0.05em;
}
.nav-pc {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-pc a { color: var(--char); }
.nav-pc a:hover { color: var(--gold-deep); opacity: 1; }
.header-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header-cta:hover { background: #b96328; opacity: 1; }
.nav-toggle { display: none; width: 40px; height: 40px; padding: 8px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); transition: .3s; }
.nav-mobile { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(15,26,45,0.96) 0%, rgba(15,26,45,0.92) 38%, rgba(15,26,45,0.78) 58%, rgba(15,26,45,0.45) 78%, rgba(15,26,45,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.18) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 80px;
  color: #fff;
}
.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-h1-em {
  color: var(--gold);
  position: relative;
}
.hero-sub {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { margin-bottom: 40px; }
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--orange);
  color: #fff !important;
  padding: 18px 36px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 32px rgba(215, 122, 64, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(215, 122, 64, 0.45); opacity: 1; }
.btn-primary small { font-size: 11px; font-weight: 400; letter-spacing: 0.04em; opacity: 0.95; }
.btn-primary.large { padding: 22px 48px; font-size: 19px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 12px;
  max-width: 580px;
}
.hero-stats li {
  background: rgba(15, 26, 45, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 163, 104, 0.32);
  padding: 14px 14px;
  border-radius: var(--radius-s);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.stat-num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

/* ============ Worry ============ */
.worry { padding: 100px 0; background: var(--ivory); }
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.worry-card {
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.worry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); }
.worry-img { aspect-ratio: 4/3; overflow: hidden; }
.worry-img img { width: 100%; height: 100%; object-fit: cover; }
.worry-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  padding: 22px 22px 12px;
  font-weight: 700;
}
.worry-card p {
  padding: 0 22px 26px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--char-soft);
}

/* ============ Service ============ */
.service { padding: 100px 0; background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--ivory);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stone-soft);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); }
.service-img { aspect-ratio: 16/9; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 28px 28px 32px; }
.service-tag {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.service-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}
.service-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--char-soft);
  margin-bottom: 18px;
}
.service-bullet { display: flex; flex-direction: column; gap: 8px; }
.service-bullet li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--char);
}
.service-bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ============ Why ============ */
.why { padding: 100px 0; background: var(--navy); color: #fff; }
.why .section-eyebrow { color: var(--gold); }
.why .section-h2 { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 163, 104, 0.22);
  border-radius: var(--radius-m);
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.why-img { aspect-ratio: 16/8; overflow: hidden; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(15, 26, 45, 0.7);
  padding: 4px 14px;
  border-radius: 4px;
  z-index: 2;
}
.why-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: #fff;
  padding: 26px 26px 14px;
  line-height: 1.5;
  font-weight: 700;
}
.why-card p {
  padding: 0 26px 28px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.86);
}

/* ============ Cases Pickup (Top page) ============ */
.cases-pickup { padding: 100px 0; background: var(--ivory); }
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pickup-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
  color: inherit;
  text-decoration: none;
}
.pickup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); opacity: 1; }
.pickup-img { aspect-ratio: 4/3; overflow: hidden; }
.pickup-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pickup-card:hover .pickup-img img { transform: scale(1.04); }
.pickup-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.pickup-cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  font-weight: 700;
}
.pickup-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 700;
}
.pickup-cta { text-align: center; }
.btn-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--navy) !important;
  padding: 18px 36px;
  border-radius: var(--radius-s);
  border: 2px solid var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--navy); color: #fff !important; opacity: 1; }
.btn-secondary small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.btn-secondary:hover small { opacity: 0.95; }

/* ============ Page head (cases.html) ============ */
.page-head {
  background: var(--ivory);
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--stone-soft);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--char-soft);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold-deep); font-weight: 500; }
.breadcrumb span { color: var(--stone); }
.page-h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 700;
  margin: 6px 0 18px;
  letter-spacing: 0.02em;
}
.page-lead {
  font-size: 15px;
  color: var(--char-soft);
  line-height: 2;
  max-width: 760px;
}
.nav-current {
  color: var(--gold-deep) !important;
  font-weight: 700;
}

/* ============ Cases (Tabs) — full list page ============ */
.cases { padding: 80px 0 100px; background: var(--ivory); }
.page-cases .cases { padding-top: 40px; }
.cases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--stone);
}
.case-tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--char-soft);
  background: transparent;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.case-tab:hover { color: var(--navy); }
.case-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.case-panel { display: none; }
.case-panel.active { display: grid; grid-template-columns: 1fr; gap: 32px; }
.case-item {
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.case-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone);
}
.ba-slot {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--stone-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ba-slot.before {
  background: linear-gradient(135deg, var(--stone-soft) 0%, var(--stone) 100%);
}
.ba-slot img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 26, 45, 0.85);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 3px;
  font-weight: 700;
  z-index: 2;
}
.ba-label.after { background: var(--gold); }
.ba-placeholder {
  font-size: 12px;
  color: var(--char-soft);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.case-meta { padding: 28px 28px; display: flex; flex-direction: column; gap: 12px; }
.case-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  font-weight: 700;
}
.case-meta h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 700;
}
.case-meta p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--char-soft);
}
.cases-foot {
  margin-top: 32px;
  font-size: 13px;
  color: var(--char-soft);
  text-align: center;
}

/* ============ Representative ============ */
.rep {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}
.rep-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.rep-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.rep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,45,0.94) 0%, rgba(15,26,45,0.86) 50%, rgba(26,40,64,0.78) 100%);
}
.rep .container { position: relative; z-index: 2; }
.rep-eyebrow { color: var(--gold) !important; }
.rep-h2 { color: #fff; }
.rep-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.rep-photo { display: flex; flex-direction: column; gap: 16px; }
.rep-photo-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(201, 163, 104, 0.35);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rep-photo-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.rep-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.rep-name strong {
  font-size: 19px;
  color: #fff;
  display: block;
  margin-top: 4px;
  font-weight: 700;
}
.rep-text { display: flex; flex-direction: column; gap: 18px; }
.rep-text p {
  font-size: 15px;
  line-height: 2.05;
  color: rgba(255,255,255,0.92);
}
.rep-text strong { color: var(--gold); font-weight: 700; }
.rep-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  justify-content: flex-start;
}
.rep-quals li {
  background: rgba(201, 163, 104, 0.14);
  color: var(--gold);
  border: 1px solid rgba(201, 163, 104, 0.35);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============ Flow ============ */
.flow { padding: 100px 0; background: var(--white); }
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow-step {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background: var(--ivory);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--stone-soft);
  align-items: stretch;
}
.flow-img { overflow: hidden; min-height: 200px; }
.flow-img img { width: 100%; height: 100%; object-fit: cover; }
.flow-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.flow-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  font-weight: 700;
}
.flow-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}
.flow-body p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--char-soft);
}

/* ============ Area ============ */
.area { padding: 100px 0; background: var(--ivory); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-map-wrap {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}
.area-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.area-list li { font-size: 15px; line-height: 1.8; display: flex; align-items: flex-start; gap: 12px; }
.area-list strong { color: var(--navy); }
.area-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.area-dot.main { background: var(--navy); }
.area-dot.sub { background: var(--gold); }
.area-dot.star { background: var(--orange); }
.area-note {
  font-size: 13px;
  color: var(--char-soft);
  line-height: 1.9;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-s);
  border-left: 3px solid var(--gold);
}

/* ============ Company ============ */
.company { padding: 100px 0; background: var(--white); }
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.8;
}
.company-table th, .company-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stone-soft);
}
.company-table th {
  width: 200px;
  color: var(--navy);
  font-weight: 700;
  background: var(--ivory);
}
.company-table td a { color: var(--orange); font-weight: 700; }
.company-table td a:hover { text-decoration: underline; }

/* ============ Final CTA ============ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
}
.final-h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 700;
}
.final-sub {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.86);
  margin-bottom: 40px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-name {
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.footer-addr {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav-pc { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--stone-soft);
    padding: 16px 24px 24px;
  }
  .nav-mobile.is-open { display: flex; }
  .nav-mobile a {
    padding: 14px 0;
    font-size: 15px;
    color: var(--char);
    border-bottom: 1px solid var(--stone-soft);
  }
  .nav-mobile .mobile-cta {
    background: var(--orange);
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-s);
    margin-top: 16px;
    border-bottom: 0;
    font-weight: 700;
  }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-item { grid-template-columns: 1fr; }
  .pickup-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 88px; }
  .sp-only { display: inline; }
  .container { padding: 0 18px; }

  .hero { min-height: auto; padding-top: 0; }
  .hero-bg { position: relative; height: 280px; }
  .hero-bg img { object-position: center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(15,26,45,0.45) 0%, rgba(15,26,45,0.78) 80%, var(--navy-deep) 100%);
  }
  .hero-inner {
    background: var(--navy-deep);
    padding: 36px 20px 56px;
    margin-top: -2px;
  }
  .hero-tagline { font-size: 12px; margin-bottom: 14px; line-height: 1.7; }
  .hero-h1 { font-size: 26px; line-height: 1.45; margin-bottom: 20px; }
  .hero-sub { font-size: 13px; line-height: 1.95; margin-bottom: 28px; }
  .btn-primary { padding: 16px 24px; font-size: 15px; width: 100%; align-items: center; }
  .btn-primary.large { padding: 20px 24px; font-size: 16px; }
  .hero-cta { margin-bottom: 32px; }
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 8px;
  }
  .hero-stats li { flex-direction: row; align-items: center; gap: 16px; padding: 14px 16px; }
  .stat-num { font-size: 22px; min-width: 56px; }
  .stat-label { font-size: 12px; }

  .worry, .service, .why, .cases, .rep, .flow, .area, .company, .final-cta { padding: 64px 0; }
  .section-h2 { font-size: 22px; margin-bottom: 32px; }
  .section-lead { font-size: 13px; margin-top: -20px; margin-bottom: 28px; line-height: 1.9; }
  .worry-grid { grid-template-columns: 1fr; gap: 18px; }
  .worry-card h3 { font-size: 16px; padding: 18px 18px 10px; }
  .worry-card p { padding: 0 18px 22px; font-size: 13px; }

  .service-card h3 { font-size: 19px; }
  .service-body { padding: 22px 22px 26px; }

  .why-num { font-size: 28px; padding: 3px 12px; top: 14px; right: 14px; }
  .why-card h3 { font-size: 18px; padding: 22px 22px 12px; }
  .why-card p { padding: 0 22px 24px; font-size: 13.5px; }

  .cases-tabs { gap: 4px; }
  .case-tab { padding: 12px 14px; font-size: 13px; flex: 1 1 auto; text-align: center; }
  .case-meta { padding: 22px 20px 26px; }
  .case-meta h3 { font-size: 17px; }

  .pickup-grid { grid-template-columns: 1fr; gap: 14px; }
  .pickup-body { padding: 16px 18px 20px; }
  .pickup-card h3 { font-size: 15px; }
  .btn-secondary { padding: 16px 24px; font-size: 14px; width: 100%; }

  .page-head { padding: 36px 0 20px; }
  .page-h1 { font-size: 24px; margin: 4px 0 14px; }
  .page-lead { font-size: 13.5px; line-height: 1.95; }
  .breadcrumb { font-size: 11px; margin-bottom: 16px; gap: 8px; }
  .page-cases .cases { padding-top: 32px; }

  .rep-body { grid-template-columns: 1fr; gap: 32px; }
  .rep-photo { max-width: 220px; margin: 0 auto; }
  .rep-text p { font-size: 14px; line-height: 1.95; }
  .rep-quals { justify-content: center; }
  .rep-quals li { font-size: 12px; padding: 6px 12px; }

  .flow-step { grid-template-columns: 1fr; }
  .flow-img { aspect-ratio: 16/9; min-height: 0; }
  .flow-body { padding: 22px 22px 26px; }
  .flow-body h3 { font-size: 19px; }

  .area-grid { gap: 28px; }
  .area-list li { font-size: 14px; }

  .company-table { font-size: 13.5px; }
  .company-table th, .company-table td { padding: 14px 8px; display: block; width: 100%; }
  .company-table th { background: transparent; padding-bottom: 4px; padding-top: 18px; font-size: 12px; letter-spacing: 0.06em; color: var(--gold-deep); }
  .company-table td { padding-top: 0; padding-bottom: 14px; }

  .final-h2 { font-size: 22px; }
  .final-sub { font-size: 13.5px; }
}

@media (max-width: 380px) {
  .case-tab { padding: 10px 8px; font-size: 12px; }
  .hero-h1 { font-size: 23px; }
  .section-h2 { font-size: 20px; }
}
