:root {
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.58);
  --surface-muted: rgba(255, 252, 247, 0.76);
  --text: #1d2f3b;
  --muted: #60707b;
  --line: rgba(29, 47, 59, 0.12);
  --teal: #127d76;
  --teal-deep: #0d5b61;
  --gold: #d0a55d;
  --rose: #e8c7b6;
  --shadow-soft: 0 22px 70px rgba(36, 55, 68, 0.12);
  --shadow-strong: 0 30px 120px rgba(24, 41, 56, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(208, 165, 93, 0.28), transparent 28%),
    radial-gradient(circle at 100% 15%, rgba(18, 125, 118, 0.18), transparent 25%),
    linear-gradient(180deg, #fbf5eb 0%, #f5ecdf 35%, #edf5f4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 120px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
  z-index: 0;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.ambient-one {
  top: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(208, 165, 93, 0.32);
  animation: floatBlob 18s ease-in-out infinite;
}

.ambient-two {
  top: 22rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(18, 125, 118, 0.22);
  animation: floatBlob 16s ease-in-out infinite reverse;
}

.ambient-three {
  right: 10%;
  bottom: 12%;
  width: 16rem;
  height: 16rem;
  background: rgba(232, 199, 182, 0.3);
  animation: floatBlob 20s ease-in-out infinite;
}

.hero,
main,
.footer {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 251, 246, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(31, 48, 60, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(29, 47, 59, 0.08);
  box-shadow: 0 14px 34px rgba(13, 91, 97, 0.12);
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: 2.6rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-pills span,
.video-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(18, 125, 118, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-deep);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(31, 48, 60, 0.06);
}

.hero-copy h1,
.section-heading h2,
.mentor-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
}

.hero-text,
.section-intro,
.info-card p,
.mentor-copy p,
.feature-list span,
.video-copy p,
.social-card p,
.floating-badge p,
.trust-strip p,
.hero-highlights span,
.certificate-copy span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn:hover,
.btn:focus-visible,
.info-card:hover,
.social-card:hover,
.video-card:hover,
.certificate-card:hover {
  transform: translateY(-4px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  box-shadow: 0 18px 42px rgba(13, 91, 97, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(29, 47, 59, 0.12);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-highlights article,
.feature-list article {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.hero-highlights strong,
.feature-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
}

.portrait-stage {
  position: relative;
  min-height: 44rem;
  perspective: 1200px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-strong);
}

.main-portrait {
  width: min(100%, 30rem);
  margin-left: auto;
  padding: 0.8rem;
  animation: portraitFloat 7s ease-in-out infinite;
}

.main-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.26), transparent 30%),
    radial-gradient(circle at bottom left, rgba(18, 125, 118, 0.18), transparent 35%);
}

.main-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  border-radius: 1.5rem;
}

.frame-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.42) 50%, transparent 65%);
  transform: translateX(-100%) rotate(12deg);
  animation: sweep 6s ease-in-out infinite;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  top: 2.4rem;
  left: 0;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  margin-bottom: 0.3rem;
}

.floating-badge p {
  margin: 0;
  font-size: 0.88rem;
}

.badge-dot {
  flex: 0 0 auto;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #20b87d;
  box-shadow: 0 0 0 0 rgba(32, 184, 125, 0.52);
  animation: pulse 2.5s infinite;
}

