/* ================================================
   LALA Academy V2 — Ottoman Imperial Editorial
   Dark primary · Warm parchment secondary
   Fonts: Cinzel · Cormorant Garamond · Jost
   ================================================ */

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

/* ── Variables ── */
:root {
  /* Dark palette */
  --ink:          #211C18;
  --ink-mid:      #2D2720;
  --ink-card:     #3C2E20;
  --ink-border:   rgba(210, 160, 95, 0.18);

  /* Light palette */
  --parchment:    #F6EDD5;
  --parchment-alt:#EDE3C8;
  --white-warm:   #FBF6EA;

  /* Gold / Orange accent */
  --gold:         #C4753A;
  --gold-mid:     #D98F58;
  --gold-light:   #EDB07C;
  --gold-pale:    #F5D9B5;
  --gold-glow:    rgba(196, 117, 58, 0.22);

  /* Teal accent */
  --teal:         #4D9690;
  --teal-mid:     #6FB5AE;
  --teal-pale:    #D0ECEB;

  /* Text on dark */
  --cream:        #F2E6CE;
  --cream-dim:    rgba(242, 230, 206, 0.62);
  --cream-faint:  rgba(242, 230, 206, 0.28);

  /* Text on light */
  --ink-text:     #3A2A1C;
  --ink-muted:    #7A6858;

  /* Shadows */
  --shadow-sm:    0 2px 20px rgba(16, 9, 6, 0.10);
  --shadow-md:    0 10px 48px rgba(16, 9, 6, 0.22);
  --shadow-glow:  0 8px 36px rgba(196, 117, 58, 0.30);
  --radius:       10px;
  --ease:         0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.78;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.08;
}
h1 {
  font-size: clamp(5.5rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 600; margin-bottom: 1.5rem; }
h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 56px; }
.center    { text-align: center; }

/* ── Label: Cinzel for classical, Ottoman-imperial feel ── */
.label {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  transition: var(--ease);
}
.tag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2.2rem;
  max-width: 380px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.cards-4 .card:nth-child(1) { transition-delay: 0.00s; }
.cards-4 .card:nth-child(2) { transition-delay: 0.12s; }
.cards-4 .card:nth-child(3) { transition-delay: 0.24s; }
.cards-4 .card:nth-child(4) { transition-delay: 0.36s; }

.trainer-grid .trainer-card:nth-child(1) { transition-delay: 0.00s; }
.trainer-grid .trainer-card:nth-child(2) { transition-delay: 0.15s; }
.trainer-grid .trainer-card:nth-child(3) { transition-delay: 0.30s; }
.trainer-grid .trainer-card:nth-child(4) { transition-delay: 0.45s; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 46px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
}
.btn-primary:hover {
  background: #A86130;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-primary:hover::after { opacity: 1; }
.btn-lg { padding: 20px 60px; font-size: 0.72rem; }

/* ── Hero entrance keyframes ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatTulip {
  0%, 100% { transform: translateY(0) scale(1.00); }
  50%       { transform: translateY(-18px) scale(1.01); }
}
@keyframes glowBreath {
  0%, 100% { opacity: 0.28; transform: translate(-50%, -50%) scale(1.00); }
  50%       { opacity: 0.46; transform: translate(-50%, -50%) scale(1.12); }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: rgba(33, 28, 24, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 117, 58, 0.10);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(28, 23, 19, 0.97);
  box-shadow: 0 1px 48px rgba(0, 0, 0, 0.45);
}

.nav-brand { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.13em;
}
.brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.49rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.nav-lang { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none;
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--cream-dim);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 2px;
  transition: color var(--ease), background var(--ease);
}
.lang-btn.active   { color: var(--gold); background: rgba(196, 117, 58, 0.13); }
.lang-btn:hover:not(.active) { color: var(--cream); }
.lang-sep { color: var(--cream-faint); font-size: 0.65rem; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 117, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 117, 58, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 80px;
  background: var(--ink);
  z-index: 1;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right img {
  position: relative;
  width: 88%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(196, 117, 58, 0.38), 0 4px 32px rgba(0, 0, 0, 0.55);
  animation: floatTulip 7s ease-in-out infinite;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(200, 120, 58, 0.22) 0%, transparent 68%);
  pointer-events: none;
  animation: glowBreath 5s ease-in-out infinite;
}

/* Staggered hero text entrance */
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.25s;
}

