:root {
  --green-900: #0f4f3f;
  --green-700: #146b55;
  --green-100: #e8f3ef;
  --gold-700: #9a6417;
  --gold-100: #fff6e8;
  --off-white: #f8faf8;
  --surface: #fbfdfb;
  --surface-warm: #fffaf2;
  --charcoal: #1f2933;
  --gray-700: #5f6b66;
  --gray-200: #d9e2de;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(15, 79, 63, 0.13);
  --shadow-soft: 0 10px 24px rgba(31, 41, 51, 0.075);
  --shadow-gold: 0 12px 26px rgba(154, 100, 23, 0.1);
  --button-primary: linear-gradient(135deg, #0b3f34 0%, #12674f 52%, #1b8766 100%);
  --button-primary-hover: linear-gradient(135deg, #08342c 0%, #0f5d49 45%, #20936e 100%);
  --button-secondary: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 245, 0.98) 100%);
  --button-ring: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  --radius: 14px;
  --radius-small: 10px;
  --container: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(115deg, rgba(232, 243, 239, 0.74) 0%, rgba(255, 250, 242, 0.56) 34%, rgba(255, 255, 255, 0.94) 58%, rgba(232, 243, 239, 0.62) 100%),
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 48%, #ffffff 100%);
  background-attachment: fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--green-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-900);
}

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

:focus-visible {
  outline: 3px solid rgba(20, 107, 85, 0.38);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-900);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 248, 0.9));
  border-bottom: 1px solid rgba(15, 79, 63, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 26px rgba(15, 79, 63, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--charcoal);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(15, 79, 63, 0.14));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  font-size: 1.07rem;
}

.brand-text span {
  color: var(--green-700);
}

.primary-nav {
  display: none;
}

.primary-nav a {
  position: relative;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold-700);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--green-700);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: inline-flex;
  min-width: 5.25rem;
  height: 2.75rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
}

.menu-icon {
  display: inline-flex;
  width: 1.1rem;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-icon span {
  width: 1.1rem;
  height: 2px;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header .header-call {
  display: none;
}

.nav-open .primary-nav {
  position: fixed;
  inset: var(--header-height) 1rem auto;
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: dropIn 170ms ease-out both;
}

.nav-open .primary-nav a {
  padding: 0.82rem 0.9rem;
  border-radius: 0.8rem;
}

.nav-open .primary-nav a:hover,
.nav-open .primary-nav a.active {
  background: var(--green-100);
}

.nav-open .primary-nav a::after {
  display: none;
}

.section {
  padding: 3.25rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section + .section {
  padding-top: 1.35rem;
}

main > .section:not(.hero):not(.page-hero):nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(232, 243, 239, 0.46), rgba(255, 255, 255, 0.38));
}

.hero {
  padding-top: 2rem;
  padding-bottom: 1.35rem;
}

.hero + .section {
  padding-top: 1.15rem;
}

.hero-grid {
  display: grid;
  gap: 1.35rem;
  align-items: center;
}

.hero-copy {
  order: 1;
}

.hero-details {
  order: 3;
}

.hero-media {
  order: 2;
}

.hero-location {
  order: 3;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 5.3vw, 4.35rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--gray-700);
  font-size: clamp(1.12rem, 2.4vw, 1.42rem);
  font-weight: 750;
  line-height: 1.42;
}

.hero-subtitle::before {
  display: block;
  width: 4.25rem;
  height: 0.32rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(90deg, var(--green-700), var(--gold-700));
  border-radius: 999px;
  content: "";
}

.hero-lede,
.page-hero p,
.section-heading p,
.large-copy {
  color: var(--gray-700);
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 680px;
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button-row.center {
  justify-content: center;
}

.button-row.align-end {
  align-items: flex-end;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.btn::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.32) 48%, transparent 62%);
  content: "";
  pointer-events: none;
  transform: translateX(-140%);
  transition: transform 520ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(140%);
}

.btn-primary {
  color: var(--white);
  background: var(--button-primary);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--button-ring), 0 16px 30px rgba(15, 79, 63, 0.27);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--button-primary-hover);
  box-shadow: var(--button-ring), 0 20px 36px rgba(15, 79, 63, 0.34);
}

