:root {
  --ink: #17201d;
  --muted: #66736e;
  --line: #dfe7e2;
  --paper: #fffaf0;
  --white: #ffffff;
  --forest: #ffd21a;
  --forest-2: #e8b900;
  --meadow: #0b55b7;
  --gold: #ffd21a;
  --brand-blue: #0b55b7;
  --brand-blue-dark: #073c82;
  --charcoal: #111817;
  --shadow: 0 24px 70px rgba(19, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.56), rgba(255, 250, 240, 0.78)),
    url("/assets/footer-meadow.webp") center top / cover fixed,
    linear-gradient(90deg, rgba(7, 60, 130, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 60, 130, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, cover, 44px 44px, 44px 44px, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.contact-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.46), rgba(255, 250, 240, 0.72)),
    linear-gradient(90deg, rgba(7, 60, 130, 0.1), rgba(17, 24, 23, 0.18)),
    url("/assets/contact-background-sign-optimized.webp") center center / cover fixed,
    var(--paper);
  background-size: auto, auto, cover, auto;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.76)),
    url("/assets/footer-meadow.webp") center 30% / cover;
  box-shadow:
    0 18px 44px rgba(17, 24, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-long {
  width: clamp(220px, 26vw, 360px);
  height: auto;
  max-height: 58px;
}

.brand-logo-mark {
  display: none;
  width: 52px;
  height: 52px;
}

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

.site-nav a {
  border-radius: 8px;
  color: #2d3935;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #fff0a8;
}

.site-nav .nav-cta {
  color: var(--brand-blue-dark);
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 10px 12px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  margin-top: -86px;
  margin-bottom: clamp(34px, 6vw, 72px);
  padding-top: 86px;
  isolation: isolate;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 240ms ease, transform 240ms ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.88) 42%, rgba(255, 250, 240, 0.2) 78%),
    linear-gradient(180deg, rgba(17, 24, 23, 0.02), rgba(17, 24, 23, 0.14));
  transition: background 240ms ease, opacity 240ms ease;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  max-width: 880px;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 6vw, 78px);
}

.hero-wordmark-panel {
  width: fit-content;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: clamp(14px, 2.2vw, 24px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    backdrop-filter 220ms ease;
}

.hero-wordmark-panel:hover {
  border-color: rgba(255, 210, 26, 0.58);
  background:
    linear-gradient(135deg, rgba(7, 60, 130, 0.66), rgba(17, 24, 23, 0.44)),
    rgba(17, 24, 23, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 34px rgba(255, 210, 26, 0.42),
    0 28px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px) saturate(1.12);
  transform: translateY(-2px);
}

.hero:has(.hero-wordmark-panel:hover) img {
  filter: brightness(0.72) saturate(0.88);
  transform: scale(1.01);
}

.hero:has(.hero-wordmark-panel:hover) .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 60, 130, 0.62) 0%, rgba(17, 24, 23, 0.46) 48%, rgba(17, 24, 23, 0.28) 100%),
    linear-gradient(180deg, rgba(17, 24, 23, 0.08), rgba(17, 24, 23, 0.32));
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(54px, 6.9vw, 88px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 210, 26, 0.95),
    0 0 26px rgba(255, 210, 26, 0.72),
    0 0 44px rgba(11, 85, 183, 0.86),
    0 6px 0 rgba(7, 60, 130, 0.92),
    0 16px 24px rgba(0, 0, 0, 0.38);
}

.hero .eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 210, 26, 0.68);
  border-radius: 999px;
  background: rgba(7, 60, 130, 0.78);
  box-shadow:
    0 0 12px rgba(255, 210, 26, 0.58),
    inset 0 0 18px rgba(255, 210, 26, 0.18);
  color: #fff4a6;
  padding: 8px 13px;
  text-shadow: 0 0 8px rgba(255, 210, 26, 0.72);
}

h2 {
  color: var(--charcoal);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.15;
}

.nowrap {
  white-space: nowrap;
}

.family-hero h1 {
  max-width: 680px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.08;
}

.family-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 88px);
}

