/* ═══════════════════════════════════════════════════════
   EVERYONE'S SECRET SPIRIT — Main Stylesheet

   Two fonts only:
   1. Monotype Corsiva  — display/headings (system font, brand primary)
   2. Palatino Linotype — body text (system serif, widely available)

   No Google Fonts. No network font requests.
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --primary:     #882367;
  --primary-dk:  #5e1847;
  --primary-lt:  #b03080;
  --tertiary:    #E04121;
  --link:        #391E7D;
  --link-hover:  #5a33c4;
  --gold:        #d4a94a;
  --cream:       #fdf6ee;
  --dark:        #1a0a12;
  --overlay:     rgba(26, 10, 18, 0.82);
  --overlay-lt:  rgba(26, 10, 18, 0.65);
  --card-bg:     rgba(253, 246, 238, 0.92);
  --card-border: rgba(136, 35, 103, 0.25);
  --shadow:      0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.5);
  --radius:      6px;
  /* Two fonts only.
     Display: Monotype Corsiva (primary per brand guide), Apple Chancery (Mac fallback),
              URW Chancery (Linux fallback), then generic cursive.
     Body:    Palatino Linotype (Windows), Palatino (Mac/Linux), Book Antiqua (older Windows),
              then generic serif. Old-world, readable, pairs well with Corsiva. */
  --font-display: 'Monotype Corsiva', 'Apple Chancery', 'URW Chancery L', cursive;
  --font-head:   'Monotype Corsiva', 'Apple Chancery', 'URW Chancery L', cursive;
  --font-body:   'Palatino Linotype', 'Palatino', 'Book Antiqua', 'Georgia', serif;
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--primary-dk);
  background-image: url('../images/Background_Colours.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); }
ul { list-style: none; }

/* ── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--tertiary); }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--tertiary);
}

/* On light-background sections, use primary magenta for contrast */
.section-light h1, .section-light h2, .section-light h3,
.about-text h2, .about-page-content h2, .about-page-content h3,
.post-body h2, .post-body h3, .post-header h1,
.faq-question, .card-title {
  color: var(--primary);
}

.display-font { font-family: var(--font-display); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--tertiary);
  text-align: center;
  margin-bottom: 0.4rem;
}

/* On light backgrounds, section titles use primary */
.section-light .section-title {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* On dark backgrounds, subtitle is lighter */
.section-dark .section-subtitle,
.new-arrivals .section-subtitle,
.testimonial-section .section-subtitle {
  color: rgba(253,246,238,0.7);
}

.new-arrivals .section-title,
.testimonial-section .section-title {
  color: var(--tertiary);
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--overlay);
  backdrop-filter: blur(2px);
}

.section-light {
  background: rgba(253, 246, 238, 0.88);
  backdrop-filter: blur(2px);
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 10, 18, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 52px;
  width: auto;
}

.header-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--tertiary);
  line-height: 1.1;
  display: none;
}

/* ── NAV ────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tertiary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(136, 35, 103, 0.3);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 2rem !important;
}
.nav-cta:hover { background: var(--primary-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO BANNER ────────────────────────────────────── */
/* Banner is 1280x384px (3.33:1 ratio). Display at natural ratio — no cropping. */
.site-banner {
  display: block;
  width: calc(100% - 2rem);
  max-width: 1160px;
  height: auto;          /* preserves natural 3.33:1 ratio */
  object-fit: contain;   /* never crops */
  margin: 1rem auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 600px) {
  .site-banner {
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
  }
}

/* ── HERO SECTION ───────────────────────────────────── */
.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-lt);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(253, 246, 238, 0.9);
  margin-bottom: 2rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--primary-lt);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(136,35,103,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #e8bc5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,169,74,0.4);
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  background: rgba(136, 35, 103, 0.15);
  border-top: 1px solid rgba(136, 35, 103, 0.3);
  border-bottom: 1px solid rgba(136, 35, 103, 0.3);
  padding: 0.9rem 1.25rem;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tertiary);
}

