:root {
  --blue: #2e3192;
  --blue-2: #1a75b8;
  --blue-dark: #11145f;
  --green: #8bc240;
  --ink: #111827;
  --muted: #5d6678;
  --soft: #f6f9ff;
  --line: #dde7f2;
  --white: #fff;
  --shadow: 0 22px 60px rgba(17, 20, 95, .13);
  --shadow-soft: 0 14px 36px rgba(17, 20, 95, .09);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 22px;
}
.brand img {
  width: 220px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: #344054;
  font-weight: 800;
}
.main-nav a:hover { color: var(--blue); }
.mobile-menu-cta { display: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}
.header-phone {
  padding: 11px 16px;
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}
.header-cta {
  padding: 13px 18px;
  color: #14220f;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(139, 194, 64, .3);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(139, 194, 64, .34);
}
.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.menu-toggle:focus-visible,
.header-phone:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.btn:focus-visible,
.sticky-mobile-cta a:focus-visible {
  outline: 3px solid rgba(139, 194, 64, .75);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 54px;
  background: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}
.micro-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.micro-label::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}
.section-label.light { color: #fff; }
.section-label.light::before { background: #fff; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.07;
  letter-spacing: 0;
}
h1 {
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 62px;
}
h2 {
  color: var(--blue-dark);
  font-size: 44px;
}
h3 { font-size: 23px; }
.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #394760;
  font-size: 21px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-large {
  min-height: 58px;
  padding: 16px 26px;
}
.btn-primary {
  color: #12240d;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(139, 194, 64, .36);
}
.btn-primary:hover {
  background: #7fb73a;
  box-shadow: 0 20px 44px rgba(139, 194, 64, .42);
}
.btn-secondary {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(46, 49, 146, .22);
}
.btn-outline {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px;
  margin-top: 28px;
}
.proof-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  color: rgba(17, 20, 95, .82);
  background: rgba(46, 49, 146, .06);
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
}
.proof-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.hero-panel { position: relative; }
.hero-logo-card {
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.hero-photo-card {
  position: relative;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  box-shadow: var(--shadow);
}
.hero-photo-card > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}
.hero-floating-card {
  position: absolute;
  right: 42px;
  bottom: 40px;
  left: 42px;
  padding: 18px 20px;
  border: 1px solid rgba(221, 231, 242, .95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}
.hero-floating-card strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-floating-card > a {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}
.hero-floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.hero-floating-card span a {
  color: var(--blue);
  font-weight: 900;
}

.quick-strip {
  padding: 22px 0;
  color: #fff;
  background: var(--blue);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quick-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
}
.quick-grid strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #13220e;
  background: var(--green);
  font-size: 18px;
}
.quick-grid h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 24px;
}
.quick-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .83);
  line-height: 1.45;
}

.section { padding: 86px 0; }
.featured { background: #fff; }
.featured-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 48px;
}
.featured-copy p,
.section-head p,
.process-copy p,
.location-copy p,
.faq-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.featured-copy h2 { margin-top: 14px; }
.text-link {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 3px solid var(--green);
  color: var(--blue);
  font-weight: 950;
}
.need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.need-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-soft);
}
.need-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.need-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 25px;
}

.packages { background: var(--soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}
.centered-head {
  display: grid;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.centered-head .section-label {
  justify-content: center;
}
.compact-head p {
  max-width: 520px;
  margin: 0;
}
.section-head h2 { margin-top: 12px; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 20, 95, .08);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.package-card:focus-visible {
  outline: 3px solid rgba(139, 194, 64, .75);
  outline-offset: 4px;
}
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(17, 20, 95, .12);
}
.package-card.priority { grid-column: span 2; }
.package-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 628;
  object-fit: contain;
  background: #fff;
}
.package-card.priority img { height: auto; }
.card-body {
  position: relative;
  padding: 22px;
}
.card-body::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--green);
}
.card-body span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.card-body h3 {
  margin-top: 9px;
  color: var(--blue-dark);
}
.card-body p {
  min-height: 44px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.price-row small {
  color: #667085;
  font-weight: 900;
}
.price-row strong {
  color: var(--blue);
  font-size: 18px;
  white-space: nowrap;
}
.warning-note {
  margin-top: 22px;
  padding: 20px 24px;
  border: 1px solid #f1df8f;
  border-radius: var(--radius);
  color: #4c3f0a;
  background: #fffdf2;
  line-height: 1.55;
}

.advantages {
  background: #fff;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.advantage-grid article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-soft);
}
.signal-dot {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(139, 194, 64, .16);
}
.advantage-grid h3 {
  color: var(--blue-dark);
}
.advantage-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process {
  color: #fff;
  background: var(--blue);
}
.process-wrap {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 42px;
}
.process-copy h2 { margin-top: 12px; }
.process-copy h2,
.process .section-label {
  color: #fff;
}
.process-copy p {
  color: rgba(255, 255, 255, .84);
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
}
.step-grid span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #13220e;
  background: var(--green);
  font-weight: 950;
}
.step-grid h3 {
  margin-top: 18px;
  color: #fff;
}
.step-grid p {
  color: rgba(255, 255, 255, .83);
  font-size: 16px;
  line-height: 1.5;
}

