/* =========================================================
   Hutchinson Self Storage — Main Stylesheet
   Brand: Blue #1a6fbf | Orange #f5941e
   ========================================================= */

:root {
  --primary-blue:    #1a6fbf;
  --primary-orange:  #f5941e;
  --blue-dark:       #134e89;
  --orange-dark:     #d97d10;
  --text-dark:       #1a1a2e;
  --text-light:      #5a6475;
  --white:           #ffffff;
  --glass-card:      rgba(255,255,255,0.78);
  --glass-hero:      rgba(255,255,255,0.10);
  --glass-border:    rgba(255,255,255,0.28);
  --shadow-sm:       0 4px 16px rgba(26,111,191,0.10);
  --shadow-md:       0 8px 30px rgba(26,111,191,0.14);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.13);
  --radius-card:     16px;
  --radius-hero:     24px;
  --max-width:       1400px;
  --font-head:       'Montserrat', sans-serif;
  --font-body:       'Open Sans', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: #edf2f7;
  min-height: 100vh;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary-blue); text-decoration: none; }
a:hover { color: var(--primary-orange); }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ── Container ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.93; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(245,148,30,0.30);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 6px 24px rgba(245,148,30,0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.80);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,111,191,0.25);
}
.btn-blue:hover { color: var(--white); }

/* ── Site Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,111,191,0.12);
  box-shadow: 0 2px 20px rgba(26,111,191,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100px;
  padding: 0.75rem 0;
}

.site-logo img {
  height: 75px;
  width: auto;
  max-width: 100%;
}

/* Top bar phone */
.header-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--primary-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.header-phone:hover { color: var(--primary-orange); }

/* ── Navigation ───────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  background: rgba(26,111,191,0.08);
  color: var(--primary-blue);
}

/* Space before the button pair */
.main-nav > li.nav-spacer { margin-left: 1.5rem; }

/* Dropdown — extend hover area to cover the gap */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px; /* bridge gap so mouse can travel down without losing hover */
  min-width: 200px;
  z-index: 100;
}
.dropdown-menu-inner {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,111,191,0.10);
  overflow: hidden;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: rgba(26,111,191,0.07);
  color: var(--primary-blue);
}

.nav-cta {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.55rem 1.1rem !important;
  box-shadow: 0 3px 12px rgba(245,148,30,0.25);
}
.nav-cta:hover { color: var(--white) !important; box-shadow: 0 4px 16px rgba(245,148,30,0.40) !important; }

