/* ============================================
   CORTEZ SELF STORAGE — Master Stylesheet
   Design: Industrial Modern + Local Trust
   Colors extracted from brand logo
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --green: #5BA847;
  --green-dark: #4A8F39;
  --green-light: #6FBF5A;
  /* WCAG-AA-safe deep green for primary button backgrounds and small green
     text on white. White text on this hits 5.0:1, dark-gray text 7+:1.
     Used only on .btn--primary (and as a fallback text color on white). */
  --green-button: #3F7A33;
  --green-button-hover: #2F5F26;
  --charcoal: #3A3A3A;
  --charcoal-dark: #2A2A2A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray-100: #F0F0EC;
  --gray-200: #E0E0DA;
  --gray-300: #C8C8C0;
  --gray-400: #A0A098;
  --gray-500: #707068;
  --gray-600: #505048;

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 85px;
  --border-radius: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);

  /* Extended gray scale (aliases for pages using non-standard grays) */
  --gray-50:  #F8F8F5;
  --gray-700: #3F3F38;
  --gray-800: #2E2E2A;
  --gray-900: #1E1E1A;
  --gray-950: #141412;

  /* Radius aliases */
  --radius-sm: 2px;
  --radius-md: var(--border-radius);
  --radius-lg: 8px;

  /* Accent color aliases — map to brand or distinct readable values */
  --primary: var(--green);
  --primary-light: var(--green-light);
  --primary-dark: var(--green-dark);
  --accent: var(--green);
  --accent-dark: var(--green-dark);

  /* Service-page color accents (used on drive-up, outdoor, storage-units pages) */
  --blue: #2E6DA4;
  --blue-dark: #1E4D7A;
  --blue-light: #5B9CC7;
  --orange: #D4731A;
  --orange-dark: #B05A10;
  --orange-light: #E8A05A;
  --teal: #2A8A7E;
  --teal-light: #5BB5AC;
  --purple: #6B50A0;
  --purple-light: #9B82CC;
  --red: #C0392B;
  --red-light: #E07070;

  /* Transition utility */
  --transition: all 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--charcoal-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: var(--space-md); }
h4 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-md); }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--gray-500); }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow { max-width: var(--max-width-narrow); }
.section {
  padding: var(--space-4xl) 0;
}
.section--dark {
  background: var(--charcoal-dark);
  color: var(--gray-200);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark h5, .section--dark h6 { color: var(--gray-100); }
.section--dark p { color: var(--gray-200); }
.section--dark li { color: var(--gray-200); }
.section--dark span { color: inherit; }
.section--dark strong { color: var(--white); }
.section--dark .lead { color: var(--gray-300); }
.section--dark .eyebrow { color: var(--green-light); }
.section--dark a { color: var(--green-light); }
.section--dark a:hover { color: var(--white); }
.section--dark hr { border-color: rgba(255,255,255,0.12); }
.section--dark table { color: var(--gray-200); }
.section--dark td { color: var(--gray-200); }
.section--dark th { color: var(--gray-300); }
/* Unit table inside dark sections */
.section--dark .unit-table th {
  color: var(--gray-300);
  border-bottom-color: rgba(255,255,255,0.15);
}
.section--dark .unit-table td {
  color: var(--gray-200);
  border-bottom-color: rgba(255,255,255,0.08);
}
.section--dark .unit-table .size { color: var(--white); }
.section--dark .unit-table .price { color: var(--green-light); }
.section--dark .unit-table tr:hover td { background: rgba(255,255,255,0.05); }
.section--gray {
  background: var(--gray-100);
}
.section--green {
  background: var(--green);
  color: var(--white);
}
.section--green h2, .section--green h3 { color: var(--white); }

.grid,
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: var(--space-xl);
}
.grid--2, .grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid--3, .grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid--4, .grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4,
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4,
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: visible;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 10;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transition: filter 0.2s, transform 0.2s;
}
.logo:hover img {
  filter: drop-shadow(0 3px 10px rgba(91,168,71,0.3));
  transform: translateY(-1px);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gray-500);
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: var(--space-lg); }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 0.75rem;
  min-width: 220px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu-inner {
  background: var(--charcoal-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--green);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-lg);
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-300);
  letter-spacing: 0.08em;
}
.dropdown-menu a:hover {
  background: rgba(91,168,71,0.1);
  color: var(--white);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal-dark);
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 3px solid var(--green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  .main-nav.open { display: flex; }
  /* Mobile nav links on dark background — restore light colors */
  .main-nav a { color: var(--gray-300); }
  .main-nav a:hover, .main-nav a.active { color: var(--white); }
  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    padding-top: var(--space-sm);
    min-width: auto;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu-inner {
    border: none;
    border-top: none;
    padding-left: var(--space-md);
    background: transparent;
    box-shadow: none;
  }
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--green);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius);
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover {
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Phone in header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.header-phone a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  letter-spacing: 0.05em;
}
.header-phone a:hover { color: var(--green); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1;
}
.btn--primary, .btn-primary {
  background: var(--green-button);   /* AA-compliant: white text 5.0:1 */
  color: var(--white);
  border-color: var(--green-button);
  font-weight: 700;
}
.btn--primary:hover, .btn-primary:hover {
  background: var(--green-button-hover);
  border-color: var(--green-button-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(63,122,51,0.45);
}
.btn--secondary, .btn-secondary {
  background: transparent;
  color: var(--green-button);   /* AA-compliant on white: 5.0:1 */
  border-color: var(--green-button);
  font-weight: 700;
}
.btn--secondary:hover, .btn-secondary:hover {
  background: var(--green-button);
  color: var(--white);
  border-color: var(--green-button);
}
/* On dark sections / heroes, secondary buttons need a lighter green so the
   border + text reach AA against charcoal-dark / hero overlay. */
.section--dark .btn--secondary,
.section--dark .btn-secondary,
.hero .btn--secondary,
.hero .btn-secondary,
.page-header .btn--secondary,
.page-header .btn-secondary,
.cta-block .btn--secondary,
.cta-block .btn-secondary {
  color: var(--green-light);          /* 6.34:1 on charcoal-dark */
  border-color: var(--green-light);
}
.section--dark .btn--secondary:hover,
.hero .btn--secondary:hover,
.page-header .btn--secondary:hover,
.cta-block .btn--secondary:hover {
  background: var(--green-light);
  color: var(--charcoal-dark);
  border-color: var(--green-light);
}
.btn--white, .btn-white {
  background: var(--white);
  color: var(--charcoal-dark);
  border-color: var(--white);
}
.btn--white:hover, .btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn--dark, .btn-dark {
  background: var(--charcoal-dark);
  color: var(--white);
  border-color: var(--charcoal-dark);
}
.btn--dark:hover, .btn-dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn--large, .btn--lg, .btn-large, .btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}
.btn--full, .btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--dark {
  background: var(--charcoal);
  border-color: rgba(255,255,255,0.08);
  color: var(--gray-200);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--bordered-green {
  border-left: 4px solid var(--green);
}
.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(91,168,71,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--green);
}
.card__icon svg { width: 24px; height: 24px; }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  margin-top: var(--header-height);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 50%, rgba(91,168,71,0.15) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.hero h1 .highlight {
  color: var(--green);
}
.hero .lead {
  color: var(--gray-300);
  margin-bottom: var(--space-xl);
  font-size: 1.2rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--green); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 600px) {
  .hero { min-height: 70vh; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--charcoal-dark);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-bar__item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-2xl);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  opacity: 0.3;
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-lg) 0;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  gap: var(--space-md);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: var(--space-md);
}