.certificate-card {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 15rem;
  padding: 0.65rem;
  transform: rotate(-5deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: tiltFloat 6.5s ease-in-out infinite;
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  border-radius: 1.4rem;
}

.certificate-copy {
  padding: 0.85rem 0.35rem 0.25rem;
}

.mini-label {
  margin: 0 0 0.28rem;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-copy strong {
  display: block;
  margin-bottom: 0.32rem;
}

main {
  padding-bottom: 0;
}

.trust-strip,
.pulse-card,
.info-card,
.mentor-panel,
.video-card,
.social-card {
  box-shadow: var(--shadow-soft);
}

.trust-strip {
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
}

.trust-strip p {
  margin: 0;
  text-align: center;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.pulse-card {
  padding: 1.3rem 1.35rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(18, 125, 118, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.pulse-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.pulse-card span {
  color: var(--muted);
  line-height: 1.65;
}

.live-stream-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top left, rgba(0, 136, 204, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(32, 184, 125, 0.1), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 250, 252, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.stream-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(219, 45, 45, 0.1);
  color: #db2d2d;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #db2d2d;
  box-shadow: 0 0 0 0 rgba(219, 45, 45, 0.7);
  animation: pulse 2s infinite;
}

.stream-content h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stream-content > p {
  margin: 0 auto 1.8rem;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
}

.time-slots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 125, 118, 0.15);
  box-shadow: 0 4px 12px rgba(24, 41, 56, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.time-slot:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 41, 56, 0.12);
}

.slot-icon {
  font-size: 1.5rem;
}

.time-slot strong {
  font-size: 1.05rem;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
}

.slot-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.stream-cta {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #0088cc, #006699);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 136, 204, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stream-cta:hover,
.stream-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 136, 204, 0.35);
}

.expertise,
.care-showcase,
.mentor-panel,
.booking,
.videos,
.connect {
  margin-top: 5.5rem;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.mentor-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.section-intro {
  max-width: 60ch;
  margin: 1rem 0 0;
}

.newspaper-frame {
  position: relative;
  margin-top: 1.8rem;
  padding: 1.4rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(84, 59, 31, 0.16);
  background:
    radial-gradient(circle at top left, rgba(208, 165, 93, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(18, 125, 118, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(248, 241, 228, 0.98), rgba(255, 252, 246, 0.98));
  box-shadow:
    0 26px 75px rgba(24, 41, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.newspaper-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      0deg,
      rgba(74, 60, 43, 0.025) 0,
      rgba(74, 60, 43, 0.025) 1px,
      transparent 1px,
      transparent 12px
    );
}

.newspaper-masthead,
.newspaper-grid,
.newspaper-footer {
  position: relative;
  z-index: 1;
}

.newspaper-masthead {
  display: grid;
  gap: 0.9rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(84, 59, 31, 0.16);
}

.newspaper-kicker {
  margin: 0;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newspaper-nameplate {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  text-align: center;
  border-top: 2px solid rgba(84, 59, 31, 0.2);
  border-bottom: 2px solid rgba(84, 59, 31, 0.2);
}

.newspaper-nameplate span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 6vw, 4.9rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.newspaper-nameplate span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newspaper-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(29, 47, 59, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newspaper-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.recognition-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 1.1rem;
  margin-top: 1rem;
}

.newspaper-story {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(84, 59, 31, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(248, 241, 231, 0.9));
  box-shadow:
    0 16px 36px rgba(24, 41, 56, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.newspaper-lead {
  grid-column: span 8;
}

.newspaper-side-feature {
  grid-column: span 4;
  grid-row: span 2;
}

.recognition-post {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.newspaper-story::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(84, 59, 31, 0.08);
  pointer-events: none;
}

.newspaper-story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(84, 59, 31, 0.12);
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newspaper-story-meta a {
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.newspaper-story h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.newspaper-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.newspaper-photo {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #ece6da;
  box-shadow:
    0 22px 48px rgba(24, 41, 56, 0.1),
    inset 0 0 0 1px rgba(84, 59, 31, 0.06);
}

.newspaper-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newspaper-photo-wide img {
  aspect-ratio: 16 / 8.2;
  object-position: center;
}

.newspaper-photo-tall img {
  aspect-ratio: 4 / 6.4;
  object-position: center top;
}

.recognition-divider {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.75rem;
  min-width: 2.5rem;
  padding-top: 3.5rem;
  color: rgba(84, 59, 31, 0.62);
}

.recognition-divider-logo {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(84, 59, 31, 0.16);
  box-shadow:
    0 10px 24px rgba(24, 41, 56, 0.08),
    inset 0 0 0 0.35rem rgba(255, 255, 255, 0.85);
  background: #fff;
}

.recognition-divider-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 0.8;
}

.recognition-divider-quote {
  max-width: 11rem;
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.recognition-divider-line {
  width: 1px;
  min-height: 18rem;
  background: linear-gradient(
    180deg,
    rgba(84, 59, 31, 0),
    rgba(84, 59, 31, 0.26) 18%,
    rgba(84, 59, 31, 0.26) 82%,
    rgba(84, 59, 31, 0)
  );
}

.newspaper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(84, 59, 31, 0.16);
}

.expertise-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.care-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  grid-template-areas:
    "feature portrait"
    "feature note";
  gap: 1.35rem;
  margin-top: 1.6rem;
  align-items: stretch;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.expertise-grid,
.connect-grid,
.video-grid {
  margin-top: 1.6rem;
}

.info-card,
.social-card,
.video-card {
  position: relative;
  padding: 1.55rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.care-feature,
.care-portrait-card,
.care-note,
.recognition-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.info-card::before,
.social-card::before,
.video-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -20%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(208, 165, 93, 0.1);
}

.info-card:hover,
.social-card:hover,
.video-card:hover,
.certificate-card:hover,
.care-feature:hover,
.care-portrait-card:hover,
.care-note:hover,
.recognition-card:hover {
  box-shadow: 0 30px 90px rgba(24, 41, 56, 0.18);
  border-color: rgba(18, 125, 118, 0.25);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.78rem;
  border-radius: var(--radius-pill);
  background: rgba(18, 125, 118, 0.1);
  color: var(--teal-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.info-card h3,
.video-copy h3,
.social-card h3 {
  position: relative;
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  z-index: 1;
}

.info-card p,
.video-copy p,
.social-card p {
  position: relative;
  margin: 0;
  z-index: 1;
}

.mentor-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top left, rgba(208, 165, 93, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(241, 248, 248, 0.82));
  backdrop-filter: blur(18px);
}

.mentor-copy {
  align-self: center;
}

.mentor-copy p {
  margin: 1rem 0 0;
  max-width: 58ch;
}

.feature-list {
  align-content: start;
}

.video-card {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 252, 252, 0.78));
}

.care-feature {
  grid-area: feature;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(15, 31, 42, 0.96), rgba(11, 23, 33, 0.96)),
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.18), transparent 28%);
  box-shadow:
    0 30px 90px rgba(24, 41, 56, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.care-feature::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.care-feature::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.4rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(208, 165, 93, 0.28), rgba(208, 165, 93, 0));
  filter: blur(6px);
  opacity: 0.8;
  pointer-events: none;
}

.care-feature img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 1.6rem;
  background: #e7ece8;
  box-shadow:
    0 20px 50px rgba(7, 14, 20, 0.3),
    inset 0 0 0 10px rgba(247, 241, 230, 0.98);
  transition: transform 320ms ease, filter 320ms ease;
}

.care-feature:hover img,
.care-feature:focus-within img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.care-overlay {
  position: relative;
  z-index: 1;
  max-width: 39rem;
  padding: 0.15rem 0.4rem 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.7rem;
  color: rgba(255, 255, 255, 0.96);
}

.care-overlay .mini-label {
  color: rgba(255, 255, 255, 0.78);
}

.care-note .mini-label {
  color: var(--teal-deep);
}

.care-overlay h3,
.care-copy h3,
.care-note h3,
.recognition-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.care-overlay p,
.care-copy p,
.care-note p,
.recognition-copy p {
  margin: 0.9rem 0 0;
  line-height: 1.75;
}

.care-portrait-card,
.care-note {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 252, 0.84));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.care-portrait-card {
  grid-area: portrait;
  padding: 1rem;
  transform: translateY(0.7rem) rotate(1.4deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 235, 0.92));
}

.care-portrait-card::before,
.care-note::before,
.recognition-card::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.care-portrait-card::before {
  width: 13rem;
  height: 13rem;
  top: -4rem;
  right: -3rem;
  background: rgba(208, 165, 93, 0.2);
  filter: blur(12px);
}

.care-portrait-card:hover {
  transform: translateY(-0.1rem) rotate(0.4deg);
}

.care-portrait-media {
  position: relative;
  border-radius: 1.65rem;
  overflow: hidden;
  padding: 0.8rem;
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 1), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(29, 47, 59, 0.08);
}