.nav-pay {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.55rem 1.1rem !important;
  box-shadow: 0 3px 12px rgba(26,111,191,0.25);
}
.nav-pay:hover { color: var(--white) !important; background: var(--blue-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-tifton.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,55,110,0.52);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  width: 100%;
}
.hero-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-hero);
  padding: 2rem 2.5rem;
}
/* Two-card hero layout */
.hero-two-cards {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}
.hero-card-text {
  flex: 3;
  min-width: 0;
}
.hero-card-btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-width: 180px;
}
.hero-card-btns .btn { width: 100%; text-align: center; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-meta-dot {
  width: 8px; height: 8px;
  background: var(--primary-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { color: var(--text-dark); }
.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
}
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

/* ── Location Cards (Home) ────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.location-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-card .location-details {
  flex: 1;  /* stretches to fill space so popular unit box pins to same height in both cards */
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-blue);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-badge {
  display: inline-block;
  background: rgba(26,111,191,0.10);
  color: var(--primary-blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.location-card h3 {
  color: var(--primary-blue);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.location-address {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.location-detail-icon {
  width: 6px; height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--primary-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-icon svg {
  width: 26px; height: 26px;
  fill: var(--white);
}
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ── Why Choose (Trust Blocks) ────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.trust-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.trust-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary-blue);
  flex-shrink: 0;
}
.trust-text h4 { margin-bottom: 0.35rem; }
.trust-text p  { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* ── Units Section ────────────────────────────────────── */
.units-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.unit-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid rgba(26,111,191,0.20);
  background: var(--glass-card);
  color: var(--text-light);
  transition: all 0.2s;
}
.unit-tab:hover   { border-color: var(--primary-blue); color: var(--primary-blue); }
.unit-tab.active  { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.unit-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.unit-card-popular { border: 2px solid var(--primary-orange); }
.unit-popular-badge {
  background: var(--primary-orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.70rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.35rem;
}
.unit-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.unit-size {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}
.unit-type-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.unit-sqft {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.unit-amenities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.unit-amenities li {
  font-size: 0.83rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.unit-amenities li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.unit-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.unit-price-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--primary-blue);
}
.unit-price-period { font-size: 0.85rem; color: var(--text-light); }
.unit-card .btn { width: 100%; text-align: center; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: var(--primary-blue);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Serving Area ─────────────────────────────────────── */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.geo-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.geo-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.geo-card h4::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--primary-orange);
  border-radius: 50%;
}
.geo-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.geo-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.geo-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary-blue); }
.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,111,191,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: var(--primary-blue);
  font-size: 0.8rem;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary-orange);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #0e3a6e;
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 88px; filter: brightness(0) invert(1); opacity: 0.90; width: auto; }
.footer-tagline { font-size: 0.87rem; line-height: 1.6; }
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.87rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--primary-orange); }
.footer-dot {
  width: 6px; height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.footer-address {
  font-size: 0.87rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ── Prose Section ────────────────────────────────────── */
.prose-section {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.prose-section p { color: var(--text-light); line-height: 1.8; }
.prose-section p:last-child { margin: 0; }

/* ── Solutions Grid ───────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.solution-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.solution-card:hover { transform: translateY(-3px); }
.solution-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solution-card h4::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--primary-blue);
  border-radius: 3px;
  flex-shrink: 0;
}
.solution-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ── Location logo — left justified ──────────────────── */
.location-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.location-logo img {
  max-width: 240px;
  width: auto;
  height: auto;
}

/* ── Main Office label ────────────────────────────────── */
.location-main-office {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin: -0.25rem 0 0.5rem;
}
/* Invisible spacer so Enigma card reserves the same vertical space */
.location-office-spacer {
  display: block;
  height: calc(0.78rem * 1.4 + 0.25rem + 0.5rem);
  margin: -0.25rem 0 0.5rem;
}

/* ── Popular unit expanded in location card ───────────── */
.location-popular-unit {
  position: relative;
  background: rgba(26,111,191,0.06);
  border: 1px solid rgba(26,111,191,0.18);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0 1.25rem;
}
.lpu-header {
  margin-bottom: 0.75rem;
}
.lpu-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-orange);
}
.lpu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.lpu-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(26,111,191,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpu-icon svg {
  width: 54px;
  height: 54px;
}
.lpu-size {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary-blue);
  line-height: 1;
}
.lpu-type {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.lpu-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary-blue);
  line-height: 1;
  flex-shrink: 0;
}
.lpu-price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}
.lpu-amenities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.lpu-amenities li {
  font-size: 0.83rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lpu-amenities li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 2-col units grid ─────────────────────────────────── */
.units-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .units-grid-2col { grid-template-columns: 1fr; }
}

/* ── Accent bg ────────────────────────────────────────── */
.bg-light { background: rgba(255,255,255,0.45); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(26,111,191,0.12);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(26,111,191,0.04);
    border-radius: 8px;
    margin-top: 0.25rem;
  }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .hero-glass { padding: 1.5rem 1.75rem; }
  .header-phone { display: none; }
  /* Stack hero cards at tablet/mobile */
  .hero-two-cards { flex-direction: column !important; gap: 1rem; }
  /* Button card: keep column, remove min-width constraint, buttons full width */
  .hero-card-btns { min-width: 0 !important; }
  .hero-card-btns .btn { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .locations-grid, .features-grid, .trust-grid, .units-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 1.25rem 0; }
  .cta-banner { padding: 2.5rem 0; }

  /* Hero two-card: stack vertically on mobile */
  .hero-two-cards {
    flex-direction: column !important;
    gap: 0.75rem;
  }
  .hero-card-btns {
    min-width: 0 !important;
  }
  .hero-glass {
    padding: 1.1rem 1.25rem;
  }
  /* Text card: tighter everything */
  .hero-card-text .section-label { display: none; }
  .hero h1 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
  }
  .hero-subtitle { display: none; }
  .hero-meta {
    gap: 0.5rem;
    margin-bottom: 0;
  }
  .hero-meta-item {
    font-size: 0.75rem;
  }
  /* Hide two of the four meta items to reduce clutter */
  .hero-meta-item:nth-child(3),
  .hero-meta-item:nth-child(4) { display: none; }

  /* Button card: stay column, full-width buttons, tighter padding */
  .hero-card-btns {
    min-width: 0 !important;
  }
  .hero-card-btns .btn {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════
   BLOG — Hub & Article Pages
═══════════════════════════════════════════════════════ */

/* ── Blog Hub Layout ──────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* Blog hero/header strip */
.blog-hero {
  background: var(--primary-blue);
  padding: 3rem 0;
  margin-bottom: 0;
}
.blog-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.blog-hero p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding: 1rem 0 0;
}
.breadcrumb a { color: var(--primary-blue); }
.breadcrumb a:hover { color: var(--primary-orange); }
.breadcrumb-sep { color: var(--text-light); opacity: 0.5; }

