/* ===== Tokens ===== */
:root {
  --navy: #0f2a44;
  --navy-deep: #0a1c2e;
  --navy-soft: #1c3a58;
  --accent: #d6301f;
  --accent-dark: #a3210f;
  --amber: #f4a638;
  --amber-dark: #c9821f;
  --ink: #0f2a44;
  --ink-soft: #4a6178;
  --line: #e2e8ef;
  --paper: #ffffff;
  --paper-tint: #f5f8fb;

  --font-head: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(15,42,68,.06), 0 8px 24px -12px rgba(15,42,68,.18);
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0 0 .5em; color: var(--navy); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-lede { max-width: 620px; font-size: 1.05rem; }
.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 .9em;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: var(--radius); text-decoration: none;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); }
.btn-accent { background: var(--amber); color: var(--navy-deep); }
.btn-accent:hover { background: #ffb84d; box-shadow: 0 10px 24px -10px rgba(244,166,56,.6); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { max-width: 1240px; }
.header-inner { display: flex; align-items: center; gap: 20px; padding-top: 16px; padding-bottom: 16px; }
.logo { display: flex; align-items: center; gap: 16px; text-decoration: none; margin-right: auto; }
.logo-photo {
  width: 58px; height: 92px; border-radius: 14px; object-fit: cover; object-position: 50% 12%; display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.logo-accent { color: var(--accent); }
.logo-sub { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.main-nav { display: flex; gap: 22px; }
.main-nav a { font-size: .9rem; font-weight: 500; text-decoration: none; color: var(--ink-soft); transition: color .15s; white-space: nowrap; }
.main-nav a:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; text-decoration: none; color: var(--navy); font-size: .95rem; }
.phone-link:hover { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 108px 0 84px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8,10,12,.78) 0%, rgba(8,10,12,.6) 38%, rgba(8,10,12,.22) 62%, rgba(8,10,12,.05) 82%),
    linear-gradient(0deg, rgba(8,10,12,.55) 0%, rgba(8,10,12,0) 30%);
}
.hero-inner { position: relative; max-width: 760px; }
.hero .eyebrow { color: var(--amber); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
.hero-lede { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 46px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 0; }
.trust-strip li {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.85);
  padding: 0 20px; border-right: 1px solid rgba(255,255,255,.2);
}
.trust-strip li:first-child { padding-left: 0; }
.trust-strip li:last-child { border-right: none; }
.trust-strip strong { color: var(--amber); font-family: var(--font-head); font-size: 1rem; margin-right: 4px; }

/* ===== Secondary page hero (Who We Are, method pages) ===== */
.page-hero { position: relative; color: #fff; padding: 84px 0; overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(8,10,12,.8) 0%, rgba(8,10,12,.6) 42%, rgba(8,10,12,.25) 68%, rgba(8,10,12,.08) 88%);
}
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0; }

/* ===== Who we are ===== */
.who-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; align-items: start; }
.who-copy p { font-size: 1.02rem; }
.who-copy .section-lede { font-size: 1.15rem; color: var(--navy); font-weight: 500; }
.who-stats { display: flex; gap: 32px; margin: 28px 0 30px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.who-stats li { display: flex; flex-direction: column; }
.who-stats strong { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--accent); }
.who-stats span { font-size: .82rem; color: var(--ink-soft); }
.who-photo img { width: 100%; max-width: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.main-nav a.active { color: var(--navy); font-weight: 700; }

/* ===== Method detail pages ===== */
.method-grid-body { max-width: 720px; }
.method-copy .section-lede { font-size: 1.15rem; color: var(--navy); font-weight: 500; }

.process-steps { list-style: none; margin: 36px 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.process-steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.process-steps strong { font-family: var(--font-head); font-size: 1.02rem; display: block; margin-bottom: 4px; color: var(--navy); }
.process-steps p { margin: 0; font-size: .93rem; }

.method-fit { background: var(--paper-tint); border-radius: var(--radius-lg); padding: 22px 24px; margin: 8px 0 32px; }
.method-fit h3 { font-size: 1rem; margin-bottom: 6px; }
.method-fit p { margin: 0; font-size: .92rem; }

.other-methods { background: var(--paper-tint); }
.other-methods .card-grid { max-width: 760px; margin-left: auto; margin-right: auto; grid-template-columns: repeat(2, 1fr); }

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.card-num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--accent); opacity: .35; margin-bottom: 10px; }
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card p { margin: 0; font-size: .95rem; }

