@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;600;700&display=swap');

/* ---------- Variables ---------- */
:root {
  --primary:    #1C2B4A;
  --primary-dk: #131e33;
  --red:        #C41E3A;
  --red-dk:     #9e1830;
  --gold:       #C9974C;
  --gold-lt:    #e8b97a;
  --cream:      #FBF8F3;
  --white:      #ffffff;
  --dark:       #111214;
  --text:       #1a1a1a;
  --text-muted: #666;
  --border:     rgba(0,0,0,0.10);
  --card-bg:    #ffffff;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius:     8px;
  --trans:      0.25s ease;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Lato', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); font-weight: 400; color: var(--text); background: var(--cream); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--red); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; transition: top var(--trans);
}
.skip-link:focus { top: 16px; }

/* ---------- Focus Styles ---------- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  background: var(--primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 70px; gap: 24px;
}
.logo a {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); transition: opacity var(--trans);
}
.logo a:hover { opacity: 0.85; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 700; letter-spacing: 0.01em; line-height: 1.2;
  color: var(--white);
}
.logo-sub {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.logo-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.logo-badge span {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em;
}

nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li a {
  display: block; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.02em;
  border-radius: var(--radius); transition: background var(--trans), color var(--trans);
}
nav ul li a:hover,
nav ul li a.active { color: var(--white); background: rgba(255,255,255,0.12); }
nav ul li a.active { color: var(--gold); }
.nav-cta a {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--radius);
  transition: background var(--trans) !important;
}
.nav-cta a:hover { background: var(--red-dk) !important; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.6;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(28,43,74,0.7) 0%, rgba(28,43,74,0.45) 55%, rgba(28,43,74,0.2) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 80px 0;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(201,151,76,0.4);
  border-radius: 40px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  font-weight: 300; max-width: 520px; margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 32px; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius); transition: background var(--trans), transform var(--trans);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 20px;
}
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border-radius: var(--radius);
  padding: 20px 28px; text-align: center; min-width: 130px;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ---------- Section Shared ---------- */
.section-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); font-weight: 300;
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 56px; }
section { padding: 80px 0; }

/* ---------- About ---------- */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #2a3f6b 50%, #1a2540 100%);
  aspect-ratio: 4/3;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.about-img-frame:hover img { transform: scale(1.03); }
