/* ============================================================
   Baku v2.0 FINAL — "間 (Ma)" Design
   Warm, Human, Professional
   Colors: v1.3 palette (red/orange/teal)
   ============================================================ */

@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 {
  --red:      #B91C1C;
  --red-dk:   #991B1B;
  --red-lt:   #FEF2F2;
  --orange:   #E85D04;
  --orange-lt:#FFF7ED;
  --teal:     #0D9488;
  --teal-dk:  #0F766E;
  --teal-lt:  #F0FDFA;

  --ink:      #1C1410;
  --ink-2:    #3D3028;
  --mid:      #6B5E58;
  --muted:    #9C8F87;
  --border:   #E8E2DC;

  --warm-bg:  #FAF8F5;
  --cream:    #F2EDE8;
  --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(28,20,16,.07);
  --shadow-md: 0 8px 32px rgba(28,20,16,.10);
  --shadow-lg: 0 20px 64px rgba(28,20,16,.14);
  --shadow-warm: 0 12px 40px rgba(185,28,28,.12);

  --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(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--red);
  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: #2C2018; }
.section--dark-2 { background: var(--ink-2); }
.section--red    { background: linear-gradient(135deg, #7F1D1D, var(--red), var(--orange)); }

.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(250,248,245,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: none;
  margin: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display:flex; flex-direction:column; line-height:1; }
.site-logo__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .25s;
}
.site-logo:hover .site-logo__img { opacity:.82; }
.site-logo__main {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: .08em;
  transition: color .25s;
  display: none;
}
.site-logo__sub {
  font-size: .6rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .14em;
  margin-top: 2px;
}
/* header--light: dark hero → white text logo (like v2.0) */
.header--light .site-logo__img  { display:none; }
.header--light .site-logo__main { display:block; color:#fff; }
.header--light .site-logo__sub  { color:rgba(255,255,255,.5); }
/* header--light scrolled: light bg → image logo */
.header--light.scrolled .site-logo__img  { display:block; }
.header--light.scrolled .site-logo__main { display:none; }
.header--light.scrolled .site-logo__sub  { color:var(--muted); }
.footer-logo { display:block; height:52px; width:auto; margin-bottom:16px; border-radius:8px; opacity:.9; }

.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(--red);
  transition:width .25s var(--ease);
}
.site-nav a:hover { color:var(--red); }
.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(--red); }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background:var(--red-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(250,248,245,.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(--red); }
.mobile-drawer .mobile-cta {
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  font-family: var(--ff-sans);
  border: none;
}

/* ── Hero ── */
.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(--red);
}
.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(--red), 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--red  { background:var(--red); box-shadow:0 0 8px var(--red); }
.hero-badge-dot--teal { background:var(--teal); box-shadow:0 0 8px var(--teal); }
.hero-badge-dot--gold { background:var(--orange); box-shadow:0 0 8px var(--orange); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-color: #2a2018;
  background-image: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,20,16,.2) 0%, transparent 50%);
}
.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;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px,5vw,64px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--mid);
  white-space: nowrap;
}
.trust-item strong { color:var(--ink); font-weight:700; }
.trust-sep {
  width: 1px; height: 20px;
  background: var(--border);
}

/* ── Photo Service Cards ── */
.photo-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.photo-svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.photo-svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s var(--ease);
}
.photo-svc-card:hover .photo-svc-bg { transform: scale(1.07); }
.photo-svc-overlay {
  position: absolute;
  inset: 0;
  transition: opacity .4s;
}
.photo-svc-card--red .photo-svc-overlay {
  background: linear-gradient(to top, rgba(120,10,10,.78) 0%, rgba(120,10,10,.15) 55%, transparent 100%);
}
.photo-svc-card--teal .photo-svc-overlay {
  background: linear-gradient(to top, rgba(10,80,75,.78) 0%, rgba(10,80,75,.15) 55%, transparent 100%);
}
.photo-svc-card:hover .photo-svc-overlay { opacity: 1.1; }
.photo-svc-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  z-index: 1;
}
.photo-svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .1em;
  margin-bottom: 16px;
  width: fit-content;
}
.photo-svc-content h3 {
  font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.photo-svc-content p {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.photo-svc-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.photo-svc-content ul li {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.photo-svc-content ul li::before { content:'→'; flex-shrink:0; }
.photo-svc-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  align-self: flex-end;
  transition: background .25s, transform .25s;
}
.photo-svc-card:hover .photo-svc-arrow { background:rgba(255,255,255,.32); transform:translateX(4px); }

/* ── General Service Cards ── */
.gen-svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--ease) .2s;
  transition-property: border-color, box-shadow, transform;
  position: relative;
  overflow: hidden;
}
.gen-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.gen-svc-card:hover { border-color:transparent; box-shadow:var(--shadow-md); transform:translateY(-4px); }
.gen-svc-card:hover::before { transform:scaleX(1); }
.gen-svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.gen-svc-icon--red  { background:var(--red-lt); color:var(--red); }
.gen-svc-icon--teal { background:var(--teal-lt); color:var(--teal); }
.gen-svc-icon--warm { background:var(--orange-lt); color:var(--orange); }
.gen-svc-icon svg { stroke:currentColor; }
.gen-svc-card h3 { font-family:var(--ff-sans); font-size:.97rem; font-weight:700; color:var(--ink); margin-bottom:10px; }
.gen-svc-card p  { font-size:.87rem; line-height:1.8; }
.gen-svc-price   { margin-top:14px; font-size:.82rem; color:var(--red); font-weight:700; letter-spacing:.03em; }

