/* ============================================================
   Demo Tax Office — Scale Sonar design sample
   White base + dusty navy + restrained gold
   ============================================================ */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f7f6f2;          /* warm paper */
  --c-bg-deep: #11243d;          /* deep navy for footer / hero panels */
  --c-navy: #1f3a5f;             /* primary dusty navy */
  --c-navy-2: #3a587c;
  --c-navy-soft: #e7ecf2;        /* tinted blue surface */
  --c-gold: #b89968;             /* restrained gold accent */
  --c-gold-soft: #e9dfca;
  --c-ink: #1a2332;
  --c-ink-2: #4a5568;
  --c-muted: #7a8597;
  --c-line: #e3e5e9;
  --c-line-2: #eceef1;

  --f-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --f-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --shadow-sm: 0 1px 2px rgba(17, 36, 61, 0.04), 0 1px 3px rgba(17, 36, 61, 0.03);
  --shadow-md: 0 4px 20px -8px rgba(17, 36, 61, 0.08), 0 2px 6px rgba(17, 36, 61, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(17, 36, 61, 0.18);

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 44px; /* demo banner offset */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   DEMO BANNER (fixed top)
   ============================================================ */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: #2a1a05;
  color: #f8e3b0;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 11px 24px;
  border-bottom: 1px solid #533b18;
  letter-spacing: 0.02em;
}
.demo-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.demo-banner strong { color: #ffd47a; font-weight: 600; }
.demo-banner a {
  color: #ffd47a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.demo-banner .demo-pill {
  background: #ffd47a;
  color: #2a1a05;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 44px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--c-navy);
  color: white;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark span { color: var(--c-gold); }
.brand-name {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.brand-name small {
  display: block;
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 13.5px;
  color: var(--c-ink-2);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.nav a:hover { color: var(--c-navy); }
.nav-cta {
  background: var(--c-navy);
  color: white !important;
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--c-navy-2); }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section { padding: 112px 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.section-title .accent { color: var(--c-navy); }
.section-lead {
  font-size: 15px;
  color: var(--c-ink-2);
  max-width: 640px;
  line-height: 1.9;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 140px;
  background:
    radial-gradient(ellipse 1200px 600px at 75% 20%, rgba(31, 58, 95, 0.04), transparent 60%),
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; right: -120px; top: -80px;
  width: 480px; height: 480px;
  background: var(--c-gold-soft);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(40px);
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-navy);
  padding: 8px 16px;
  border: 1px solid var(--c-navy-soft);
  background: white;
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  margin-bottom: 32px;
}
.hero h1 .br { display: block; }
.hero h1 .mark {
  color: var(--c-navy);
  position: relative;
  background-image: linear-gradient(transparent 70%, rgba(184, 153, 104, 0.28) 70%);
}
.hero-sub {
  font-size: 16px;
  line-height: 2;
  color: var(--c-ink-2);
  margin-bottom: 48px;
  max-width: 520px;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-navy);
  color: white;
  box-shadow: 0 4px 14px -4px rgba(31, 58, 95, 0.4);
}
.btn-primary:hover { background: #15294a; transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(31, 58, 95, 0.45); }
.btn-ghost {
  border: 1px solid var(--c-line);
  background: white;
  color: var(--c-ink);
}
.btn-ghost:hover { border-color: var(--c-navy); color: var(--c-navy); }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-meta {
  display: flex; gap: 32px;
  font-size: 13px;
  color: var(--c-muted);
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
}
.hero-meta-item::before {
  content: "✓";
  color: var(--c-gold);
  font-weight: 700;
  font-size: 12px;
}

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #2a4566 0%, #1f3a5f 100%);
  border-radius: 2px;
  /* overflow visible so the floating stat cards (which sit at negative
     left/right offsets) are not clipped — the photo clips itself instead */
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.hero-visual-photo {
  position: absolute; inset: 0;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 58, 95, 0.15), rgba(31, 58, 95, 0.55)),
    radial-gradient(circle at 35% 40%, #6e8aab 0%, #3a587c 40%, #1f3a5f 80%);
}
.hero-visual-photo::after {
  content: "Photo Placeholder / 面談シーン";
  position: absolute;
  bottom: 24px; left: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.hero-stat {
  position: absolute;
  background: white;
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}
.hero-stat-1 { left: -32px; top: 60px; }
.hero-stat-2 { right: -28px; bottom: 80px; }
.hero-stat .num {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1;
}
.hero-stat .num small { font-size: 14px; color: var(--c-ink-2); margin-left: 4px; }
.hero-stat .lbl {
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ============================================================
   STRENGTHS (3 columns)
   ============================================================ */
.strengths { background: var(--c-bg-alt); }
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strength-card {
  background: white;
  padding: 56px 36px;
  border: 1px solid var(--c-line);
  position: relative;
  transition: all 0.2s;
}
.strength-card:hover {
  border-color: var(--c-navy-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.strength-num {
  font-family: var(--f-serif);
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-weight: 500;
}
.strength-icon {
  width: 56px; height: 56px;
  background: var(--c-navy-soft);
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--c-navy);
}
.strength-icon svg { width: 28px; height: 28px; }
.strength-card h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.strength-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-ink-2);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.service-item {
  background: white;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  transition: background 0.2s;
}
.service-item:hover { background: #fafbfc; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--c-bg-alt);
  display: grid; place-items: center;
  color: var(--c-navy);
  border-radius: 2px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-item h3 {
  font-family: var(--f-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.service-item .service-en {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.service-item p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-ink-2);
  margin-bottom: 16px;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-tag {
  font-size: 11.5px;
  color: var(--c-navy);
  background: var(--c-navy-soft);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--c-bg-alt); }
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 32px;
  letter-spacing: 0.04em;
}

.price-table {
  background: white;
  border: 1px solid var(--c-line);
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 22px 24px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}
.price-table thead th {
  background: var(--c-navy);
  color: white;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-bottom: none;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: #fafbfc; }
.price-table .tier {
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}
.price-table .tier small {
  display: block;
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-top: 4px;
}
.price-table .amount {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
}
.price-table .amount small {
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: var(--c-muted);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0.04em;
}
.price-table td.desc { color: var(--c-ink-2); line-height: 1.8; }

/* ============================================================
   REASONS (why us)
   ============================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.reason-item {
  padding-left: 56px;
  position: relative;
}
.reason-num {
  position: absolute;
  left: 0; top: 0;
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.02em;
}
.reason-num::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--c-gold);
  margin-top: 12px;
}
.reason-item h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c-ink);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.reason-item p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-ink-2);
}

/* ============================================================
   PROCESS (5 steps)
   ============================================================ */
.process { background: var(--c-bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 8%; right: 8%;
  height: 1px;
  background: var(--c-line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.process-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--c-navy);
  color: var(--c-navy);
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 500;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  position: relative;
}
.process-step:nth-child(1) .process-step-num,
.process-step:nth-child(5) .process-step-num {
  background: var(--c-navy);
  color: white;
}
.process-step h4 {
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.process-step p {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--c-ink-2);
}
.process-step .step-time {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--c-gold);
  margin-top: 14px;
  display: block;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: white;
  border: 1px solid var(--c-line);
  padding: 40px 36px;
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial-quote {
  font-family: var(--f-serif);
  color: var(--c-gold);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
  height: 28px;
  overflow: hidden;
  opacity: 0.7;
}
.testimonial h4 {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.testimonial p {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--c-ink-2);
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-meta {
  border-top: 1px solid var(--c-line-2);
  padding-top: 20px;
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--c-navy-soft);
  color: var(--c-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 16px;
}
.testimonial-meta-text { line-height: 1.4; }
.testimonial-meta-text .name {
  font-size: 13px; color: var(--c-ink); font-weight: 500;
}
.testimonial-meta-text .role {
  font-size: 11.5px; color: var(--c-muted); margin-top: 2px;
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--c-bg-alt); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--c-line);
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--c-navy); }
.faq-q {
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ""; }
.faq-q-mark {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--c-gold);
  font-weight: 600;
  flex-shrink: 0;
  width: 24px;
}
.faq-q-text { flex: 1; }
.faq-toggle {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--c-navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a-inner {
  padding: 0 28px 28px 72px;
  font-size: 14px;
  line-height: 2;
  color: var(--c-ink-2);
  border-top: 1px solid var(--c-line-2);
  margin-top: -1px;
  padding-top: 24px;
}
.faq-a-inner .a-mark {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--c-navy);
  font-weight: 600;
  margin-right: 12px;
  margin-left: -36px;
  display: inline-block;
  width: 24px;
}

/* ============================================================
   ABOUT (firm info + staff)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.staff-card {
  text-align: center;
}
.staff-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #d4dce5 0%, #b2bfd0 100%);
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
}
.staff-photo::after {
  content: "Portrait";
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
}
.staff-photo-1 { background: linear-gradient(160deg, #b8c5d4 0%, #8294ab 100%); }
.staff-photo-2 { background: linear-gradient(160deg, #c8b89a 0%, #a48f6a 100%); }
.staff-photo-3 { background: linear-gradient(160deg, #b5c3c0 0%, #819690 100%); }
.staff-card h4 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.staff-card .staff-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}
.staff-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-ink-2);
  text-align: left;
}

.firm-info {
  background: var(--c-bg-alt);
  padding: 40px 40px;
  border-left: 2px solid var(--c-gold);
}
.firm-info h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.firm-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 20px;
  font-size: 13.5px;
  line-height: 1.85;
}
.firm-info dt {
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 12px;
  padding-top: 2px;
}
.firm-info dd { color: var(--c-ink-2); }
.cert-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.cert-pill {
  font-size: 11px;
  color: var(--c-navy);
  border: 1px solid var(--c-navy-soft);
  background: white;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background:
    linear-gradient(135deg, rgba(17, 36, 61, 0.96), rgba(31, 58, 95, 0.92)),
    radial-gradient(circle at 80% 30%, rgba(184, 153, 104, 0.15), transparent 50%);
  color: white;
  padding: 120px 0;
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-final h2 {
  font-family: var(--f-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.cta-final .eyebrow { color: var(--c-gold); }
.cta-final-lead {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
}
.cta-contact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.cta-contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.cta-contact .phone {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: white;
  display: block;
  margin-bottom: 4px;
}
.cta-contact .hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

/* form */
.cta-form {
  background: white;
  color: var(--c-ink);
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cta-form h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.cta-form .form-sub {
  font-size: 12.5px;
  color: var(--c-muted);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.field label .req {
  color: #c54a4a;
  margin-left: 6px;
  font-size: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14px;
  background: white;
  color: var(--c-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.08);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--c-navy);
  color: white;
  padding: 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 500;
  border-radius: var(--radius);
  margin-top: 8px;
  transition: background 0.15s;
}
.form-submit:hover { background: #15294a; }
.form-foot {
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1828;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-mark { background: white; color: var(--c-navy); }
.footer-brand .brand-name { color: white; }
.footer-brand .brand-name small { color: rgba(255, 255, 255, 0.4); }
.footer-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--f-serif);
  font-size: 13px;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--c-gold); }

.footer-bottom {
  padding: 28px 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
.footer-demo {
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(184, 153, 104, 0.08);
  border-left: 2px solid var(--c-gold);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}
.footer-demo strong { color: var(--c-gold); font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: 38px; }
  .strengths-grid, .services-grid, .testimonials-grid, .staff-grid {
    grid-template-columns: 1fr;
  }
  .reasons-grid, .about-grid, .cta-final-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .process-steps::before { display: none; }
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .section-title { font-size: 28px; }
  .hero-stat-1, .hero-stat-2 { display: none; }
}
