/* ============================================================
   Sanc合同会社 v2.0 — "間 (Ma)" Design × Sanc Brand
   Primary: Navy #1A3557 / Accent: Orange #E85C26 / Sub: Blue #0070C0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700;900&family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Tokens ── */
:root {
  --navy:     #1A3557;
  --navy-dk:  #0F2440;
  --navy-lt:  #EEF3F9;
  --orange:   #E85C26;
  --orange-lt:#FFF4EE;
  --blue:     #0070C0;
  --blue-dk:  #005999;
  --blue-lt:  #E8F4FF;

  --ink:      #111C28;
  --ink-2:    #1A2F48;
  --mid:      #5A6B7C;
  --muted:    #8A9BAC;
  --border:   #DDE4EC;

  --warm-bg:  #F8F9FA;
  --cream:    #EFF3F8;
  --surface:  #FFFFFF;

  --ff-serif: 'Zen Old Mincho', 'Noto Serif JP', serif;
  --ff-sans:  'Noto Sans JP', sans-serif;
  --ff-latin: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 2px 10px rgba(17,28,40,.07);
  --shadow-md: 0 8px 32px rgba(17,28,40,.10);
  --shadow-lg: 0 20px 64px rgba(17,28,40,.14);
  --shadow-navy: 0 12px 40px rgba(26,53,87,.18);

  --radius:   16px;
  --radius-lg:28px;
  --radius-xl:40px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --max-w:    1180px;
  --gap:      clamp(20px,5vw,52px);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--warm-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ── Type ── */
h1,h2,h3,h4 {
  font-family: var(--ff-serif);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .03em;
}
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.05rem,2vw,1.3rem); }
p  { line-height: 1.85; color: var(--mid); }

.label {
  font-family: var(--ff-latin);
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--navy);
  flex-shrink: 0;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.section { padding: clamp(72px,11vw,120px) 0; }
