/* ============================================================
   ICR Clinics — style.css (Clean & Fully Responsive)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:       #D4A017;
  --navy-dark:  #b8880f;
  --gold:       #1B2A5E;
  --gold-light: #2d4494;
  --gold-pale:  #e8eaf5;
  --cream:      #fafaf8;
  --cream2:     #f3f0e8;
  --text:       #3a3a3a;
  --text-light: #6b6b6b;
  --white:      #ffffff;
  --transition: all 0.3s ease;
}

body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-weight: 600; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.text-center { text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }

.section-subtitle { color: var(--gold); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; display: block; font-weight: 500; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; margin-bottom: 20px; color: var(--navy); }
.section-desc { color: var(--text-light); max-width: 600px; margin: 0 auto 50px; font-size: 1.05rem; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.ann-hours { display: flex; align-items: center; gap: 18px; }
.ann-hours-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.ann-hours-item i { color: var(--gold); font-size: 0.7rem; }
.ann-hours-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.ann-center { flex: 1; overflow: hidden; text-align: center; }
.ann-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  text-transform: uppercase;
}
@keyframes marquee { 0% { transform: translateX(60px); } 100% { transform: translateX(-100%); } }
.ann-social { display: flex; align-items: center; gap: 14px; }
.ann-social a { color: rgba(255,255,255,0.65); font-size: 0.78rem; transition: color 0.2s; }
.ann-social a:hover { color: var(--gold); }
.ann-phone { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.65); font-size: 0.7rem; }
.ann-phone i { color: var(--cream); font-size: 0.68rem; }
.ann-social-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  box-shadow: 0 2px 20px rgba(212,160,23,0.06);
  transition: box-shadow 0.3s, padding 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  min-height: 64px;
}

/* Logo — left column */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
}

/* Center nav links */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-center .nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Right — button */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.btn-book {
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-book:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(212,160,23,0.22);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px; left: 0; right: 0;
  background: #ffffff;
  z-index: 999;
  padding: 10px 30px 24px;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  box-shadow: 0 10px 30px rgba(212,160,23,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 13px 0;
  font-size: 0.96rem;
  color: var(--text);
  border-bottom: 1px solid rgba(212,160,23,0.06);
  font-weight: 400;
  text-decoration: none;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { color: var(--navy); font-weight: 600; }
.mobile-nav .btn-book-mobile {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: var(--navy);
  color: #fff;
  padding: 13px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-center, .btn-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-container {
    grid-template-columns: auto 1fr auto;
    min-height: 56px;
  }
  .nav-logo img { height: 40px !important; }
  .nav-right { justify-content: flex-end; }
}
/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 500; cursor: pointer; transition: var(--transition); border: none; font-size: 0.92rem; font-family: 'DM Sans', sans-serif; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(27,42,94,0.25); }
.btn-secondary { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); padding: 14px 36px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-book { background: var(--navy); color: #fff; padding: 10px 24px; border-radius: 50px; font-size: 0.87rem; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-book:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(27,42,94,0.22); }

/* PAGE HERO (all pages except index) */
.page-hero { padding: 140px 30px 60px; text-align: center; background: linear-gradient(150deg, #f6f7fb 0%, #eef0f8 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(212,160,23,0.10) 0%, transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -40px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(27,42,94,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero .section-subtitle { font-size: 0.68rem; letter-spacing: 3px; color: var(--gold); font-weight: 500; display: block; margin-bottom: 14px; position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 2; }
.page-hero p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; max-width: 540px; margin: 0 auto; position: relative; z-index: 2; }

/* HERO (index) */
.hero { position: relative; overflow: hidden; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 4.8rem); font-weight: 500; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.hero-desc { font-size: 0.97rem; color: var(--text-light); line-height: 1.75; max-width: 520px; margin: 0 0 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero-img { width: 100%; max-width: 860px; height: 420px; object-fit: cover; border-radius: 28px; display: block; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); color: var(--white); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; position: relative; }
.stats-grid > div { position: relative; }
.stats-grid > div:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.15); }
.stat-number { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; margin-bottom: 10px; }
.stat-label { font-size: 0.95rem; opacity: 0.85; font-weight: 300; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: 20px; padding: 36px 30px 30px; position: relative; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(212,160,23,0.08); }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(212,160,23,0.1); border-color: rgba(27,42,94,0.3); }
.card-icon { width: 52px; height: 52px; background: rgba(212,160,23,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.3rem; margin-bottom: 22px; transition: var(--transition); }
.card:hover .card-icon { background: var(--navy); color: var(--white); }
.card-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: #eef0f8; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon-wrap i { color: var(--navy); font-size: 1rem; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.card-text { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin-bottom: 22px; }
.card-link { font-size: 0.85rem; color: var(--navy); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; text-transform: uppercase; letter-spacing: 1px; }
.card-link:hover { color: var(--gold); }
.card-link i { font-size: 0.75rem; }
.card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 60px; height: 60px; border-radius: 0 0 20px 0; background: linear-gradient(135deg, transparent 50%, rgba(27,42,94,0.06) 50%); }