.hero-content p:not(.eyebrow),
.page-hero p,
.contact-hero p,
.intro-copy p,
.split-section p,
.service-heading p {
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow:
    0 0 10px rgba(7, 60, 130, 0.78),
    0 3px 14px rgba(0, 0, 0, 0.48);
}

.hero-actions,
.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

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

.hero-actions .button {
  min-height: 52px;
  font-size: 17px;
}

.button,
.site-nav .nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(7, 60, 130, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -10px 18px rgba(184, 139, 0, 0.2),
    0 12px 24px rgba(255, 210, 26, 0.26);
  color: var(--brand-blue-dark);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 18px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after,
.site-nav .nav-cta::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -30%;
  width: 52%;
  height: 190%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(18deg);
}

.button:hover,
.site-nav .nav-cta:hover {
  transform: translateY(-1px);
}

.button:hover::after,
.site-nav .nav-cta:hover::after {
  left: 92%;
  transition: left 520ms ease;
}

.button.primary,
.button.secondary,
.button.accent {
  color: var(--brand-blue-dark);
}

.site-nav .nav-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
}

.section,
.page-hero,
.contact-hero,
.service-section,
.cta-section {
  width: min(1160px, calc(100% - clamp(28px, 7vw, 96px)));
  margin: clamp(34px, 6vw, 72px) auto;
  padding: clamp(54px, 8vw, 92px) clamp(22px, 5vw, 58px);
  border: 10px solid #d7dce0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.94)),
    linear-gradient(90deg, rgba(7, 60, 130, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 60, 130, 0.06) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  box-shadow:
    inset 0 0 0 2px rgba(7, 60, 130, 0.14),
    inset 0 0 0 8px rgba(255, 255, 255, 0.66),
    0 22px 44px rgba(17, 24, 23, 0.14);
}

.section,
.page-hero,
.contact-hero,
.service-section,
.cta-section,
.metric-band {
  position: relative;
}

.section::before,
.section::after,
.page-hero::before,
.page-hero::after,
.contact-hero::before,
.contact-hero::after,
.service-section::before,
.service-section::after,
.cta-section::before,
.cta-section::after,
.metric-band::before,
.metric-band::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 12%, #aeb8bf 14% 44%, #5d6b73 46% 100%);
  box-shadow: 0 1px 2px rgba(17, 24, 23, 0.22);
  pointer-events: none;
}

.section::before,
.page-hero::before,
.contact-hero::before,
.service-section::before,
.cta-section::before,
.metric-band::before {
  top: 18px;
  left: 18px;
}

.section::after,
.page-hero::after,
.contact-hero::after,
.service-section::after,
.cta-section::after,
.metric-band::after {
  right: 18px;
  bottom: 18px;
}

.intro-grid,
.split-section,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.text-link {
  color: var(--brand-blue);
  font-weight: 800;
  text-underline-offset: 5px;
}

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

.product-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.sign-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.sign-gallery-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.sign-gallery-action {
  align-self: end;
  grid-column: 2;
  justify-self: start;
}

.sign-gallery figure {
  margin: 0;
}

.sign-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 6px solid #d7dce0;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(17, 24, 23, 0.16);
  object-fit: cover;
}

.sign-gallery figcaption {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  text-transform: uppercase;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(17, 24, 23, 0.18)),
    url("/assets/footer-meadow.webp") center 64% / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.34), rgba(255, 250, 240, 0.08)),
    radial-gradient(circle at 48% 78%, rgba(255, 210, 26, 0.18), transparent 34%);
  pointer-events: none;
}

.product-image img {
  position: relative;
  z-index: 1;
  width: min(92%, 640px);
  filter: drop-shadow(0 26px 28px rgba(17, 24, 23, 0.36));
}

.service-preview article,
.price-card,
.contact-hero aside,
.reservation-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(19, 32, 28, 0.08);
}

.service-preview article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 280px;
  padding: 28px;
}

.service-preview p,
.price-card p,
.site-footer p {
  color: var(--muted);
}

.service-preview a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.service-preview .button {
  margin-top: auto;
  min-width: 132px;
  color: var(--brand-blue-dark);
  text-decoration: none;
}