.btn-secondary {
  color: var(--green-900);
  background: var(--button-secondary);
  border-color: rgba(15, 79, 63, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(31, 41, 51, 0.08);
}

.btn-secondary:hover {
  color: var(--green-900);
  border-color: rgba(20, 107, 85, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #eaf5f0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 14px 28px rgba(15, 79, 63, 0.12);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 26px 65px rgba(15, 79, 63, 0.18);
  background: var(--green-100);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 79, 63, 0.18));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
}

.hero-location {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  margin-top: -0.2rem;
  padding: 0.95rem 1rem;
  color: var(--green-900);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 243, 239, 0.88));
  border: 1px solid rgba(15, 79, 63, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-location span:first-child {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-location strong {
  font-size: clamp(1.28rem, 4vw, 1.85rem);
  line-height: 1.15;
}

.hero-location span:last-child {
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.hero-action-row .btn {
  min-height: 2.7rem;
  padding: 0.68rem 1rem;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-heading h2,
.narrow h2,
.location-grid h2,
.cta-panel h2,
.two-column h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.section-heading p {
  margin-bottom: 0;
}

.feature-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.card,
.contact-card,
.faq-item,
.callout-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 251, 0.94));
  border: 1px solid rgba(15, 79, 63, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card {
  padding: 1.3rem;
}

.card:hover,
.contact-card:hover,
.faq-item:hover,
.callout-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 107, 85, 0.22);
}

.feature-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--green-100), rgba(255, 246, 232, 0.78));
  border: 1px solid rgba(15, 79, 63, 0.12);
  border-radius: 999px;
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.feature-card h2,
.price-card h3,
.price-card h2,
.faq-item h2,
.contact-card h2,
.contact-form h2 {
  margin: 0 0 0.55rem;
  color: var(--green-900);
  line-height: 1.15;
}

.faq-item::before,
.contact-card::before {
  display: block;
  width: 2.15rem;
  height: 0.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--green-700), var(--gold-700));
  border-radius: 999px;
  content: "";
}

.feature-card p,
.price-card p,
.faq-item p,
.contact-card p,
.contact-form p {
  color: var(--gray-700);
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.9), rgba(255, 250, 242, 0.72) 56%, rgba(255, 255, 255, 0.82));
}

.split-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.text-link {
  font-weight: 850;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card .btn {
  margin-top: auto;
}

.pricing-grid-large .price-card {
  align-items: center;
  text-align: center;
}

.price {
  margin: 0.25rem 0 1rem;
  color: var(--green-900);
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-confirmation {
  display: grid;
  gap: 0.25rem;
  margin-block: 0 1.15rem;
  padding: 1rem 1.1rem;
  max-width: 980px;
  color: var(--green-900);
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.96), rgba(255, 250, 242, 0.72));
  border: 1px solid rgba(15, 79, 63, 0.16);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.pricing-confirmation span {
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-confirmation p {
  margin: 0;
  color: var(--gray-700);
  font-weight: 650;
}

.location-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-grid .eyebrow,
.location-grid h2,
.location-grid p {
  color: var(--white);
}

.final-cta {
  padding-top: 2rem;
  padding-bottom: 2.35rem;
}

.cta-panel {
  padding: 1.45rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.96), rgba(255, 250, 242, 0.82) 58%, rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(15, 79, 63, 0.16);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-panel p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--gray-700);
}

.page-hero {
  padding-top: 2.15rem;
  padding-bottom: 1.55rem;
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.92), rgba(255, 250, 242, 0.54) 58%, rgba(255, 255, 255, 0.3));
  border-bottom: 1px solid rgba(15, 79, 63, 0.08);
}

.page-hero + .section {
  padding-top: 1.65rem;
}

.page-hero p {
  max-width: 780px;
}

