:root {
  --sage: #bec4b3;
  --sand: #dcc9b6;
  --ink: #342726;
  --cream: #f8f1e7;
  --soft: #eee4d7;
  --gold: #b9863d;
  --gold-light: #e5c279;
  --white: #fffaf2;
  --muted: #6b5955;
  --line: rgba(52, 39, 38, 0.16);
  --shadow: 0 24px 70px rgba(52, 39, 38, 0.16);
  --countdown-h: 64px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 201, 182, 0.58), transparent 28rem),
    linear-gradient(180deg, var(--sage), var(--cream) 38%, var(--soft));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--sage));
}

.top-countdown {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--countdown-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 5vw;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink), #211817);
  border-bottom: 1px solid rgba(229, 194, 121, 0.28);
}

.countdown-copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.countdown-copy .icon {
  color: var(--gold-light);
}

.countdown-copy span {
  min-width: 0;
}

.countdown-copy strong {
  color: var(--gold-light);
}

.countdown-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(54px, 1fr));
  gap: 0.35rem;
}

.countdown-pills div {
  min-width: 54px;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(229, 194, 121, 0.35);
  border-radius: 7px;
  background: rgba(255, 250, 242, 0.08);
  text-align: center;
}

.countdown-pills strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1;
}

.countdown-pills span {
  display: block;
  margin-top: 0.12rem;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-cta,
.header-cta,
.btn,
.floating-whatsapp,
.mobile-cta a,
.tab-button {
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 7px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: var(--countdown-h);
  z-index: 90;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.72rem 5vw;
  background: rgba(248, 241, 231, 0.88);
  border-bottom: 1px solid rgba(52, 39, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 178px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.header-cta:hover,
.mini-cta:hover,
.btn:hover,
.floating-whatsapp:hover,
.mobile-cta a:hover {
  transform: translateY(-3px);
  filter: saturate(1.07);
}

.academy-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.86fr);
  grid-template-areas:
    "copy visual"
    "panel panel";
  gap: 1.5rem 2.4rem;
  min-height: calc(100svh - var(--countdown-h) - var(--header-h));
  padding: 4rem 5vw 3rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(190, 196, 179, 0.96), rgba(220, 201, 182, 0.72)),
    radial-gradient(circle at 78% 8%, rgba(255, 250, 242, 0.9), transparent 25rem);
}

.academy-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 5% -10% auto auto;
  width: 52vw;
  height: 78%;
  border: 2px solid rgba(185, 134, 61, 0.42);
  border-radius: 52% 0 0 52%;
  background: linear-gradient(145deg, rgba(248, 241, 231, 0.9), rgba(220, 201, 182, 0.42));
  box-shadow: inset 0 0 70px rgba(255, 250, 242, 0.45);
}

.academy-hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(0deg, rgba(52, 39, 38, 0.1), transparent);
}

.hero-ornament {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-ornament.one {
  left: 2vw;
  bottom: 12%;
  width: 230px;
  height: 360px;
  opacity: 0.28;
  background:
    linear-gradient(130deg, transparent 48%, rgba(52, 39, 38, 0.35) 49%, transparent 50%),
    radial-gradient(ellipse at 0 50%, rgba(52, 39, 38, 0.14), transparent 62%);
  clip-path: polygon(0 20%, 85% 0, 48% 100%);
}

.hero-ornament.two {
  right: 8%;
  top: 8%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(185, 134, 61, 0.45);
  transform: rotate(45deg);
  animation: float 5.6s ease-in-out infinite;
}

.hero-copy {
  grid-area: copy;
  max-width: 750px;
  align-self: center;
}

.academy-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 58px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
}

.academy-mark::before,
.academy-mark::after {
  content: "";
  position: absolute;
}

.academy-mark span {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--ink);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.script-title {
  margin: 0.4rem 0 0;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.92;
  text-shadow: 0 1px 0 rgba(255, 250, 242, 0.35);
}

.hero-lead {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: #433330;
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0.85rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(52, 39, 38, 0.22);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(52, 39, 38, 0.28);
  background: rgba(255, 250, 242, 0.22);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(185, 134, 61, 0.24);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.34);
  background: rgba(255, 250, 242, 0.1);
}

.btn-outline:hover,
.tab-button:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-achievements span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(185, 134, 61, 0.42);
  border-radius: 999px;
  background: rgba(248, 241, 231, 0.45);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-achievements strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: 620px;
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 520px);
  height: min(78svh, 720px);
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(185, 134, 61, 0.6);
  border-radius: 54% 54% 8px 8px;
  background:
    linear-gradient(180deg, rgba(248, 241, 231, 0.88), rgba(220, 201, 182, 0.52)),
    var(--sand);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.02);
  transform-origin: center bottom;
}

