/* =========================================================
   Canutillo Self Storage — Canutillo, TX
   Texas burnt orange palette, mobile-first layout
   ========================================================= */

:root {
  --burnt-orange: #BF5700;
  --burnt-deep:   #8C3F00;
  --burnt-glow:   #E07A1F;
  --cream:        #F8EFE2;
  --cream-soft:   #FCF6EC;
  --sand:         #EAD8B7;
  --ink:          #1F1208;
  --ink-soft:     #3A2A1A;
  --muted:        #6B5946;
  --line:         rgba(31, 18, 8, 0.10);
  --line-strong:  rgba(31, 18, 8, 0.22);
  --white:        #ffffff;
  --shadow-sm:    0 1px 2px rgba(31, 18, 8, 0.06), 0 1px 3px rgba(31, 18, 8, 0.05);
  --shadow-md:    0 4px 12px -2px rgba(31, 18, 8, 0.10), 0 8px 24px -6px rgba(31, 18, 8, 0.08);
  --shadow-lg:    0 12px 36px -6px rgba(31, 18, 8, 0.18);
  --radius:       12px;
  --radius-lg:    18px;
  --font:         'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:   Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(191, 87, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(140, 63, 0, 0.05) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--burnt-orange); text-decoration: none; }
a:hover { color: var(--burnt-deep); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--burnt-glow);
  box-shadow: 0 0 0 3px rgba(224, 122, 31, 0.25);
}
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-phone { color: var(--cream); font-weight: 600; }
.topbar-phone:hover { color: var(--burnt-glow); }

.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active {
  background: var(--burnt-orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 239, 226, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--burnt-orange);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -1px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--burnt-orange); }
.nav-cta { white-space: nowrap; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s, background-color 0.12s, color 0.12s, box-shadow 0.12s;
  text-align: center;
}
.btn-primary {
  background: var(--burnt-orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--burnt-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--white); color: var(--burnt-orange); border-color: var(--burnt-orange); }
.btn-outline {
  background: transparent;
  color: var(--burnt-orange);
  border-color: var(--burnt-orange);
}
.btn-outline:hover { background: var(--burnt-orange); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(140,63,0,0.93) 0%, rgba(191,87,0,0.84) 55%, rgba(224,122,31,0.74) 100%),
    url("img/hero.jpg") center 38% / cover no-repeat;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.18), transparent 50%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 6px, transparent 6px 14px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6.5vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 920px;
}
.hero-title em {
  font-style: italic;
  color: #FFE5C8;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
  max-width: 640px;
  color: rgba(255, 245, 230, 0.92);
  margin: 0 0 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.08);
}
.hero .btn-ghost:hover { background: #fff; color: var(--burnt-orange); border-color: #fff; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,245,230,0.78);
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-inner > div { display: flex; align-items: center; gap: 8px; }
.trust-ico { font-size: 18px; }

/* ---------- Section common ---------- */
section { padding: 72px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--burnt-glow); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-title.light { color: var(--cream); }
.section-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 36px;
}
.section-lead.light { color: rgba(248, 239, 226, 0.85); }