.care-portrait-media img {
  width: 100%;
  aspect-ratio: 9 / 15;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.15rem;
  box-shadow: 0 20px 46px rgba(24, 41, 56, 0.14);
}

.care-copy {
  padding: 1.15rem 0.35rem 0.15rem;
}

.care-note {
  grid-area: note;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 248, 247, 0.94));
  color: var(--text);
}

.care-note::before {
  width: 11rem;
  height: 11rem;
  right: -3.5rem;
  bottom: -4rem;
  background: rgba(18, 125, 118, 0.12);
}

.care-tags,
.recognition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.care-tags span,
.recognition-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.82rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.care-tags span {
  background: rgba(18, 125, 118, 0.08);
  border: 1px solid rgba(18, 125, 118, 0.12);
  color: var(--teal-deep);
}

.video-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #0f1920;
  aspect-ratio: 16 / 10;
  box-shadow: 0 16px 40px rgba(18, 32, 42, 0.18);
}

.video-frame img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 20, 0.06), rgba(7, 14, 20, 0.46)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.video-card:hover .video-frame img,
.video-card:focus-within .video-frame img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.video-copy {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0.35rem 0.25rem;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.inline-link {
  display: inline-flex;
  color: var(--teal-deep);
  font-weight: 800;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.play-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(219, 45, 45, 0.92);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 30px rgba(133, 20, 20, 0.26);
}

.play-badge.featured {
  background: linear-gradient(135deg, #d0a55d, #b8903f);
  box-shadow: 0 18px 30px rgba(208, 165, 93, 0.35);
}

.featured-video {
  position: relative;
}

.featured-video::after {
  content: "⭐ Must Watch";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(208, 165, 93, 0.95);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(208, 165, 93, 0.3);
}

.social-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking-shell {
  position: relative;
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  gap: 1.4rem;
  margin-top: 1.8rem;
  align-items: stretch;
}

.booking-showcase,
.booking-panel,
.booking-form,
.booking-success {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-strong);
}

.booking-showcase,
.booking-panel {
  min-height: 100%;
}

.booking-showcase {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(208, 165, 93, 0.26), transparent 32%),
    radial-gradient(circle at bottom right, rgba(18, 125, 118, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(12, 30, 43, 0.98), rgba(12, 26, 36, 0.96));
  color: rgba(255, 255, 255, 0.96);
}

.booking-showcase::before,
.booking-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.booking-glow {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 165, 93, 0.4), rgba(208, 165, 93, 0));
  filter: blur(8px);
  opacity: 0.8;
  animation: floatBlob 12s ease-in-out infinite;
}