.section--white  { background: var(--surface); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--ink); }
.section--dark-2 { background: var(--ink-2); }
.section--navy   { background: linear-gradient(135deg, #0A1827, var(--navy), #1E4A7A); }

.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.section-head { margin-bottom: clamp(36px,6vw,64px); }
.section-head--center { text-align:center; }
.section-head--center .label { justify-content:center; }
.section-head h2 { margin-top:8px; }
.section-head .desc {
  margin-top:16px;
  max-width:520px;
  color: var(--mid);
  font-size:.97rem;
}
.section-head--center .desc { margin:16px auto 0; }
.desc--light { color:rgba(255,255,255,.5); }

/* ── Header ── */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 200;
  padding: 0 var(--gap);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(248,249,250,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  text-decoration: none;
  transition: opacity .2s;
}
.site-logo:hover { opacity: .82; }
.site-logo img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-logo__name {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: .06em;
  line-height: 1.5;
  white-space: nowrap;
  transition: color .25s;
}
.header--light .site-logo__name { color: rgba(255,255,255,.92); }
.header--light.scrolled .site-logo__name { color: var(--ink); }
.header--light .site-logo { border-left-color: var(--orange); }

.site-nav { display:flex; align-items:center; gap:28px; }
.site-nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.site-nav a::after {
  content:'';
  position:absolute;
  bottom:-3px; left:0;
  width:0; height:1.5px;
  background:var(--navy);
  transition:width .25s var(--ease);
}
.site-nav a:hover { color:var(--navy); }
.site-nav a:hover::after { width:100%; }
.header--light .site-nav a { color:rgba(255,255,255,.82); }
.header--light .site-nav a:hover { color:#fff; }
.header--light.scrolled .site-nav a { color:var(--ink); }
.header--light.scrolled .site-nav a:hover { color:var(--navy); }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background:var(--navy-dk) !important; transform:translateY(-1px); }
.nav-cta::after { display:none !important; }

.menu-btn { display:none; flex-direction:column; gap:5px; width:26px; }
.menu-btn span { display:block; height:1.5px; background:var(--ink); border-radius:2px; transition:.3s var(--ease); }
.header--light .menu-btn span { background:#fff; }
.header--light.scrolled .menu-btn span { background:var(--ink); }
.menu-btn.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.menu-btn.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(248,249,250,.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  display: flex;
  flex-direction: column;
  padding: 96px var(--gap) 48px;
  gap: 0;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-drawer a:hover { color:var(--navy); }
.mobile-drawer .mobile-cta {
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  font-family: var(--ff-sans);
  border: none;
}

/* ── Hero (split) ── */
.top-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 44% 56%;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--gap) 80px clamp(24px,6vw,80px);
  background: var(--ink);
  position: relative;
  z-index: 1;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 40px 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--ff-latin);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--orange);
}
.hero-h1 {
  color: #fff;
  font-size: clamp(2.4rem,4.5vw,3.8rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-h1 em {
  font-style: normal;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,.38);
  font-family: var(--ff-latin);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .06em;
  margin-bottom: 28px;
}
.hero-lead {
  color: rgba(255,255,255,.58);
  font-size: .93rem;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 380px;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:48px; }
.hero-badges { display:flex; flex-direction:column; gap:10px; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: border-color .2s, background .2s;
}
.hero-badge:hover { border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.08); }
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-dot--navy  { background:var(--navy-lt); box-shadow:0 0 8px var(--blue); }
.hero-badge-dot--blue  { background:var(--blue); box-shadow:0 0 8px var(--blue); }
.hero-badge-dot--orange{ background:var(--orange); box-shadow:0 0 8px var(--orange); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-color: #0A1827;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,28,40,.35) 0%, transparent 60%);
}
.top-hero:hover .hero-photo { transform: scale(1.04); }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,.35);
  font-size: .66rem;
  letter-spacing: .2em;
  font-family: var(--ff-latin);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%  { transform:scaleY(0); transform-origin:top; opacity:0; }
  40% { transform:scaleY(1); transform-origin:top; opacity:1; }
  60% { transform:scaleY(1); transform-origin:bottom; opacity:1; }
  100%{ transform:scaleY(0); transform-origin:bottom; opacity:0; }
}
.hero-overlay-badge {
  position: absolute;
  bottom: 48px;
  right: 40px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: #fff;
  font-size: .8rem;
  line-height: 1.6;
  z-index: 5;
}
.hero-overlay-badge strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--ff-latin);
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 3px;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--surface);
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.stats-strip .container { position: relative; }
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.8rem,3.5vw,2.4rem);
  font-weight: 800;
  font-family: var(--ff-latin);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { font-size: 1rem; font-weight: 700; color: var(--orange); }
.stat-label { font-size: .82rem; color: var(--mid); }

/* ── Pathway Cards ── */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pathway-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid var(--border);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.pathway-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.pathway-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(255,255,255,0) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pathway-card--client .pathway-card-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  z-index: 2;
}
.pathway-card--partner .pathway-card-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  z-index: 2;
}
.pathway-card .pathway-badge,
.pathway-card .pathway-title,
.pathway-card .pathway-desc,
.pathway-card .pathway-list,
.pathway-card .btn {
  padding-left: 36px;
  padding-right: 36px;
}
.pathway-card .pathway-icon { margin-left: 36px; margin-bottom: 0; }
.pathway-card .btn { align-self: flex-start; }
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pathway-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex; align-items:center; justify-content:center;
  color: #fff;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.pathway-icon svg { width: 26px; height: 26px; }
.pathway-badge { align-self: flex-start; }
.pathway-badge .badge-navy {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 700;
  background: var(--navy-lt);
  color: var(--navy);
}
.pathway-badge .badge-orange {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 700;
  background: var(--orange-lt);
  color: var(--orange);
}
.pathway-title { font-size: 1.4rem; font-weight: 800; color: var(--ink); font-family: var(--ff-serif); }
.pathway-desc { font-size: .92rem; color: var(--mid); line-height: 1.8; }
.pathway-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: var(--mid);
}
.pathway-list li::before { content: '✓ '; color: var(--blue); font-weight: 700; }
.pathway-card .btn { align-self: flex-start; }

