:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #16232d;
  --surface-dark-soft: #223544;
  --text: #13202b;
  --text-soft: #4c6272;
  --text-inverse: #ffffff;
  --line: rgba(19, 32, 43, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #2d6f96;
  --primary-strong: #1e5778;
  --accent: #d28f4e;
  --shadow: 0 18px 48px rgba(20, 35, 47, 0.12);
  --shadow-soft: 0 12px 30px rgba(20, 35, 47, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 111, 150, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f3ede2 100%);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.intro-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(45, 111, 150, 0.14), transparent 40%),
    rgba(246, 241, 232, 0.96);
  z-index: 1200;
  transition: opacity 520ms ease, visibility 520ms ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen.is-hidden,
.intro-screen.is-skipped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border: 1px solid rgba(19, 32, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transform: scale(0.96);
  opacity: 0;
}

.intro-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.intro-mark span {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.js-enhanced .intro-screen.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.js-enhanced .intro-screen.is-hidden,
.js-enhanced .intro-screen.is-skipped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen.is-active .intro-mark {
  animation: introMark 1.45s ease forwards;
}

@keyframes introMark {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  20%,
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 235, 0.72);
  backdrop-filter: blur(16px);
  border-color: rgba(19, 32, 43, 0.08);
  box-shadow: 0 14px 34px rgba(20, 35, 47, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 32, 43, 0.08);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.brand-text span {
  display: block;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-text span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(19, 32, 43, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 14px 28px rgba(45, 111, 150, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(19, 32, 43, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.button-warm {
  color: var(--text);
  background: linear-gradient(135deg, #efc48d 0%, var(--accent) 100%);
  box-shadow: 0 14px 28px rgba(210, 143, 78, 0.2);
}

.hero {
  padding: clamp(36px, 5vw, 64px) 0 clamp(54px, 8vw, 92px);
}

.hero-grid,
.split-layout,
.map-grid,
.contact-grid,
.process-feature,
.guide-grid,
.service-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.hero-copy h1,
.section-header h2,
.split-copy h2,
.cta-banner h2,
.footer-brand h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  max-width: 12ch;
}

.hero-copy p,
.section-header p,
.split-copy p,
.cta-banner p,
.contact-card p,
.footer-column p,
.guide-card p,
.service-card p,
.trust-card p,
.step-card p,
.issue-card p {
  color: var(--text-soft);
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 980px;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero-actions,
.cta-actions,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-meta {
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 32, 43, 0.08);
  color: var(--text);
  font-weight: 600;
}

.hero-visual,
.split-media,
.trust-photo,
.process-photo,
.guide-photo,
.contact-photo,
.service-story-photo {
  position: relative;
}

.hero-visual img,
.split-media img,
.trust-photo img,
.process-photo img,
.guide-photo img,
.contact-photo img,
.service-story-photo img,
.service-card-media img,
.map-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 420ms ease;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-frame:hover img {
  transform: scale(1.04);
}

.hero-note,
.hero-float-card,
.proof-card {
  position: absolute;
  right: -18px;
  bottom: 20px;
  width: min(300px, 82%);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 32, 43, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.hero-note strong,
.hero-float-card strong,
.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-note p,
.hero-float-card p,
.proof-card p {
  margin: 0;
  color: var(--text-soft);
}

.section {
  padding: clamp(56px, 8vw, 94px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.68));
}

.section-dark {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(210, 143, 78, 0.24), transparent 30%),
    linear-gradient(180deg, #15222c 0%, #1c2f3c 100%);
}

.section-dark .section-header p,
.section-dark .split-copy p,
.section-dark .trust-card p,
.section-dark .step-card p,
.section-dark .guide-card p,
.section-dark .issue-card p,
.section-dark .cta-banner p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .eyebrow {
  color: #d4e6f1;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 1180px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 1100px;
}

.section-header p {
  margin: 0;
  max-width: 1050px;
  font-size: 1.05rem;
}

.grid-3,
.grid-2,
.symptom-strip,
.trust-grid-cards,
.process-steps,
.contact-cards,
.coverage-grid,
.guide-cards,
.services-grid,
.issue-grid,
.footer-inner {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

.grid-3,
.services-grid,
.guide-cards,
.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.symptom-strip,
.coverage-grid,
.process-steps,
.issue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.symptom-card,
.trust-card,
.step-card,
.guide-card,
.contact-card,
.issue-card,
.map-card,
.proof-panel {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 32, 43, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.section-dark .service-card,
.section-dark .symptom-card,
.section-dark .trust-card,
.section-dark .step-card,
.section-dark .guide-card,
.section-dark .contact-card,
.section-dark .issue-card,
.section-dark .map-card,
.section-dark .proof-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
}

.service-card:hover,
.symptom-card:hover,
.trust-card:hover,
.step-card:hover,
.guide-card:hover,
.contact-card:hover,
.issue-card:hover,
.map-card:hover,
.proof-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card h3,
.step-card h3,
.guide-card h3,
.contact-card h3,
.map-card h3,
.issue-card h3,
.footer-column h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
}

.service-card p,
.symptom-card p,
.trust-card p,
.step-card p,
.guide-card p,
.contact-card p,
.map-card p,
.issue-card p {
  margin: 0;
}

.service-card ul,
.footer-column ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.section-dark .service-card ul,
.section-dark .footer-column ul {
  color: rgba(255, 255, 255, 0.82);
}

.service-card-media {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 18px;
}

.service-card-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(45, 111, 150, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.section-dark .step-number {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 32, 43, 0.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checklist div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(19, 32, 43, 0.08);
  font-weight: 600;
}

.section-dark .checklist div {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.cta-banner {
  width: 100%;
  padding: clamp(28px, 5vw, 44px);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(45, 111, 150, 0.12), rgba(210, 143, 78, 0.18)),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 32, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  width: 100%;
  max-width: 1100px;
  text-wrap: balance;
}

.cta-banner p {
  margin: 14px 0 0;
  max-width: 980px;
  font-size: 1.02rem;
}

.map-embed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(19, 32, 43, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(19, 32, 43, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.preview-note {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.preview-note {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(45, 111, 150, 0.08);
  border: 1px solid rgba(45, 111, 150, 0.12);
}

.preview-note.is-visible {
  display: block;
}

.footer {
  padding: 34px 0 22px;
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, #182631 0%, #111b23 100%);
}

.footer-inner {
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-brand h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-column li,
.footer-column a,
.footer-small {
  color: rgba(255, 255, 255, 0.82);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--text-inverse);
  background: linear-gradient(135deg, #1f5f84 0%, #194964 100%);
  box-shadow: 0 20px 36px rgba(20, 35, 47, 0.26);
}

.floating-cta:hover {
  transform: translateY(-3px);
}

.desktop-only {
  display: inline-flex;
}

.section + .section {
  border-top: 1px solid rgba(19, 32, 43, 0.04);
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-enhanced .reveal-left {
  transform: translateX(-28px);
}

.js-enhanced .reveal-right {
  transform: translateX(28px);
}

.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

html:not(.js-enabled) .reveal {
  opacity: 1;
  transform: none;
}

.stagger-parent > * {
  transition-delay: 0ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .map-grid,
  .contact-grid,
  .process-feature,
  .guide-grid,
  .service-story-grid {
    grid-template-columns: 1fr;
  }

  .hero-note,
  .hero-float-card,
  .proof-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .services-grid,
  .guide-cards,
  .contact-cards,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .js-enhanced .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 6px;
    width: auto;
    order: initial;
    justify-content: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(248, 243, 236, 0.98);
    border: 1px solid rgba(19, 32, 43, 0.08);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .js-enhanced .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .js-enhanced .site-nav a::after {
    display: none;
  }

  .js-enhanced .site-nav a:hover,
  .js-enhanced .site-nav a[aria-current="page"] {
    background: rgba(45, 111, 150, 0.08);
  }

  .desktop-only {
    display: none;
  }

  .js-enhanced .nav-toggle {
    display: inline-flex;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    max-width: 100%;
  }

  .grid-2,
  .symptom-strip,
  .coverage-grid,
  .process-steps,
  .issue-grid,
  .services-grid,
  .guide-cards,
  .contact-cards,
  .grid-3,
  .field-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .button,
  .floating-cta {
    min-height: 52px;
  }

  .header-inner {
    min-height: 80px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 28px), 1180px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
