/* ================================================
   OLGA AMRITA TAPLINK — style.css  v5
   ================================================ */

:root {
  /* Brand color tokens */
  --color-accent-blue:  #bfedff;   /* Practices / Bonus / Social / Schedule cards */
  --color-ocean-deep:   #0e4f6b;   /* headings & bold text */
  --color-ocean-mid:    #0e4f6b;
  --color-ocean-light:  #a4e1ff;
  --color-orange:       #fd6c01;
  --color-orange-soft:  #ff9460;
  --color-orange-pale:  #fff3ec;
  --color-sand-light:   #F3F3EF;   /* sand blocks */
  --color-sand-cool:    #F2FBFD;   /* sand blocks (cool end) */
  --color-dark:         #0e4f6b;   /* body text */
  --color-text:         #2d6a7e;
  --color-text-light:   #5f9aac;
  --color-white:        #ffffff;

  --font-sans:    'Montserrat Alternates', 'Segoe UI', sans-serif;
  --font-script:  'Sacramento', 'Dancing Script', cursive;
  --font-serif:   'Cormorant Garamond', Georgia, serif;   /* decorative time display */

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-soft:   0 4px 24px rgba(14,79,107,0.12);
  --shadow-medium: 0 8px 32px rgba(14,79,107,0.22);
  --shadow-orange: 0 6px 24px rgba(200,200,200,0.40);  /* light grey shadow for orange buttons */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: transparent;  /* photo24 shows through */
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── PAGE WRAP ───────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

/* Fixed sea-water bg — FULL opacity, photo24 always visible */
.page-wrap::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('Photos/photo24.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  opacity: 1;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
.italic-script {
  font-family: var(--font-script);
  display: block;
  line-height: 1.3;
  font-size: 1.1em;
  margin-top: 4px;
  font-weight: 400;
  text-transform: none;   /* override parent text-transform:uppercase — Sacramento always Title Case */
  letter-spacing: 0;     /* undo heading letter-spacing */
}
.accent-orange { color: var(--color-orange); }

/* ══════════════════════════════════════
   BLOB SHAPES
══════════════════════════════════════ */
.blob {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 74% 26% 62% 38% / 38% 62% 26% 74%;
  animation: blobMorph 9s ease-in-out infinite;
}
@keyframes blobMorph {
  0%   { border-radius: 74% 26% 62% 38% / 38% 62% 26% 74%; }
  16%  { border-radius: 38% 62% 26% 74% / 74% 26% 62% 38%; }
  33%  { border-radius: 52% 48% 78% 22% / 22% 78% 48% 52%; }
  50%  { border-radius: 26% 74% 44% 56% / 56% 44% 74% 26%; }
  66%  { border-radius: 60% 40% 30% 70% / 42% 58% 66% 34%; }
  83%  { border-radius: 36% 64% 56% 44% / 66% 34% 58% 42%; }
  100% { border-radius: 74% 26% 62% 38% / 38% 62% 26% 74%; }
}
.blob__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.blob__img--center { object-position: center center; }
.blob__img--top    { object-position: center top; }
.blob__img--bottom { object-position: center 85%; }  /* push photo down fully */
.blob__img--top    { object-position: center 25%; }   /* Vinyasa: 25% from top */
.blob__img--anketa { object-position: center 55%; }   /* Anketa: raised by 10% from previous 45% */
.blob__img--face   { object-position: center center; }  /* about photo centered */

.blob--about   { width: 100%; height: 320px; border-radius: 48% 52% 38% 62% / 55% 55% 45% 45%; animation-name: heroBlobMorph; box-shadow: var(--shadow-medium); animation-delay: -2s; }  /* tall dome like hero */
.blob--practice{ width: 100%; aspect-ratio: 1/1; box-shadow: 0 4px 16px rgba(14,79,107,0.16); animation-delay: -1s; }
.blob--bonus   { width: 160px; height: 160px; box-shadow: var(--shadow-medium); animation-delay: -4s; }
.blob--anketa  { width: 130px; height: 130px; box-shadow: 0 4px 14px rgba(180,180,180,0.40); animation-delay: -3s; }

/* ══════════════════════════════════════
   HERO — photo23 background (starfish water)
══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 2.5rem var(--space-sm) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
  background: url('Photos/photo23.jpg') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,79,107,0.08) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.55) 85%,
    rgba(255,255,255,0.94) 100%
  );
  z-index: 0;
}

/* HERO BLOB — dome shape as marked in photo25 */
.hero__blob-wrap {
  position: relative;
  width: 290px;
  height: 380px;
  margin: 0 auto var(--space-md);
  z-index: 1;
}
.hero__blob {
  width: 100%;
  height: 100%;
  border-radius: 48% 52% 38% 62% / 55% 55% 45% 45%;
  animation: heroBlobMorph 10s ease-in-out infinite;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14,79,107,0.26), 0 0 0 6px rgba(255,255,255,0.35);
}
@keyframes heroBlobMorph {
  0%   { border-radius: 48% 52% 38% 62% / 55% 55% 45% 45%; }
  25%  { border-radius: 52% 48% 44% 56% / 58% 52% 48% 42%; }
  50%  { border-radius: 44% 56% 50% 50% / 50% 60% 40% 50%; }
  75%  { border-radius: 50% 50% 42% 58% / 56% 54% 46% 44%; }
  100% { border-radius: 48% 52% 38% 62% / 55% 55% 45% 45%; }
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.32);
  transform-origin: center 52%;
}