.hero-title-block {
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: heroFadeUp 1s ease both;
  animation-delay: 0.4s;
}

.hero-heading {
  color: var(--cream);
  line-height: 0.88;
  margin-bottom: 0.15em;
}

.hero-academy-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 1.7vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.58em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--teal-mid);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.58s;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.7s;
}
.hero-rule-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.45;
}
.hero-rule-star { font-size: 0.6rem; color: var(--gold); opacity: 0.65; }

.hero-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.82s;
}

.hero-body {
  font-size: 0.91rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.95;
  max-width: 440px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.96s;
}

.hero-left .btn-primary {
  align-self: flex-start;
  opacity: 0;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 1.1s;
}

/* ================================================
   SECTIONS (shared)
   ================================================ */
.section { padding: 120px 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-text h2 { margin-bottom: 1.4rem; }
.split-text p  { font-size: 1rem; font-weight: 300; line-height: 1.92; }

.split-image { border-radius: var(--radius); overflow: hidden; }
.split-image img { width: 100%; border-radius: var(--radius); }

/* ================================================
   ABOUT (light/parchment)
   ================================================ */
.about {
  background: var(--parchment);
  color: var(--ink-text);
}
.about .label { color: var(--teal); }
.about h2     { color: var(--ink); }
.about p      { color: var(--ink-text); }

.about .tag {
  background: var(--teal-pale);
  color: var(--teal);
  border: 1px solid rgba(77, 150, 144, 0.25);
}
.about .tag:hover {
  background: transparent;
  border-color: var(--teal);
  cursor: default;
}

/* About image as a floating cutout sticker */
.about-image-frame {
  position: relative;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.about-image-frame::before { display: none; }
.about-image-frame img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 16px 52px rgba(100, 180, 150, 0.30));
}

/* ================================================
   STORY (dark)
   ================================================ */
.story {
  position: relative;
  background: var(--ink-mid);
  overflow: hidden;
}

.story-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.story-pattern-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
}

.story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: center;
}

.story-ornament img {
  width: 180px;
  opacity: 0.6;
  filter: sepia(15%);
}

.story-text .label  { color: var(--gold-mid); }
.story-text h2      { color: var(--cream); margin-bottom: 1.4rem; }
.story-text p       { font-size: 1rem; font-weight: 300; color: var(--cream-dim); line-height: 1.9; }

.story-text blockquote {
  margin-top: 2.4rem;
  padding: 1.6rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(196, 117, 58, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.72;
}

/* ================================================
   WHAT MAKES DIFFERENT (light/parchment)
   ================================================ */
.different {
  background: var(--parchment);
  color: var(--ink-text);
}
.different .label { display: block; color: var(--teal); }
.different h2 { color: var(--ink); margin-bottom: 3.6rem; font-size: clamp(2.5rem, 5vw, 4rem); }

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Dark cards on parchment — intentional drama */
.card {
  padding: 36px 24px 32px;
  background: var(--ink-card);
  border-radius: var(--radius);
  border: 1px solid var(--ink-border);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 117, 58, 0.28);
}
.card:hover::before { opacity: 1; }

.card-num { display: none; }
.card-icon {
  font-size: 1.55rem;
  color: var(--gold-mid);
  margin-bottom: 0.9rem;
  line-height: 1;
}
.card h3 { font-size: 1.22rem; color: var(--cream); margin-bottom: 0.6rem; }
.card p  { font-size: 0.93rem; font-weight: 300; color: var(--cream-dim); line-height: 1.78; margin: 0; }

