/* 22-plan-wedding.css — PLAN WEDDING PAGE — MODERN LIGHT / GLASS — production version */

:root {
  --bg: #efefef;
  --bg-soft: #f5f5f5;
  --bg-card: rgba(255, 255, 255, 0.56);
  --bg-card-strong: rgba(255, 255, 255, 0.82);

  --ink: #202020;
  --ink-2: #4c4c4c;
  --ink-3: #7b7b7b;

  --line: rgba(32, 32, 32, 0.09);
  --line-strong: rgba(32, 32, 32, 0.16);
  --line-soft: rgba(255, 255, 255, 0.44);

  --accent: #ff4d4d;
  --accent-hover: #f90202;
  --accent-soft: rgba(255, 77, 77, 0.10);

  --shadow-xs: 0 8px 18px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 22px 54px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.12);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-xl: 46px;

  --maxw: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);

  --video-ratio: 1272 / 1074;
  --story-ratio: 1266 / 712;

  --hero-space-top: 12px;
  --hero-space-bottom: 86px;
  --hero-title-size: 68px;
  --hero-title-line: .94;
  --hero-title-spacing: -.065em;
  --hero-title-weight: 900;
  --hero-accent-size: clamp(22px, 2.2vw, 30px);
  --hero-accent-line: 1.08;
  --hero-accent-spacing: -.035em;
  --hero-accent-weight: 700;
  --hero-lead-size: 17px;
  --hero-lead-line: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 14%, rgba(255,255,255,.82) 0 180px, transparent 360px),
    radial-gradient(circle at 85% 12%, rgba(255,77,77,.045) 0 140px, transparent 320px),
    radial-gradient(circle at 82% 80%, rgba(255,77,77,.05) 0 180px, transparent 360px),
    linear-gradient(180deg, #f0f0f0 0%, #ebebeb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-repeat: no-repeat;
  overflow-x: clip;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.planWeddingPage {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.planWeddingPage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.28),
    rgba(255,255,255,0) 26%,
    rgba(255,255,255,.24) 100%
  );
}

.planWeddingPage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 96px,
      rgba(0,0,0,.018) 96px,
      rgba(0,0,0,.018) 97px
    );
}

.planWeddingShell {
  position: relative;
  width: 100%;
}

.planWeddingContainer {
  width: min(var(--maxw), calc(100% - 40px));
  margin-inline: auto;
}

.planWeddingSection {
  position: relative;
  width: 100%;
  padding: 96px 0;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .14s; }

/* HEADINGS */

.sectionHead {
  max-width: 920px;
}

.sectionHead--center {
  margin-inline: auto;
  text-align: center;
}

.sectionKicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sectionTitle {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 550;
  letter-spacing: -.04em;
  color: var(--ink);
  text-wrap: balance;
}

.sectionText {
  max-width: 780px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
}

.sectionText--center {
  margin-inline: auto;
}

/* BUTTONS */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  appearance: none;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition:
    transform .28s var(--ease),
    box-shadow .28s var(--ease),
    border-color .28s var(--ease),
    background .28s var(--ease),
    color .28s var(--ease);
}

.btn__icon {
  font-size: 18px;
  line-height: 1;
  transition: transform .24s var(--ease);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

.btn:active {
  transform: scale(.985);
}

.btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255,255,255,.92),
    0 0 0 6px rgba(255,77,77,.16);
}

.btn--primary {
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255,77,77,.20);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,77,77,.24);
}

.btn--ghost {
  background: rgba(255,255,255,.46) !important;
  color: var(--ink) !important;
  border-color: var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 700;
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.72) !important;
  color: var(--accent) !important;
}

.btn--pulse {
  animation: ctaPulse 3.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(255,77,77,.18), 0 0 0 0 rgba(255,77,77,0);
  }
  50% {
    box-shadow: 0 18px 34px rgba(255,77,77,.24), 0 0 0 10px rgba(255,77,77,.08);
  }
}

.actionRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.actionRow--center {
  justify-content: center;
}

/* SURFACE */