.interpretation {
  background: linear-gradient(135deg, rgba(139, 194, 64, .09), rgba(26, 117, 184, .06));
  border-top: 1px solid rgba(139, 194, 64, .2);
  border-bottom: 1px solid rgba(26, 117, 184, .12);
}
.interpretation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 44px;
}
.interpretation h2 {
  margin-top: 12px;
}
.interpretation p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.interpretation-list {
  display: grid;
  gap: 14px;
}
.interpretation-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.interpretation-list strong {
  color: var(--blue);
  font-size: 18px;
}
.interpretation-list span {
  color: var(--muted);
  line-height: 1.5;
}

.service-area {
  background: #fff;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-grid article {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.area-grid strong {
  color: var(--blue-dark);
  font-size: 24px;
}
.area-grid span {
  color: var(--muted);
  font-weight: 800;
}

.location { background: linear-gradient(180deg, #fff, #f7fbff); }
.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  grid-template-areas:
    "intro hours"
    "contact photos";
  align-items: start;
  column-gap: 42px;
  row-gap: 18px;
}
.location-copy,
.location-side {
  display: contents;
}
.location-intro {
  grid-area: intro;
  padding-top: 4px;
}
.location-copy h2,
.location-intro h2 { margin-top: 12px; }
.location-lead {
  color: var(--blue) !important;
  font-weight: 800;
}
.contact-panel {
  grid-area: contact;
  display: grid;
  gap: 12px;
}
.contact-panel a {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-panel strong { color: var(--blue); }
.contact-panel span { color: #475467; }
.hours-card {
  grid-area: hours;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.hours-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hours-card-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hours-card-head h3 {
  margin-top: 6px;
  color: var(--blue-dark);
}
.hours-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
.hours-status.is-closed {
  color: #7a2e0e;
  background: #fff3ed;
}
.hours-status.is-open {
  color: #1d4f12;
  background: #e9f8dc;
}
.hours-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}
.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(221, 231, 242, .75);
}
.hours-list div:last-child {
  border-bottom: 0;
}
.hours-list dt,
.hours-list dd {
  margin: 0;
}
.hours-list dt {
  color: var(--ink);
  font-weight: 900;
}
.hours-list dd {
  color: var(--blue);
  font-weight: 950;
  text-align: right;
}
.hours-list dd.is-closed-day {
  color: #94a3b8;
  font-weight: 700;
}
.hours-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.photo-mosaic {
  grid-area: photos;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.photo-mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.photo-main { height: 520px; }
.photo-mosaic div {
  display: grid;
  gap: 18px;
}
.photo-mosaic div img { height: 251px; }

.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
}
.faq-grid h2 { margin-top: 12px; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  padding: 20px 24px;
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 950;
}
.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 16px;
}

.final-cta {
  padding: 72px 0;
  background: #fff;
}
.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: var(--shadow);
}
.final-box h2 {
  max-width: 780px;
  margin-top: 12px;
  color: #fff;
}
.final-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.55;
}
.final-actions {
  display: grid;
  min-width: 280px;
  gap: 14px;
}

.site-footer {
  padding: 54px 0 104px;
  color: #cbd5e1;
  background: #0d123d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 38px;
}
.footer-logo {
  width: 240px;
  padding: 9px;
  border-radius: var(--radius);
  background: #fff;
}
.site-footer p {
  color: #b7c2d2;
  line-height: 1.55;
}
.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}
.site-footer a {
  display: block;
  margin: 7px 0;
  color: #fff;
  font-weight: 850;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #94a3b8;
  font-size: 14px;
}
.sticky-mobile-cta { display: none; }