.about-img-inner {
  text-align: center; padding: 48px;
}
.about-img-icon { font-size: 5rem; margin-bottom: 16px; }
.about-img-text {
  font-family: var(--serif); font-size: 1.4rem; color: var(--white);
  font-weight: 600;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; box-shadow: 0 8px 24px rgba(196,30,58,0.35);
}
.about-badge-year { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-badge-since { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-content .section-title { text-align: left; }
.about-content .section-eyebrow { display: block; }
.about-content .section-sub { text-align: left; margin: 0; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(196,30,58,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.about-feature-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.about-feature-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Highlights ---------- */
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.highlight-card {
  background: var(--white); border-radius: 12px;
  padding: 32px 24px; text-align: center;
  box-shadow: var(--card-shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--trans), box-shadow var(--trans);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.highlight-icon { font-size: 2.4rem; margin-bottom: 16px; }
.highlight-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.highlight-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Featured Stores ---------- */
.stores-section { background: var(--cream); }
.stores-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 22px; font-size: 0.83rem; font-weight: 600;
  letter-spacing: 0.5px; background: var(--white);
  border: 1px solid var(--border); border-radius: 40px;
  cursor: pointer; color: var(--text-muted);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.stores-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.store-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--card-shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column;
}
.store-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.store-card-img {
  width: 100%; height: 200px; overflow: hidden;
}
.store-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.store-card:hover .store-card-img img { transform: scale(1.05); }
.store-card-header {
  padding: 24px; background: linear-gradient(135deg, var(--primary) 0%, #243558 100%);
  display: flex; align-items: center; gap: 16px;
}
.store-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(255,255,255,0.12); display: flex;
  align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.store-card-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); line-height: 1.25; }
.store-card-cat {
  display: inline-block; margin-top: 4px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.store-card-body { padding: 20px 24px; flex: 1; }
.store-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.store-card-info { display: flex; flex-direction: column; gap: 6px; }
.store-info-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.store-info-row svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.5; }
.store-info-row a { color: var(--primary); font-weight: 600; }
.store-info-row a:hover { color: var(--red); }
.store-badge {
  margin-top: 16px; display: inline-block;
  padding: 4px 12px; border-radius: 40px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.badge-anchor { background: rgba(196,30,58,0.1); color: var(--red); }
.badge-open { background: rgba(22,163,74,0.1); color: #16a34a; }

/* ---------- Info Bar ---------- */
.info-bar {
  background: var(--primary);
  padding: 0;
}
.info-inner {
  display: flex; align-items: stretch;
  min-height: 80px;
}
.info-block {
  display: flex; align-items: center;
  padding: 20px 40px; flex: 1;
  border-right: 1px solid rgba(255,255,255,0.1); gap: 16px;
}
.info-block:last-child { border-right: none; }
.info-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.info-sep { font-size: 1.2rem; color: rgba(255,255,255,0.25); }
.info-value { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.85); }
.info-value a { color: rgba(255,255,255,0.85); }
.info-value a:hover { color: var(--gold); }

/* ---------- Amenities ---------- */
.amenities-section { background: var(--white); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.amenity-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.amenity-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: rgba(28,43,74,0.07); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.amenity-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.amenity-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Aerial Gallery ---------- */
.aerial-gallery { padding: 80px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.gallery-col { display: flex; flex-direction: column; gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 10px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--wide { height: 480px; }
.gallery-col .gallery-item { height: 232px; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { height: 280px; }
  .gallery-col .gallery-item { height: 200px; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1729 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner .section-eyebrow { color: var(--gold-lt); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-sub { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #111827 100%);
  padding: 60px 0 50px;
}
.page-hero .section-eyebrow { color: var(--gold); margin-bottom: 10px; display: block; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 700; margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 300; max-width: 560px; }

/* ---------- Stores Directory Page ---------- */
.directory-section { padding: 60px 0; }
.category-group { margin-bottom: 60px; }
.category-group-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--text); border-bottom: 2px solid var(--border);
  padding-bottom: 12px; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.category-group-title .cat-icon { font-size: 1.4rem; }
.category-count {
  margin-left: auto; font-family: var(--sans); font-size: 0.78rem;
  font-weight: 600; color: var(--text-muted); letter-spacing: 1px;
  text-transform: uppercase;
}
.dir-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.dir-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.dir-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.dir-card-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.dir-card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.dir-card-meta { display: flex; flex-direction: column; gap: 5px; }
.dir-meta-row { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.dir-meta-row strong { color: var(--text); font-weight: 600; white-space: nowrap; }
.dir-meta-row a { color: var(--primary); font-weight: 600; }
.dir-meta-row a:hover { color: var(--red); }

/* ---------- Contact Page ---------- */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info-card {
  background: var(--white); border-radius: 12px;
  padding: 40px; box-shadow: var(--card-shadow);
}
.contact-info-card h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.contact-info-card p.intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(28,43,74,0.08); display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-detail a:hover { color: var(--red); }
.hours-table { width: 100%; margin-top: 8px; border-collapse: collapse; }
.hours-table tr td { padding: 4px 0; font-size: 0.88rem; }
.hours-table tr td:first-child { color: var(--text-muted); font-weight: 400; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--text); }
.map-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white);
}
.map-placeholder {
  background: linear-gradient(135deg, #1c2b4a 0%, #243558 100%);
  height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 40px;
}
.map-placeholder-icon { font-size: 3rem; }
.map-placeholder h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--white); }
.map-placeholder p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.map-cta { padding: 24px; background: var(--white); }
.map-cta a.btn-primary { width: 100%; justify-content: center; font-size: 0.88rem; }
.parking-card {
  background: linear-gradient(135deg, rgba(196,30,58,0.05) 0%, rgba(28,43,74,0.05) 100%);
  border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 24px;
}
.parking-card h4 { font-weight: 700; color: var(--text); margin-bottom: 8px; font-size: 0.95rem; }
.parking-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark); color: var(--white);
  padding: 56px 0 24px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.footer-logo-badge span { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-section h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-section a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55);
  padding: 4px 0; transition: color var(--trans);
}
.footer-section a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }
.footer-partner { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: right; }
.footer-partner a { color: var(--gold); }
.footer-partner a:hover { color: var(--gold-lt); }

/* ---------- Privacy ---------- */
.prose-section { padding: 60px 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 36px 0 12px; }
.prose p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; list-style: disc; }
.prose ul li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    display: none; position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--primary-dk);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 99;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 16px; gap: 4px; }
  nav ul li a { padding: 12px 16px; font-size: 0.95rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-inner { flex-direction: column; }
  .info-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-partner { text-align: left; }
  .stores-grid { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
}
