/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ============================================================
   Fork Shoals Road Storage, LLC — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --navy:        #1a2744;
  --navy-dark:   #111c33;
  --navy-light:  #243158;
  --orange:      #e8602c;
  --orange-dark: #c94e1e;
  --orange-light:#f07840;
  --white:       #ffffff;
  --light-gray:  #f5f6f8;
  --mid-gray:    #e2e5ea;
  --dark-gray:   #2d3748;
  --text:        #374151;
  --text-light:  #6b7280;
  --text-muted:  #9ca3af;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
  --max-width:   1200px;
}

/* ── Reset & Normalize ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-lg { padding: 6.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-white { background: var(--white); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,96,44,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,96,44,.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ── Header ──────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-main span { color: var(--orange); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}
.header-phone-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-phone-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header-phone-number:hover { color: var(--orange-light); }

/* ── Navigation ──────────────────────────────────────────── */
.header-nav {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-links {
  display: flex;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 0.7rem 1rem;
  color: rgba(255,255,255,.78);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.nav-cta {
  display: none;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.07);
    z-index: 999;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-left-color: var(--orange);
    border-bottom: none;
    background: rgba(255,255,255,.04);
  }
  .header-nav { position: relative; }
}
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-cta { display: flex; }
  .header-phone-number { font-size: 1.4rem; }
}
@media (min-width: 1024px) {
  .logo-main { font-size: 1.35rem; }
  .nav-links a { padding: 0.7rem 1.25rem; }
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(17,28,51,.62) 0%,
    rgba(26,39,68,.48) 50%,
    rgba(26,39,68,.28) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem 1.25rem;
  max-width: 780px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 1.5rem;
}
.hero-badge::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
}
@media (min-width: 768px) {
  .hero { min-height: 640px; }
  .hero-content { padding: 5rem 2rem; }
}
@media (min-width: 1024px) {
  .hero { min-height: 700px; }
  .hero-content { padding: 6rem 0; }
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--orange);
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.trust-item:nth-child(even) { border-right: none; }
.trust-item:nth-child(n+3) { border-bottom: none; }
.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--white);
}
.trust-text {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; }
  .trust-item:last-child { border-right: none; }
  .trust-item:nth-child(even) { border-right: 1px solid rgba(255,255,255,.2); }
  .trust-item:last-child { border-right: none; }
}
@media (min-width: 1024px) {
  .trust-text { font-size: 0.9rem; }
  .trust-item { padding: 1.1rem 1.5rem; gap: 0.75rem; }
}