/* --- CTA Block --- */
.cta-block {
  background: var(--green);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-xl); font-size: 1.1rem; }

/* Nav Pay Bill link */
.main-nav__pay {
  font-size: 0.75rem !important;
  color: var(--gray-500) !important;
  letter-spacing: 0.05em !important;
  border: 1px solid var(--gray-200);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.main-nav__pay:hover {
  color: var(--green) !important;
  border-color: var(--green);
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 3px solid var(--green);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
/* Footer logo */
.footer-brand img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}
.footer-brand .logo-text { margin-bottom: var(--space-md); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray-400);
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--green); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  margin-top: var(--header-height);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.breadcrumbs li::after {
  content: '/';
  margin-left: 0.3rem;
  color: var(--gray-300);
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--green); }

/* --- Page Header (for inner pages) --- */
.page-header {
  background: var(--charcoal-dark);
  padding: var(--space-3xl) 0 var(--space-2xl);
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}
.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.page-header .lead {
  color: var(--gray-300);
  max-width: 600px;
}

/* --- Unit/Pricing Table --- */
.unit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.unit-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  padding: var(--space-md);
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.unit-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.unit-table tr:hover td {
  background: var(--gray-100);
}
.unit-table .size {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal-dark);
}
.unit-table .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
}

/* --- Button & Component Aliases (for pages using alternate class naming) --- */
/* button base = btn */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.button.button-primary, .button-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.button.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91,168,71,0.35);
}
.button.button-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.button.button-secondary:hover {
  background: var(--green);
  color: var(--white);
}
.button.button-lg, .button-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* card-icon = card__icon alias */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.card-icon svg { width: 24px; height: 24px; }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }
.mt-section { margin-top: var(--header-height); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Schema / Screen Reader --- */
.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;
}

/* ============================================
   INTERIOR PAGE LAYOUT
   Used by contact, about, and similar pages
   ============================================ */

/* Push body content below fixed header */
.main-content {
  padding-top: var(--header-height);
}

/* Page hero — dark banner at the top of interior pages */
.page-hero {
  background: var(--charcoal-dark);
  padding: var(--space-3xl) 0;
  border-bottom: 3px solid var(--green);
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}
.page-hero .subtitle {
  color: var(--gray-300);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

/* General content section wrapper */
.content-section {
  padding: var(--space-3xl) 0;
}
.content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info h2,
.contact-map h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
}
.contact-details {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.detail-item {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}
.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.detail-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: var(--space-sm);
}
.detail-item p {
  color: var(--charcoal);
  line-height: 1.7;
}

/* Map */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-container iframe {
  display: block;
  width: 100%;
}