.glassCard,
.finalPlanCta__card,
.planStoryCard {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glassCard::before,
.finalPlanCta__card::before,
.planStoryCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid var(--line-soft);
}

.planHeroVideoCard,
.planStory__media {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.planHeroVideoCard::before,
.planStory__media::before {
  display: none !important;
}

/* HERO */

.planHero {
  padding-top: var(--hero-space-top);
  padding-bottom: var(--hero-space-bottom);
  overflow: hidden;
}

.planHero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.planHero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-top: 0;
}

.planHero__title {
  margin: 0;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  font-weight: var(--hero-title-weight);
  color: var(--ink);
  letter-spacing: var(--hero-title-spacing);
  text-wrap: balance;
}

.planHero__titleMainLine {
  display: inline-flex;
  align-items: flex-end;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
  position: relative;
}

.planHero__titleMainText {
  display: inline-block;
  color: var(--ink);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: var(--hero-title-spacing);
  font-weight: var(--hero-title-weight);
  background:
    linear-gradient(
      110deg,
      var(--ink) 0%,
      var(--ink) 30%,
      rgba(255,77,77,.75) 42%,
      #ff4d4d 48%,
      #f90202 50%,
      #ff4d4d 52%,
      rgba(255,77,77,.75) 58%,
      var(--ink) 70%,
      var(--ink) 100%
    );
  background-size: 300% 100%;
  background-position: 145% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: planTitleRun 9.8s linear infinite;
  will-change: background-position;
}

.planHero__titleMainLine::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      110deg,
      rgba(255,77,77,.28) 0%,
      rgba(255,77,77,.28) 30%,
      rgba(255,77,77,.7) 42%,
      #ff4d4d 48%,
      #f90202 50%,
      #ff4d4d 52%,
      rgba(255,77,77,.7) 58%,
      rgba(255,77,77,.28) 70%,
      rgba(255,77,77,.28) 100%
    );
  background-size: 300% 100%;
  background-position: 145% 50%;
  box-shadow: 0 6px 18px rgba(255,77,77,.16);
  animation: planTitleRun 9.8s linear infinite;
  will-change: background-position;
}

@keyframes planTitleRun {
  0% { background-position: 145% 50%; }
  28% { background-position: 145% 50%; }
  82% { background-position: -45% 50%; }
  100% { background-position: -45% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .planHero__titleMainText,
  .planHero__titleMainLine::after {
    animation: none;
    background-position: 50% 50%;
  }
}

.planHero__title > span:last-child {
  display: block;
  color: var(--accent);
  font-size: var(--hero-accent-size);
  line-height: var(--hero-accent-line);
  margin-top: 12px;
  letter-spacing: var(--hero-accent-spacing);
  font-weight: var(--hero-accent-weight);
}

.planHero__lead {
  margin: 20px 0 0;
  max-width: 500px;
  color: var(--ink-2);
  font-size: var(--hero-lead-size);
  line-height: var(--hero-lead-line);
}

.planHero__trustRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  max-width: 580px;
}

.heroTrust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(32,32,32,.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,0,0,.045);
}

.heroTrust i {
  display: none !important;
}

.planHero__actions {
  margin-top: 30px;
}

.planHero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* HERO STAGE */

.planHeroStage {
  position: relative;
  width: min(100%, 860px);
  margin-inline: auto;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.planHeroStage__aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.planHeroStage__aura--one {
  width: 420px;
  height: 420px;
  top: 30px;
  right: 42px;
  background: radial-gradient(circle, rgba(255,77,77,.11) 0%, rgba(255,77,77,0) 72%);
  animation: planAuraFloat 8s ease-in-out infinite;
}

.planHeroStage__aura--two {
  width: 300px;
  height: 300px;
  left: 28px;
  bottom: 54px;
  background: radial-gradient(circle, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 72%);
  animation: planAuraFloat 10s ease-in-out infinite reverse;
}

.planHeroVideoCard {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: var(--video-ratio);
  border-radius: 34px;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 30px 80px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.planHeroVideoCard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.18);
}

.planHeroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  background: transparent;
  opacity: 1;
  transform: none !important;
  transition: none !important;
}