/* ── Service Cards ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  text-align: center;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.svc-card-img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 20px;
  position: relative;
}
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(248,249,250,0.6));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card h3,
.svc-card p {
  padding: 0 20px;
}
.svc-card .svc-icon {
  margin-left: auto;
  margin-right: auto;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform:translateY(-2px); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex; align-items:center; justify-content:center;
  color: #fff;
  margin: 0 auto 16px;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-family:var(--ff-sans); font-size:1rem; font-weight:700; margin-bottom:8px; color:var(--ink); }
.svc-card p  { font-size:.82rem; color:var(--mid); line-height:1.7; }

/* ── How it Works (flow) ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.how-flow { display:flex; flex-direction:column; gap:0; }
.how-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.how-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 44px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.how-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items:center; justify-content:center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.how-step-body {}
.how-step-title { font-weight:700; margin-bottom:4px; font-size:.95rem; color:var(--ink); }
.how-step-desc  { font-size:.85rem; color:var(--mid); line-height:1.7; }
.how-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 0 0 40px;
  overflow: hidden;
}
.how-visual-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 28px;
  position: relative;
}
.how-visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--cream));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.how-visual .label { margin-bottom: 20px; padding: 0 40px; }
.how-items { padding: 0 40px; }
.how-items { display:flex; flex-direction:column; gap:16px; }
.how-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.how-item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  color: #fff;
}
.how-item-icon svg { width: 16px; height: 16px; }
.how-item strong { display:block; font-size:.9rem; margin-bottom:2px; color:var(--ink); }
.how-item span   { font-size:.82rem; color:var(--mid); }

/* ── Rep section ── */
.rep-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.rep-photo-wrap { position: relative; }
.rep-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: var(--navy-lt);
  z-index: 0;
}
.rep-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
}
.rep-name-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.rep-name-card__co   { font-size:.75rem; color:var(--muted); margin-bottom:3px; }
.rep-name-card__name { font-size:1.05rem; font-weight:800; color:var(--navy); }
.rep-name-card__role { font-size:.8rem; color:var(--mid); }
.rep-quote {
  font-size: clamp(1.05rem,2.5vw,1.3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
  font-family: var(--ff-serif);
}
.rep-text {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 12px;
}

/* ── Process Steps (horizontal) ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.steps-row::before {
  content:'';
  position:absolute;
  top:34px; left:12.5%; right:12.5%;
  height:2px;
  background: linear-gradient(to right, var(--navy), var(--blue));
  z-index:0;
}
.step-col {
  text-align: center;
  padding: 0 16px;
  z-index: 1;
}
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--surface);
  border: 2.5px solid var(--navy);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
  font-family: var(--ff-latin);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.section--dark .step-num {
  background: var(--ink);
  color: #fff;
  border-color: var(--blue);
}
.step-col h3 { font-family:var(--ff-sans); font-size:.9rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.section--dark .step-col h3 { color:#fff; }
.step-col p  { font-size:.81rem; color:var(--mid); line-height:1.7; }
.section--dark .step-col p  { color:rgba(255,255,255,.45); }

/* ── Concerns / Target cards ── */
.concerns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.concern-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink);
}
.concern-card:hover { border-color:var(--navy); box-shadow:0 4px 16px rgba(26,53,87,.08); }
.concern-icon { flex-shrink:0; margin-top:2px; color:var(--navy); }
.concern-icon svg { width: 22px; height: 22px; }

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.target-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  transition: background .2s;
}
.target-card:hover { background: rgba(255,255,255,.1); }
.target-icon { flex-shrink: 0; color: rgba(255,255,255,.9); }
.target-icon svg { width: 22px; height: 22px; }