.booking-badges,
.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-badges span,
.slot-picker-note,
.booking-summary-badge,
.schedule-pulse {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-badges span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.booking-spotlight,
.booking-schedule-card {
  position: relative;
  z-index: 1;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-spotlight {
  margin-top: 1.1rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.booking-spotlight h3,
.booking-form-copy h3,
.booking-success h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.booking-spotlight p:last-child,
.booking-form-copy p,
.booking-helper,
.booking-feature-list span,
.booking-success p {
  line-height: 1.75;
}

.booking-spotlight p:last-child {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.booking-schedule-card {
  display: grid;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.98), rgba(241, 247, 246, 0.96));
  color: var(--text);
}

.booking-schedule-head,
.slot-picker-copy,
.booking-summary,
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booking-schedule-head strong,
.slot-picker-copy strong {
  display: block;
  font-size: 1.15rem;
}

.schedule-pulse {
  color: #0f8c61;
  background: rgba(15, 193, 115, 0.12);
  border: 1px solid rgba(15, 193, 115, 0.18);
  box-shadow: 0 0 0 0 rgba(15, 193, 115, 0.24);
  animation: pulse 2.6s infinite;
}

.booking-time-ring {
  display: grid;
  place-items: center;
  width: min(13rem, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0 44%, transparent 45%),
    conic-gradient(from 180deg, rgba(208, 165, 93, 0.98), rgba(18, 125, 118, 0.96), rgba(208, 165, 93, 0.98));
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.72),
    0 24px 50px rgba(24, 41, 56, 0.14);
  animation: ringPulse 6s ease-in-out infinite;
}

.booking-time-ring span {
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(12, 30, 43, 0.96), rgba(18, 125, 118, 0.92));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.booking-feature-list {
  display: grid;
  gap: 0.85rem;
}

.booking-feature-list article {
  padding: 1rem 1.05rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 47, 59, 0.08);
  box-shadow: 0 12px 24px rgba(24, 41, 56, 0.06);
}