.two-column {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.callout-card {
  padding: 1.35rem;
  text-align: center;
}

.callout-card strong,
.callout-card a {
  display: block;
}

.callout-card a {
  margin: 0.4rem 0;
  color: var(--green-900);
  font-size: 1.45rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
}

.faq-item {
  padding: 1.25rem;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-grid {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-stack .contact-details,
.contact-stack .contact-form {
  width: min(100%, 760px);
  margin-inline: auto;
}

.contact-map-block {
  display: grid;
  gap: 0.85rem;
}

.contact-map-block .section-heading {
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.contact-card {
  padding: 1.25rem;
  text-align: center;
}

.contact-card::before {
  margin-inline: auto;
}

.contact-card a:not(.btn) {
  color: var(--green-900);
  font-size: 1.35rem;
  font-weight: 900;
}

.map-panel {
  display: grid;
  min-height: 260px;
  align-content: center;
  gap: 0.5rem;
  padding: 1.4rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 79, 63, 0.92), rgba(20, 107, 85, 0.82)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-panel span {
  font-weight: 800;
}

.map-panel strong {
  font-size: 1.5rem;
}

.map-panel a {
  color: var(--white);
  font-weight: 800;
}

.map-embed-section {
  padding-top: 2rem;
  padding-bottom: 2.75rem;
}

.google-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.94), rgba(255, 250, 242, 0.7));
  border: 1px solid rgba(15, 79, 63, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.google-map iframe {
  display: block;
  width: 100%;
  height: clamp(15rem, 56vw, 28rem);
  border: 0;
}

.map-card-note {
  display: grid;
  gap: 0.12rem;
  padding: 1rem;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(15, 79, 63, 0.12);
}

.map-card-note strong {
  color: var(--green-900);
}

.map-card-note span {
  color: var(--gray-700);
  font-size: 0.94rem;
}

.map-card-note a {
  margin-top: 0.45rem;
  font-weight: 900;
}

.map-directions-link {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  overflow: hidden;
  color: var(--white) !important;
  background: var(--button-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--button-ring), 0 14px 26px rgba(15, 79, 63, 0.25);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.map-directions-link:hover {
  color: var(--white) !important;
  background: var(--button-primary-hover);
  box-shadow: var(--button-ring), 0 18px 32px rgba(15, 79, 63, 0.32);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form > h2,
.contact-form > p,
.form-status {
  text-align: center;
}

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-form .form-actions {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 0.38rem;
}

.form-field label {
  color: var(--charcoal);
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid rgba(15, 79, 63, 0.18);
  border-radius: var(--radius-small);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: #a83d3d;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
}

.form-status a {
  color: var(--green-900);
  font-weight: 950;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 1.65rem 0 4.35rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top left, rgba(232, 243, 239, 0.14), transparent 28rem),
    linear-gradient(180deg, #0f4f3f 0%, #0a382f 54%, #082923 100%);
  border-top: 1px solid rgba(154, 100, 23, 0.4);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-700), var(--green-700));
  content: "";
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.site-footer a {
  color: var(--white);
}

.footer-info {
  display: grid;
  justify-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.footer-brand img {
  width: 3.1rem;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.footer-name {
  position: relative;
  margin: 0.55rem 0 0.7rem;
  padding-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.footer-name::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--green-100), var(--gold-700));
  border-radius: 999px;
  content: "";
  transform: translateX(50%);
}

.site-footer p {
  margin: 0.3rem 0;
}

.footer-address,
.footer-location-note {
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-location-note {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-phone {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  margin-top: 0.75rem;
  padding: 0.55rem 1.2rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 24px rgba(0, 0, 0, 0.14);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-phone:hover {
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 16px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.7rem 0 0;
  padding: 0.35rem 0.75rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 0.55rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer nav {
  display: none;
}

.site-footer nav h2 {
  flex: 0 0 100%;
}

.site-footer nav a[href="index.html"],
.site-footer nav a[href="storage-features.html"],
.site-footer nav a[href="storage-tips.html"] {
  display: none;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-align: center;
}

.fred-credit {
  display: block;
  opacity: 0.68;
}

.mobile-call-bar {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 80;
}

.mobile-call-bar a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  overflow: hidden;
  color: var(--white);
  background: var(--button-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: var(--button-ring), 0 16px 28px rgba(15, 79, 63, 0.31);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  animation: callBarGlow 4.8s ease-in-out infinite;
}

.mobile-call-bar a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 48%);
  content: "";
  pointer-events: none;
}

.reveal {
  animation: fadeUp 520ms ease both;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes callBarGlow {
  0%,
  100% {
    box-shadow: var(--button-ring), 0 16px 28px rgba(15, 79, 63, 0.31);
  }
  50% {
    box-shadow: var(--button-ring), 0 19px 36px rgba(15, 79, 63, 0.42);
  }
}

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

  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mobile-call-bar a {
    animation: none;
  }
}

@media (min-width: 560px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .price-card:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 740px) and (max-width: 979px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex: 1;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .site-header .header-call {
    display: inline-flex;
    min-height: 2.65rem;
    padding-inline: 0.82rem;
    font-size: 0.82rem;
  }

  .hero-media img {
    aspect-ratio: 16 / 6;
    object-position: center 62%;
  }

  .mobile-call-bar {
    display: none;
  }
}

@media (min-width: 800px) {
  .section {
    padding: 4.5rem 0;
  }

  .section + .section {
    padding-top: 2rem;
  }

  .hero {
    padding-top: 2.35rem;
    padding-bottom: 1.25rem;
  }

  .hero + .section {
    padding-top: 1.4rem;
  }

  .page-hero {
    padding-top: 2.75rem;
    padding-bottom: 2.15rem;
  }

  .page-hero + .section {
    padding-top: 2.4rem;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex: 1;
  }

  .primary-nav a {
    font-size: 0.86rem;
  }

  .site-header .header-call {
    display: inline-flex;
    min-height: 2.8rem;
    padding-inline: 0.95rem;
    font-size: 0.88rem;
  }

  .hero-copy {
    order: initial;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-details {
    order: initial;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }

  .hero-media {
    order: initial;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-media img {
    aspect-ratio: 16 / 6;
    object-position: center 62%;
  }

  .hero-location {
    order: initial;
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .location-grid,
  .two-column,
  .split-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .button-row.align-end {
    justify-content: flex-end;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .pricing-confirmation {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 2rem;
    justify-items: start;
    text-align: left;
  }

  .footer-info {
    justify-items: start;
  }

  .footer-brand {
    width: 4.7rem;
    height: 4.7rem;
    border-radius: 18px;
  }

  .footer-brand img {
    width: 3.75rem;
  }

  .footer-name {
    margin: 0.85rem 0 1.05rem;
    font-size: 1.2rem;
  }

  .footer-name::after {
    right: auto;
    left: 0;
    transform: none;
  }

  .site-footer nav {
    display: grid;
    justify-items: start;
  }

  .site-footer nav a[href="index.html"],
  .site-footer nav a[href="storage-features.html"],
  .site-footer nav a[href="storage-tips.html"] {
    display: inline;
  }

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

  .mobile-call-bar {
    display: none;
  }

  .site-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .map-card-note {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: 28rem;
    border: 1px solid rgba(15, 79, 63, 0.12);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-soft);
  }
}

@media (min-width: 980px) {
  .primary-nav {
    gap: 1.15rem;
  }

  .primary-nav a {
    font-size: 0.94rem;
  }

  .site-header .header-call {
    min-height: 3rem;
    padding-inline: 1.15rem;
    font-size: 1rem;
  }

  .hero {
    padding-top: 1.85rem;
    padding-bottom: 1rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 4.8vw, 4rem);
  }

  .hero-media {
    border-width: 8px;
  }

  .hero-media img {
    aspect-ratio: 16 / 4.8;
  }

  .brand-text {
    font-size: 1.08rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-inner {
    gap: 0.65rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.18rem);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .section-heading h2,
  .split-heading h2,
  .narrow h2,
  .location-grid h2,
  .cta-panel h2,
  .two-column h2 {
    font-size: clamp(1.82rem, 8vw, 2rem);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.095em;
  }

  .btn {
    width: 100%;
  }

  .hero-action-row {
    width: 100%;
  }

  .hero-action-row .btn {
    width: auto;
    flex: 1 1 8.75rem;
    min-width: 0;
    padding-inline: 0.8rem;
  }

  .hero-action-row .btn-primary {
    order: -1;
    flex-basis: 100%;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-width: 4.75rem;
    padding-inline: 0.72rem;
    gap: 0.42rem;
  }
}
