/* ============================================================
   PHENOM FITNESS — Main Stylesheet
   Dark Feminine Athletic Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@400;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --accent-rose:   #c8637a;
  --accent-gold:   #c9a96e;
  --accent-light:  #e8b4c0;
  --text-primary:  #f5f0eb;
  --text-muted:    #9a8f8a;
  --text-dark:     #3a3030;
  --border:        rgba(200, 99, 122, 0.25);
  --border-gold:   rgba(201, 169, 110, 0.3);
  --glow-rose:     rgba(200, 99, 122, 0.15);
  --glow-gold:     rgba(201, 169, 110, 0.12);
  --nav-height:    80px;
  --font-heading:  'Playfair Display', serif;
  --font-body:     'Montserrat', sans-serif;
  --font-cursive:  'Dancing Script', cursive;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-rose); border-radius: 3px; }

/* ─── Navigation ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(200, 99, 122, 0.1);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 6px rgba(200, 99, 122, 0.5));
}

.nav-brand span {
  color: var(--accent-rose);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-rose);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--accent-rose); }

/* ─── Page Wrapper ──────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── Section Utilities ─────────────────────────────────── */
.section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 6rem 3rem;
  width: 100%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 1rem;
}

.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold));
  margin: 1.5rem 0 3rem;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-rose), #a84d62);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 99, 122, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-rose);
}

.btn-outline:hover {
  background: var(--accent-rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #a8843a);
  color: #0a0a0a;
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

/* ─── HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero1.jpeg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(200,99,122,0.08) 50%,
    rgba(10,10,10,0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-text .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-text .eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent-rose);
}

.hero-name-block {
  margin-bottom: 2rem;
}

.hero-name-block .the-phenom {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--text-primary);
  display: block;
  letter-spacing: -0.02em;
}

.hero-name-block .ranya {
  font-family: var(--font-cursive);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--accent-rose);
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(201, 169, 110, 0.05);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-logo-display {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(200, 99, 122, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-rose);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ─── ABOUT PREVIEW (Home) ──────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-img {
  position: relative;
}

.about-preview-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}

.about-preview-img::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-preview-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* ─── YOUTUBE GALLERY ───────────────────────────────────── */
.youtube-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.yt-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 99, 122, 0.2);
}

.yt-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.yt-card:hover .yt-thumb {
  filter: brightness(0.7);
}

.yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(200,99,122,0.2);
}

.yt-card:hover .yt-overlay { opacity: 1; }

.yt-play {
  width: 52px; height: 52px;
  background: var(--accent-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }

.yt-info {
  padding: 1rem 1.2rem 1.2rem;
}

.yt-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── ABOUT PAGE ────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero2.jpeg');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.7);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 60%);
}

.about-hero-text {
  position: relative;
  z-index: 2;
  padding: 0 3rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

.about-hero-text h1 em {
  font-style: italic;
  color: var(--accent-rose);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-sidebar img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
}

.timeline {
  margin-top: 2rem;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-rose);
  border: 2px solid var(--bg-primary);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.timeline-event {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: border-color 0.3s ease;
}

.philosophy-card:hover {
  border-color: var(--accent-rose);
}

.philosophy-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.philosophy-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.philosophy-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── MERCH PAGE ────────────────────────────────────────── */
.merch-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  text-align: center;
  padding-bottom: 3rem;
}

.shopify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.shopify-embed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shopify-embed-card:hover {
  border-color: var(--accent-rose);
  box-shadow: 0 8px 30px rgba(200, 99, 122, 0.12);
}

.shopify-embed-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.shopify-embed-card .price {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.shopify-placeholder {
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
  padding: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PARTNERS PAGE ─────────────────────────────────────── */
#page-partners {
  position: relative;
  background: #000;
}

/* Mosaic photo background */
.partners-bg-mosaic {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  z-index: 0;
  pointer-events: none;
}

.partners-bg-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Subtle dark veil so buttons remain readable */
.partners-bg-veil {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
  pointer-events: none;
}

.partners-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-hero {
  text-align: center;
  padding-bottom: 2.5rem;
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 560px;
  padding: 0 1.5rem;
}

.partner-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.6rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 2px;
}

.partner-btn:hover {
  border-color: var(--accent-rose);
  background: rgba(200, 99, 122, 0.25);
  backdrop-filter: blur(16px);
  transform: translateX(6px);
  color: var(--text-primary);
}

.partner-btn .arrow {
  font-size: 1rem;
  color: var(--accent-rose);
  transition: transform 0.3s ease;
}

.partner-btn:hover .arrow {
  transform: translateX(4px);
}

.partner-code {
  font-size: 0.7rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-btn-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

/* ─── WORK WITH ME PAGE ─────────────────────────────────── */
.work-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  text-align: center;
  padding-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--accent-rose);
  box-shadow: 0 12px 40px rgba(200, 99, 122, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  text-align: left;
  margin-bottom: 2rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: '✦';
  color: var(--accent-rose);
  font-size: 0.6rem;
}

/* Calendar Embed */
.calendar-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem 6rem;
}

.calendar-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calendar-section p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.calendar-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.calendar-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* ─── Policies Section ─────────────────────────────────── */
.policies-section {
  padding: 4rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.policy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,122,149,0.2);
  border-radius: 12px;
  padding: 2rem;
  color: var(--text-muted);
}

.policy-card--wide {
  grid-column: 1 / -1;
}

.policy-card h3 {
  font-size: 1rem;
  color: var(--accent-rose);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.policy-card h4 {
  color: var(--text-light);
  margin: 1rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.policy-card h5 {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin: 1.25rem 0 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.policy-list li {
  font-size: 0.85rem;
  line-height: 1.7;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.policy-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent-rose);
}

@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
  }
  .policy-card--wide {
    grid-column: 1;
  }
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand h3 span { color: var(--accent-rose); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.social-link:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
  background: rgba(200, 99, 122, 0.08);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--accent-rose); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { text-align: center; align-items: center; }
  .hero-text .eyebrow { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-cta { justify-content: center; }
  .about-body { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .about-preview { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section, .section-full { padding: 4rem 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .youtube-grid { grid-template-columns: 1fr; }
  .shopify-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-hero-text { padding: 0 1.5rem 2rem; }
  .calendar-section { padding: 0 1.5rem 4rem; }
  .calendar-embed iframe { height: 480px; }
}