.signature-card {
  position: absolute;
  right: -0.4rem;
  top: 500px;
  width: min(330px, 82%);
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(229, 194, 121, 0.82);
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(135deg, #2b1f1e, var(--ink));
  color: var(--gold-light);
  box-shadow: 0 20px 45px rgba(52, 39, 38, 0.25);
  animation: float 4.8s ease-in-out infinite;
}

.signature-card span {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.3rem;
  line-height: 0.9;
}

.signature-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seal-floating {
  position: absolute;
  left: -1.4rem;
  top: 2rem;
  width: 132px;
  filter: drop-shadow(0 18px 24px rgba(52, 39, 38, 0.18));
  animation: slowSpin 18s linear infinite;
}

.hero-info-panel {
  grid-area: panel;
  align-self: end;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(185, 134, 61, 0.48);
  border-radius: 12px;
  background: rgba(248, 241, 231, 0.68);
  box-shadow: 0 16px 40px rgba(52, 39, 38, 0.09);
  backdrop-filter: blur(12px);
}

.panel-heading span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-heading strong {
  display: block;
  margin-top: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.hero-info-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.hero-info-panel li {
  display: flex;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 780;
}

.hero-info-panel .icon {
  color: var(--gold);
}

.black-ribbon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.2rem 5vw 5.2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(229, 194, 121, 0.18), transparent 22rem),
    linear-gradient(180deg, #201817, var(--ink));
}

.black-ribbon::before,
.black-ribbon::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(229, 194, 121, 0.22);
}

.black-ribbon::before {
  inset: 1.2rem 5vw auto;
  height: 1px;
}

.black-ribbon::after {
  right: -6rem;
  top: -8rem;
  width: 420px;
  height: 420px;
  border-radius: 50%;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading h2,
.certificate-copy h2,
.master-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.certificate-copy p,
.master-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.black-ribbon .eyebrow,
.final-cta .eyebrow {
  color: var(--gold-light);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(229, 194, 121, 0.32);
  border-radius: 12px;
  overflow: hidden;
}

.learning-card {
  min-height: 210px;
  padding: 1.4rem 1rem;
  background: rgba(255, 250, 242, 0.05);
  text-align: center;
}

.learning-card .icon {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 0.8rem;
  color: var(--gold-light);
}

.learning-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.learning-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
}

.learning-card:hover {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  transform: translateY(-8px);
}

.learning-card:hover .icon,
.learning-card:hover p {
  color: var(--ink);
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 5vw;
  background: var(--cream);
}

.support-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.18rem 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(185, 134, 61, 0.32);
  border-radius: 12px;
  background: rgba(190, 196, 179, 0.42);
}

.support-item .icon {
  grid-row: span 2;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
}

.support-item strong {
  font-size: 1rem;
}

.support-item span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.section {
  padding: 6rem 5vw;
}

.curriculum {
  background:
    linear-gradient(180deg, rgba(220, 201, 182, 0.72), rgba(248, 241, 231, 0.9)),
    var(--sand);
}

.curriculum-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 900px;
  margin: 0 auto 1.4rem;
}

.tab-button {
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(52, 39, 38, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.36);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}

.tab-panels {
  max-width: 1180px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

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

.module-grid div,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 39, 38, 0.12);
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.55);
  box-shadow: 0 16px 38px rgba(52, 39, 38, 0.08);
}

.module-grid div {
  padding: 1.35rem;
}

.module-grid div::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190, 196, 179, 0.38), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.module-grid div:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.module-grid div:hover,
.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 134, 61, 0.45);
}

.module-grid span,
.plan-kicker,
.best-badge {
  position: relative;
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.module-grid h3,
.price-card h3 {
  position: relative;
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.module-grid p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.certificates {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 82% 28%, rgba(229, 194, 121, 0.24), transparent 19rem),
    var(--sage);
}

.certificate-copy {
  max-width: 690px;
}

.certificate-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.certificate-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(185, 134, 61, 0.36);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.48);
  font-weight: 900;
}

.certificate-list .icon {
  color: var(--gold);
}

.certificate-visual {
  display: grid;
  place-items: center;
}

.certificate-visual img {
  width: min(390px, 100%);
  filter: drop-shadow(0 26px 26px rgba(52, 39, 38, 0.2));
  animation: float 5.4s ease-in-out infinite;
}

.pricing {
  background:
    linear-gradient(180deg, var(--ink), #211817);
  color: var(--white);
}

.pricing .section-heading p:not(.eyebrow),
.pricing .section-heading h2 {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1220px;
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(248, 241, 231, 0.92), rgba(220, 201, 182, 0.78));
}

.price-card.featured-price {
  background: linear-gradient(180deg, var(--sage), var(--sand));
  border-color: rgba(229, 194, 121, 0.78);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.25);
}

.best-badge {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--gold-light);
}

.price {
  position: relative;
  margin: 0.35rem 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.price small {
  display: block;
  margin-top: 0.2rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
}

.price-card ul {
  position: relative;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-weight: 720;
}

.price-card li {
  position: relative;
  padding-left: 1rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--gold);
}

.price-card .btn {
  position: relative;
  width: 100%;
  margin-top: auto;
}

.personal-card {
  background: linear-gradient(180deg, rgba(190, 196, 179, 0.9), rgba(248, 241, 231, 0.82));
}

.master {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background: var(--cream);
}

.master-photo {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(185, 134, 61, 0.42);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--sage), var(--sand));
  box-shadow: var(--shadow);
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.bio-badges {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.3rem;
}