.card-photo {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-photo .thumb {
  width: 88px; height: 88px; border-radius: 12px; object-fit: cover; object-position: 50% 50%; display: block;
  margin-bottom: 18px;
}
.card-photo .thumb.crop-top { object-position: 50% 18%; }
.card-photo .card-body { padding: 0; }
.card-photo .card-body h3 { font-size: 1.1rem; }
.card-photo .card-body p { font-size: .92rem; }
.method-grid .card-photo:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(15,42,68,.08), 0 16px 32px -14px rgba(15,42,68,.28); border-color: var(--accent); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--accent);
}
.card-photo:hover .card-link svg { transform: translateX(3px); }
.card-link svg { transition: transform .18s ease; }

/* ===== Why section ===== */
.why { background: var(--navy); color: #fff; }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.why .eyebrow { color: var(--amber); }
.why h2 { color: #fff; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(214,48,31,.16); color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; }
.why-list strong { font-family: var(--font-head); font-size: 1rem; display: block; margin-bottom: 2px; color: #fff; }
.why-list p { margin: 0; color: rgba(255,255,255,.72); font-size: .92rem; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.gallery-slot {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background-color: var(--paper-tint);
}
.gallery-slot:empty {
  background-image: repeating-linear-gradient(135deg, rgba(15,42,68,.05) 0 2px, transparent 2px 14px);
  border: 1.5px dashed var(--line);
}
.gallery-slot:empty::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600; color: var(--ink-soft);
}
.gallery-slot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-slot:hover img { transform: scale(1.04); }
.gallery-slot .cap {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 26px 16px 12px;
  font-size: .82rem; color: #fff; text-align: left;
  background: linear-gradient(0deg, rgba(10,28,46,.82) 0%, rgba(10,28,46,0) 100%);
}
.gallery-tag {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-head); font-weight: 700; font-size: .68rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff;
  background: rgba(10,28,46,.72);
}

/* ===== Before/after slider ===== */
.ba-slider {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 44px; box-shadow: var(--shadow); cursor: ew-resize; user-select: none;
  --ba-pos: 50%;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.ba-before { clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos); transform: translateX(-50%);
  width: 44px; display: flex; align-items: center; justify-content: center;
}
.ba-handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle-grip {
  position: relative; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--navy);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.ba-tag {
  position: absolute; top: 16px; font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; color: #fff;
  background: rgba(10,28,46,.72); pointer-events: none;
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-caption { margin: 14px 0 0; font-size: .88rem; color: var(--ink-soft); text-align: center; }

/* ===== Testimonials ===== */
.testimonials { background: var(--paper-tint); }
.testimonial-card {
  max-width: 640px; margin: 0 auto; text-align: center; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow);
}
.stars { color: var(--amber); font-size: 1.2rem; letter-spacing: .1em; margin-bottom: 18px; }
.testimonial-quote { font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; color: var(--navy); line-height: 1.5; }
.testimonial-author { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ===== FAQ / Accordion ===== */
.accordion { max-width: 760px; margin-top: 40px; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: none; padding: 22px 4px; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy);
}
.accordion-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--accent); transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { padding: 0 4px 22px; margin: 0; max-width: 620px; }

/* ===== Service area ===== */
.city-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.city-grid li {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy);
  background: var(--paper-tint); border: 1px solid var(--line); padding: 10px 20px; border-radius: 999px;
}
.area-note { margin-top: 24px; font-size: .9rem; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); text-align: center; }
.cta-inner { max-width: 620px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 34px; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 48px 0 32px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.footer-logo { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.footer-tagline { margin: 4px 0 0; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-contact a { text-decoration: none; font-family: var(--font-head); font-weight: 700; color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; }
.footer-nav a:hover { color: #fff; }
.footer-copy { width: 100%; margin: 24px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: rgba(255,255,255,.45); }

/* ===== Mobile call FAB ===== */
.mobile-call-fab {
  display: none; position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--amber); color: var(--navy-deep);
  align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
}

/* ===== Reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Credibility strip ===== */
.credibility { padding: 40px 0; background: var(--paper-tint); border-bottom: 1px solid var(--line); }
.credibility ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.credibility li {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy);
  background: var(--paper); border: 1px solid var(--line); padding: 12px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
}
.credibility li svg { color: var(--accent); flex: none; }

/* ===== Services grid (homepage + hub) ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.card-photo-lg {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-photo-lg:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(15,42,68,.08), 0 16px 32px -14px rgba(15,42,68,.28); border-color: var(--accent); }
.card-photo-lg img { width: 100%; height: 190px; object-fit: cover; display: block; }
.card-photo-lg .card-body { padding: 22px 24px; }
.card-photo-lg .card-body h3 { font-size: 1.1rem; }
.card-photo-lg .card-body p { font-size: .92rem; }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== Why section photo ===== */
.why-photo { margin-top: 24px; }
.why-photo img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: 0 8px 24px -12px rgba(0,0,0,.5); }

/* ===== Breadcrumbs ===== */
.breadcrumbs { padding: 18px 0; border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .84rem; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--line); margin-left: 6px; }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* ===== Service hub / grid pages ===== */
.service-detail-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 48px 0; }
.service-detail-band img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.service-detail-band.reverse { direction: rtl; }
.service-detail-band.reverse > * { direction: ltr; }
.service-list { margin: 20px 0 0; display: flex; flex-direction: column; gap: 14px; }
.service-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.service-list svg { flex: none; margin-top: 3px; color: var(--accent); }
.notice-band { background: var(--paper-tint); border-left: 3px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 32px 0; }
.notice-band p { margin: 0; font-size: .92rem; }
.notice-band strong { color: var(--navy); }

