:root {
  --ink: #17212b;
  --muted: #65717b;
  --paper: #f1f6ee;
  --panel: rgba(255, 255, 255, .82);
  --line: #d7e5cf;
  --navy: #1b2a38;
  --green: #8cc63f;
  --green-dark: #5b8f23;
  --lime-soft: #edf7df;
  --orange: #f06a1a;
  --teal: #1d9e75;
  --shadow: 0 18px 50px rgba(22, 33, 43, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .16;
}

.blob-one {
  width: 420px;
  height: 420px;
  background: var(--green);
  top: -120px;
  left: -120px;
}

.blob-two {
  width: 360px;
  height: 360px;
  background: var(--teal);
  right: -100px;
  top: 38%;
}

.blob-three {
  width: 280px;
  height: 280px;
  background: var(--orange);
  left: 18%;
  bottom: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(241, 246, 238, .74);
  border-bottom: 1px solid rgba(215, 229, 207, .9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1120px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 10px;
  border: 1px solid rgba(27, 42, 56, .12);
  background: rgba(255, 255, 255, .62);
  border-radius: 999px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
  border-color: rgba(91, 143, 35, .42);
  background: rgba(255, 255, 255, .9);
}

.phone-cta,
.primary,
.secondary {
  border: 0;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-cta,
.primary {
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(140, 198, 63, .28);
}

.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
}

.phone-cta {
  text-decoration: none;
}

main {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 56px 0 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  margin: 0;
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.trust-list span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-card {
  display: grid;
  gap: 14px;
}

.logo-panel {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(237, 247, 223, .76));
  box-shadow: var(--shadow);
}

.urgent-box {
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.box-label {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.urgent-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.urgent-box span {
  color: rgba(255, 255, 255, .76);
}

.band,
.section {
  padding: 76px 0;
}

.band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  border-top: 1px solid var(--line);
}

.band p:last-child,
.section-head p,
.copy p,
.proof-card p,
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}


.story-content {
  display: grid;
  gap: 18px;
}

.portrait-slot {
  min-height: 260px;
  border-radius: 14px;
  border: 1px dashed rgba(91, 143, 35, .55);
  background:
    linear-gradient(135deg, rgba(27, 42, 56, .62), rgba(27, 42, 56, .18)),
    radial-gradient(circle at 30% 25%, rgba(140, 198, 63, .34), transparent 34%),
    linear-gradient(135deg, #eaf2e3, #f8fbf4);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.portrait-slot span {
  color: #fff;
  font-weight: 800;
  background: rgba(27, 42, 56, .72);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
}
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 244px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 8px 26px rgba(22, 33, 43, .05);
  backdrop-filter: blur(10px);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy);
  font-weight: 800;
  background: var(--lime-soft);
  border: 1px solid var(--line);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cert-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 8px 26px rgba(22, 33, 43, .05);
}

.cert-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.cert-grid h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cert-grid p {
  margin: 0;
  color: var(--muted);
}

.identify {
  padding-top: 26px;
}

.identify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.identify-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 360px;
}

.identify-card {
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 251, 241, .9));
  border: 1px solid rgba(150, 181, 132, .78);
  box-shadow: 0 18px 46px rgba(22, 33, 43, .12);
  backdrop-filter: blur(10px);
}

.identify-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.identify-feature .photo-slot {
  min-height: 360px;
  border-right: 1px solid rgba(150, 181, 132, .38);
}

.photo-slot {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(27, 42, 56, .72), rgba(27, 42, 56, .28)),
    radial-gradient(circle at 25% 30%, rgba(140, 198, 63, .42), transparent 32%),
    linear-gradient(135deg, #dfead8, #f8fbf4);
}

.photo-slot.has-photo {
  display: block;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(237, 247, 223, .68)),
    #eef7e6;
}

.photo-slot.has-photo::before {
  display: none;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: inherit;
  height: 100%;
}

.photo-panel {
  position: relative;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(27, 42, 56, .14);
  background: #1b2a38;
  box-shadow: 0 10px 26px rgba(22, 33, 43, .12);
}

.photo-panel + .photo-panel {
  border-left: 1px solid rgba(27, 42, 56, .16);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  cursor: zoom-in;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

.photo-panel:hover img,
.photo-panel img:focus-visible {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.05);
}

.photo-panel img:focus-visible {
  outline: 3px solid rgba(140, 198, 63, .92);
  outline-offset: -6px;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(27, 42, 56, .72));
  pointer-events: none;
}

.photo-panel figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  max-width: calc(100% - 20px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(27, 42, 56, .58);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 5px 8px;
  backdrop-filter: blur(8px);
}

.photo-credits {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.photo-credits a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}
.identify-copy {
  position: relative;
  padding: 22px;
  border-top: 1px solid rgba(150, 181, 132, .34);
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(246, 251, 241, .64));
}

.identify-feature .identify-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-top: 0;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.identify-copy h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.identify-copy p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.warning-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  color: var(--muted);
}