.booking-feature-list strong {
  display: block;
  margin-bottom: 0.32rem;
}

.booking-panel {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(242, 249, 248, 0.96));
}

.booking-form,
.booking-success {
  min-height: 100%;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.booking-form-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.booking-form-copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.booking-field {
  display: grid;
  gap: 0.55rem;
}

.booking-field-full {
  margin-top: 1rem;
}

.booking-field span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(29, 47, 59, 0.12);
  border-radius: 1.15rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.booking-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(18, 125, 118, 0.42);
  box-shadow:
    0 0 0 4px rgba(18, 125, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.slot-picker {
  margin-top: 1.2rem;
  padding: 1.1rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 244, 235, 0.72));
  border: 1px solid rgba(29, 47, 59, 0.08);
}

.slot-picker-note,
.booking-summary-badge {
  color: var(--teal-deep);
  background: rgba(18, 125, 118, 0.1);
  border: 1px solid rgba(18, 125, 118, 0.14);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.slot-option {
  position: relative;
  display: grid;
  gap: 0.28rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(29, 47, 59, 0.08);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.slot-option span,
.slot-option small {
  color: var(--muted);
}

.slot-option strong {
  font-size: 1.05rem;
}

.slot-option:hover,
.slot-option:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(18, 125, 118, 0.22);
  box-shadow: 0 18px 34px rgba(24, 41, 56, 0.08);
  outline: none;
}

.slot-option.is-selected {
  color: #fff;
  border-color: transparent;
  margin-top: 0.5rem;
  background:
    linear-gradient(145deg, rgba(18, 125, 118, 0.98), rgba(13, 91, 97, 0.96)),
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.35), transparent 34%);
  box-shadow: 0 24px 40px rgba(13, 91, 97, 0.24);
  animation: slotGlow 2.8s ease-in-out infinite;
}

.slot-option.is-selected span,
.slot-option.is-selected small {
  color: rgba(255, 255, 255, 0.8);
}

.booking-summary {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(208, 165, 93, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 47, 59, 0.08);
}

.booking-summary strong {
  display: block;
  font-size: 1.08rem;
}

.booking-actions {
  margin-top: 1rem;
  align-items: flex-start;
}

.booking-submit {
  border: 0;
  cursor: pointer;
}

.booking-helper {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
}

.booking-success {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.booking-success[hidden] {
  display: none;
}

.booking-success p {
  margin: 0;
  color: var(--muted);
}

.booking-success-actions .btn {
  flex: 1 1 15rem;
}

.recognition-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  padding: 1.5rem;
  margin-top: 1.6rem;
  background:
    linear-gradient(180deg, rgba(250, 244, 234, 0.96), rgba(255, 253, 250, 0.96));
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.recognition-card::before {
  inset: 1rem;
  width: auto;
  height: auto;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(29, 47, 59, 0.08);
  background: transparent;
}

.recognition-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.2rem 0.4rem 0.2rem 0.2rem;
}