/* ============================================
   FAQ GRID
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.faq-item {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .content-section {
    padding: var(--space-2xl) 0;
  }
  .page-hero {
    padding: var(--space-2xl) 0;
  }
}

/* ============================================
   BREADCRUMB VARIANTS
   Handles both .breadcrumbs and .breadcrumb-nav
   ============================================ */

/* breadcrumb-nav class (used on outdoor-storage, drive-up-storage) */
.breadcrumb-nav {
  padding: var(--space-md) 0;
  margin-top: var(--header-height);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  font-size: 0.8rem;
  color: var(--gray-500);
  align-items: center;
}
.breadcrumb li::after {
  content: '/';
  margin-left: 0.3rem;
  color: var(--gray-300);
}
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .current,
.breadcrumb [aria-current="page"] { color: var(--charcoal); }

/* Remove double margin-top when page-header immediately follows a breadcrumb bar */
/* Handles both direct sibling and when <main> wraps the page-header */
.breadcrumb-nav + .page-header,
.breadcrumbs + .page-header,
.breadcrumbs + main > .page-header:first-child,
.breadcrumbs ~ main > .page-header:first-child {
  margin-top: 0;
}

/* Fix breadcrumbs that use flat a/span structure (no ol/li) */
.breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  align-items: center;
}
.breadcrumbs .container a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.breadcrumbs .container a:hover { color: var(--green); }
.breadcrumbs .container span[aria-hidden="true"] {
  color: var(--gray-300);
  margin: 0 0.1rem;
}
.breadcrumbs .container span[aria-current="page"] {
  color: var(--charcoal);
}

/* ============================================
   SERVICE PAGE HERO (rv-storage, boat-storage, etc.)
   Sized to match .page-header on other inner pages
   ============================================ */
.hero-rv,
.hero-boat {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--charcoal-dark);
  overflow: hidden;
  margin-top: var(--header-height);
  padding: var(--space-3xl) 0 var(--space-2xl);
}
/* Remove double margin when breadcrumbs precede the hero */
.breadcrumbs ~ main > .hero-rv:first-child,
.breadcrumbs ~ main > .hero-boat:first-child,
.breadcrumbs + main > .hero-rv:first-child,
.breadcrumbs + main > .hero-boat:first-child {
  margin-top: 0;
}
.hero-rv::before,
.hero-boat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.97) 0%, rgba(26,26,26,0.8) 50%, rgba(91,168,71,0.15) 100%);
  z-index: 1;
}
.hero-rv::after,
.hero-boat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  z-index: 2;
}
.hero-rv .hero-content,
.hero-boat .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
}
/* Generic .hero-content alias for any hero */
.hero > .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-rv h1,
.hero-boat h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}
.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: var(--space-sm);
}
.hero-subtitle {
  color: var(--gray-300);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
@media (max-width: 600px) {
  .hero-rv .hero-content,
  .hero-boat .hero-content { padding: 0; }
}

/* Page header subtitle */
.page-header .subtitle,
.page-header .page-subtitle {
  color: var(--gray-300);
  font-size: 1.15rem;
  font-weight: 400;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-md);
  margin-top: var(--space-xs);
}
.page-header .lead {
  color: var(--gray-300);
  font-size: 1rem;
  max-width: 680px;
}
.page-header-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.page-header h1 { margin-bottom: 0; }

/* ============================================
   SERVICE PAGE SECTIONS
   Shared layout for rv, boat, personal, business
   ============================================ */

/* Generic section wrappers */
.intro-section,
.why-outdoor,
.why-drivup { padding: var(--space-4xl) 0; background: var(--white); }
.section-content { max-width: 780px; }
.section-subtitle,
.section-intro {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
  max-width: 640px;
}
.intro-content h2 { margin-bottom: var(--space-md); }
.intro-content p { color: var(--charcoal); }

/* Feature list — used on personal/business intro */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.feature-item svg {
  width: 32px;
  height: 32px;
  color: var(--green);
  flex-shrink: 0;
  margin-bottom: var(--space-xs);
}
.feature-item h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--charcoal-dark);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* Features grid — used on rv/boat/outdoor pages */
.features-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.features-section h2 { text-align: center; margin-bottom: var(--space-3xl); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,168,71,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--green);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); color: var(--charcoal-dark); }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Types grid (RV types, boat types) */
.rv-types,
.content-section { padding: var(--space-4xl) 0; background: var(--white); }
.rv-types h2, .content-section h2 { margin-bottom: var(--space-md); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.type-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--green);
}
.type-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); color: var(--charcoal-dark); }
.type-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 900px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .types-grid { grid-template-columns: 1fr; } }

/* Problem-solution and location sections */
.problem-solution,
.location-access {
  padding: var(--space-4xl) 0;
  background: var(--charcoal-dark);
}
.problem-solution h2,
.location-access h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.solution-grid,
.location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.solution-item,
.location-info {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--green);
}
.solution-item h3,
.location-info h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}
.solution-item p,
.location-info p { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 0; }
.location-info ul {
  color: var(--gray-400);
  font-size: 0.9rem;
  list-style: disc;
  padding-left: var(--space-lg);
  margin-top: var(--space-sm);
}
.location-info ul li { padding: 0.2rem 0; }
@media (max-width: 700px) {
  .solution-grid, .location-details { grid-template-columns: 1fr; }
}

