/* ─────────────────────────────────────────────────────────────────────────────
   A Royal Mini Storage — style.css
   ───────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1C2E6B;
  --navy-dark:  #121F4A;
  --navy-light: #2A4190;
  --gold:       #F6CC1C;
  --gold-dark:  #CFA910;
  --gold-light: #FDE150;
  --white:      #FFFFFF;
  --off-white:  #F8F7F3;
  --gray-100:   #F0EFEb;
  --gray-300:   #D0CFCA;
  --gray-500:   #8A8880;
  --gray-700:   #4A4945;
  --text:       #1A1A1A;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Source Sans 3', sans-serif;
  --radius:     6px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── UTILITY ─────────────────────────────────────────────────────────────── */

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-700);
  font-weight: 300;
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(242,184,0,0.30);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,184,0,0.40);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--navy);
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-hero-navy {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s;
  cursor: pointer;
}
.btn-hero-navy:hover { background: #1a2d5e; }

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--gray-400);
  letter-spacing: 0.02em;
  transition: border-color 0.18s, background 0.18s;
  cursor: pointer;
}
.btn-ghost-white:hover { border-color: var(--navy); background: rgba(18,31,74,0.04); }

/* ── TOP BAR ─────────────────────────────────────────────────────────────── */

.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.15s; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-crown { height: 40px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 29px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--navy-dark);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-phone-icon svg { fill: var(--navy-dark); }
.nav-phone-icon:hover { background: var(--gray-100); }
.nav-rent-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.nav-rent-btn:hover { background: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--serif);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--navy-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all 0.25s;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  padding: 48px 0;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 1px, transparent 40px);
}
.hero-gold-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.hero-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.hero-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 5px;
}
.hero-info-value { font-size: 15px; color: var(--navy-dark); font-weight: 400; line-height: 1.45; }
.hero-info-value a { color: inherit; text-decoration: none; }
.hero-map-link {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  text-align: center;
  transition: color 0.15s;
}
.hero-map-link:hover { color: var(--gold); }

/* ── FACILITY HIGHLIGHTS ─────────────────────────────────────────────────── */

.facility-highlights {
  background: var(--navy-dark);
  padding: 72px 0;
}
.highlights-title {
  margin-bottom: 40px;
  color: var(--white);
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.highlights-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}
.highlights-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold);
}
.highlights-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}
.highlights-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.highlights-slide {
  flex: 0 0 100%;
  height: 100%;
}
.highlights-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.highlights-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
  z-index: 2;
}
.highlights-btn:hover { background: rgba(0,0,0,0.55); }
.highlights-btn svg { width: 18px; height: 18px; }
.highlights-btn-prev { left: 12px; }
.highlights-btn-next { right: 12px; }
.highlights-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.highlights-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.highlights-dot.active { background: var(--white); transform: scale(1.3); }

/* ── UNITS SECTION ───────────────────────────────────────────────────────── */

.units-section { background: var(--off-white); padding: 48px 0; }
.units-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── UNIT CARDS ──────────────────────────────────────────────────────────── */

.unit-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.unit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.unit-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.unit-card-badge {
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.unit-card-badge.promo { background: var(--navy-dark); }
.unit-card-image {
  background: var(--gray-50);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.unit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.unit-size-label {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.unit-sqft { font-size: 13px; color: var(--gray-500); }
.unit-card-body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; }
.unit-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.unit-price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.unit-price sup { font-size: 16px; vertical-align: super; line-height: 0; }
.unit-price-period { font-size: 13px; color: var(--gray-500); font-family: var(--sans); font-weight: 400; margin-left: 2px; }
.unit-price-discount {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: #1B7A3E;
  line-height: 1;
}
.unit-price-discount sup { font-size: 16px; vertical-align: super; line-height: 0; }
span.unit-price-struck {
  text-decoration: line-through;
  color: var(--gray-400);
}
.unit-promo-label {
  display: inline-block;
  background: #E8F5EE;
  color: #1B7A3E;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  margin-top: 6px;
}
.unit-price-inquire {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.5;
}
.unit-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.unit-features li {
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;

}
.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-dark);
  flex-shrink: 0;
}
.unit-cta { margin-top: auto; }
.btn-unit-reserve {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.btn-unit-reserve:hover { background: var(--navy-light); }
.btn-unit-inquire {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--navy);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.btn-unit-inquire:hover { background: var(--navy); color: var(--white); }

/* ── RESERVATION FORM ────────────────────────────────────────────────────── */

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 12px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,46,107,0.12);
}
.form-input.input-error { border-color: #C0392B; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-error {
  font-size: 12px;
  color: #C0392B;
  margin-top: 4px;
}

/* ── WHY US ──────────────────────────────────────────────────────────────── */

.why-section { padding: 88px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}
.why-icon-wrap {
  width: 52px; height: 52px;
  background: var(--navy-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon-wrap svg { width: 26px; height: 26px; }
.why-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.why-card-body { font-size: 15px; color: var(--gray-700); font-weight: 300; line-height: 1.7; }

/* ── LOCATION ────────────────────────────────────────────────────────────── */

.location-section { background: var(--navy-dark); padding: 80px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-section .section-title { color: var(--white); }
.location-section .section-label { color: var(--gold); }
.location-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.location-row { display: flex; gap: 16px; align-items: flex-start; }
.location-row-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(242,184,0,0.12);
  border: 1px solid rgba(242,184,0,0.25);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.location-row-icon svg { width: 18px; height: 18px; }
.location-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.location-row-value { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.6; }
.location-row-value a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.15s; }
.location-row-value a:hover { color: var(--gold); }
.map-embed iframe { display: block; border-radius: 8px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-chevron { flex-shrink: 0; transition: transform 0.22s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.7;
  font-weight: 300;
}
.faq-answer.open { display: block; }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 64px 0;
  border-top: 4px solid var(--gold);
}
.cta-inner { text-align: center; }
.cta-banner .section-label { text-align: center; }
.cta-banner .section-title { color: var(--white); text-align: center; }
.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  margin: 0 auto 36px;
  max-width: 520px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

footer { background: var(--off-white); padding: 56px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-300);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .nav-logo-text { color: var(--navy-dark); }
.footer-tagline { font-size: 14px; color: var(--gray-600); line-height: 1.7; max-width: 300px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-600); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--navy-dark); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--gray-500); }

/* ── MOBILE MENU ─────────────────────────────────────────────────────────── */

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; }
.mobile-menu.open { display: block; }
.mobile-menu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--white);
  display: flex; flex-direction: column;
  padding: 24px;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--navy); padding: 4px;
  margin-bottom: 24px;
}
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: block;
  font-size: 17px; font-weight: 500;
  color: var(--navy-dark);
  padding: 12px 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-phone {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: block;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: block; }
  .hero-card-title { display: none; }
  .highlights-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .hamburger { display: none; }
  .navbar .container { height: 56px; gap: 8px; }
  .nav-logo-crown { height: 28px; }
  .nav-logo-text { font-size: 22px; }
  .nav-logo { gap: 6px; }
  .nav-rent-btn { display: none; }
  .nav-phone-icon { display: flex; }
  .facility-highlights { padding: 40px 0; }
  .highlights-list li { font-size: 18px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost-white { text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ── RESERVATION MODAL ─────────────────────────────────────────────────────── */

.reserve-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.reserve-modal-overlay.active { opacity: 1; }

.reserve-modal {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.reserve-modal-overlay.active .reserve-modal { transform: translateY(0); }

.reserve-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.reserve-modal-close:hover { color: var(--navy); }

@media (max-width: 640px) {
  .reserve-modal { padding: 24px 20px; }
}