.recognition-copy p:last-of-type {
  color: var(--muted);
}

.recognition-tags span {
  border: 1px solid rgba(228, 64, 95, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-deep);
  box-shadow: 0 12px 26px rgba(31, 48, 60, 0.06);
}

.recognition-copy .btn {
  margin-top: 0.45rem;
  width: fit-content;
}

.recognition-embeds {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.recognition-embed-shell {
  position: relative;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 100%;
  padding: 1rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(29, 47, 59, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 234, 0.98));
  box-shadow:
    0 18px 40px rgba(24, 41, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.recognition-paper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(29, 47, 59, 0.08);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition-paper-head a {
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.recognition-paper-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.recognition-embed {
  width: 100%;
  margin: 0 !important;
}

.recognition-embed a {
  font-weight: 700;
  color: var(--teal-deep);
}

.instagram-media.recognition-embed {
  min-width: 0 !important;
  max-width: 295px !important;
  width: min(100%, 295px) !important;
  margin: 0 auto !important;
  border-radius: 1.35rem !important;
  overflow: hidden !important;
  box-shadow: 0 18px 38px rgba(24, 41, 56, 0.08) !important;
}

.social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1.1rem;
  position: relative;
  z-index: 1;
}

.social-icon svg,
.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.whatsapp {
  color: #0f8c61;
  background: rgba(15, 193, 115, 0.14);
}

.telegram {
  color: #0088cc;
  background: rgba(0, 136, 204, 0.14);
}

.instagram {
  color: #e4405f;
  background: rgba(228, 64, 95, 0.14);
}

.discord {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.14);
}

.youtube {
  color: #db2d2d;
  background: rgba(219, 45, 45, 0.14);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 3rem;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 5.5rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  padding: 1.7rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at top left, rgba(208, 165, 93, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(18, 125, 118, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 251, 246, 0.84), rgba(239, 247, 246, 0.88));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.cta-panel h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.cta-panel p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-actions {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #18ba7c, #0c8f60);
  box-shadow: 0 20px 46px rgba(12, 143, 96, 0.34);
  animation: bob 3.2s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-5px) scale(1.03);
}

.reveal {
  opacity: 0;
  animation: reveal 0.9s ease forwards;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-fade {
  /* display: none; */
  transform: translateY(10px);
}

.delay-1 {
  animation-delay: 0.14s;
}

.delay-2 {
  animation-delay: 0.28s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 184, 125, 0.52);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(32, 184, 125, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32, 184, 125, 0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.08);
  }
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes tiltFloat {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(-3deg) translateY(-8px);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-100%) rotate(12deg);
  }

  50%,
  100% {
    transform: translateX(140%) rotate(12deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 0 0 14px rgba(255, 255, 255, 0.72),
      0 24px 50px rgba(24, 41, 56, 0.14);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      inset 0 0 0 14px rgba(255, 255, 255, 0.8),
      0 30px 58px rgba(24, 41, 56, 0.2);
  }
}