.warning-note strong {
  color: var(--navy);
  white-space: nowrap;
}


body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 18, 24, .82);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity .22s ease;
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  width: min(1120px, 92vw);
  max-height: 86vh;
  margin: 0;
  transform: translateY(10px) scale(.98);
  transition: transform .22s ease;
}

.image-lightbox.open .lightbox-frame {
  transform: none;
}

.lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: #0f1a20;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

.lightbox-frame figcaption {
  width: fit-content;
  margin: 12px auto 0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(27, 42, 56, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 7px 10px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.lightbox-close:focus-visible {
  outline: 3px solid rgba(140, 198, 63, .92);
  outline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 36px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}

.chat {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--navy);
  color: #fff;
}

.chat-head small {
  display: block;
  color: rgba(255, 255, 255, .68);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(140, 198, 63, .18);
}

.chat-body {
  min-height: 270px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #fff, var(--lime-soft));
}

.bubble {
  max-width: 84%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 14px;
}

.bubble.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
}

.bubble.user {
  align-self: flex-end;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timeline li {
  min-height: 220px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.timeline h3 {
  margin: 32px 0 8px;
  font-size: 18px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.zone {
  border-top: 1px solid var(--line);
}

.zone-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 14px;
  align-items: stretch;
}

.zone-map {
  min-height: 420px;
  height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 181, 132, .78);
  border-radius: 22px;
  background: linear-gradient(135deg, #eef7e6, #dfead8);
  box-shadow: 0 18px 46px rgba(22, 33, 43, .12);
}

.zone-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}




.zone-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.zone-showcase .zone-layout {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.zone-card {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.zone-showcase .zone-card {
  min-height: 118px;
  display: grid;
  align-content: center;
  border-color: rgba(150, 181, 132, .78);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(22, 33, 43, .07);
}

.zone-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
}

.zone-card span {
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof-card,
.proof-grid div {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
}

.proof-card h2 {
  margin-bottom: 14px;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 18px;
  margin-bottom: 4px;
}

.proof-grid span {
  color: var(--muted);
}

.contact {
  padding-bottom: 92px;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  padding: 34px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-panel .eyebrow {
  color: var(--green);
}

.contact-panel p {
  color: rgba(255, 255, 255, .74);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  text-decoration: none;
}

.contact-list strong {
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-list span {
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  font-weight: 700;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form label:nth-child(5),
.form label:nth-child(6),
.form label:nth-child(7),
.form label:nth-child(8),
.form .upload-box,
.form .consent,
.form .full {
  grid-column: 1 / -1;
}

.form input,
.form select,
.form textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  outline: none;
}

.form textarea {
  height: 118px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.form select option {
  color: var(--ink);
}

.upload-box {
  min-height: 150px;
  place-items: center;
  border: 1px dashed rgba(140, 198, 63, .8);
  border-radius: 12px;
  background: rgba(140, 198, 63, .08);
  text-align: center;
}

.upload-box input {
  display: none;
}

.upload-box span {
  color: #fff;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.upload-box small {
  color: rgba(255, 255, 255, .48);
  text-transform: none;
  letter-spacing: 0;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.consent span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .band,
  .split,
  .proof,
  .contact-panel,
  .zone-showcase {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .identify-grid,
  .cert-grid,
  .zone-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .zone-showcase .zone-layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .identify-feature {
    grid-template-columns: 1fr;
  }

  .identify-feature .photo-slot {
    border-right: 0;
    border-bottom: 1px solid rgba(150, 181, 132, .38);
  }

  .identify-feature .identify-copy {
    border-top: 1px solid rgba(150, 181, 132, .34);
  }
}

@media (max-width: 620px) {

  .nav {
    height: 68px;
    gap: 10px;
  }

  .phone-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .primary,
  .hero-actions .secondary {
    width: 100%;
  }

  .trust-list {
    gap: 8px;
  }

  .logo-panel {
    min-height: 220px;
    padding: 22px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .identify-feature .identify-copy {
    padding: 24px;
  }

  .zone-map {
    min-height: 360px;
    height: 360px;
  }



  .lightbox-frame {
    width: 96vw;
  }

  .lightbox-frame img {
    max-height: 72vh;
    border-radius: 14px;
  }


  .nav {
    padding: 0 14px;
  }

  .brand img {
    width: 150px;
  }

  main {
    padding: 0 16px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .service-grid,
  .timeline,
  .identify-grid,
  .cert-grid,
  .zone-layout,
  .zone-showcase .zone-layout,
  .form {
    grid-template-columns: 1fr;
  }

  .band,
  .section {
    padding: 56px 0;
  }

  .contact-panel {
    padding: 22px;
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .photo-panel + .photo-panel {
    border-left: 1px solid rgba(27, 42, 56, .16);
    border-top: 1px solid rgba(27, 42, 56, .16);
  }

  .identify-feature .photo-panel {
    min-height: 220px;
  }

  .warning-note {
    display: block;
  }

  .warning-note strong {
    display: block;
    margin-bottom: 4px;
  }
}