/* ── IMAGE BOXES ── */
.img-box-wrapper { position: relative; z-index: 1; }
.img-box-wrapper img { border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.floating-quote { position: absolute; bottom: -30px; right: -30px; background: #eef0f8; border-left: 4px solid var(--gold); border-radius: 0 16px 16px 0; padding: 28px 30px; max-width: 280px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.floating-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 14px; }
.floating-quote cite { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); font-style: normal; }

/* ── CTA ── */
.cta-wrap { padding: 0 30px 80px; }
.cta-section { max-width: 1100px; margin: 0 auto; background: var(--navy); border-radius: 24px; padding: 70px 60px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(212,160,23,0.2); }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 500; color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
.cta-section p { font-size: 0.93rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 2; }

/* ── FORMS ── */
.form-group { margin-bottom: 25px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.form-control { width: 100%; padding: 16px 20px; border: 1.5px solid rgba(212,160,23,0.12); border-radius: 10px; background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(27,42,94,0.1); }
textarea.form-control { height: 160px; resize: none; }

/* ── TESTIMONIALS ── */
.testimonial-card { padding: 40px; }
.stars { color: var(--navy-dark); margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-text { font-style: italic; font-size: 1.05rem; line-height: 1.8; color: var(--text); margin-bottom: 25px; }
.testimonial-author { font-size: 0.9rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── FOOTER ── */
.footer { background: #f8f7f4; padding: 60px 30px 0; border-top: 1px solid rgba(212,160,23,0.08); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 50px; padding-bottom: 50px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.footer-col p { font-size: 0.855rem; color: var(--text-light); line-height: 1.75; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-light); transition: color 0.2s; }
.footer-col ul li a:hover, .footer-col ul li a.active-link { color: var(--gold); }
.follow-icons { display: flex; gap: 14px; margin-bottom: 20px; }
.follow-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(212,160,23,0.07); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.85rem; transition: background 0.2s, color 0.2s, transform 0.2s; }
.follow-icons a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.follow-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.95rem; color: var(--text-light); }
.newsletter-form { display: flex; border: 1.5px solid rgba(212,160,23,0.15); border-radius: 50px; overflow: hidden; margin-top: 16px; }
.newsletter-form input { flex: 1; border: none; background: transparent; padding: 11px 18px; font-size: 0.85rem; font-family: 'DM Sans', sans-serif; color: var(--navy); outline: none; min-width: 0; }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button { background: var(--navy); border: none; color: #fff; padding: 11px 18px; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.newsletter-form button:hover { background: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; border-top: 1px solid rgba(212,160,23,0.08); font-size: 0.82rem; color: var(--text-light); text-align: center; }

/* ── FILTER BUTTONS ── */
.filter-btn { padding: 10px 24px; border-radius: 50px; font-size: 0.875rem; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; border: 1.5px solid rgba(212,160,23,0.15); background: transparent; color: var(--text); transition: all 0.2s; }
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── APPOINTMENT FORM ── */
.appointment-form-wrapper { background: var(--white); padding: 50px 60px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); margin-top: -60px; position: relative; z-index: 10; }

/* ── SELECT DROPDOWN ── */
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b2a5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BREAKPOINTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-book { display: none; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid > div:not(:last-child)::after { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Founder / profile section */
  .img-box-wrapper img { height: 300px !important; }
  .grid-2 > div[style*="padding-left"] { padding-left: 0 !important; }

  /* Sanctuary gallery */
  .sanctuary-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .sanctuary-grid .img-cell.tall { grid-row: span 1 !important; }
  .sanctuary-grid .img-cell, .sanctuary-grid .img-cell.tall { height: 200px; }
  .sanctuary-grid .img-cell.wide { grid-column: span 2 !important; height: 180px; }

  /* About page grids */
  .story-inner { grid-template-columns: 1fr !important; }
  .founder-inner { grid-template-columns: 1fr !important; gap: 30px !important; }
  .pillars-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }

  /* Testimonials: single column, centered */
  .section[style*="background: #fdfaf6"] .grid-3 { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
  /* Announcement bar */
  .announcement-bar { height: auto; padding: 6px 14px; flex-wrap: wrap; gap: 6px; justify-content: center; }
  .ann-hours { display: none; }
  .ann-center { order: 1; width: 100%; text-align: center; }
  .ann-social { order: 2; justify-content: center; gap: 10px; }
  .ann-phone span { display: none; }

  /* Navbar pushes down due to taller announcement bar (~48px) */
  .navbar { top: 48px; }
  .mobile-nav { top: 116px; }

  /* Hero: keep background image on mobile, overlay text on top like desktop */
  .hero { padding: 130px 0 70px !important; text-align: center; }
  .hero > div[style*="linear-gradient"] { width: 100% !important; background: linear-gradient(to bottom, rgba(253,250,246,0.88) 0%, rgba(253,250,246,0.75) 60%, rgba(253,250,246,0.55) 100%) !important; }
  .hero .container.hero-content { padding: 0 20px; }
  .hero-content > div { max-width: 100% !important; }
  .hero-mobile-img { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  .hero-desc { font-size: 0.92rem !important; margin: 0 auto 30px !important; }
  .hero-buttons { justify-content: center !important; flex-direction: column; align-items: center; gap: 12px !important; }
  .hero-buttons .btn { width: 100%; max-width: 300px; text-align: center; }

  /* Founder image */
  .img-box-wrapper img { height: 260px !important; }
  .floating-quote { position: static; margin-top: 20px; max-width: 100%; border-radius: 12px; }

  /* Appointment form */
  .appointment-form-wrapper { padding: 30px 20px; margin-top: -30px; }

  /* CTA */
  .cta-section { padding: 50px 24px; }
  .cta-wrap { padding: 0 16px 60px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons a { width: 100%; max-width: 280px; text-align: center; }

  /* Page hero */
  .page-hero { padding: 110px 20px 40px !important; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem) !important; }
  .page-hero-mobile-img { display: block; }

  /* Touch targets */
  .btn, .btn-book-mobile { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ── SMALL MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 40px 20px 0; }
  .stats-bar { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 30px 0; text-align: center !important; }
  .stat-number { font-size: 1.6rem !important; }
  .section-title { font-size: 2rem !important; }

  /* About pillars single col */
  .pillars-grid { grid-template-columns: 1fr !important; }

  /* Gallery single col */
  .sanctuary-grid { grid-template-columns: 1fr !important; }
  .sanctuary-grid .img-cell, .sanctuary-grid .img-cell.tall, .sanctuary-grid .img-cell.wide { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
  .sanctuary-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Contact form */
  .contact-grid { grid-template-columns: 1fr; }
  .form-card, .location-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── XS (≤ 400px) ── */
@media (max-width: 400px) {
  .nav-container { padding: 0 16px; }
  .section-title { font-size: 1.8rem !important; }
}