@keyframes slotGlow {
  0%,
  100% {
    box-shadow: 0 24px 40px rgba(13, 91, 97, 0.24);
  }

  50% {
    box-shadow: 0 30px 52px rgba(13, 91, 97, 0.32);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .mentor-panel,
  .booking-shell,
  .pulse-grid,
  .expertise-grid,
  .video-grid,
  .connect-grid,
  .feature-list,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .newspaper-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newspaper-lead {
    grid-column: 1 / -1;
  }

  .newspaper-side-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .section-heading h2,
  .mentor-copy h2 {
    max-width: 100%;
  }

  .portrait-stage {
    min-height: 0;
    padding-bottom: 15rem;
  }

  .video-card {
    padding: 0.9rem;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
  }

  .video-copy {
    padding: 0.95rem 0.2rem 0.15rem;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
  }

  .hero,
  main,
  .footer {
    width: calc(100vw - 1.2rem);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    border-radius: 1.6rem;
    padding: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .nav-links a {
    flex: 1 1 30%;
    min-width: 5rem;
    padding: 0.7rem 0.8rem;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding-top: 0.65rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
    max-width: 10ch;
  }

  .hero-text,
  .section-intro,
  .mentor-copy p,
  .pulse-card span,
  .info-card p,
  .video-copy p,
  .social-card p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .portrait-stage {
    padding-bottom: 13rem;
  }

  .main-portrait {
    width: 100%;
    margin-left: 0;
  }

  .floating-badge {
    position: relative;
    top: auto;
    left: auto;
    margin: 1rem 0 0;
    max-width: 100%;
  }

  .certificate-card {
    right: 0.4rem;
    width: 12.4rem;
    bottom: 0;
  }

  .mentor-panel {
    display: none;
    padding: 1.3rem;
  }

  .pulse-card {
    padding: 1.15rem;
  }

  .video-card,
  .info-card,
  .social-card {
    border-radius: 1.65rem;
  }

  .newspaper-frame {
    padding: 1rem;
    border-radius: 1.7rem;
  }

  .newspaper-grid {
    grid-template-columns: 1fr;
  }

  .newspaper-lead,
  .newspaper-side-feature {
    grid-column: auto;
  }

  .recognition-wall {
    grid-template-columns: 1fr;
  }

  .recognition-divider {
    padding-top: 0;
    gap: 0.5rem;
  }

  .recognition-divider-logo {
    width: 3.7rem;
    height: 3.7rem;
  }

  .recognition-divider-quote {
    max-width: 18rem;
  }

  .recognition-divider-line {
    width: min(7rem, 32vw);
    min-height: 1px;
    min-width: 0;
    background: linear-gradient(
      90deg,
      rgba(84, 59, 31, 0),
      rgba(84, 59, 31, 0.26) 18%,
      rgba(84, 59, 31, 0.26) 82%,
      rgba(84, 59, 31, 0)
    );
  }

  .newspaper-story {
    padding: 0.95rem;
    border-radius: 1.25rem;
  }

  .newspaper-nameplate {
    text-align: left;
  }

  .newspaper-meta {
    justify-content: flex-start;
  }

  .newspaper-photo-wide img {
    aspect-ratio: 16 / 9;
  }

  .newspaper-photo-tall img {
    aspect-ratio: 4 / 5.2;
    max-height: 24rem;
  }

  .newspaper-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .newspaper-footer .btn {
    width: 100%;
  }

  .video-frame {
    border-radius: 1.2rem;
    aspect-ratio: 16 / 9;
  }

  .whatsapp-float {
    width: 3.6rem;
    height: 3.6rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5rem;
  }

  .cta-panel {
    width: calc(100vw - 1.2rem);
    margin-top: 4.3rem;
    padding: 1.3rem;
  }

  .cta-panel h2 {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-grid,
  .expertise,
  .care-showcase,
  .mentor-panel,
  .booking,
  .videos,
  .connect {
    margin-top: 1.3rem;
  }

  .hero-highlights article,
  .pulse-card,
  .feature-list article,
  .info-card,
  .booking-showcase,
  .booking-form,
  .booking-success,
  .social-card,
  .video-card {
    padding: 1.15rem;
  }

  .newspaper-story h3 {
    font-size: 1.9rem;
  }

  .newspaper-nameplate span:first-child {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .newspaper-meta,
  .newspaper-story-meta {
    gap: 0.55rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    border-radius: 1.5rem;
    padding: 1rem 1.05rem;
  }

  .certificate-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
    transform: none;
    animation: none;
  }

  .portrait-stage {
    padding-bottom: 0;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
  }

  .hero-pills {
    gap: 0.55rem;
  }

  .hero-pills span,
  .video-tags span {
    font-size: 0.74rem;
  }

  .footer {
    gap: 0.45rem;
  }
}

@media (max-width: 900px) {
  .booking-field-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .booking-actions,
  .booking-summary,
  .slot-picker-copy,
  .booking-schedule-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-helper {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
