﻿:root {
  --ink: #312d52;
  --muted: #696687;
  --line: #e9e7f4;
  --paper: #ffffff;
  --soft: #f6f4ff;
  --violet: #6254e7;
  --orange: #f47514;
  --gold: #f0ac0e;
  --shadow: 0 22px 70px rgba(49, 45, 82, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Rubik, Arial, sans-serif;
  color: var(--muted);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Nunito, sans-serif; font-weight: 800; color: var(--ink); font-size: 22px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.site-nav { display: flex; gap: clamp(16px, 2.5vw, 34px); align-items: center; font-size: 15px; color: var(--ink); }
.site-nav a:hover { color: var(--orange); }
.nav-toggle { display: none; border: 0; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 6px; font: inherit; }

.section-wrap, .section-band { padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 90px); }
.section-wrap { max-width: 1240px; margin: 0 auto; }
.section-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); gap: clamp(34px, 6vw, 84px); align-items: center; background: linear-gradient(135deg, #fff 0%, #f8f6ff 56%, #fff2e8 100%); }

.hero { min-height: calc(100vh - 84px); overflow: hidden; }
.eyebrow { margin: 0 0 12px; color: var(--orange); font-weight: 500; letter-spacing: 0; }
h1, h2, h3 { font-family: Nunito, sans-serif; color: var(--ink); line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 80px); max-width: 820px; }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: 23px; }
.hero-copy p:not(.eyebrow) { max-width: 620px; font-size: 21px; margin: 24px 0 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 28px; border-radius: 6px; color: #fff; background: linear-gradient(96deg, var(--gold), var(--orange)); box-shadow: 0 16px 35px rgba(244, 117, 20, 0.22); font-family: Nunito, sans-serif; font-weight: 700; }
.button.ghost { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: 11% 8% 2% 8%; background: radial-gradient(circle, rgba(98,84,231,.2), transparent 62%); }
.hero-art img { position: relative; margin-inline: auto; filter: drop-shadow(0 35px 45px rgba(49,45,82,.14)); }

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.proof-strip span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading p:not(.eyebrow) { max-width: 680px; margin: 18px auto 0; }
.service-showcase { display: grid; gap: clamp(42px, 6vw, 78px); }
.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(49,45,82,.08);
}
.service-detail.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}
.service-detail h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 18px;
}
.service-detail p:not(.eyebrow) {
  margin-top: 0;
  line-height: 1.74;
}
.service-media {
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.service-media img {
  max-height: 330px;
  width: 100%;
  object-fit: contain;
}

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.media-panel { border-radius: 8px; background: var(--soft); padding: clamp(18px, 3vw, 34px); box-shadow: var(--shadow); }
.split p:last-child { margin-bottom: 0; }
.compact-band { min-height: auto; grid-template-columns: 1fr 0.9fr; background: #312d52; color: #d9d6ef; }
.compact-band h2 { color: #fff; }
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.location-grid article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.location-grid h3 { color: #fff; margin-bottom: 8px; }
.location-grid p { margin: 0; }
.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.process-list strong {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-family: Nunito, sans-serif;
}

.local-hero {
  min-height: 640px;
  overflow: hidden;
}
.local-hero .hero-art {
  min-height: 430px;
  display: grid;
  place-items: center;
}
.local-hero .hero-art img {
  width: min(680px, 112%);
  max-width: none;
  transform: translateX(4%);
}
.local-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.local-services article,
.testimonial-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(49,45,82,.07);
}
.local-services h3 {
  margin-bottom: 12px;
}
.local-services p,
.testimonial-grid p {
  margin: 0;
}
.testimonial-grid {
  display: grid;
  gap: 14px;
}
.testimonial-grid article {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
}
.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  color: #ffbf68;
  font-family: Nunito, sans-serif;
}
.map-section {
  max-width: 1120px;
}
.map-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.blog-hero {
  min-height: 560px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.blog-grid.compact {
  max-width: 980px;
  margin: 0 auto;
}
.blog-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(49,45,82,.08);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
  padding: 16px;
}
.blog-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.blog-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}
.blog-card h3 a:hover {
  color: var(--orange);
}
.blog-card p {
  margin: 0;
}
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.schedule-list {
  display: grid;
  gap: 14px;
}
.schedule-list article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.schedule-list strong {
  color: #ffbf68;
  font-family: Nunito, sans-serif;
}
.schedule-list span {
  color: #fff;
}
.article-wrap {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}
.article-wrap h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 16px;
}
.article-wrap h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 40px 0 14px;
}
.article-wrap > img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin: 34px 0;
  padding: clamp(20px, 4vw, 42px);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.article-meta {
  margin: 0;
  color: var(--muted);
}
.article-wrap a:not(.button) {
  color: var(--orange);
  font-weight: 500;
}
.article-cta {
  margin-top: 46px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.article-cta h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.article-cta p {
  margin-top: 0;
}

.testimonial blockquote { max-width: 880px; margin: 0 auto; padding: clamp(30px, 5vw, 56px); border-left: 5px solid var(--orange); border-radius: 8px; background: var(--soft); color: var(--ink); font-family: Nunito, sans-serif; font-size: clamp(24px, 3vw, 34px); line-height: 1.35; box-shadow: var(--shadow); }
.faq { max-width: 980px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(49,45,82,.06);
  margin-bottom: 14px;
  padding: 20px 22px;
}
.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.faq details p { margin-bottom: 0; }
.contact { background: linear-gradient(135deg, #312d52, #6254e7); color: #edeaff; }
.contact h2, .contact h3 { color: #fff; }
.contact .eyebrow { color: #ffbf68; }
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-details p { margin: 0; padding: 14px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; background: rgba(255,255,255,.08); }
.contact-details strong { display: block; color: #fff; font-family: Nunito, sans-serif; margin-bottom: 4px; }
.contact-details a { color: #fff; }
.contact-card { padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.1); box-shadow: 0 22px 70px rgba(0,0,0,.14); }
.contact-card img { width: 72px; margin-bottom: 24px; }
.inquiry-form { display: grid; gap: 14px; margin-top: 20px; }
.hp-field { display: none !important; }
.inquiry-form label { display: grid; gap: 6px; color: #fff; font-family: Nunito, sans-serif; font-weight: 700; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #ffbf68;
  box-shadow: 0 0 0 3px rgba(255,191,104,.25);
}
.inquiry-form .button { width: 100%; border: 0; cursor: pointer; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(20px, 6vw, 90px); background: #25213f; color: #fff; font-size: 14px; }
.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #fff 0%, #f8f6ff 56%, #fff2e8 100%);
}
.status-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 62px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.status-card img {
  width: 82px;
  margin: 0 auto 24px;
}
.status-card h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 18px;
}
.status-card p {
  margin: 0 auto 28px;
  max-width: 500px;
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; padding: 18px 24px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .section-band, .split, .split.reverse, .compact-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-media { order: -1; }
  .service-media { min-height: 260px; }
  .local-hero .hero-art { min-height: 320px; }
  .local-hero .hero-art img { width: min(620px, 100%); max-width: 100%; transform: none; }
  .local-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { min-height: 72px; }
  .brand span { font-size: 19px; }
  .local-services { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