.video--hero { object-position: center top; }
.video--planner { object-position: center 10%; }
.video--timeline { object-position: center 14%; }
.video--budget { object-position: center 4%; }
.video--guests { object-position: center 8%; }
.video--seating { object-position: center 10%; }

@keyframes planAuraFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-10px,0) scale(1.04); }
}

/* STORY BLOCKS */

.planStory {
  padding-top: 54px;
  padding-bottom: 54px;
}

.planStoryLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.planStoryHeading {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -.028em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.planStoryCard {
  overflow: hidden;
  border-radius: 40px;
  background: rgba(255,255,255,.62);
}

.planStoryGrid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  min-height: 580px;
}

.planStoryGrid--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.planStoryGrid--reverse .planStory__content {
  order: 2;
}

.planStoryGrid--reverse .planStory__media {
  order: 1;
}

.planStory__content,
.planStory__media {
  min-width: 0;
  min-height: 580px;
  height: 100%;
}

.planStoryGrid > .planStory__content {
  position: relative;
  z-index: 2;
}

.planStoryGrid > .planStory__media {
  position: relative;
  z-index: 1;
}

.planStory__content {
  display: flex;
  background: transparent;
}

.planStory__inner {
  width: 100%;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planStory__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 550;
  color: var(--ink);
  text-wrap: balance;
}

.planStory__text {
  margin: 0;
  max-width: 560px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.74;
}

.planStory__list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.planStory__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.planStory__item span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,77,77,.10);
}

.planStory__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ececec;
}

.planStory__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  background: transparent;
  opacity: 1;
  transform: none !important;
  transition: none !important;
}

/* FINAL CTA */

.finalPlanCta {
  padding-top: 74px;
  padding-bottom: 100px;
}

.finalPlanCta__card {
  padding: 58px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 100%);
  box-shadow:
    0 24px 60px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.finalPlanCta__card .sectionTitle {
  max-width: 860px;
  margin-inline: auto;
}

.finalPlanCta__card .sectionText {
  max-width: 700px;
}