.service-index {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.metric-band {
  width: min(1160px, calc(100% - clamp(28px, 7vw, 96px)));
  margin: clamp(34px, 6vw, 72px) auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 10px solid #d7dce0;
  border-radius: 8px;
  background: var(--forest);
  color: var(--brand-blue-dark);
  box-shadow:
    inset 0 0 0 2px rgba(7, 60, 130, 0.18),
    0 22px 44px rgba(17, 24, 23, 0.14);
  overflow: hidden;
}

.metric-band div {
  padding: clamp(28px, 5vw, 48px);
  border-right: 1px solid rgba(7, 60, 130, 0.16);
}

.metric-band strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.metric-band span {
  display: block;
  margin-top: 8px;
  color: rgba(7, 60, 130, 0.78);
}

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

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 16px;
}

.local-service-area,
.local-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.local-answer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-answer-grid article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(7, 60, 130, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 24, 23, 0.08);
}

.local-answer-grid h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.14;
}

.local-answer-grid p,
.local-service-area p {
  color: var(--muted);
  font-size: 17px;
}

.service-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-area-links a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 60, 130, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
  color: var(--brand-blue-dark);
  font-weight: 800;
  padding: 14px 16px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -10px 18px rgba(184, 139, 0, 0.2),
    0 12px 24px rgba(255, 210, 26, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-area-links a::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -30%;
  width: 52%;
  height: 190%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(18deg);
}

.service-area-links a:hover {
  transform: translateY(-1px);
  color: var(--brand-blue-dark);
}

.service-area-links a:hover::after {
  left: 92%;
  transition: left 520ms ease;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.page-hero-image {
  display: grid;
  place-items: center;
  min-height: 280px;
}

.page-hero-image img {
  width: min(100%, 560px);
  filter: drop-shadow(0 22px 26px rgba(23, 32, 29, 0.18));
}

.family-hero-image img {
  border: 6px solid #d7dce0;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(17, 24, 23, 0.16);
  object-fit: cover;
}

.page-hero.centered {
  min-height: 58vh;
  text-align: center;
}

.page-hero.centered p,
.page-hero.centered h1 {
  margin-left: auto;
  margin-right: auto;
}

.services-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.86) 0 9%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 42% 18%, rgba(236, 255, 224, 0.78) 0 8%, rgba(236, 255, 224, 0) 17%),
    radial-gradient(circle at 72% 30%, rgba(255, 246, 180, 0.44) 0 10%, rgba(255, 246, 180, 0) 19%),
    radial-gradient(circle at 22% 82%, rgba(60, 143, 75, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(169, 224, 143, 0.94) 0%, rgba(216, 241, 190, 0.95) 48%, rgba(255, 250, 240, 0.96) 100%);
}

.jump-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  padding: 12px 16px;
  text-decoration: none;
}

.services-hero .jump-links a {
  position: relative;
  overflow: hidden;
  border-color: rgba(7, 60, 130, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -10px 18px rgba(184, 139, 0, 0.2),
    0 12px 24px rgba(255, 210, 26, 0.26);
  color: var(--brand-blue-dark);
}

.services-hero .jump-links a::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -30%;
  width: 52%;
  height: 190%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(18deg);
}

.services-hero .jump-links a:hover::after {
  left: 92%;
  transition: left 520ms ease;
}

.services-hero-image {
  position: relative;
  min-height: 330px;
  border: 6px solid #d7dce0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(17, 24, 23, 0.2)),
    url("/assets/footer-meadow.webp") center 64% / cover;
  box-shadow: 0 18px 34px rgba(17, 24, 23, 0.16);
  overflow: hidden;
}

.services-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.26), rgba(255, 250, 240, 0.04)),
    radial-gradient(circle at 48% 78%, rgba(255, 210, 26, 0.16), transparent 34%);
  pointer-events: none;
}

.services-hero-image img {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  filter: drop-shadow(0 26px 28px rgba(17, 24, 23, 0.36));
}

.clean-sign-hero-image {
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.clean-sign-hero-image::before {
  display: none;
}

.clean-sign-hero-image img {
  width: min(100%, 760px);
  border: 6px solid #d7dce0;
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(17, 24, 23, 0.2);
  filter: none;
}

.services-shop-image {
  background: #f4f5f2;
}

.services-shop-image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 60, 130, 0.08));
  z-index: 2;
}