/* ================================================
   WHY JOIN (dark)
   ================================================ */
.why {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.why-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-pattern-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.11;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.why-inner .label { color: var(--gold-mid); }
.why-inner h2     { color: var(--cream); margin-bottom: 2rem; font-size: clamp(2.8rem, 5.5vw, 4.5rem); }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2.5rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.72;
}
.check {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.italic-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--teal-mid);
  line-height: 1.58;
}

.why .pattern-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-mid);
}
.why .pattern-image img {
  width: 100%;
  border-radius: var(--radius);
  opacity: 0.55;
}

/* ================================================
   TRAINERS (light/warm white)
   ================================================ */
.trainers {
  background: var(--white-warm);
  color: var(--ink-text);
}
.trainers .label { display: block; color: var(--teal); }
.trainers h2 { color: var(--ink); margin-bottom: 3.6rem; }

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

.trainer-card {
  background: var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--parchment-alt);
  transition: transform var(--ease), box-shadow var(--ease);
}
.trainer-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.trainer-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--parchment-alt);
  position: relative;
}
.trainer-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, rgba(46, 32, 18, 0.42));
  pointer-events: none;
}
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.trainer-card:hover .trainer-photo img { transform: scale(1.07); }

.trainer-body { padding: 28px 28px 32px; text-align: left; }
.trainer-body h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.trainer-role {
  font-family: 'Cinzel', serif;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.72;
}

.trainer-bio {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.88;
  margin: 0;
}

/* ================================================
   CTA (darkest, with radial glow)
   ================================================ */
.cta-section {
  position: relative;
  padding: 152px 0;
  background: #181411;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(196, 117, 58, 0.17) 0%, transparent 66%);
  pointer-events: none;
  animation: glowBreath 6s ease-in-out infinite;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  pointer-events: none;
}
.cta-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-ornament {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 2.2rem;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.6rem;
  line-height: 1.12;
}

.cta-content > p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.92;
  margin-bottom: 1.4rem;
}

.cta-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-mid) !important;
  margin-bottom: 3rem !important;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--ink);
  padding: 68px 0 50px;
  text-align: center;
  border-top: 1px solid var(--ink-border);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.footer .brand-main {
  color: var(--cream);
  font-size: 2.2rem;
  letter-spacing: 0.16em;
}
.footer .brand-sub {
  font-family: 'Cinzel', serif;
  color: var(--gold-mid);
  font-size: 0.48rem;
  letter-spacing: 0.46em;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.96rem;
  color: var(--cream-faint);
  margin-bottom: 0.5rem;
}
.footer-credit {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
}
.footer-credit strong { color: var(--gold-mid); font-weight: 500; }
.footer-contact {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--cream-faint);
  margin-bottom: 0.4rem;
}
.footer-divider {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.22;
  margin: 1.3rem 0 0.9rem;
}
.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(242, 230, 206, 0.18);
  margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 160px 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .container  { padding: 0 28px; }
  .navbar     { padding: 16px 28px; }
  .section    { padding: 80px 0; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 84px 28px 56px;
    order: 1;
  }
  .hero-left .btn-primary { align-self: flex-start; }
  .hero-right {
    order: 2;
    height: 300px;
  }
  .hero-right img {
    object-fit: contain;
    padding: 24px;
  }

  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
    direction: ltr;
  }
  .split-grid.reverse > * { direction: ltr; }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-ornament { display: none; }

  .cards-4 { grid-template-columns: 1fr; }

  .why .split-image.pattern-image { display: none; }
  .why-pattern-bg { display: none; }

  .trainer-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  h2 { font-size: 2rem; }
  .hero-heading { font-size: 5rem; }
  .cta-section { padding: 100px 0; }
  .cta-glow { width: 320px; height: 280px; }
}