.finalPlanCta__note {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1360px) {
  :root {
    --hero-title-size: clamp(56px, 5vw, 68px);
  }

  .planHero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .planHero__content {
    max-width: 760px;
  }

  .planHeroStage {
    width: min(100%, 820px);
    min-height: 600px;
  }

  .planStoryGrid,
  .planStoryGrid--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .planStoryGrid--reverse .planStory__content,
  .planStoryGrid--reverse .planStory__media {
    order: initial;
  }

  .planStory__content,
  .planStory__media {
    min-height: auto;
  }

  .planStory__media {
    aspect-ratio: var(--story-ratio);
    min-height: auto;
  }

  .planStory__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --hero-space-top: 0px;
    --hero-space-bottom: 64px;
    --hero-title-size: clamp(42px, 7.2vw, 58px);
    --hero-title-line: .96;
    --hero-title-spacing: -.058em;
    --hero-title-weight: 900;
    --hero-accent-size: clamp(21px, 4.4vw, 28px);
    --hero-accent-weight: 800;
  }

  .planWeddingSection {
    padding: 82px 0;
  }

  .planHero {
    padding-top: var(--hero-space-top);
    padding-bottom: var(--hero-space-bottom);
  }

  .planHero__grid {
    gap: 26px;
  }

  .planHero__content {
    max-width: 100%;
  }

  .planHero__title {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    font-weight: var(--hero-title-weight);
  }

  .planHero__titleMainText {
    font-size: var(--hero-title-size);
  }

  .planHero__lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.68;
  }

  .planHeroStage {
    width: min(100%, 760px);
    min-height: 560px;
  }

  .planHeroVideoCard {
    border-radius: 30px;
  }

  .planStory__inner {
    padding: 34px 28px 30px;
  }

  .planStory__title {
    font-size: clamp(28px, 4.6vw, 38px);
  }

  .finalPlanCta__card {
    padding: 46px 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --hero-space-top: 0px;
    --hero-space-bottom: 52px;
    --hero-title-size: clamp(34px, 10.5vw, 46px);
    --hero-title-line: .98;
    --hero-title-spacing: -.05em;
    --hero-title-weight: 900;
    --hero-accent-size: clamp(19px, 5.8vw, 25px);
    --hero-accent-line: 1.1;
    --hero-accent-weight: 800;
  }

  .planWeddingSection {
    padding: 68px 0;
  }

  .planWeddingContainer {
    width: min(var(--maxw), calc(100% - 20px));
  }

  .planHero {
    padding-top: var(--hero-space-top);
    padding-bottom: var(--hero-space-bottom);
  }

  .sectionKicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: .1em;
    margin-bottom: 14px;
  }

  .sectionTitle {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }

  .sectionText {
    font-size: 15px;
    line-height: 1.68;
  }

  .planHero__title {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    font-weight: var(--hero-title-weight);
    letter-spacing: var(--hero-title-spacing);
  }

  .planHero__titleMainText {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    font-weight: var(--hero-title-weight);
  }

  .planHero__title > span:last-child {
    font-size: var(--hero-accent-size);
    line-height: var(--hero-accent-line);
    font-weight: var(--hero-accent-weight);
    margin-top: 10px;
  }

  .planHero__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .planHero__trustRow {
    display: grid;
    gap: 8px;
    margin-top: 20px;
  }

  .heroTrust {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
    justify-content: flex-start;
  }

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

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .planHeroStage {
    width: 100%;
    min-height: auto;
    display: block;
    padding-top: 8px;
  }

  .planHeroStage__aura {
    display: none;
  }

  .planHeroVideoCard {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1272 / 1074;
    min-height: 360px;
    border-radius: 26px;
  }

  .planHeroVideo {
    object-fit: cover;
    object-position: center top;
    transform: none !important;
  }

  .planStory {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .planStoryLabel {
    margin-bottom: 14px;
  }

  .planStoryHeading {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
    padding-bottom: 12px;
  }

  .planStoryCard {
    border-radius: 28px;
  }

  .planStoryGrid,
  .planStoryGrid--reverse {
    display: flex;
    flex-direction: column;
  }

  .planStory__media {
    order: 1;
    aspect-ratio: var(--story-ratio);
    min-height: 260px;
  }

  .planStory__content {
    order: 2;
  }

  .planStory__inner {
    padding: 22px 18px 24px;
  }

  .planStory__title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.04;
  }

  .planStory__text {
    font-size: 15px;
    line-height: 1.68;
  }

  .planStory__list {
    margin-top: 18px;
    gap: 12px;
  }

  .planStory__item {
    font-size: 14px;
    line-height: 1.55;
  }

  .planStory__media video {
    object-fit: cover;
    object-position: center top;
    transform: none !important;
  }

  .video--planner,
  .video--timeline,
  .video--budget,
  .video--guests,
  .video--seating {
    object-position: center top;
  }

  .finalPlanCta__card {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .finalPlanCta__note {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  :root {
    --hero-title-size: clamp(32px, 10vw, 40px);
    --hero-title-line: 1;
    --hero-title-spacing: -.045em;
    --hero-accent-size: clamp(18px, 5.6vw, 23px);
  }

  .planHeroVideoCard {
    min-height: 320px;
  }
}

@media (max-width: 390px) {
  :root {
    --hero-title-size: 30px;
    --hero-title-line: 1.02;
    --hero-title-spacing: -.035em;
    --hero-accent-size: 18px;
    --hero-accent-line: 1.14;
  }

  .planWeddingContainer {
    width: min(var(--maxw), calc(100% - 16px));
  }

  .planHero__title {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    letter-spacing: var(--hero-title-spacing);
  }

  .planHero__titleMainText {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
  }

  .planHero__title > span:last-child {
    font-size: var(--hero-accent-size);
    line-height: var(--hero-accent-line);
  }

  .planHeroVideoCard {
    min-height: 300px;
  }

  .planStory__media {
    min-height: 210px;
  }

  .planStory__inner {
    padding: 20px 16px 22px;
  }

  .planStory__title {
    font-size: 25px;
  }

  .sectionTitle {
    font-size: 26px;
  }
}