.bio-badges span {
  padding: 0.82rem 0.95rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(190, 196, 179, 0.35);
  color: var(--ink);
  font-weight: 820;
}

.gallery-section {
  padding: 6rem 5vw;
  background: var(--sand);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery figure {
  position: relative;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 134, 61, 0.48);
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(52, 39, 38, 0.12);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.gallery figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(229, 194, 121, 0.46);
  border-radius: 8px;
  background: rgba(52, 39, 38, 0.84);
  color: var(--gold-light);
  font-weight: 950;
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(52, 39, 38, 0.95), rgba(52, 39, 38, 0.72), rgba(52, 39, 38, 0.34)),
    url("assets/tecnica-koreana-03.webp") center / cover no-repeat;
}

.final-cta > div {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 250, 242, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 5vw;
  background: #1e1615;
  color: rgba(255, 250, 242, 0.76);
}

.site-footer img {
  width: 168px;
  filter: invert(1) brightness(2.2);
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.floating-whatsapp {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1rem;
  border-radius: 8px;
  background: #2f7656;
  color: #fff;
  box-shadow: 0 18px 44px rgba(47, 118, 86, 0.3);
  font-weight: 950;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .academy-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  }

  .icon-row,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 920px) {
  :root {
    --header-h: 68px;
  }

  .countdown-pills {
    grid-template-columns: repeat(4, minmax(50px, 1fr));
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 142px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    max-width: 220px;
  }

  .academy-hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.68fr);
    grid-template-areas:
      "copy visual"
      "panel panel";
    gap: 1.4rem;
  }

  .academy-hero::before {
    inset: 12% -25% auto auto;
    width: 70vw;
    height: 70%;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 8vw, 4.8rem);
  }

  .script-title {
    font-size: clamp(2.35rem, 5.4vw, 3.4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .portrait-frame {
    height: 500px;
    min-height: 490px;
  }

  .signature-card {
    right: 0;
    top: auto;
    bottom: 2rem;
  }

  .seal-floating {
    left: 0;
    top: 1rem;
    width: 104px;
  }

  .hero-info-panel,
  .certificates,
  .master {
    grid-template-columns: 1fr;
  }

  .hero-info-panel ul,
  .support-strip,
  .gallery {
    grid-template-columns: 1fr;
  }

  .support-strip {
    padding-top: 1rem;
  }

  .master-photo {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  :root {
    --countdown-h: 116px;
    --header-h: 62px;
  }

  body {
    padding-bottom: 76px;
  }

  .top-countdown {
    grid-template-columns: 1fr auto;
    padding: 0.55rem 4vw;
    gap: 0.6rem;
  }

  .countdown-copy {
    grid-column: 1 / -1;
  }

  .countdown-copy {
    font-size: 0.8rem;
  }

  .countdown-pills {
    gap: 0.28rem;
  }

  .countdown-pills div {
    min-width: 0;
    padding: 0.32rem 0.22rem;
  }

  .countdown-pills strong {
    font-size: 1rem;
  }

  .mini-cta {
    min-height: 34px;
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }

  .site-header,
  .academy-hero,
  .black-ribbon,
  .support-strip,
  .section,
  .gallery-section,
  .final-cta,
  .site-footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .brand img {
    width: 122px;
  }

  .header-cta {
    font-size: 0.72rem;
  }

  .academy-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "panel";
    padding-top: 2.4rem;
  }

  .academy-mark {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.35rem);
  }

  .script-title {
    margin-top: 0.25rem;
    font-size: 2rem;
  }

  .hero-lead {
    margin-top: 0.75rem;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-achievements {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 0.25rem;
  }

  .portrait-frame {
    height: 430px;
    min-height: 430px;
    border-radius: 44% 44% 8px 8px;
  }

  .signature-card {
    right: 0.5rem;
    bottom: 2rem;
    width: 78%;
  }

  .signature-card span {
    font-size: 1.9rem;
  }

  .seal-floating {
    left: 0;
    width: 92px;
  }

  .hero-info-panel {
    padding: 1rem;
  }

  .panel-heading strong {
    font-size: 1.45rem;
  }

  .icon-row,
  .module-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 1.8rem;
  }

  .section-heading h2,
  .certificate-copy h2,
  .master-copy h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .gallery figure {
    height: 390px;
  }

  .master-photo {
    min-height: 520px;
  }

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

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 4vw calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(52, 39, 38, 0.96);
    color: var(--white);
    box-shadow: 0 -18px 40px rgba(52, 39, 38, 0.24);
    backdrop-filter: blur(14px);
  }

  .mobile-cta span {
    font-size: 0.88rem;
    font-weight: 950;
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    background: var(--gold-light);
    color: var(--ink);
    font-weight: 950;
  }
}

@media (max-width: 390px) {
  .header-cta {
    max-width: 138px;
    line-height: 1.12;
    font-size: 0;
  }

  .header-cta::before {
    content: "WhatsApp";
    font-size: 0.78rem;
  }

  .countdown-copy {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .script-title {
    font-size: 2.25rem;
  }
}