/* Starfish decoration — no mix-blend so it is fully visible */
.hero__starfish {
  position: absolute;
  width: 96px;
  height: 96px;
  bottom: -10px;
  right: -16px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(14,79,107,0.22));
  animation: starfishFloat 7s ease-in-out infinite;
  z-index: 2;
  /* no mix-blend-mode — show fully opaque */
}
@keyframes starfishFloat {
  0%, 100% { transform: rotate(-8deg) scale(1) translateY(0); }
  50%       { transform: rotate(5deg) scale(1.06) translateY(-8px); }
}

.hero__text { padding: 0 var(--space-sm) var(--space-md); z-index: 1; position: relative; }

/* Ольга Амрита — Montserrat Alternates (font-sans) */
.hero__name {
  font-family: var(--font-sans);
  font-size: 3rem;   /* was 3.15rem, reduced by 2px */
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.hero__name--olga   { color: var(--color-orange); }
.hero__name--amrita { color: var(--color-orange); font-style: italic; }

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.hero__bio {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.75;
  max-width: 310px;
  margin: 0 auto;
}

/* ── CAUSTICS WAVE DIVIDER ── */
.wave-caustics {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: auto;
  height: 90px;
  flex-shrink: 0;
}
.wave-caustics svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════
   GENERIC SECTION
══════════════════════════════════════ */
.section {
  margin: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Only hide if JS is actually enabled and running */
.js-enabled .section {
  opacity: 0;
  transform: translateY(28px);
}
.js-enabled .section.is-visible,
.section.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.js-enabled .hero { opacity: 1; transform: none; }

.section__inner { padding: var(--space-lg) var(--space-md); }

/* All section headings — Montserrat Alternates */
.section__title {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-ocean-deep);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   SAND TEXTURE — About / Schedule / FAQ
   Gradient #F3F3EF → #F2FBFD + grain
══════════════════════════════════════ */
.sand-block {
  position: relative;
}
.sand-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23grain)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}
.sand-block > * { position: relative; z-index: 2; }

.section--about {
  background: linear-gradient(150deg, rgba(243,243,239,0.70) 0%, rgba(242,251,253,0.70) 100%);
}
.section--schedule {
  background: linear-gradient(150deg, rgba(242,251,253,0.70) 0%, rgba(243,243,239,0.70) 100%);
}
.section--faq {
  background: linear-gradient(150deg, rgba(243,243,239,0.70) 0%, rgba(242,251,253,0.70) 60%, rgba(243,243,239,0.70) 100%);
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__blob-wrap { margin-bottom: var(--space-md); }

.about__full-text {
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  width: 100%;
}
.about__full-text strong { color: var(--color-ocean-deep); font-weight: 700; }

.achievements { display: flex; flex-direction: column; gap: 10px; }
.achievement-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(14,79,107,0.06);
  border-radius: var(--radius-md);
  padding: 12px var(--space-sm);
  border: 1px solid rgba(14,79,107,0.12);
}
.chip-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(14,79,107,0.08);
  border-radius: 10px;
  padding: 4px;
}
.chip-icon img { width: 100%; height: 100%; object-fit: contain; }
.achievement-chip div { display: flex; flex-direction: column; gap: 2px; }
.achievement-chip strong { font-size: 0.85rem; font-weight: 700; color: var(--color-ocean-deep); }
.achievement-chip span  { font-size: 0.78rem; color: var(--color-text-light); }

