:root {
  color-scheme: light;
  --pine: #1f5135;
  --bark: #2b2722;
  --safety: #f36b21;
  --gold: #d6b35f;
  --paper: #f5f2ec;
  --ink: #1e211d;
  --muted: #696f66;
  --line: rgba(30, 33, 29, 0.16);
  --shadow: 0 22px 46px rgba(30, 33, 29, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.alert-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--safety);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(43, 39, 34, 0.94);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.site-nav a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a[aria-current="page"] {
  background: var(--gold);
  color: var(--bark);
}

.button {
  border-color: var(--safety);
  background: var(--safety);
}

.button.alt {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.site-nav a:hover,
.button:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.button.is-pressed,
.site-nav a.is-pressed {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span:not(.menu-label) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle .menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.gallery-lock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--safety);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(30, 33, 29, 0.3);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  min-height: 630px;
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 74px) max(20px, calc((100vw - 1180px) / 2)) clamp(32px, 6vw, 74px) max(20px, calc((100vw - 1180px) / 2));
  background: var(--pine);
  color: #ffffff;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(31, 81, 53, 0.16), rgba(43, 39, 34, 0.44)),
    var(--hero-image, url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1600&q=80")) center / cover;
}

.hero-media::after {
  content: "24/7 storm response";
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bark);
  font-weight: 950;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 78px;
  line-height: 0.96;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

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

.section {
  padding: 66px max(20px, calc((100vw - 1180px) / 2));
}

.section.dark {
  background: var(--bark);
  color: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: 56px;
  line-height: 1;
}

.section-heading p,
.service p,
.safety-card p,
.emergency-card p,
.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.section.dark .section-heading p,
.section.dark .service p,
.section.dark .safety-card p,
.section.dark .panel p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid,
.safety-grid,
.emergency-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service,
.safety-card,
.emergency-card,
.panel,
form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 15px 32px rgba(30, 33, 29, 0.09);
}

.section.dark .service,
.section.dark .safety-card,
.section.dark .panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.service,
.safety-card,
.emergency-card,
.panel {
  padding: 24px;
}

.interactive-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.interactive-card:hover {
  border-color: rgba(243, 107, 33, 0.45);
  box-shadow: 0 22px 42px rgba(30, 33, 29, 0.14);
  transform: translateY(-4px);
}

.service strong,
.safety-card strong,
.emergency-card strong,
.panel strong {
  display: block;
  color: var(--pine);
  font-size: 20px;
}

.section.dark .service strong,
.section.dark .safety-card strong,
.section.dark .panel strong {
  color: #ffffff;
}

.service .tag,
.safety-card .tag,
.emergency-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(243, 107, 33, 0.12);
  color: var(--safety);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.wide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.summit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.summit-stats span {
  padding: 14px;
  border-radius: 8px;
  background: rgba(31, 81, 53, 0.1);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.summit-stats strong {
  display: block;
  color: var(--safety);
  font-size: 30px;
  line-height: 1;
}

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

.review-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-row img {
  width: 100%;
  height: 330px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-row img:first-child {
  height: 430px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-trigger {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--bark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: left;
}

.faq-panel {
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
}

.faq-panel.is-open {
  display: block;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 14px;
  border-radius: 8px;
  background: rgba(31, 81, 53, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--bark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--safety);
  font-size: 14px;
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
  background: var(--bark);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav,
  .hero,
  .wide,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-lock {
    right: 14px;
    bottom: 14px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    text-indent: -999px;
  }

  .gallery-lock::before {
    content: "<";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 20px;
    text-indent: 0;
  }

  .hero-copy {
    padding: 58px 20px;
  }

  h1 {
    font-size: 44px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .service-grid,
  .safety-grid,
  .emergency-grid,
  .proof-grid,
  .summit-stats,
  .review-grid,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-row img,
  .gallery-row img:first-child {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .site-nav {
    grid-template-columns: 1fr 1fr;
  }
}