.package-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 24px;
}
.package-modal.is-open {
  display: grid;
  place-items: center;
}
.package-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 44, .58);
  backdrop-filter: blur(4px);
}
.package-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  width: min(100%, 760px);
  height: min(90vh, 900px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, .96);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.package-dialog > img {
  width: 100%;
  max-height: 280px;
  aspect-ratio: 1200 / 628;
  object-fit: contain;
  background: #fff;
}
.modal-content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
}
.modal-scroll {
  overflow: auto;
  padding: 28px 28px 18px;
}
.modal-action {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -10px 28px rgba(17, 20, 95, .08);
}
.modal-action .btn {
  width: 100%;
}
.modal-content h2,
.modal-scroll h2 {
  margin-top: 12px;
  font-size: 34px;
}
.modal-content > p,
.modal-scroll > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal-meta span {
  color: var(--blue);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal-meta strong {
  color: var(--blue-dark);
  font-size: 22px;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.modal-info-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.modal-info-grid h3 {
  color: var(--blue-dark);
  font-size: 19px;
}
.modal-info-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.modal-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.modal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}
.modal-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}
.modal-warning {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid #f1df8f;
  border-radius: var(--radius);
  color: #4c3f0a;
  background: #fffdf2;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  h1 { font-size: 54px; }
  h2 { font-size: 42px; }
  .package-grid { grid-template-columns: repeat(3, 1fr); }
  .package-card.priority { grid-column: span 1; }
  .package-card.priority img { height: auto; }
  .main-nav { gap: 14px; }
  .header-phone { display: none; }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
  h1 { font-size: 50px; }
  h2 { font-size: 38px; }
  .main-nav { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .header-actions { display: none; }
  .main-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 100;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 96px 28px 34px;
    border: 0;
    border-radius: 0;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
  }
  .main-nav.is-open a {
    padding: 14px 4px;
    font-size: 24px;
    line-height: 1.1;
  }
  .main-nav.is-open .mobile-menu-cta {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 15px 22px;
    border-radius: 999px;
    color: #14220f;
    background: var(--green);
    font-size: 18px;
    box-shadow: 0 16px 38px rgba(139, 194, 64, .3);
  }
  .hero-grid,
  .featured-grid,
  .process-wrap,
  .location-grid,
  .faq-grid,
  .interpretation-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-areas:
      "intro"
      "hours"
      "contact"
      "photos";
  }
  .location-copy,
  .location-side {
    display: contents;
  }
  .quick-grid,
  .step-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-panel { max-width: 680px; }
  .photo-mosaic { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1.35fr .8fr;
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid rgba(221, 231, 242, .9);
    backdrop-filter: blur(12px);
  }
  .sticky-mobile-cta a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(17, 20, 95, .18);
    font-weight: 950;
  }
  .sticky-mobile-cta a:first-child {
    color: #14220f;
    background: var(--green);
  }
  .sticky-mobile-cta a:last-child {
    color: var(--blue);
    background: #fff;
  }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 188px; }
  .hero { padding: 42px 0 34px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 21px; }
  .lead { font-size: 18px; }
  .hero-cta-row,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn { width: 100%; }
  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-logo-card { padding: 18px; }
  .hero-photo-card > img { height: 310px; }
  .hero-floating-card {
    position: static;
    margin-top: 14px;
  }
  .quick-grid,
  .need-grid,
  .package-grid,
  .step-grid,
  .advantage-grid,
  .area-grid,
  .modal-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 62px 0; }
  .section-head { display: grid; }
  .photo-main,
  .photo-mosaic div img {
    height: auto;
  }
  .hours-card-head {
    display: grid;
  }
  .hours-list div {
    align-items: baseline;
  }
  .final-box {
    display: grid;
    padding: 30px;
    border-radius: 10px;
  }
  .site-footer { padding-bottom: 46px; }
  .package-modal {
    padding: 12px;
  }
  .package-dialog {
    height: 88vh;
  }
  .package-dialog > img {
    max-height: 210px;
  }
  .modal-content {
    min-height: 0;
  }
  .modal-scroll {
    padding: 22px 22px 14px;
  }
  .modal-action {
    padding: 14px 22px 20px;
  }
  .modal-content h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