/* Article card */
.blog-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--primary-blue);
  overflow: hidden;
  position: relative;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,111,191,0.12);
  color: var(--primary-blue);
  font-size: 3rem;
  opacity: 0.4;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block;
  background: rgba(26,111,191,0.10);
  color: var(--primary-blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--primary-blue); }
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.blog-meta-dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s, gap 0.2s;
}
.blog-read-more:hover { color: var(--primary-orange); gap: 0.5rem; }
.blog-read-more::after { content: '→'; }

/* Cards grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Coming-soon card */
.blog-card-soon {
  opacity: 0.6;
  pointer-events: none;
}
.blog-card-soon .blog-category {
  background: rgba(90,100,117,0.12);
  color: var(--text-light);
}

/* ── Blog Sidebar ─────────────────────────────────────── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}
.sidebar-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(245,148,30,0.20);
}
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-links a {
  font-size: 0.87rem;
  color: var(--text-dark);
  line-height: 1.4;
  display: block;
  transition: color 0.15s;
}
.sidebar-links a:hover { color: var(--primary-blue); }
.sidebar-cta-card {
  background: var(--primary-blue);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta-card h4 { color: var(--white); font-family: var(--font-head); font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: 0; text-transform: none; border: none; padding: 0; }
.sidebar-cta-card p { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin-bottom: 1rem; }
.sidebar-cta-card .btn { width: 100%; }

/* ── Article Page Layout ──────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}
.article-body-wrap {}

/* Article header */
.article-header { margin-bottom: 2rem; }
.article-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* Article body prose */
.article-body {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.article-body h2 {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin: 2rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26,111,191,0.12);
}
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.article-body a { color: var(--primary-blue); text-decoration: underline; }
.article-body a:hover { color: var(--primary-orange); }
.article-body strong { color: var(--text-dark); }

/* Article CTA box inside body */
.article-cta-box {
  background: rgba(26,111,191,0.07);
  border: 1px solid rgba(26,111,191,0.20);
  border-left: 4px solid var(--primary-blue);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-cta-box p { margin: 0; font-size: 0.92rem; color: var(--text-dark); }

/* Table of Contents sidebar widget */
.toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.toc-list li { counter-increment: toc; }
.toc-list a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(26,111,191,0.07);
  transition: color 0.15s;
  line-height: 1.35;
}
.toc-list a:hover { color: var(--primary-blue); }
.toc-list a::before {
  content: counter(toc);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--primary-orange);
  min-width: 18px;
  flex-shrink: 0;
}
.toc-list li:last-child a { border-bottom: none; }

/* ── Blog responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════════
   UNIT LIST LAYOUT (location pages)
═══════════════════════════════════════════════════════ */

.unit-section { margin-bottom: 2.5rem; }
.unit-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: var(--primary-blue);
  border-radius: 10px 10px 0 0;
}
.unit-section-header h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
}
.unit-section-header span {
  color: rgba(255,255,255,0.65);
  font-size: 0.80rem;
}

.unit-list {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* icon · size · desc · price · action */
.unit-list-head {
  display: grid;
  grid-template-columns: 72px 105px 1fr 100px 140px;
  align-items: center;
  background: rgba(26,111,191,0.06);
  border-bottom: 2px solid rgba(26,111,191,0.12);
  padding: 0.45rem 1.1rem;
  column-gap: 0.75rem;
}
.unit-list-head span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}
.unit-list-head span:last-child { text-align: right; }

/* Each unit row */
.unit-row {
  display: grid;
  grid-template-columns: 72px 105px 1fr 100px 140px;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-bottom: 1px solid rgba(26,111,191,0.07);
  transition: background 0.15s;
  min-height: 72px;
}
.unit-row:last-child { border-bottom: none; }
.unit-row:hover { background: rgba(26,111,191,0.03); }
.unit-row.popular { background: rgba(245,148,30,0.04); }
.unit-row.popular:hover { background: rgba(245,148,30,0.08); }

/* Icon slot */
.urow-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(26,111,191,0.06);
}
.urow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Size */
.urow-size {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary-blue);
  line-height: 1;
  white-space: nowrap;
}

/* Description */
.urow-desc { min-width: 0; }
.urow-desc-main {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  line-height: 1.3;
}
.urow-popular-tag {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  border-radius: 20px;
  padding: 0.1rem 0.45rem;
  white-space: nowrap;
}
.urow-desc-sub {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price */
.urow-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary-blue);
  white-space: nowrap;
}
.urow-price span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Action */
.urow-action { text-align: right; }
.urow-action .btn { font-size: 0.78rem; padding: 0.5rem 1rem; white-space: nowrap; }