.services-shop-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: none;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  scroll-margin-top: 92px;
}

section[id="4rent"],
section[id="4storage"] {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.96) 0 9%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.92) 0 8%, rgba(255, 255, 255, 0) 17%),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.9) 0 10%, rgba(255, 255, 255, 0) 19%),
    linear-gradient(180deg, rgba(168, 219, 255, 0.94) 0%, rgba(223, 243, 255, 0.95) 46%, rgba(255, 250, 240, 0.96) 100%);
}

section[id="4rent"]::before,
section[id="4rent"]::after,
section[id="4storage"]::before,
section[id="4storage"]::after {
  box-shadow:
    0 1px 2px rgba(17, 24, 23, 0.22),
    0 0 24px rgba(255, 255, 255, 0.64);
}

section[id="4storage"] {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.68), rgba(255, 250, 240, 0.9)),
    linear-gradient(90deg, rgba(7, 60, 130, 0.12), rgba(17, 24, 23, 0.08)),
    url("/assets/storage-container-bg-optimized.webp") center center / cover;
}

section[id="4storage"] .service-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

section[id="4storage"] .service-heading h2 {
  margin-bottom: 0;
}

.audience-benefits,
.search-visibility,
.faq-family {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.audience-benefits.reverse .benefit-image {
  order: -1;
}

.benefit-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(7, 60, 130, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 600;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--brand-blue);
}

.benefit-image {
  margin: 0;
}

.benefit-image-stack {
  display: grid;
  gap: 16px;
}

.benefit-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 6px solid #d7dce0;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(17, 24, 23, 0.16);
  object-fit: cover;
}

.benefit-image figcaption {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  text-transform: uppercase;
}

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

.visibility-grid article {
  padding: 24px;
  border: 1px solid rgba(7, 60, 130, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 24, 23, 0.08);
}

.visibility-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 36px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brand-blue-dark);
  font-weight: 800;
  margin-bottom: 16px;
  padding: 8px 12px;
}

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

.service-section.dark {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.13) 0 9%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.1) 0 8%, rgba(255, 255, 255, 0) 17%),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.09) 0 10%, rgba(255, 255, 255, 0) 19%),
    linear-gradient(180deg, rgba(14, 18, 20, 0.98) 0%, rgba(26, 31, 33, 0.96) 46%, rgba(5, 8, 9, 0.98) 100%);
  color: var(--white);
}

.service-section.dark h2,
.service-section.dark .price-card h3 {
  color: var(--white);
}

.service-section.dark .service-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.pricing-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}

.price-card.inverse {
  background: #1d2927;
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card.inverse p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-label {
  margin-bottom: 12px;
  color: var(--meadow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--brand-blue);
  font-size: 54px;
  line-height: 1;
  margin: 8px 0 18px;
}

.price-card.inverse strong {
  color: var(--gold);
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-grid.three.storage-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storage-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
  padding: 28px;
}

.storage-card .plan-label,
.storage-card h3,
.storage-card strong,
.storage-card p {
  margin-bottom: 0;
}

.storage-card .plan-label {
  grid-column: 1;
}

.storage-card h3 {
  grid-column: 1;
}

.storage-card strong {
  grid-column: 1;
  grid-row: auto;
  margin-top: 0;
}

.storage-card .button {
  align-self: stretch;
  margin-top: 16px;
  width: 100%;
  height: 52px;
  min-height: 52px;
  white-space: nowrap;
  font-size: 15px;
  padding: 13px 18px;
}

section[id="4storage"] .storage-card > .button {
  display: flex;
  width: 100%;
  height: 52px;
  min-height: 52px;
}

section[id="4storage"] .storage-best-value-button {
  background:
    linear-gradient(135deg, #0b55b7 0%, #073c82 58%, #052c60 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -10px 18px rgba(3, 25, 56, 0.3),
    0 12px 24px rgba(7, 60, 130, 0.24);
  color: var(--white);
}

section[id="4storage"] .storage-best-value-button:hover {
  background:
    linear-gradient(135deg, #0b55b7 0%, #073c82 58%, #052c60 100%);
}

section[id="4storage"] .storage-best-value-button::after {
  display: none;
}

section[id="4rent"] .button,
section[id="4sale"] .button,
section[id="4storage"] .button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 60, 130, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -10px 18px rgba(184, 139, 0, 0.2),
    0 12px 24px rgba(255, 210, 26, 0.26);
  color: var(--brand-blue-dark);
}

section[id="4rent"] .button::after,
section[id="4sale"] .button::after,
section[id="4storage"] .button::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -30%;
  width: 52%;
  height: 190%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(18deg);
}

section[id="4rent"] .button:hover,
section[id="4sale"] .button:hover,
section[id="4storage"] .button:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 37%),
    linear-gradient(135deg, #ffe66c 0%, #ffd21a 52%, #e8b900 100%);
}