/* CTA section — service pages */
.cta-section {
  background: var(--green);
  padding: var(--space-4xl) 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: var(--space-xl); font-size: 1.05rem; }
.cta-content { max-width: 680px; margin: 0 auto; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.cta-phone {
  margin-top: var(--space-md);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.cta-phone a { color: var(--white); text-decoration: underline; }

/* Flexible terms (RV page) */
.flexible-terms {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.flexible-terms h2 { text-align: center; margin-bottom: var(--space-3xl); }
.terms-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.terms-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
}
.terms-item h3 { font-size: 1rem; margin-bottom: var(--space-sm); color: var(--charcoal-dark); }
.terms-item p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 700px) { .terms-content { grid-template-columns: 1fr; } }

/* Related cards grid */
.related-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.related-section h2 { text-align: center; margin-bottom: var(--space-3xl); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
a.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
a.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.related-card h3 { font-size: 0.95rem; color: var(--charcoal-dark); margin-bottom: var(--space-sm); }
.related-card p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* Storage options (boat page) */
.storage-options {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.storage-options h2 { text-align: center; margin-bottom: var(--space-md); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.option-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.option-card h3 { font-size: 1rem; color: var(--charcoal-dark); margin-bottom: var(--space-xs); }
.option-card p { font-size: 0.9rem; color: var(--gray-500); flex-grow: 1; margin-bottom: var(--space-md); }
a.option-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}
a.option-link:hover { color: var(--green-dark); }
@media (max-width: 700px) { .options-grid { grid-template-columns: 1fr; } }

/* Benefits section (boat/personal) */
.benefits-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.benefits-section h2 { text-align: center; margin-bottom: var(--space-3xl); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.benefit-item,
.benefit-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.benefit-item h3,
.benefit-card h3 { font-size: 1rem; color: var(--charcoal-dark); margin-bottom: var(--space-sm); }
.benefit-item p,
.benefit-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================
   PERSONAL STORAGE PAGE SPECIFIC
   ============================================ */
.life-situations-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.life-situations-section h2 { text-align: center; margin-bottom: var(--space-md); }
.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.situation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.situation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.situation-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,168,71,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--green);
}
.situation-icon svg { width: 28px; height: 28px; }
.situation-card h3 { font-size: 1rem; color: var(--charcoal-dark); margin-bottom: var(--space-sm); }
.situation-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 900px) { .situations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .situations-grid { grid-template-columns: 1fr; } }

/* Size guide section */
.size-guide-section {
  padding: var(--space-4xl) 0;
  background: var(--charcoal-dark);
}
.size-guide-section h2 { color: var(--white); text-align: center; margin-bottom: var(--space-md); }
.size-guide-section .section-subtitle { color: var(--gray-300); text-align: center; margin: 0 auto var(--space-2xl); }
.size-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.size-rec-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.size-rec-card h3 { color: var(--white); font-size: 1rem; margin-bottom: var(--space-sm); }
.size-best-for {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-light);
  margin-bottom: var(--space-sm);
}
.size-rec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.size-rec-card ul li {
  color: var(--gray-300);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.size-rec-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.8rem;
}
@media (max-width: 900px) { .size-recommendations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .size-recommendations-grid { grid-template-columns: 1fr; } }

/* Peace of mind / security section */
.peace-of-mind-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.peace-of-mind-content h2 { text-align: center; margin-bottom: var(--space-md); }
.peace-of-mind-content > p { text-align: center; max-width: 640px; margin: 0 auto var(--space-2xl); }
.security-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.security-feature {
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.security-feature h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: var(--space-xs); }
.security-feature p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
@media (max-width: 900px) { .security-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .security-features { grid-template-columns: 1fr; } }

/* ============================================
   BUSINESS STORAGE PAGE SPECIFIC
   ============================================ */
.use-cases-section {
  padding: var(--space-4xl) 0;
  background: var(--charcoal-dark);
}
.use-cases-section h2 { color: var(--white); text-align: center; margin-bottom: var(--space-md); }
.use-cases-section .section-subtitle { color: var(--gray-300); text-align: center; margin: 0 auto var(--space-2xl); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.use-case-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: background 0.2s;
}
.use-case-card:hover { background: rgba(255,255,255,0.09); }
.use-case-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,168,71,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--green-light);
}
.use-case-icon svg { width: 26px; height: 26px; }
.use-case-card h3 { font-size: 1rem; color: var(--white); margin-bottom: var(--space-sm); }
.use-case-card p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 0; }
@media (max-width: 900px) { .use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .use-cases-grid { grid-template-columns: 1fr; } }