/* ── Service Detail Cards ── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc-detail-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.svc-detail-head {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 88px 24px 24px;
  position: relative;
  overflow: hidden;
}
.svc-detail-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,36,64,.45) 0%, rgba(26,53,87,.85) 55%, rgba(26,53,87,1) 100%);
  z-index: 0;
}
.svc-detail-icon {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.9);
}
.svc-detail-icon svg { width: 28px; height: 28px; }
.svc-detail-title {
  font-size: 1.05rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.svc-detail-body { padding:24px; }
.svc-detail-list { display:flex; flex-direction:column; gap:8px; }
.svc-detail-list li {
  font-size:.88rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}
.svc-detail-list li::before { content:'▸'; position:absolute; left:0; color:var(--blue); }

/* ── Service Blocks (services.html) ── */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }
.svc-block:nth-child(even) { direction:rtl; }
.svc-block:nth-child(even) > * { direction:ltr; }
.svc-block-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.svc-block-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--navy);
  display: flex; align-items:center; justify-content:center;
  color: #fff;
  margin-bottom: 20px;
}
.svc-block-icon svg { width: 36px; height: 36px; }
.svc-block-num { font-size:.75rem; font-weight:700; letter-spacing:.12em; color:var(--muted); margin-bottom:6px; }
.svc-block-title { font-size:1.4rem; font-weight:800; color:var(--navy); line-height:1.35; }
.svc-block-abbr {
  display: inline-block;
  font-size:.75rem; font-weight:700;
  background:var(--navy); color:#fff;
  padding:3px 10px; border-radius:4px; margin-top:8px;
}
.svc-block-desc { font-size:.95rem; color:var(--mid); line-height:1.9; margin-bottom:24px; }
.svc-block-tasks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.svc-task {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .87rem;
  display: flex; align-items:center; gap:10px;
  color: var(--ink);
}
.svc-task::before { content:'✓'; color:var(--blue); font-weight:700; }
.svc-block-tags { display:flex; flex-wrap:wrap; gap:8px; }
.svc-tag {
  background: var(--blue-lt);
  color: var(--blue);
  font-size: .78rem; font-weight:600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── Merit Cards ── */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.merit-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .25s;
  overflow: hidden;
}
.merit-card-img {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 24px;
}
.merit-num { font-size:2rem; font-weight:800; color:var(--orange); margin-bottom:8px; font-family:var(--ff-latin); padding: 0 20px; }
.merit-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.merit-title { font-size:1rem; font-weight:700; margin-bottom:10px; color:var(--ink); padding: 0 20px; }
.merit-desc { font-size:.85rem; color:var(--mid); line-height:1.7; padding: 0 20px; }