section[id="4rent"] .button:hover::after,
section[id="4sale"] .button:hover::after,
section[id="4storage"] .button:hover::after {
  left: 92%;
  transition: left 520ms ease;
}

.storage-card p:last-of-type {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.status-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: #f2e6c8;
  color: #6d4a05;
  font-size: 12px;
  font-weight: 800;
  margin: 6px 0 18px;
  padding: 6px 10px;
}

.cta-section {
  overflow: visible;
  padding: clamp(42px, 5vw, 62px) clamp(22px, 5vw, 58px) clamp(78px, 9vw, 118px);
  border: 14px solid #cbd5de;
  outline: 4px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.28) 0 16%, transparent 17% 48%, rgba(255, 255, 255, 0.16) 49% 58%, transparent 59%),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(7, 32, 44, 0.58), rgba(4, 14, 18, 0.72)),
    url("/assets/footer-meadow.webp") center 58% / cover;
  box-shadow:
    inset 0 0 0 8px rgba(21, 39, 48, 0.2),
    inset 0 22px 54px rgba(255, 255, 255, 0.18),
    0 22px 44px rgba(17, 24, 23, 0.18);
  text-align: center;
}

.neon-window-sign {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px) clamp(22px, 5vw, 58px) 76px;
  border: 2px solid rgba(255, 210, 26, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 26, 34, 0.9), rgba(4, 13, 18, 0.86)),
    radial-gradient(circle at 50% 50%, rgba(255, 210, 26, 0.18), transparent 56%);
  box-shadow:
    0 0 16px rgba(255, 210, 26, 0.82),
    0 0 44px rgba(0, 82, 185, 0.44),
    inset 0 0 28px rgba(255, 210, 26, 0.16);
}

.neon-window-sign::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: calc(-1 * clamp(42px, 5vw, 62px));
  height: clamp(42px, 5vw, 62px);
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(209, 219, 226, 0.9) 20% 21%, transparent 22% 78%, rgba(209, 219, 226, 0.9) 79% 80%, transparent 81%),
    linear-gradient(180deg, rgba(209, 219, 226, 0.95), rgba(121, 137, 148, 0.18));
  background-size: 100% 100%, 100% 3px;
  background-repeat: no-repeat;
}

.neon-window-sign .eyebrow {
  color: #74b9ff;
  text-shadow:
    0 0 8px rgba(116, 185, 255, 0.96),
    0 0 18px rgba(0, 82, 185, 0.86);
}

.cta-section h2 {
  color: #fff6a8;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-shadow:
    0 0 8px rgba(255, 246, 168, 0.98),
    0 0 18px rgba(255, 210, 26, 0.88),
    0 0 38px rgba(0, 82, 185, 0.62);
}

.neon-window-sign .button {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  min-width: 230px;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 18px rgba(255, 210, 26, 0.78),
    0 14px 24px rgba(0, 0, 0, 0.26);
}

.neon-window-sign .button:hover {
  transform: translateX(-50%) translateY(-1px);
}

.contact-hero aside {
  padding: 28px;
}

.contact-hero aside a {
  display: block;
  color: var(--brand-blue);
  font-size: 22px;
  font-weight: 800;
  margin: 12px 0;
  overflow-wrap: anywhere;
}

.contact-hero aside span {
  color: var(--muted);
}

.form-section {
  padding: clamp(46px, 7vw, 82px) clamp(20px, 6vw, 78px) clamp(36px, 7vw, 72px);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(22px, 5vw, 42px);
}