/* ── Benefits Grid ───────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--orange);
  flex-shrink: 0;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
@media (min-width: 480px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { gap: 1.5rem; } }

/* ── Storage Option Cards ────────────────────────────────── */
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.option-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.option-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.option-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
}
.option-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.option-card-body h3 { margin-bottom: 0.6rem; }
.option-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.option-card-features {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.option-card-features li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.option-card-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
@media (min-width: 640px)  { .options-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .options-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-strip p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-phone-big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.cta-phone-big:hover { background: rgba(255,255,255,.25); color: var(--white); }

/* ── Features / Security Section ────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(232,96,44,.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.feature-icon-wrap .icon {
  width: 1.375rem;
  height: 1.375rem;
}
.feature-item h4 { margin-bottom: 0.3rem; color: var(--navy); }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

/* ── Split Layout (text + image) ─────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split-section.reverse { }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split-section.reverse .split-text { order: 2; }
  .split-section.reverse .split-img { order: 1; }
  .split-img { height: 360px; }
}
@media (min-width: 1024px) {
  .split-img { height: 420px; }
}

/* ── Areas Served ────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--orange);
}
.area-card h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.area-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
@media (min-width: 640px)  { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 1rem;
  transition: background var(--transition);
  background: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--light-gray); }
.faq-chevron {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  display: inline-flex;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid transparent;
  transition: max-height 0.32s ease, padding 0.32s ease, border-color 0.32s ease;
}
.faq-answer.open {
  max-height: 700px;
  padding: 1rem 1.25rem 1.25rem;
  border-top-color: var(--mid-gray);
}
.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: disc; padding-left: 1.25rem; }
.faq-answer li { margin-bottom: 0.35rem; }

/* ── Contact Form ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,96,44,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-info-card h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item-icon { width: 1.2rem; height: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--orange-light); }
.contact-info-item-icon .icon { width: 1.2rem; height: 1.2rem; }
.contact-info-item-text { font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,.88); }
.contact-info-item-text strong { color: var(--white); display: block; margin-bottom: 0.15rem; }
.contact-info-item-text a { color: var(--orange-light); }
.contact-info-item-text a:hover { color: var(--white); }

/* ── Map Placeholder ─────────────────────────────────────── */
.map-placeholder {
  background: linear-gradient(135deg, #e2e5ea 0%, #c8cdd6 100%);
  border-radius: var(--radius-lg);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
  border: 1px solid var(--mid-gray);
}
.map-placeholder-icon { width: 3rem; height: 3rem; color: var(--text-muted); }
.map-placeholder-icon .icon { width: 3rem; height: 3rem; }
.map-placeholder p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.map-placeholder a { color: var(--orange); font-weight: 600; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-item-img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(17,28,51,.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(0);
}
@media (min-width: 480px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item-img { height: 240px; }
}

/* ── Comparison Table ────────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--mid-gray);
  text-align: left;
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table thead th:first-child { border-radius: 0; }
.compare-table tbody tr:nth-child(even) { background: var(--light-gray); }
.compare-table tbody tr:hover { background: rgba(232,96,44,.05); }
.compare-table .check { color: #16a34a; font-size: 1.1rem; }
.compare-table .cross { color: #dc2626; font-size: 1.1rem; }

/* ── Service Highlights ──────────────────────────────────── */
.highlights-list { display: flex; flex-direction: column; gap: 0.85rem; }
.highlight-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
}
.highlight-item-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.highlight-item-icon .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.highlight-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.highlight-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ── Info Box ────────────────────────────────────────────── */
.info-box {
  background: var(--light-gray);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 { margin-bottom: 0.5rem; }
.info-box p, .info-box li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.info-box ul { list-style: disc; padding-left: 1.25rem; }

/* ── RV Size Cards ───────────────────────────────────────── */
.rv-sizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.rv-size-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.rv-size-card .size { font-size: 1.75rem; font-weight: 800; color: var(--orange); display: block; }
.rv-size-card .label { font-size: 0.82rem; color: rgba(255,255,255,.72); }
@media (min-width: 640px) { .rv-sizes-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  background-size: cover;
  background-position: center;
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,28,51,.72) 0%, rgba(26,39,68,.58) 100%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 640px; margin: 0 auto 1.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.35); }
@media (min-width: 768px) { .page-hero { padding: 5rem 2rem; } }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 1.25rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-main { font-size: 1.15rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.65; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 0.75rem;
}
.footer-phone:hover { color: var(--orange-light); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}
.footer-col address a { color: var(--orange-light); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.38); margin: 0; }

/* ── Utility Classes ─────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 1rem; }
.flex-gap-sm { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inline-list li {
  background: rgba(232,96,44,.1);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(232,96,44,.2);
}
.divider {
  border: none;
  border-top: 1px solid var(--mid-gray);
  margin: 2rem 0;
}

/* ── Page-specific: Two-col content ─────────────────────── */
.content-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .content-cols { grid-template-columns: 2fr 1fr; gap: 3rem; } }
.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { color: var(--orange); margin-bottom: 1rem; font-size: 1.05rem; }
.sidebar-card p { font-size: 0.88rem; color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; margin-bottom: 0.75rem; display: flex; }

/* ── Mobile Sticky CTA Bar ───────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--orange);
  box-shadow: 0 -3px 16px rgba(0,0,0,.18);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  width: 100%;
  min-height: 56px;
}
.mobile-cta-bar a:hover { color: var(--white); background: var(--orange-dark); }
.mobile-cta-bar .icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
@media (max-width: 767px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* ── SVG Icon Base ───────────────────────────────────────── */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
/* Icons inside sized containers fill the parent */
.benefit-icon .icon  { width: 100%; height: 100%; }
.trust-icon .icon    { width: 100%; height: 100%; }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  #site-header, #site-footer, .cta-strip, .hamburger { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; }
}