/* ── LP Banner ── */
.lp-banner {
  background: var(--navy-lt);
  border: 1px solid rgba(26,53,87,.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-banner h3 { font-size:1.1rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.lp-banner p  { font-size:.88rem; color:var(--mid); }

/* ── Achievement Card ── */
.achievement-card {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.achievement-icon { flex-shrink:0; color:rgba(255,255,255,.9); }
.achievement-icon svg { width: 48px; height: 48px; }
.achievement-label { font-size:.78rem; opacity:.6; letter-spacing:.08em; margin-bottom:8px; }
.achievement-title { font-size:1.3rem; font-weight:800; line-height:1.4; margin-bottom:8px; color:#fff; }
.achievement-desc  { font-size:.88rem; opacity:.8; line-height:1.7; color:rgba(255,255,255,.8); }

/* ── Career Timeline ── */
.career-timeline { display:flex; flex-direction:column; gap:0; }
.career-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.career-item:not(:last-child)::before {
  content:'';
  position:absolute;
  left:59px; top:44px; bottom:0;
  width:2px; background:var(--border);
}
.career-year {
  width: 120px; flex-shrink:0;
  font-size:.82rem; font-weight:700; color:var(--muted);
  padding-top:12px; text-align:right;
}
.career-dot {
  width:40px; height:40px;
  border-radius:50%;
  background:var(--navy);
  border:3px solid var(--navy);
  flex-shrink:0;
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:center;
  color: #fff;
}
.career-dot svg { width: 18px; height: 18px; }
.career-body { flex:1; padding-top:8px; }
.career-co    { font-size:.8rem; color:var(--muted); margin-bottom:4px; }
.career-title { font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:6px; }
.career-desc  { font-size:.85rem; color:var(--mid); line-height:1.7; }

/* ── Philosophy Cards (dark) ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.philosophy-num {
  font-size:2.5rem; font-weight:800;
  color:rgba(255,255,255,.12);
  line-height:1; margin-bottom:8px;
}
.philosophy-title { font-size:1rem; font-weight:700; color:#fff; margin-bottom:10px; }
.philosophy-desc  { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.7; }

/* ── Company Info Table ── */
.info-table { width:100%; border-collapse:collapse; }
.info-table tr { border-bottom:1px solid var(--border); }
.info-table tr:last-child { border-bottom:none; }
.info-table th {
  width:160px; padding:16px 20px;
  text-align:left; font-size:.85rem;
  font-weight:700; color:var(--mid);
  vertical-align:top;
  background:var(--cream);
}
.info-table td {
  padding:16px 20px;
  font-size:.9rem; vertical-align:top;
  line-height:1.7; color:var(--ink);
}

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-btn {
  width:100%; text-align:left;
  padding:20px 0;
  font-size:.95rem; font-weight:700;
  color:var(--ink);
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; cursor:pointer; border:none; background:none;
  font-family:var(--ff-sans);
}
.faq-icon {
  width:28px; height:28px;
  border-radius:50%;
  background:var(--navy-lt);
  color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; flex-shrink:0;
  transition:transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--navy); color:#fff; }
.faq-answer {
  font-size:.88rem; color:var(--mid);
  line-height:1.85;
  max-height:0; overflow:hidden;
  transition:max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-answer { max-height:200px; padding-bottom:20px; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 30px;
  border-radius:10px;
  font-family:var(--ff-sans);
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.04em;
  transition:background .2s, transform .2s, box-shadow .2s;
  white-space:nowrap;
}
.btn--navy { background:var(--navy); color:#fff; box-shadow:0 4px 18px rgba(26,53,87,.28); }
.btn--navy:hover { background:var(--navy-dk); transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,53,87,.36); }
.btn--orange { background:var(--orange); color:#fff; box-shadow:0 4px 18px rgba(232,92,38,.28); }
.btn--orange:hover { background:#cc4f20; transform:translateY(-2px); }
.btn--blue { background:var(--blue); color:#fff; box-shadow:0 4px 18px rgba(0,112,192,.25); }
.btn--blue:hover { background:var(--blue-dk); transform:translateY(-2px); }
.btn--ghost { background:transparent; border:1.5px solid rgba(255,255,255,.35); color:#fff; }
.btn--ghost:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.6); }
.btn--outline { background:transparent; border:1.5px solid var(--border); color:var(--ink); }
.btn--outline:hover { border-color:var(--navy); color:var(--navy); }
.btn--outline-white { background:transparent; border:1.5px solid rgba(255,255,255,.4); color:#fff; }
.btn--outline-white:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.7); }
.btn--sm { padding:10px 20px; font-size:.83rem; }
.btn--lg { padding:17px 42px; font-size:.97rem; }
.btn-arrow::after { content:'→'; font-family:monospace; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, #060F1C 0%, #0F2440 50%, var(--navy) 100%);
  padding: clamp(72px,10vw,100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content:'';
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,.025)' stroke-width='1'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-inner { position:relative; z-index:1; text-align:center; max-width:680px; margin:0 auto; }
.cta-band h2 { color:#fff; font-size:clamp(1.8rem,3.5vw,2.6rem); margin-bottom:16px; }
.cta-band .desc { color:rgba(255,255,255,.5); font-size:.95rem; margin-bottom:44px; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── Page Hero ── */
.page-hero {
  padding: 140px 0 80px;
  position:relative; overflow:hidden;
}
.page-hero--navy  { background:linear-gradient(140deg,#060F1C,#0F2440 40%,var(--navy) 100%); }
.page-hero--dark  { background:linear-gradient(140deg,#060F1C,#111C28 60%,var(--ink-2) 100%); }
.page-hero-pattern {
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,.04)'%3E%3Ccircle cx='20' cy='20' r='18'/%3E%3C/g%3E%3C/svg%3E");
  background-size:40px 40px;
}
.page-hero-content { position:relative; }
.page-hero .eyebrow { font-family:var(--ff-latin); font-style:italic; font-size:.95rem; color:rgba(255,255,255,.38); margin-bottom:14px; letter-spacing:.06em; }
.page-hero h1 { color:#fff; margin-bottom:20px; }
.page-hero .lead { max-width:560px; color:rgba(255,255,255,.58); font-size:.97rem; line-height:1.9; margin-bottom:32px; }

/* ── Form ── */
.form-wrap { background:var(--surface); border-radius:var(--radius-xl); padding:clamp(28px,5vw,52px); box-shadow:var(--shadow-md); border:1px solid var(--border); }
.form-section { margin-bottom:32px; }
.form-section-title { font-size:.75rem; font-weight:700; letter-spacing:.14em; color:var(--muted); text-transform:uppercase; padding:8px 0 14px; border-bottom:1px solid var(--border); margin-bottom:20px; }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:.8rem; font-weight:700; color:var(--ink); margin-bottom:8px; letter-spacing:.03em; }
.required { color:var(--orange); font-size:.73rem; margin-left:4px; font-weight:700; }
.optional  { color:var(--muted); font-size:.73rem; margin-left:4px; }
.form-input,.form-select,.form-textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--border);
  border-radius:10px;
  font-family:var(--ff-sans);
  font-size:.91rem;
  color:var(--ink);
  background:var(--warm-bg);
  transition:border-color .2s, box-shadow .2s, background .2s;
  appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  outline:none;
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(26,53,87,.1);
  background:var(--surface);
}
.form-input::placeholder,.form-textarea::placeholder { color:var(--muted); }
.form-select { 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 fill='%238A9BAC' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-color:var(--warm-bg); padding-right:40px; cursor:pointer; }
.form-textarea { min-height:140px; resize:vertical; line-height:1.7; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-check-group { display:flex; flex-wrap:wrap; gap:8px; }
.form-check {
  display:flex; align-items:center; gap:7px;
  padding:8px 14px;
  border:1.5px solid var(--border);
  border-radius:100px;
  cursor:pointer;
  transition:.2s;
  font-size:.82rem;
  color:var(--mid);
  user-select:none;
}
.form-check input { display:none; }
.form-check:has(input:checked),.form-check.checked { border-color:var(--navy); background:var(--navy-lt); color:var(--navy); font-weight:700; }
.form-check:hover { border-color:var(--navy); }
.form-message { padding:12px 16px; border-radius:10px; font-size:.88rem; font-weight:700; display:none; margin-bottom:16px; }
.form-message--error { background:#FEF2F2; color:#DC2626; border:1px solid #FECACA; display:block; }
.form-message--success { background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0; display:block; }
.form-submit-area { text-align:center; padding-top:8px; }
.form-privacy { font-size:.78rem; color:var(--muted); margin-top:12px; }
.tab-nav {
  display:flex; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border); margin-bottom:32px;
  max-width:720px; margin-left:auto; margin-right:auto;
}
.tab-nav a {
  flex:1; padding:14px;
  text-align:center; font-size:.88rem; font-weight:600;
  color:var(--mid); background:var(--cream);
  border-right:1px solid var(--border); transition:all .2s;
}
.tab-nav a:last-child { border-right:none; }
.tab-nav a.active--navy { background:var(--navy); color:#fff; }
.tab-nav a.active--orange { background:var(--orange); color:#fff; }

/* ── Footer ── */
.site-footer { background:#060F1C; padding:64px 0 32px; }
.footer-inner { display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.06); margin-bottom:28px; }
.footer-brand p { font-size:.82rem; color:rgba(255,255,255,.28); line-height:1.9; }
.footer-brand img { height:64px; width:auto; object-fit:contain; margin-bottom:20px; filter:brightness(2) contrast(0.8); }
.footer-nav-head { font-size:.68rem; font-weight:700; letter-spacing:.18em; color:rgba(255,255,255,.28); margin-bottom:16px; }
.footer-nav-list { display:flex; flex-direction:column; gap:10px; }
.footer-nav-list a { font-size:.84rem; color:rgba(255,255,255,.45); transition:color .2s; }
.footer-nav-list a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:.72rem; color:rgba(255,255,255,.2); }
.footer-legal { display:flex; gap:18px; }
.footer-legal a { font-size:.72rem; color:rgba(255,255,255,.22); transition:color .2s; }
.footer-legal a:hover { color:rgba(255,255,255,.55); }

/* ── Privacy prose ── */
.prose { max-width:720px; margin:0 auto; }
.prose h2 { font-size:1.05rem; font-weight:800; margin:36px 0 12px; padding-bottom:10px; border-bottom:2px solid var(--navy); color:var(--navy); }
.prose p { color:var(--mid); font-size:.92rem; margin-bottom:16px; line-height:1.9; }
.prose ul { padding-left:20px; margin-top:8px; }
.prose ul li { color:var(--mid); font-size:.92rem; line-height:2.2; list-style:disc; margin-bottom:6px; }
.prose a { color:var(--blue); text-decoration:underline; }
.prose .updated { font-size:.82rem; color:var(--muted); margin-bottom:32px; }

/* ── Misc ── */
.text-center { text-align:center; }
.mt-xs { margin-top:8px; }
.mt-sm { margin-top:16px; }
.mt-md { margin-top:28px; }
.mt-lg { margin-top:48px; }
.latin { font-family:var(--ff-latin); }
.container--narrow { max-width:780px; }

/* ── Photo Band ── */
.photo-band {
  position:relative; overflow:hidden;
  padding:clamp(88px,13vw,148px) 0;
  text-align:center;
}
.photo-band-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.28) saturate(.7);
  transition:transform 8s ease;
}
.photo-band:hover .photo-band-bg { transform:scale(1.04); }
.photo-band-inner {
  position:relative; z-index:1;
  max-width:760px; margin:0 auto;
  padding:0 var(--gap);
}
.photo-band-inner .label { color:rgba(255,255,255,.35); }
.photo-band-inner .label::before { background:rgba(255,255,255,.25); }
.photo-band-inner h2 { color:#fff; font-size:clamp(2rem,4vw,3.2rem); margin:12px 0 24px; }
.photo-band-inner p { color:rgba(255,255,255,.58); font-size:.97rem; line-height:2; max-width:580px; margin:0 auto 32px; }

/* ── Photo Strip ── */
.photo-strip {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin-top:52px;
}
.photo-strip-item {
  position:relative; border-radius:var(--radius);
  overflow:hidden; aspect-ratio:4/3;
}
.photo-strip-bg {
  position:absolute; inset:0;
  width:100%; height:100%;
  background-size:cover; background-position:center;
  transition:transform .6s var(--ease);
}
.photo-strip-item:hover .photo-strip-bg { transform:scale(1.07); }
.photo-strip-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:16px;
  background:linear-gradient(to top,rgba(6,15,28,.78) 0%,transparent 100%);
  color:#fff; font-size:.78rem; font-weight:700; letter-spacing:.04em;
}

/* ── Scroll Reveal ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ── Responsive ── */
@media (max-width:1024px) {
  .top-hero { grid-template-columns:1fr; min-height:auto; }
  .hero-right { height:55vw; max-height:480px; }
  .hero-left::after { display:none; }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .steps-row { grid-template-columns:repeat(2,1fr); gap:28px; }
  .steps-row::before { display:none; }
}
@media (max-width:768px) {
  .concerns-grid,.target-grid,.svc-detail-grid,.pathway-grid,
  .grid-2,.grid-3,.merit-grid,.philosophy-grid,.how-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .site-nav { display:none; }
  .menu-btn { display:flex; }
  .rep-grid { grid-template-columns:1fr; }
  .rep-photo-wrap { max-width:240px; }
  .career-year { width:80px; font-size:.75rem; }
  .svc-block { grid-template-columns:1fr; direction:ltr !important; gap:32px; }
  .svc-block:nth-child(even) { direction:ltr; }
  .svc-block-tasks { grid-template-columns:1fr; }
  .form-grid-2 { grid-template-columns:1fr; }
  .lp-banner { flex-direction:column; padding:24px; }
  .achievement-card { flex-direction:column; gap:16px; }
  .photo-strip { grid-template-columns:1fr 1fr; }
  .info-table th { width:110px; }
}
@media (max-width:540px) {
  .svc-grid { grid-template-columns:1fr; }
  .hero-overlay-badge { display:none; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); }
  .stat-item:last-child { border-bottom:none; }
  .steps-row { grid-template-columns:1fr; }
  .photo-strip { grid-template-columns:1fr; }
}