/* ══════════════════════════════════════
   PRACTICES — #bfedff bg (light blue)
══════════════════════════════════════ */
.section--practices {
  background: linear-gradient(140deg, rgba(144,245,244,0.70) 0%, rgba(170,250,249,0.70) 100%);
  border: 1px solid rgba(255,255,255,0.55);
}
.section--practices .section__title { color: var(--color-ocean-deep); }
.section--practices .italic-script  { color: var(--color-orange); }

.practices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.practice-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(14,79,107,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 10px;
  text-align: center;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 2px 10px rgba(14,79,107,0.10);
}
.practice-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.92); box-shadow: 0 8px 24px rgba(14,79,107,0.16); }
.practice-card__blob-photo { margin-bottom: 8px; }
.practice-card__title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-ocean-deep);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.practice-card__text { font-size: 0.68rem; color: var(--color-text); line-height: 1.4; }

/* ══════════════════════════════════════
   BENEFITS — same style as Anketa card
══════════════════════════════════════ */
.section--benefits {
  background: linear-gradient(135deg, rgba(255,243,236,0.70) 0%, rgba(255,255,255,0.70) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(253,108,1,0.20);
}
.section--benefits .section__title { color: var(--color-ocean-deep); }
.benefits-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.68);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-orange);
}
.benefit-check { flex-shrink: 0; margin-top: 2px; display: flex; }
.benefit-item p { font-size: 0.88rem; line-height: 1.6; color: var(--color-text); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.section--cta {
  background: transparent;
  text-align: center;
  padding: var(--space-sm) var(--space-md) var(--space-md);
}
.cta__pre-text {
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 340px;
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn--orange {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-soft) 100%);
  color: #fff;
  /* light-grey shadow for volume */
  box-shadow: 0 6px 18px rgba(180,180,180,0.50), 0 2px 6px rgba(180,180,180,0.30);
}
.btn--orange:hover {
  box-shadow: 0 10px 26px rgba(160,160,160,0.55), 0 4px 10px rgba(160,160,160,0.30);
}

.btn--youtube {
  background: linear-gradient(135deg,#FF0000 0%,#CC0000 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(180,180,180,0.50), 0 2px 6px rgba(180,180,180,0.30);
}
.btn--youtube:hover {
  box-shadow: 0 10px 26px rgba(160,160,160,0.55);
}

/* Subtle pulse — scale + shadow only, no colour rings */
.btn--pulse {
  animation: btnSoftPulse 3s ease-in-out infinite;
}
@keyframes btnSoftPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(180,180,180,0.50), 0 2px 6px rgba(180,180,180,0.30);
  }
  50% {
    transform: scale(1.028);
    box-shadow: 0 12px 30px rgba(160,160,160,0.60), 0 4px 12px rgba(160,160,160,0.35);
  }
}