/* ── Stats section ── */
.stats-section {
  background: #2C2018;
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-block {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.stat-block:last-child { border-right:none; }
.stat-num {
  font-family: var(--ff-latin);
  font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-num span.unit { font-size:1.2rem; color:var(--red); }
.stat-num span.prefix { font-size:1.2rem; }
.stat-label { font-size:.78rem; color:rgba(255,255,255,.35); letter-spacing:.06em; }

/* ── Feature cards (dark bg) ── */
.dark-feat {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s;
}
.dark-feat:hover { border-color:rgba(255,255,255,.14); background:rgba(255,255,255,.06); }
.dark-feat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: rgba(255,255,255,.7);
}
.dark-feat-icon svg { stroke:currentColor; }
.dark-feat h3 { font-family:var(--ff-sans); font-size:.97rem; font-weight:700; color:#fff; margin-bottom:10px; }
.dark-feat p  { font-size:.85rem; color:rgba(255,255,255,.45); line-height:1.8; }

/* ── Problem cards ── */
.problem-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.problem-card {
  display: flex;
  gap: 14px;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.problem-card:hover { border-color:var(--red); box-shadow:0 4px 16px rgba(185,28,28,.07); }
.problem-icon { font-size:1.5rem; flex-shrink:0; line-height:1.2; color:var(--red); }
.problem-icon svg { stroke:currentColor; }
.problem-card h3 { font-family:var(--ff-sans); font-size:.88rem; font-weight:700; color:var(--ink); margin-bottom:6px; }
.problem-card p  { font-size:.82rem; line-height:1.7; }

/* ── Process steps ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  gap: 0;
}
.process-row::before {
  content:'';
  position:absolute;
  top: 34px; left:12.5%; right:12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--teal));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  z-index: 1;
}
.process-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--ink);
  border: 2.5px solid var(--red);
  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: #fff;
}
.process-step h3 { font-family:var(--ff-sans); font-size:.9rem; font-weight:700; color:#fff; margin-bottom:8px; }
.process-step p  { font-size:.81rem; color:rgba(255,255,255,.42); line-height:1.7; }

/* ── Pricing ── */
.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.price-card-head {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.price-card-head--red  { background: linear-gradient(135deg, #7F1D1D, #B91C1C); }
.price-card-head--teal { background: linear-gradient(135deg, #134E4A, #0D9488); }
.price-card-head--warm { background: linear-gradient(135deg, #7C2D12, #E85D04); }
.price-card-icon { font-size:2rem; flex-shrink:0; }
.price-card-head h3 { color:#fff; font-size:1.05rem; }
.price-card-head p  { color:rgba(255,255,255,.6); font-size:.8rem; margin-top:3px; }
.price-card-amount {
  margin-left: auto;
  font-family: var(--ff-latin);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.price-card-amount span { font-size:.9rem; color:rgba(255,255,255,.6); }
.price-card-body { padding:24px 32px; }
.price-card-body ul { display:flex; flex-direction:column; gap:9px; }
.price-card-body ul li {
  display: flex; gap:9px;
  font-size:.87rem; color:var(--mid);
  padding-bottom:9px;
  border-bottom:1px solid var(--border);
}
.price-card-body ul li:last-child { border-bottom:none; padding-bottom:0; }
.price-card-body ul li::before { content:'→'; color:var(--red); font-weight:700; flex-shrink:0; }

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead tr { background:var(--ink); }
.price-table thead th { padding:15px 20px; color:#fff; font-size:.8rem; font-weight:700; letter-spacing:.05em; text-align:left; }
.price-table thead th:last-child { text-align:right; }
.price-table tbody tr { background:var(--surface); transition:background .15s; }
.price-table tbody tr:nth-child(even) { background:var(--warm-bg); }
.price-table tbody tr:hover { background:var(--red-lt); }
.price-table tbody td { padding:14px 20px; font-size:.88rem; color:var(--mid); border-bottom:1px solid var(--border); }
.price-table tbody tr:last-child td { border-bottom:none; }
.price-table tbody td:last-child { text-align:right; font-weight:700; color:var(--red); }

/* ── Company table ── */
.co-table { width:100%; border-collapse:collapse; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.co-table tr { border-bottom:1px solid var(--border); }
.co-table tr:last-child { border-bottom:none; }
.co-table th { padding:17px 22px; background:var(--cream); text-align:left; width:28%; font-size:.8rem; font-weight:700; color:var(--mid); letter-spacing:.05em; }
.co-table td { padding:17px 22px; font-size:.9rem; color:var(--ink); background:var(--surface); }
.co-table a { color:var(--red); font-weight:700; }

/* ── Mission ── */
.mission-block {
  border-radius: var(--radius-xl);
  padding: clamp(48px,8vw,80px) clamp(32px,6vw,72px);
  background: linear-gradient(140deg, #1A0A09 0%, #6B1010 50%, #B91C1C 130%);
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.mission-block::before {
  content: '清';
  position: absolute;
  right: -0.08em; top: -.12em;
  font-family: var(--ff-serif);
  font-size: 28vw;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  max-font-size: 320px;
}
.mission-block .label { color:rgba(255,255,255,.45); }
.mission-block .label::before { background:rgba(255,255,255,.35); }
.mission-block h2 { color:#fff; font-size:clamp(2rem,4vw,3rem); margin:10px 0 24px; }
.mission-block h2 em { font-style:italic; color:rgba(255,255,255,.5); }
.mission-block p { color:rgba(255,255,255,.6); max-width:580px; line-height:2.1; font-size:.95rem; }

/* ── Rep block ── */
.rep-block { display:flex; flex-direction:column; align-items:center; gap:36px; max-width:780px; margin:0 auto; }
.rep-photo { width:100%; max-height:400px; border-radius:var(--radius); border:2px solid rgba(255,255,255,.12); object-fit:cover; object-position:center 30%; }
.rep-placeholder { width:200px; height:200px; border-radius:var(--radius); background:rgba(255,255,255,.05); border:2px dashed rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; font-size:4rem; }
.rep-title { color:rgba(255,255,255,.35); font-size:.75rem; text-align:center; margin-top:10px; letter-spacing:.1em; }
.rep-body p { color:rgba(255,255,255,.65); line-height:2.1; font-size:.92rem; margin-bottom:18px; }
.rep-body p:last-child { margin-bottom:0; }

/* ── Contact cards ── */
.contact-methods { display:flex; flex-direction:column; gap:12px; }
.cc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.cc-card:hover { border-color:var(--red); box-shadow:0 4px 20px rgba(185,28,28,.08); transform:translateY(-2px); }
.cc-icon { width:46px; height:46px; border-radius:10px; background:var(--red-lt); display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; color:var(--red); }
.cc-icon svg { stroke:currentColor; }
.cc-label { font-size:.7rem; color:var(--muted); margin-bottom:2px; letter-spacing:.08em; }
.cc-value { font-weight:700; font-size:.95rem; color:var(--ink); }
.cc-hint  { font-size:.74rem; color:var(--muted); margin-top:2px; }

/* ── 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-group { margin-bottom:20px; }
.form-label { display:block; font-size:.8rem; font-weight:700; color:var(--ink); margin-bottom:8px; letter-spacing:.03em; }
.form-label .req { color:var(--red); margin-left:4px; font-size:.73rem; }
.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(--red);
  box-shadow:0 0 0 3px rgba(185,28,28,.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='%239C8F87' 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-row { 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(--red); background:var(--red-lt); color:var(--red); font-weight:700; }
.form-check:hover { border-color:var(--red); }
.form-status { padding:14px 18px; border-radius:10px; font-size:.88rem; font-weight:700; display:none; margin-top:14px; text-align:center; }
.form-status.success { background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0; display:block; }
.form-status.error   { background:var(--red-lt); color:var(--red-dk); border:1px solid #FECACA; display:block; }
.field-error { color:var(--red); font-size:.76rem; margin-top:5px; }

/* ── 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--red { background:var(--red); color:#fff; box-shadow:0 4px 18px rgba(185,28,28,.28); }
.btn--red:hover { background:var(--red-dk); transform:translateY(-2px); box-shadow:0 8px 28px rgba(185,28,28,.36); }
.btn--teal { background:var(--teal); color:#fff; box-shadow:0 4px 18px rgba(13,148,136,.25); }
.btn--teal:hover { background:var(--teal-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(--red); color:var(--red); }
.btn--sm { padding:10px 20px; font-size:.83rem; }
.btn--lg { padding:17px 42px; font-size:.97rem; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, #4A1212 0%, #991B1B 50%, #B91C1C 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-contacts { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; max-width:580px; margin:0 auto; }
.cta-cc {
  display:flex; flex-direction:column; align-items:center; gap:5px;
  padding:20px 12px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  text-decoration:none;
  transition:.25s;
}
.cta-cc:hover { background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.22); }
.cta-cc__icon { font-size:1.6rem; color:rgba(255,255,255,.7); }
.cta-cc__icon svg { stroke:currentColor; }
.cta-cc__label { font-size:.65rem; color:rgba(255,255,255,.35); letter-spacing:.1em; }
.cta-cc__val { font-size:.86rem; font-weight:700; color:#fff; }
.cta-cc__hint { font-size:.7rem; color:rgba(255,255,255,.35); }

/* ── Page Hero ── */
.page-hero {
  padding: 140px 0 80px;
  position:relative; overflow:hidden;
}
.page-hero--red   { background:linear-gradient(140deg,#4A1212 0%,#B91C1C 50%,#DC2626 100%); }
.page-hero--teal  { background:linear-gradient(140deg,#0A3D3A 0%,#0D9488 50%,#14B8A6 100%); }
.page-hero--dark  { background:linear-gradient(140deg,#2C2018 0%,#44362A 60%,#5C4A3C 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-photo {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.25;
}
.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; }

/* ── Footer ── */
.site-footer { background:#1C1814; 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 h3 { font-family:var(--ff-serif); font-size:1.7rem; color:#fff; margin-bottom:12px; }
.footer-brand p { font-size:.82rem; color:rgba(255,255,255,.28); line-height:1.9; }
.footer-brand .badge { display:inline-flex; align-items:center; gap:8px; margin-top:16px; padding:8px 14px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:8px; font-size:.76rem; color:rgba(255,255,255,.45); }
.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-contact-item { display:flex; align-items:center; gap:10px; font-size:.83rem; color:rgba(255,255,255,.4); margin-bottom:10px; }
.footer-contact-item strong { color:rgba(255,255,255,.72); }
.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); }

/* ── Misc ── */
.divider { height:1px; background:var(--border); }
.divider--dark { background:rgba(255,255,255,.06); }
.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; }
.note { font-size:.8rem; color:var(--muted); margin-top:12px; }

.prose { max-width:720px; margin:0 auto; }
.prose h2 { font-size:1.1rem; font-weight:700; margin:40px 0 14px; padding-bottom:10px; border-bottom:2px solid var(--red); color:var(--ink); }
.prose p { color:var(--mid); font-size:.92rem; margin-bottom:16px; }
.prose ul { padding-left:20px; }
.prose ul li { color:var(--mid); font-size:.92rem; line-height:2.2; list-style:disc; }
.prose a { color:var(--red); }

/* ── 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; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right:none; }
  .process-row { grid-template-columns:repeat(2,1fr); gap:28px; }
  .process-row::before { display:none; }
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .photo-svc-grid,.grid-2,.grid-3 { grid-template-columns:1fr; }
  .problem-grid { grid-template-columns:1fr 1fr; }
  .cta-contacts { grid-template-columns:1fr; max-width:300px; }
  .form-row { 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-photo,.rep-placeholder { margin:0 auto; }
  .rep-title { text-align:center; }
}
@media (max-width:540px) {
  .problem-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-block { border-right:none; border-bottom:1px solid rgba(255,255,255,.06); }
  .stat-block:last-child { border-bottom:none; }
  .hero-overlay-badge { display:none; }
  .trust-sep { display:none; }
  .process-row { grid-template-columns:1fr; }
}

/* ── 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; }

/* ── Divider ── */
.section--alt { background: var(--cream); }

/* ── 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(.45) saturate(.9);
  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 Side ── */
.photo-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-side--reverse { direction: rtl; }
.photo-side--reverse > * { direction: ltr; }
.photo-side__img {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.photo-side__body {
  padding: clamp(36px,5vw,64px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.photo-side__body .label { margin-bottom:0; }
.photo-side__body h2 { font-size:clamp(1.5rem,2.8vw,2.1rem); margin-top:0; }
.photo-side__body p { font-size:.9rem; line-height:1.95; margin:0; }

/* ── Photo Strip (3-col images) ── */
.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-item img,
.photo-strip-item .photo-strip-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  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(28,20,16,.78) 0%, transparent 100%);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

@media (max-width:768px) {
  .photo-side { grid-template-columns:1fr; }
  .photo-side__img { min-height: 260px; }
  .photo-side--reverse { direction: ltr; }
  .photo-strip { grid-template-columns:1fr 1fr; }
}
@media (max-width:540px) {
  .photo-strip { grid-template-columns:1fr; }
}