/* ===== Gallery page ===== */
.gallery-slot { cursor: zoom-in; border: none; padding: 0; text-align: left; }
.gallery-slot figcaption { display: none; }
dialog.lightbox { border: none; padding: 0; background: transparent; max-width: min(92vw, 1100px); width: 100%; }
dialog.lightbox::backdrop { background: rgba(8,10,12,.88); }
.lightbox-inner { position: relative; background: var(--navy-deep); border-radius: var(--radius-lg); overflow: hidden; }
.lightbox-inner img { width: 100%; max-height: 78vh; object-fit: contain; background: #000; }
.lightbox-caption { color: rgba(255,255,255,.85); font-size: .9rem; padding: 14px 20px; margin: 0; }
.lightbox-close {
  position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; border: none; font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.lightbox-close:focus-visible, a:focus-visible, button:focus-visible, .gallery-slot:focus-visible {
  outline: 3px solid var(--amber); outline-offset: 2px;
}

/* ===== Contact form ===== */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--navy); }
.form-row .hint { font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"],
.form-row textarea, .form-row select, .form-row input[type="file"] {
  font: inherit; font-size: .95rem; padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink); width: 100%;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,42,68,.12); }
.form-row input:invalid:not(:placeholder-shown), .form-row textarea:invalid:not(:placeholder-shown) { border-color: var(--accent); }
.form-error { display: none; color: var(--accent-dark); font-size: .82rem; font-weight: 600; }
.form-row.invalid .form-error { display: block; }
.form-row.invalid input, .form-row.invalid textarea { border-color: var(--accent); }
.radio-group { display: flex; flex-wrap: wrap; gap: 18px; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: .92rem; color: var(--ink); }
.radio-group input { width: auto; }
.form-status { display: none; padding: 16px 18px; border-radius: var(--radius); font-size: .92rem; font-weight: 600; }
.form-status.success { display: block; background: rgba(15,42,68,.08); color: var(--navy); border: 1px solid rgba(15,42,68,.2); }
.form-status.error { display: block; background: rgba(214,48,31,.08); color: var(--accent-dark); border: 1px solid rgba(214,48,31,.25); }
.contact-side { background: var(--paper-tint); border-radius: var(--radius-lg); padding: 32px 28px; }
.contact-side h3 { font-size: 1.05rem; }
.contact-side ul { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 0; }
.contact-side li { font-size: .92rem; color: var(--ink-soft); display: flex; gap: 10px; }
.contact-side svg { flex: none; color: var(--accent); margin-top: 2px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .other-methods .card-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-photo img { max-width: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-band { grid-template-columns: 1fr; }
  .service-detail-band.reverse { direction: ltr; }
  .service-detail-band img { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 10px 24px 22px; gap: 4px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-actions .phone-link span { display: none; }
  .header-actions .btn-primary { display: none; }
  .mobile-call-fab { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 84px 0 64px; }
  .page-hero { padding: 64px 0; min-height: 240px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip li { padding: 0 14px; font-size: .8rem; }
  .hero-overlay { background: rgba(8,10,12,.72); }
  .page-hero-overlay { background: rgba(8,10,12,.72); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