.sign-form {
  position: relative;
  border: 12px solid #d7dce0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.72)),
    linear-gradient(90deg, rgba(7, 60, 130, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 60, 130, 0.06) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  box-shadow:
    0 22px 44px rgba(17, 24, 23, 0.14),
    inset 0 0 0 2px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.sign-form::before,
.sign-form::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7fbff 0 18%, #8da2ad 19% 58%, #526670 59% 100%);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 1px 3px rgba(17, 24, 23, 0.32);
}

.sign-form::before {
  top: 18px;
  left: 18px;
}

.sign-form::after {
  right: 18px;
  bottom: 18px;
}

.form-heading,
.full {
  grid-column: 1 / -1;
}

.form-direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 60, 130, 0.18);
  border-radius: 8px;
  background: rgba(255, 210, 26, 0.16);
}

.form-direct-contact strong {
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.form-direct-contact a {
  color: var(--brand-blue);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.form-direct-contact span {
  color: var(--muted);
  font-size: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #2a3532;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd8d2;
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.consent {
  align-items: start;
  grid-template-columns: 20px 1fr;
  font-weight: 600;
}

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

.site-footer {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(17, 24, 23, 0.88), rgba(17, 24, 23, 0.58)),
    url("/assets/footer-meadow.webp") center 78% / cover;
  color: var(--white);
  overflow: hidden;
  box-shadow:
    0 18px 44px rgba(17, 24, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.52);
}

.footer-contact p {
  flex-basis: 100%;
  color: var(--white);
  font-weight: 800;
}

.footer-contact span,
.footer-contact a {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(17, 24, 23, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  padding: 7px 10px;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.footer-contact a {
  color: #fff4a6;
}

.footer-contact a:hover {
  background: rgba(255, 210, 26, 0.92);
  border-color: rgba(255, 210, 26, 0.92);
  color: var(--brand-blue-dark);
  text-shadow: none;
}

.footer-logo {
  width: 54px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0;
}

.site-footer .footer-logo-mark {
  width: 54px;
  max-height: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a,
.footer-links span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(17, 24, 23, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 11px;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.footer-links a:hover {
  background: rgba(255, 210, 26, 0.92);
  border-color: rgba(255, 210, 26, 0.92);
  color: var(--brand-blue-dark);
  text-shadow: none;
}

.policy-content {
  display: grid;
  gap: 24px;
}

.policy-content article {
  max-width: 840px;
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 36px);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.policy-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(17, 24, 23, 0.16);
    backdrop-filter: blur(16px);
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .hero-content {
    height: auto;
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.9) 50%, rgba(255, 250, 240, 0.34) 100%);
  }

  .hero img {
    object-position: 63% center;
  }

  .intro-grid,
  .split-section,
  .contact-hero,
  .sign-gallery,
  .local-service-area,
  .audience-benefits,
  .search-visibility,
  .faq-family,
  .product-band,
  .service-section {
    grid-template-columns: 1fr;
  }

  .audience-benefits.reverse .benefit-image {
    order: 0;
  }

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

  .sign-gallery-action {
    grid-column: 1;
  }

  .service-preview,
  .metric-band,
  .visibility-grid,
  .local-answer-grid,
  .pricing-grid,
  .pricing-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid.three.storage-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 68px;
    margin-top: 10px;
    padding: 8px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-long {
    display: none;
  }

  .brand-logo-mark {
    display: block;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section,
  .page-hero,
  .contact-hero,
  .service-section,
  .cta-section {
    width: calc(100% - 28px);
    padding-left: 18px;
    padding-right: 18px;
    border-width: 7px;
  }

  .service-preview,
  .sign-gallery-grid,
  .metric-band,
  .visibility-grid,
  .local-answer-grid,
  .service-area-links,
  .pricing-grid,
  .pricing-grid.three,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .pricing-grid.three.storage-options {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 60, 130, 0.16);
  }

  .site-footer {
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 24px);
    margin: 22px auto 18px;
    border-radius: 24px;
    min-height: 0;
    gap: 12px;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(17, 24, 23, 0.5), rgba(17, 24, 23, 0.82)),
      url("/assets/footer-meadow.webp") 62% 78% / cover;
  }

  .footer-brandline {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