/* Unit sizes grid (business page) */
.unit-sizes-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.unit-sizes-section h2 { text-align: center; margin-bottom: var(--space-md); }
.unit-sizes-section .section-subtitle { text-align: center; max-width: 540px; margin: 0 auto var(--space-2xl); }
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.size-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  border-top: 3px solid var(--green);
}
.size-card h3 { font-size: 1rem; color: var(--charcoal-dark); margin-bottom: var(--space-xs); }
.size-details {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.size-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.size-card ul li {
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 0.2rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.size-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gray-300);
}
@media (max-width: 900px) { .sizes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sizes-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ SECTION OVERRIDES
   Some pages use .faq-section with a .faq-grid
   of static (non-accordion) cards
   ============================================ */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.faq-section h2 { text-align: center; margin-bottom: var(--space-3xl); }

/* Static FAQ card layout (personal/business) */
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.faq-section .faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  /* Override accordion defaults */
  border-bottom: 1px solid var(--gray-200);
  cursor: default;
}
.faq-section .faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
  text-transform: none;
  letter-spacing: 0;
  cursor: default;
}
.faq-section .faq-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}
.faq-section .faq-item a { color: var(--green-dark); }

/* HTML5 details/summary FAQ style (rv/boat pages) */
.faq-section details.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  margin-bottom: 0;
  cursor: default;
}
.faq-section details.faq-item summary {
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.faq-section details.faq-item summary::-webkit-details-marker { display: none; }
.faq-section details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-section details[open].faq-item summary::after {
  transform: rotate(45deg);
}
.faq-section details.faq-item p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}
.faq-section details.faq-item a { color: var(--green-dark); }
@media (max-width: 700px) {
  .faq-section .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BUTTON CLASS ALIASES
   btn-primary / btn-secondary / btn-lg (without --)
   ============================================ */
.btn.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91,168,71,0.35);
}
.btn.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ============================================
   BREADCRUMBS OL ALIAS — also handle li-less
   ============================================ */
/* When breadcrumbs use raw links (no ol/li), the
   .container flex layout above handles display.
   Ensure the separator spans don't break line. */
.breadcrumbs .container span {
  display: inline;
  line-height: inherit;
}

/* ============================================
   LOCATION PAGE CLASSES
   neighborhoods, directions, storage-types grids
   (weeki-wachee, hernando-county, brooksville,
   spring-hill pages)
   ============================================ */

.neighborhoods-section,
.storage-types-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.neighborhoods-section h2,
.storage-types-section h2 { margin-bottom: var(--space-md); }
.neighborhoods-section > .container > p,
.storage-types-section > .container > p {
  color: var(--gray-600);
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.neighborhood-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.neighborhood-card h3 {
  font-size: 1rem;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
}
.neighborhood-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
@media (max-width: 900px) { .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .neighborhoods-grid { grid-template-columns: 1fr; } }

/* Directions section */
.directions-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-100);
}
.directions-section h2 { margin-bottom: var(--space-2xl); }

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.direction-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.direction-card h3 {
  font-size: 1rem;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
}
.direction-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
@media (max-width: 700px) { .directions-grid { grid-template-columns: 1fr; } }

.directions-address {
  background: var(--charcoal-dark);
  color: var(--gray-300);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--border-radius);
  display: inline-block;
  margin-top: var(--space-md);
  border-left: 4px solid var(--green);
}
.directions-address p { margin-bottom: 0; line-height: 1.9; }
.directions-address strong { color: var(--white); }
.directions-address a { color: var(--green-light); }

/* Storage types grid (location pages) */
.storage-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.storage-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.storage-type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.storage-type-card h3 {
  font-size: 1rem;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
}
.storage-type-card h3 a { color: inherit; text-decoration: none; }
.storage-type-card h3 a:hover { color: var(--green); }
.storage-type-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
@media (max-width: 900px) { .storage-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .storage-types-grid { grid-template-columns: 1fr; } }

/* Central location section (hernando-county) */
.central-location-section {
  padding: var(--space-4xl) 0;
  background: var(--charcoal-dark);
}
.central-location-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-md);
}
.central-location-section > .container > p {
  color: var(--gray-300);
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}
.central-location-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.central-location-section .benefit-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: var(--space-xl);
}
.central-location-section .benefit-item h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}
.central-location-section .benefit-item p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .central-location-section .benefits-grid { grid-template-columns: 1fr; }
}

/* Intro CTA (location pages) */
.intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.intro-cta .btn { flex-shrink: 0; }

/* Responsive: size guide unit cards on mobile */
@media (max-width: 680px) {
  .unit-sizes-section [style*="grid-template-columns: 280px"] {
    grid-template-columns: 1fr !important;
  }
}

/* btn-large alias */
.btn.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* Intro grid (spring-hill: 2-col content + sidebar) */
.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.intro-grid .intro-highlight {
  background: var(--gray-100);
  border-left: 4px solid var(--green);
  padding: var(--space-lg);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: var(--space-lg) 0;
}
.intro-grid .intro-highlight strong { color: var(--green-dark); }
.intro-sidebar {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  height: fit-content;
}
.intro-sidebar h3 { margin-top: 0; font-size: 1.1rem; }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }

/* faq-section on location pages: stacked items (no grid) */
.faq-section > .container > .faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  padding: var(--space-xl);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: var(--space-lg);
  cursor: default;
}
.faq-section > .container > .faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: var(--space-sm);
  text-transform: none;
  letter-spacing: 0;
}
.faq-section > .container > .faq-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}
.faq-section > .container > .faq-item a { color: var(--green-dark); }