/* ══════════════════════════════════════
   SCHEDULE — sand bg, #47bbed cards
══════════════════════════════════════ */
.section--schedule .section__title { color: var(--color-ocean-deep); }
.schedule-group { margin-bottom: var(--space-lg); }
.schedule-group:last-child { margin-bottom: 0; }
.schedule-group__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ocean-deep);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-icon { flex-shrink: 0; }
.schedule-cards { display: flex; gap: 8px; margin-bottom: 10px; }
.schedule-card {
  flex: 1;
  background: linear-gradient(145deg, rgba(144,245,244,0.70) 0%, rgba(170,250,249,0.70) 100%);
  color: var(--color-ocean-deep);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(14,79,107,0.12);
}
.schedule-day  { font-size: 0.68rem; font-weight: 600; opacity: 0.90; }
.schedule-time { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.schedule-tz   { font-size: 0.62rem; opacity: 0.75; }
.schedule-note { font-size: 0.78rem; color: var(--color-text-light); text-align: center; }
.individual-list { display: flex; flex-direction: column; gap: 8px; }
.individual-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  padding: 10px 12px;
  background: rgba(14,79,107,0.06);
  border-radius: var(--radius-sm);
  text-align: left;
  line-height: 1.5;
}
.individual-icon {
  flex-shrink: 0;
  color: var(--color-orange);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   ANKETA — orange warm card
══════════════════════════════════════ */
.section--anketa { background: transparent; padding: 0 var(--space-sm) var(--space-sm); }
.anketa-card {
  background: linear-gradient(135deg,rgba(255,243,236,0.96) 0%,rgba(255,255,255,0.90) 100%);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(253,108,1,0.20);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.anketa-card::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(253,108,1,0.10) 0%,transparent 70%);
}
.anketa-card__photo-wrap { position: relative; z-index: 1; }
.anketa-card__title { font-family: var(--font-sans); font-size: 1.4rem; font-weight: 700; color: var(--color-ocean-deep); line-height: 1.2; }
.anketa-card__text  { font-size: 0.88rem; color: var(--color-text); line-height: 1.7; }

/* ══════════════════════════════════════
   BONUS — #bfedff bg (light blue)
══════════════════════════════════════ */
.section--bonus { background: transparent; padding: 0 var(--space-sm) var(--space-sm); }
.bonus-card {
  background: linear-gradient(140deg, rgba(144,245,244,0.70) 0%, rgba(170,250,249,0.70) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  color: var(--color-ocean-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(14,79,107,0.14);
}
.bonus__photo-wrap { position: relative; }
.bonus__badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(180,180,180,0.40);
}
.bonus__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.bonus__title { font-family: var(--font-sans); font-size: 1.35rem; font-weight: 700; line-height: 1.25; color: var(--color-ocean-deep); }
.bonus__text  { font-size: 0.88rem; color: var(--color-text); line-height: 1.6; }

/* ══════════════════════════════════════
   FAQ — sand bg
══════════════════════════════════════ */
.section--faq .section__title { color: var(--color-ocean-deep); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(14,79,107,0.05);
  border: 1px solid rgba(14,79,107,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item[open] {
  background: rgba(14,79,107,0.10);
  border-color: rgba(14,79,107,0.25);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px var(--space-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ocean-deep);
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
  font-size: 1.2rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 400;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 var(--space-sm) var(--space-sm);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ══════════════════════════════════════
   SOCIAL — #bfedff bg (light blue)
══════════════════════════════════════ */
.section--social {
  background: linear-gradient(145deg, rgba(144,245,244,0.70) 0%, rgba(170,250,249,0.70) 100%);
  position: relative;
  overflow: hidden;
}
.section--social .section__title { color: var(--color-ocean-deep); }
.section--social .italic-script   { color: var(--color-orange); }

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
}
/* Social icons — no text labels */
.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-ocean-deep);
  transition: transform 0.25s ease;
}
.social-icon:hover { transform: translateY(-5px); }
.social-icon svg {
  width: 60px;
  height: 60px;
  padding: 16px;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
}
.social-icon--insta svg {
  background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  box-shadow: 0 6px 20px rgba(220,39,67,0.38);
}
.social-icon--tiktok svg {
  background: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.40);
}
.social-icon--youtube svg {
  background: linear-gradient(135deg,#FF0000 0%,#CC0000 100%);
  box-shadow: 0 6px 20px rgba(255,0,0,0.35);
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  text-align: center;
  color: var(--color-text);  /* dark text on light blue bg */
}
.footer__credits { font-size: 0.88rem; line-height: 1.8; }
/* "Ольга Амрита" in footer — orange + Sacramento, Title Case in HTML */
.footer__name-orange {
  color: var(--color-orange);
  font-family: var(--font-script);
  display: inline;
  font-size: 1.05rem;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 375px) {
  .hero__name      { font-size: 2.9rem; }
  .hero__blob-wrap { width: 255px; height: 340px; }
  .schedule-cards  { flex-direction: column; }
}
@media (min-width: 431px) {
  .page-wrap { box-shadow: 0 0 80px rgba(0,0,0,0.14); }
}