/* ---------- Features ---------- */
.features { background: var(--cream-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 87, 0, 0.25);
}
.feature-ico {
  font-size: 28px;
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { background: var(--cream); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.popular {
  border: 2px solid var(--burnt-orange);
  box-shadow: 0 0 0 4px rgba(191, 87, 0, 0.10), var(--shadow-md);
}
.popular-flag {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--burnt-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.price-tag {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--burnt-orange);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.price-amount span {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font);
  font-weight: 500;
  margin-left: 4px;
}
.price-desc {
  font-size: 14px;
  color: var(--muted);
  min-height: 40px;
}
.price-feats {
  list-style: none;
  padding: 12px 0 4px;
  margin: 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.price-feats li::before {
  content: "✓";
  color: var(--burnt-orange);
  font-weight: 700;
  margin-right: 8px;
}
.price-card .btn { margin-top: auto; }
@media (max-width: 880px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .price-grid { grid-template-columns: 1fr; } }

.price-notes {
  margin-top: 28px;
  background: rgba(191, 87, 0, 0.06);
  border-left: 4px solid var(--burnt-orange);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.price-notes strong { color: var(--burnt-deep); }
.price-notes.price-notes-insurance {
  background: #FFF6EC;
  border-left-color: #8C3F00;
  margin-top: 12px;
}
.price-notes.price-notes-insurance strong { color: #8C3F00; }
.price-notes.price-notes-insurance a { font-weight: 700; }

/* ---------- Security section ---------- */
.security {
  background: linear-gradient(135deg, #2A1808 0%, #3A2210 100%);
  color: var(--cream);
}
.security-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.security-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(248, 239, 226, 0.92);
}
.check {
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--burnt-orange);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-callout {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.callout-row { display: flex; flex-direction: column; gap: 6px; }
.callout-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--burnt-glow);
  line-height: 1;
}
.callout-text {
  font-size: 13px;
  color: rgba(248, 239, 226, 0.78);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .security-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Contact ---------- */
.contact { background: var(--cream-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 10px;
  color: var(--ink);
  transition: background-color 0.12s;
}
a.contact-row:hover { background: rgba(191, 87, 0, 0.07); }
.contact-icon {
  font-size: 20px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 400;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 14px 0 6px;
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burnt-orange);
  box-shadow: 0 0 0 3px rgba(191, 87, 0, 0.15);
  background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 22px; }
.form-disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream); padding-bottom: 96px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.12s;
}
.faq details[open] { border-color: rgba(191, 87, 0, 0.35); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--burnt-orange);
  font-weight: 400;
  transition: transform 0.18s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.brand-footer { color: var(--cream); margin-bottom: 14px; }
.brand-footer .brand-text strong { color: var(--cream); }
.brand-footer .brand-text em { color: rgba(248,239,226,0.6); }
.footer-tagline { font-size: 14px; color: rgba(248,239,226,0.75); line-height: 1.55; max-width: 320px; }
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burnt-glow);
  margin: 0 0 12px;
  font-weight: 700;
}
.footer p { margin: 4px 0; font-size: 14px; color: rgba(248,239,226,0.85); }
.footer a { color: var(--cream); }
.footer a:hover { color: var(--burnt-glow); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 14px; color: rgba(248,239,226,0.85); }
.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(248,239,226,0.6);
}
.footer-bilingual { font-weight: 600; color: var(--burnt-glow); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: rgba(31, 18, 8, 0.95);
  backdrop-filter: blur(6px);
  gap: 8px;
  z-index: 40;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.mcta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.mcta-call {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}
.mcta-reserve {
  background: var(--burnt-orange);
  border: 1px solid var(--burnt-orange);
  color: #fff;
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 64px; }
  .nav-cta { display: none; }
}

/* ---------- Section spacing tweaks ---------- */
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
  .feature-card, .price-card { padding: 20px; }
}

/* =========================================================
   ADDITIONS — Accessibility, Promo banner, Gallery,
   Reviews, Map, Availability badges, Honeypot, Focus
   ========================================================= */

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--burnt-orange);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
  color: #fff;
}

/* ---------- Visible focus ring (a11y) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--burnt-glow);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Promo banner ---------- */
.promo-banner {
  background: linear-gradient(90deg, var(--burnt-deep) 0%, var(--burnt-orange) 50%, var(--burnt-glow) 100%);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.promo-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.promo-flag {
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.promo-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.promo-cta:hover { color: #FFE5C8; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.gallery-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.gc-icon {
  font-size: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
}
.gallery-card figcaption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 1;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.gc-gate    { background: linear-gradient(135deg, #8C3F00, #BF5700); }
.gc-aisle   { background: linear-gradient(135deg, #1F1208, #5C3818); }
.gc-unit    { background: linear-gradient(135deg, #6B5946, #8C3F00); }
.gc-office  { background: linear-gradient(135deg, #BF5700, #E07A1F); }
.gc-fence   { background: linear-gradient(135deg, #2C1A0A, #6B3A18); }
.gc-driveup { background: linear-gradient(135deg, #8C3F00, #2C1A0A); }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Availability badge ---------- */
.price-card { padding-top: 32px; }
.avail {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.avail-good { background: #E6F4EA; color: #18713C; border: 1px solid #C5E6CE; }
.avail-low  { background: #FFF1E6; color: #B4480A; border: 1px solid #FFD3AC; animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180, 72, 10, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(180, 72, 10, 0); }
}
.price-card.popular .avail { top: 14px; right: 14px; }
.price-card.popular .popular-flag {
  right: auto;
  left: 20px;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  color: #F5A623;
  letter-spacing: 0.08em;
  font-size: 18px;
}
.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.review-initial {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--burnt-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.review-detail { font-size: 12px; color: var(--muted); }
.review-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.review-cta-note { font-size: 14px; color: var(--muted); }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- Map embed ---------- */
.map-wrap { margin-top: 56px; }
.map-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 4px 0 16px;
  color: var(--ink);
  font-weight: 400;
}
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #ddd;
}
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.map-directions { margin-top: 14px; }
.map-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* ---------- Honeypot field ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer legal links ---------- */
.footer-legal-links {
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(248,239,226,0.7);
}
.footer-legal-links a { color: rgba(248,239,226,0.85); }
.footer-legal-links a:hover { color: var(--burnt-glow); }



/* ─── Gallery image overlay (added when real photos are wired in) ─── */
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-card .gc-icon { display: none; }
.gallery-card figcaption { z-index: 2; }