/* ============================================
   FACILITY IMAGES — real-photo integration
   ============================================ */

/* Homepage hero — real-photo background variant.
   Layered on top of existing .hero rules. */
.hero--photo {
  background-color: var(--black);
}
.hero--photo .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--photo .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
/* Stronger overlay so headline + lead remain readable on top of photo */
.hero--photo::before {
  background:
    linear-gradient(
      100deg,
      rgba(20,20,20,0.92) 0%,
      rgba(20,20,20,0.78) 38%,
      rgba(20,20,20,0.45) 70%,
      rgba(91,168,71,0.18) 100%
    );
  z-index: 1;
}
.hero--photo .container { position: relative; z-index: 2; }
@media (max-width: 768px) {
  .hero--photo .hero__media img { object-position: center center; }
  .hero--photo::before {
    background:
      linear-gradient(
        180deg,
        rgba(20,20,20,0.86) 0%,
        rgba(20,20,20,0.78) 50%,
        rgba(20,20,20,0.86) 100%
      );
  }
}

/* Generic figure for facility images placed in light sections */
.facility-figure {
  margin: 0;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.facility-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

/* Image inside dark sections (security panel, etc.) */
.facility-figure--dark {
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  background: var(--charcoal-dark);
}
.facility-figure--dark figcaption { color: var(--gray-100); }

/* 16:9 ratio helper — used for in-section images */
.facility-figure--16x9 { aspect-ratio: 16 / 9; }
.facility-figure--4x3  { aspect-ratio: 4 / 3; }
.facility-figure--1x1  { aspect-ratio: 1 / 1; }

/* Facility tour: 3-up grid of real-photo cards */
.facility-tour {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (max-width: 900px) {
  .facility-tour { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .facility-tour { grid-template-columns: 1fr; }
}

/* Replace the old security side-panel "shield card" with a real photo */
.security-photo {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 3;
  background: var(--charcoal-dark);
}
.security-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.security-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg) var(--space-xl);
  color: var(--white);
}
.security-photo__overlay strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-xs);
}
.security-photo__overlay span {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-100);
  line-height: 1.4;
}

/* Service-page hero with photo backdrop (for /drive-up-storage.php etc.) */
.hero-rv.hero--photo,
.hero-boat.hero--photo,
.page-header.hero--photo {
  position: relative;
  overflow: hidden;
}
.page-header.hero--photo {
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.page-header.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.78) 50%,
    rgba(91,168,71,0.18) 100%
  );
  z-index: 1;
}
.page-header.hero--photo .hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.page-header.hero--photo .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-header.hero--photo > .container { position: relative; z-index: 2; }

/* ============================================
   <details>/<summary> FAQ pattern
   Used by storage-unit-size-guide.php and similar.
   Coexists with the older .faq-item / .faq-question JS-toggled pattern.
   ============================================ */
details.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-md) 0;
}
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  padding: var(--space-sm) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
details.faq-item > p,
details.faq-item > div,
details.faq-item > ul {
  margin-top: var(--space-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Dark-section variant — inside .section--dark, switch the disclosure colors */
.section--dark details.faq-item {
  border-bottom-color: rgba(255,255,255,0.08);
}
.section--dark details.faq-item > summary { color: var(--white); }
.section--dark details.faq-item > summary::after { color: var(--green-light); }
.section--dark details.faq-item > p,
.section--dark details.faq-item > div,
.section--dark details.faq-item > ul { color: var(--gray-300); }

/* ============================================
   SITEWIDE ACCESSIBILITY & BRAND UNIFICATION
   (added during full audit pass)
   ============================================ */

/* --- Skip-to-content link (WCAG 2.4.1) --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 10000;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 0.15s ease-in-out;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: -3px;
}

/* --- Visible keyboard focus everywhere (WCAG 2.4.7) --- */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Buttons need a slightly different focus so it reads on green-on-green */
.btn:focus-visible,
.header-cta:focus-visible,
.btn--primary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(91,168,71,0.55);
}
.btn--white:focus-visible {
  outline: 3px solid var(--charcoal-dark);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.7);
}
/* Inside dark sections, white outline is more visible */
.section--dark a:focus-visible,
.page-header a:focus-visible,
.hero a:focus-visible,
.cta-block a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--white);
}