/* Mobile */
@media (max-width: 680px) {
  .unit-list-head { display: none; }
  .unit-row {
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.35rem;
    column-gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    min-height: unset;
  }
  .urow-icon { width: 52px; height: 52px; grid-column: 1; grid-row: 1 / 3; }
  .urow-size { grid-column: 2; grid-row: 1; font-size: 1rem; }
  .urow-desc { grid-column: 2; grid-row: 2; }
  .urow-desc-sub { white-space: normal; }
  .urow-price { grid-column: 3; grid-row: 1; text-align: right; font-size: 1rem; }
  .urow-action { grid-column: 3; grid-row: 2; }
}

/* ═══════════════════════════════════════════════════════
   LOCATIONS MAP SECTION
═══════════════════════════════════════════════════════ */
.map-section { padding: 0 0 3rem; }
.map-wrap {
  width: 100%;
  height: 420px;
  margin: 0 0 2rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,111,191,0.10);
}
#locations-map {
  width: 100%;
  height: 100%;
}
/* Leaflet popup tweaks */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  padding: 4px !important;
}
.leaflet-popup-content { margin: 12px 14px !important; }
.leaflet-popup-tip { background: #fff !important; }

/* Below-map legend row */
.map-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.map-legend-item {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.map-pin-blue   { background: #1a6fbf; }
.map-pin-orange { background: #f5941e; }
.map-legend-item > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.map-legend-item strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--text-dark);
}
.map-legend-item span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.map-legend-item .btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .map-wrap { height: 320px; }
  .map-legend { flex-direction: column; }
  .map-legend-item { flex-direction: column; align-items: flex-start; }
}

.urow-urgent-tag {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c0392b;
  border: 1px solid #c0392b;
  border-radius: 20px;
  padding: 0.1rem 0.45rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   LOCATION PAGE HERO — 2-column info + map
═══════════════════════════════════════════════════════ */
.loc-hero { min-height: 460px; }

.loc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.loc-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-hero-map-wrap {
  border-radius: var(--radius-hero);
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.loc-hero-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* Leaflet popup in hero */
.loc-hero-map .leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .loc-hero-grid {
    grid-template-columns: 1fr;
  }
  .loc-hero-map-wrap {
    min-height: 260px;
  }
  .loc-hero-map { min-height: 260px; }
  .loc-hero { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   LOCATION PAGE — info + map 2-col in section
═══════════════════════════════════════════════════════ */
.loc-info-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.loc-info-col {
  display: flex;
  flex-direction: column;
}
.loc-info-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.loc-info-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.4;
}
.loc-info-row strong {
  color: var(--primary-blue);
  font-weight: 700;
  min-width: 72px;
  flex-shrink: 0;
}
.loc-info-row span { color: var(--text-light); }
.loc-info-row a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }
.loc-map-col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 1rem;
}
.loc-section-map {
  width: 100%;
  height: 380px;
}
@media (max-width: 900px) {
  .loc-info-map-grid {
    grid-template-columns: 1fr;
  }
  .loc-map-col { position: static; }
  .loc-section-map { height: 280px; }
}

/* ═══════════════════════════════════════════════════════
   HERO ANIMATIONS — Ken Burns + Content Stagger
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {

  /* Ken Burns: background photo slowly zooms out */
  @keyframes kenburns {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
  }
  .hero-bg {
    animation: kenburns 10s ease-out forwards;
    transform-origin: center center;
  }

  /* Fade-up: base keyframe for all staggered elements */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Glass card fades in first */
  .hero-glass {
    animation: fadeUp 0.6s ease-out both;
    animation-delay: 0.1s;
  }

  /* Individual elements stagger inside the card */
  .hero-glass .section-label {
    animation: fadeUp 0.5s ease-out both;
    animation-delay: 0.25s;
  }
  .hero-glass h1 {
    animation: fadeUp 0.55s ease-out both;
    animation-delay: 0.38s;
  }
  .hero-glass .hero-subtitle {
    animation: fadeUp 0.5s ease-out both;
    animation-delay: 0.50s;
  }
  .hero-glass .hero-meta {
    animation: fadeUp 0.5s ease-out both;
    animation-delay: 0.62s;
  }
  .hero-glass .hero-actions {
    animation: fadeUp 0.5s ease-out both;
    animation-delay: 0.75s;
  }

  /* Blog / inner page hero (blog-hero) */
  .blog-hero h1 {
    animation: fadeUp 0.55s ease-out both;
    animation-delay: 0.2s;
  }
  .blog-hero p {
    animation: fadeUp 0.5s ease-out both;
    animation-delay: 0.38s;
  }
  .blog-hero .section-label {
    animation: fadeUp 0.45s ease-out both;
    animation-delay: 0.1s;
  }

}

/* ── blog-hero with photo background ─────────────────── */
.blog-hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,78,137,0.72);
}
.blog-hero-photo .container { position: relative; z-index: 1; }

/* CCStorage dual price — card price secondary line */
.urow-card-price {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 0.15rem;
  white-space: nowrap;
}