.trust-item .icon {
  font-size: 1.1rem;
}

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: #f0e8f0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-wrap img { transform: scale(1.05); }

.card-body { padding: 1.25rem; }

.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--tertiary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ── GRID LAYOUTS ───────────────────────────────────── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ── NEW ARRIVALS ───────────────────────────────────── */
.new-arrivals { padding: 4rem 0; }

.arrivals-grid { position: relative; min-height: 200px; }

.arrivals-loading,
.arrivals-error {
  text-align: center;
  padding: 3rem;
  color: var(--cream);
  font-style: italic;
}

.arrivals-error a { color: var(--gold); }

/* ── ABOUT STRIP ────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-strip img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.05rem;
}

/* ── SANCTUARY STRIP ────────────────────────────────── */
.sanctuary-strip {
  background: rgba(136, 35, 103, 0.12);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  padding: 3rem 0;
}

.sanctuary-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.sanctuary-icon { font-size: 4rem; text-align: center; }

.sanctuary-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.sanctuary-text p { margin-bottom: 0.75rem; font-size: 1.05rem; }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonial-section { padding: 4rem 0; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  max-width: 680px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-body);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.75rem; }

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(136,35,103,0.3);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.testimonial-dot.active { background: var(--primary); }

/* ── BLOG CARDS ─────────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; }

.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: 2rem;
  background: rgba(136,35,103,0.12);
  color: var(--primary);
  border: 1px solid rgba(136,35,103,0.25);
  margin-bottom: 0.5rem;
}

.blog-card .read-more {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-border);
}

.blog-card .read-more:hover { color: var(--tertiary); }

/* ── NEWSLETTER ─────────────────────────────────────── */
.newsletter-section {
  padding: 3.5rem 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.25rem;
  border: 2px solid var(--primary);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(253,246,238,0.9);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--primary-lt);
}

.newsletter-msg {
  margin-top: 0.75rem;
  font-style: italic;
  font-size: 0.9rem;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(136,35,103,0.06); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.98rem;
  color: #333;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 3rem 0;
  text-align: center;
  background: var(--overlay);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--tertiary);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(253,246,238,0.8);
  font-style: italic;
  font-size: 1.05rem;
}

/* ── BLOG POST PAGE ─────────────────────────────────── */
.post-body {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

.post-body h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.post-body h3 { font-size: 1.2rem; margin: 1.25rem 0 0.5rem; }
.post-body p { margin-bottom: 1rem; line-height: 1.8; }
.post-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-body a { color: var(--link); text-decoration: underline; }

.post-header { margin-bottom: 2rem; }
.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: rgba(10, 4, 8, 0.97);
  border-top: 3px solid var(--primary);
  padding: 3rem 0 1.5rem;
  color: rgba(253,246,238,0.75);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: rgba(253,246,238,0.65);
}

.footer-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(253,246,238,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(136,35,103,0.3);
  color: var(--cream);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(136,35,103,0.25);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(253,246,238,0.45);
}

.footer-bottom a { color: rgba(253,246,238,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ── SANCTUARY PAGE ─────────────────────────────────── */
.sanctuary-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

/* ── SHOP PAGE ──────────────────────────────────────── */
.shop-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--cream);
}

/* ── ABOUT PAGE ─────────────────────────────────────── */
.about-page-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.about-page-content p { margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; }

/* ── MOBILE NAV OVERLAY ─────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,4,8,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
}

.mobile-nav a:hover { color: var(--gold); }

/* ── LOADING SPINNER ────────────────────────────────── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(136,35,103,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

.fade-in-up-2 { animation: fadeInUp 0.7s 0.15s ease both; }
.fade-in-up-3 { animation: fadeInUp 0.7s 0.3s ease both; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo .logo-text { display: block; }

  .hero { min-height: 45vh; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip img { max-height: 260px; object-fit: cover; width: 100%; }
  .sanctuary-inner { grid-template-columns: 1fr; text-align: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 2.5rem 0; }
}