/* --- UNIFIED PAGE HEADER (replaces ad-hoc inline gradients) ---
   Every inner-page hero now uses the same brand-consistent treatment:
   charcoal-dark base + subtle green accent overlay + green bottom stripe.
   Page-specific colors (blue/teal/navy/olive) have been removed from the markup.
*/
.page-header {
  background:
    linear-gradient(
      135deg,
      rgba(91,168,71,0.08) 0%,
      rgba(91,168,71,0) 55%
    ),
    var(--charcoal-dark);
}
.page-header h1,
.page-header .h1 { color: var(--white); }
.page-header p,
.page-header .lead,
.page-header .subtitle,
.page-header .page-subtitle {
  color: var(--gray-300);
}
.page-header strong { color: var(--white); }
.page-header a { color: var(--green-light); }
.page-header a:hover { color: var(--white); }
/* Optional brand emphasis on conversion-focused pages */
.page-header--brand {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.page-header--brand h1,
.page-header--brand p { color: var(--white); }
.page-header--brand p,
.page-header--brand .lead { color: rgba(255,255,255,0.92); }

/* --- Mobile tap targets (WCAG 2.5.5 — min 44×44 CSS px) --- */
@media (max-width: 900px) {
  .main-nav a,
  .main-nav__pay,
  .header-cta,
  .footer-col a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .breadcrumbs a,
  .breadcrumbs span[aria-current] {
    padding: 0.35rem 0.25rem;
    display: inline-block;
  }
  .btn,
  .btn--sm {
    min-height: 44px;
  }
}

/* --- Footer link contrast bump (was gray-400, gray-500 — 3.5:1)
       Lift to gray-300/200 for AA on charcoal-dark (4.5:1+) --- */
.site-footer p,
.site-footer span,
.site-footer .footer-col a,
.site-footer .footer-bottom a {
  color: var(--gray-200);
}
.site-footer p strong { color: var(--white); }
.site-footer .footer-col a:hover,
.site-footer .footer-bottom a:hover { color: var(--green-light); }

/* --- Reviews / testimonial cards readability fix --- */
.reviews-stat {
  display: inline-block;
  background: var(--charcoal-dark);
  border: 1px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-3xl);
  margin-bottom: var(--space-2xl);
  color: var(--white);
}

/* --- Map / iframe wrapper --- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-wrapper iframe { border: 0; display: block; width: 100%; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1 !important; transform: none !important; }
}

/* --- Inline gray-400 body text in light cards/sections ---
   var(--gray-400) on white is ~3.5:1, below WCAG AA (4.5:1) for body text.
   Lift inline overrides inside light cards/sections to var(--gray-600) (~7:1). */
.section:not(.section--dark) .card [style*="color:var(--gray-400)"],
.section:not(.section--dark) .card [style*="color: var(--gray-400)"],
.section:not(.section--dark) .card[style*="color:var(--gray-400)"],
.section:not(.section--dark) .card[style*="color: var(--gray-400)"],
.section:not(.section--dark) > .container [style*="color:var(--gray-400)"],
.section:not(.section--dark) > .container [style*="color: var(--gray-400)"] {
  color: var(--gray-600) !important;
}

/* --- Inline dark-callout cards inside light sections ---
   Many pages use <div style="background:var(--gray-900)...">…</div> as a
   dark callout card on a light section. Without this rule the inner <h3>
   inherits the section's default charcoal color → dark heading on dark
   card. Force light text on any element whose inline style sets a dark
   background to one of our defined dark tokens. */
[style*="background:var(--gray-900)"],
[style*="background: var(--gray-900)"],
[style*="background:var(--gray-800)"],
[style*="background: var(--gray-800)"],
[style*="background:var(--charcoal-dark)"],
[style*="background: var(--charcoal-dark)"],
[style*="background:var(--charcoal)"],
[style*="background: var(--charcoal)"],
[style*="background:var(--black)"],
[style*="background: var(--black)"] {
  color: var(--gray-200);
}
[style*="background:var(--gray-900)"] h1,
[style*="background:var(--gray-900)"] h2,
[style*="background:var(--gray-900)"] h3,
[style*="background:var(--gray-900)"] h4,
[style*="background: var(--gray-900)"] h1,
[style*="background: var(--gray-900)"] h2,
[style*="background: var(--gray-900)"] h3,
[style*="background: var(--gray-900)"] h4,
[style*="background:var(--gray-800)"] h1,
[style*="background:var(--gray-800)"] h2,
[style*="background:var(--gray-800)"] h3,
[style*="background:var(--gray-800)"] h4,
[style*="background:var(--charcoal-dark)"] h1,
[style*="background:var(--charcoal-dark)"] h2,
[style*="background:var(--charcoal-dark)"] h3,
[style*="background:var(--charcoal-dark)"] h4,
[style*="background:var(--charcoal)"] h1,
[style*="background:var(--charcoal)"] h2,
[style*="background:var(--charcoal)"] h3,
[style*="background:var(--charcoal)"] h4,
[style*="background:var(--black)"] h1,
[style*="background:var(--black)"] h2,
[style*="background:var(--black)"] h3,
[style*="background:var(--black)"] h4 {
  color: var(--white);
}
/* Strong elements inside dark callouts also need bumping */
[style*="background:var(--gray-900)"] strong,
[style*="background:var(--gray-800)"] strong,
[style*="background:var(--charcoal-dark)"] strong { color: var(--white); }

/* --- Spring-hill / weeki-wachee inline pill spans --- */
[style*="background:var(--gray-900)"][style*="border:1px solid var(--gray-700)"] {
  color: var(--gray-200);
}

/* --- High-contrast forced-colors mode hint --- */
@media (forced-colors: active) {
  .btn,
  .btn--primary,
  .btn--secondary,
  .btn--white {
    border: 2px solid CanvasText;
  }
}

/* ==============================================================
   PHASE B + C ADDITIONS — Cortez Self Storage elevation
   ============================================================== */

/* === Hero CTA additions (Phase B) === */
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  color: var(--white);
}
.hero__reassurance {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

/* === Trust bar two-line variant (Phase B) === */
.trust-bar--rich .trust-bar__item {
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}
.trust-bar--rich .trust-bar__item span {
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--gray-600);
}
.trust-bar--rich .trust-bar__item span strong {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}
.trust-bar--rich .trust-bar__item svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 0.15rem;
}

/* === Section background utility (Phase B) === */
.section--off-white { background: var(--off-white); }
.eyebrow--light { color: var(--green-light); }
.lead-light { color: var(--gray-300); font-size: 1.1rem; line-height: 1.6; }

/* === Reviews Strip (Phase B) === */
.reviews-strip__inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.reviews-strip__rating { text-align: center; }
.reviews-strip__stars {
  color: #facc15;
  font-size: 1.6rem;
  letter-spacing: 2px;
}
.reviews-strip__score {
  color: var(--charcoal);
  font-size: 1rem;
  margin: 0.35rem 0;
}
.reviews-strip__score strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green-dark);
  display: block;
  line-height: 1;
}
.reviews-strip__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.reviews-strip__quotes {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}
.reviews-strip__quotes li {
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.reviews-strip__quotes p {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.reviews-strip__quotes cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gray-500);
}
@media (max-width: 700px) {
  .reviews-strip__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* === Manager Block (Phase B) === */
.manager-block { background: var(--white); }
.manager-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.manager-block__photo picture,
.manager-block__photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.manager-block__quote {
  border-left: 4px solid var(--green);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.manager-block__quote p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
  margin: 0 0 0.5rem 0;
}
.manager-block__quote cite {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: normal;
}
.manager-block__facts {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}
.manager-block__facts li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}
.manager-block__facts li:last-child { border-bottom: 0; }
.manager-block__facts strong { color: var(--charcoal); }
.manager-block__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
@media (max-width: 800px) {
  .manager-block__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* === Security Block (Phase B) === */
.security-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: start;
}
.security-block__pillars {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0 var(--space-lg) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.security-block__pillars li h3 {
  color: var(--green-light);
  font-size: 0.95rem;
  margin: 0 0 0.35rem 0;
}
.security-block__pillars li p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.security-block__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.security-block__visual .security-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.security-block__visual .security-photo img { display: block; width: 100%; }
.security-photo__caption {
  display: block;
  background: rgba(20,20,18,0.9);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
}
.security-photo__caption strong { display: block; color: var(--green-light); }
.security-photo__caption span { color: var(--gray-300); }
@media (max-width: 900px) {
  .security-block__grid { grid-template-columns: 1fr; }
  .security-block__pillars { grid-template-columns: 1fr; }
}

/* === Recently Upgraded (Phase B) === */
.recently-upgraded__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.recently-upgraded__list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.recently-upgraded__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.recently-upgraded__list h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: var(--charcoal);
}
.recently-upgraded__list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-600);
}

/* === Mobile-visible header phone link (Phase C) === */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.header-call:hover,
.header-call:focus-visible {
  background: var(--off-white);
  color: var(--green-dark);
}
.header-call__text { display: inline; }

/* On mobile, keep the call link visible OUTSIDE the hamburger */
@media (max-width: 900px) {
  .header-call {
    display: inline-flex !important;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
  }
  .header-call__text { display: none; }
  .header-call svg { width: 22px; height: 22px; }
}

/* === Mobile Sticky CTA (Phase C) === */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.25s ease-in-out;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta--visible { transform: translateY(0); }
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.mobile-cta__rent {
  background: var(--green-button);
  color: var(--white);
}
.mobile-cta__rent:hover,
.mobile-cta__rent:focus-visible {
  background: var(--green-button-hover);
  color: var(--white);
}
.mobile-cta__call {
  background: var(--white);
  color: var(--charcoal);
  border-left: 1px solid var(--gray-200);
}
.mobile-cta__call:hover,
.mobile-cta__call:focus-visible {
  background: var(--off-white);
}
@media (max-width: 900px) {
  body.has-sticky-cta { padding-bottom: 56px; }
}
@media (min-width: 901px) {
  .mobile-cta { display: none !important; }
}
body.page-contact .mobile-cta { display: none !important; }
body.page-contact { padding-bottom: 0; }

/* === Pricing table / card stack toggle (Phase C) === */
.unit-table-wrap { overflow-x: auto; }
.unit-cards { display: none; list-style: none; padding: 0; }
@media (max-width: 600px) {
  .unit-table-wrap > .unit-table { display: none; }
  .unit-cards {
    display: grid;
    gap: var(--space-md);
  }
}
.unit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  list-style: none;
}
.unit-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.02em;
}
.unit-card__size {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.unit-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.65rem;
  line-height: 1;
}
.unit-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-400);
}
.unit-card .btn {
  display: block;
  width: 100%;
  margin-top: var(--space-md);
  text-align: center;
}

/* Respect reduced-motion preferences (Phase F) */
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .mobile-cta { transition: none !important; }
}
