:root {
  --black: #05080d;
  --navy: #071421;
  --navy-2: #0b1c2e;
  --navy-3: #102841;
  --gold: #d6a93d;
  --gold-light: #f0d17a;
  --ivory: #f7f4ec;
  --white: #fff;
  --ink: #101828;
  --gray: #667085;
  --line: rgba(214, 169, 61, 0.28);
  --shadow: 0 28px 70px rgba(5, 8, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 76px);
  background: rgba(5, 8, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 1000;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #181100;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-size: 14px;
}

.brand span:last-child {
  display: grid;
  gap: 3px;
  line-height: 1.1;
}

.brand b {
  font-size: 18px;
}

.brand small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 900;
}

.section-dark,
.section-light,
.section-ivory {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 6vw, 86px);
}

.section-dark {
  background:
    radial-gradient(circle at 88% 15%, rgba(214, 169, 61, 0.16), transparent 24%),
    linear-gradient(135deg, var(--black), var(--navy) 46%, var(--navy-2));
}

.section-light {
  color: var(--ink);
  background: var(--white);
}

.section-ivory {
  color: var(--ink);
  background: var(--ivory);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: 760px;
  overflow: hidden;
}

.badge,
.eyebrow,
.program-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(214, 169, 61, 0.08);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.08;
}

.hero h1 strong {
  color: var(--gold-light);
}

.hero-sub {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.75;
}

.program-label {
  margin-top: 24px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin-top: 30px;
  padding: 16px 26px;
  color: #171005;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(214, 169, 61, 0.25);
  font-size: 18px;
  font-weight: 1000;
  cursor: pointer;
}

.micro-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual::before {
  position: absolute;
  inset: 7% 2% 0;
  content: "";
  background: radial-gradient(circle, rgba(214, 169, 61, 0.2), transparent 60%);
  filter: blur(8px);
}

.hero-visual img {
  position: relative;
  width: min(100%, 560px);
  max-height: 650px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(240, 209, 122, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.story-copy h2,
.personal-copy h2,
.coach-copy h2,
.final-cta h2,
.apply-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.2;
}

.section-heading p:not(.eyebrow),
.story-copy p,
.personal-copy > p,
.apply-copy p {
  color: var(--gray);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 750;
  line-height: 1.75;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 26px;
  align-items: stretch;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.problem-cards article,
.notice-box,
.keyword-grid article,
.session-card,
.offer-card,
.faq-list details,
.exam-form {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.problem-cards article {
  min-height: 170px;
  padding: 24px;
}

.problem-cards b {
  color: var(--gold);
  font-size: 18px;
}

.problem-cards span {
  display: block;
  margin-top: 28px;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 1000;
  line-height: 1.38;
}

.problem-image {
  width: 100%;
  height: 100%;
  min-height: 354px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.notice-box {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 26px;
  border-left: 5px solid var(--gold);
}

.notice-box strong {
  font-size: 24px;
}

.notice-box p {
  margin: 10px 0 0;
  color: var(--gray);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.story-images {
  position: relative;
  min-height: 520px;
}

.story-images figure {
  margin: 0;
}

.main-record {
  width: min(74%, 430px);
}

.main-record img,
.sub-record img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.main-record img {
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.sub-record img {
  object-fit: cover;
  object-position: center top;
}

.main-record figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.sub-record {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(44%, 260px);
  transform: rotate(2deg);
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-strip span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.bridge-flow,
.big-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bridge-flow div,
.big-flow span {
  padding: 16px 22px;
  color: #151006;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  font-size: 18px;
  font-weight: 1000;
}

.bridge-flow span,
.big-flow i {
  color: var(--gold);
  font-size: 28px;
  font-style: normal;
  font-weight: 1000;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.keyword-grid article {
  padding: 24px;
  text-align: center;
}

.keyword-grid b {
  display: block;
  color: var(--gold);
  font-size: 26px;
}

.keyword-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.center-line {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 1000;
  text-align: center;
}

.routine .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.routine {
  padding-bottom: clamp(48px, 5vw, 76px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step-grid article {
  min-height: 290px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 1000;
}

.step-grid b {
  display: block;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 21px;
}

.step-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.68;
}

.compact-step p {
  word-break: keep-all;
}

.big-flow {
  margin-top: 36px;
}

.personal,
.coach,
.final-cta,
.apply {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.personal {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(22px, 3.5vw, 42px);
  background:
    linear-gradient(90deg, rgba(247, 242, 231, 0.72), rgba(255, 255, 255, 0.94) 48%, rgba(247, 242, 231, 0.68)),
    var(--white);
}

.personal-image,
.personal-copy {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.personal-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.personal-image img {
  width: 100%;
  flex: 1;
  min-height: 0;
  max-height: 460px;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 18px;
}

.personal-image p {
  margin: 14px 4px 2px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
}

.personal-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.personal-copy h2 {
  font-size: clamp(34px, 3.6vw, 54px);
}

.personal-copy > p {
  margin-top: 18px;
}

.session-card {
  flex: 1;
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.session-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.session-card ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-card li {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.session-card b {
  color: var(--gold);
  word-break: keep-all;
}

.session-card span,
.session-note {
  color: var(--gray);
  font-weight: 780;
  line-height: 1.6;
}

.session-note {
  margin: 18px 0 0;
  padding: 14px;
  background: var(--ivory);
  border-radius: 10px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.check-grid p {
  margin: 0;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.06);
}

.check-grid p::before {
  content: "✓ ";
  color: var(--gold);
}

.not-for {
  max-width: 920px;
  margin: 24px auto 0;
  color: var(--gray);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.coach img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.coach h3 {
  margin: 30px 0 4px;
  color: var(--gold);
  font-size: 38px;
}

.position {
  margin: 0 0 20px;
  color: var(--gray);
  font-size: 19px;
  font-weight: 900;
}

.coach ul,
.offer-value ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach li,
.offer-value li {
  font-weight: 900;
}

.coach li::before,
.offer-value li::before {
  content: "✓ ";
  color: var(--gold);
}

blockquote {
  margin: 28px 0 0;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  font-size: 21px;
  font-weight: 1000;
  line-height: 1.55;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(240, 209, 122, 0.32);
}

.offer .section-heading {
  margin-bottom: 30px;
}

.offer .section-heading h2 {
  font-size: clamp(34px, 4.7vw, 64px);
}

.offer .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}

.session {
  color: var(--gray);
  font-size: 18px;
  font-weight: 1000;
}

.price {
  display: block;
  margin: 12px 0 0;
  color: var(--gold);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
}

.offer-value {
  display: grid;
  gap: 20px;
  padding-left: clamp(0px, 2vw, 22px);
  border-left: 1px solid rgba(16, 24, 40, 0.1);
}

.offer-value p {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.65;
}

.offer-value ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.offer-card .primary-cta {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(100%, 420px);
  margin-top: 2px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 1000;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.7;
}

.final-cta {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 1000;
  line-height: 1.35;
}

.final-cta p strong {
  color: var(--gold-light);
}

.final-cta span,
.final-cta small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.final-cta img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.apply {
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1fr);
  gap: clamp(28px, 4vw, 52px);
}

.apply-copy {
  position: sticky;
  top: 104px;
}

.apply-copy h2 {
  font-size: clamp(38px, 4.6vw, 68px);
}

.apply-guide {
  margin-top: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.06);
}

.apply-guide strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  font-weight: 1000;
}

.apply-guide ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.apply-guide li {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.55;
}

.apply-guide li::before {
  content: "✓ ";
  color: var(--gold);
}

.exam-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  max-width: 900px;
  margin-left: auto;
}

.exam-form label,
.exam-form legend {
  color: var(--ink);
  font-size: 15px;
  font-weight: 1000;
}

.exam-form input,
.exam-form select,
.exam-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9dfe8;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
}

.exam-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid #d9dfe8;
  border-radius: 12px;
}

fieldset label,
.consent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

fieldset input,
.consent input {
  width: auto;
  margin: 0;
}

.submit {
  width: 100%;
  margin-top: 4px;
}

.submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.6;
  text-align: center;
}

.form-message.is-success {
  color: #0f7a52;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(5, 8, 13, 0.35);
}

.sticky-cta.single {
  background: var(--gold-light);
}

.sticky-cta span,
.sticky-cta b {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 1000;
}

.sticky-cta span {
  background: var(--navy-3);
}

.sticky-cta b {
  color: #171005;
  background: var(--gold-light);
}

.sticky-cta.single b {
  min-width: 210px;
  text-align: center;
}

footer {
  padding: 30px clamp(20px, 6vw, 86px) 94px;
  color: rgba(255, 255, 255, 0.62);
  background: #03060a;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .story,
  .problem-layout,
  .personal,
  .coach,
  .final-cta,
  .apply {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    align-self: auto;
  }

  .personal-image img {
    min-height: 0;
    max-height: 360px;
  }

  .apply-copy {
    position: static;
  }

  .exam-form {
    max-width: none;
    margin-left: 0;
  }

  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-value {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 24, 40, 0.1);
    padding-top: 20px;
  }

  .offer-value ul {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bridge-flow,
  .big-flow {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .bridge-flow div,
  .big-flow span {
    width: 100%;
    text-align: center;
  }

  .bridge-flow span,
  .big-flow i {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .brand b {
    font-size: 14px;
    line-height: 1.2;
  }

  .brand small {
    display: none;
  }

  .section-dark,
  .section-light,
  .section-ivory {
    padding: 52px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.2vw, 52px);
  }

  .hero-sub {
    font-size: 17px;
  }

  .primary-cta {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
  }

  .hero-visual img,
  .final-cta img,
  .coach img {
    max-height: 430px;
  }

  .section-heading {
    text-align: left;
  }

  .problem-cards,
  .step-grid,
  .keyword-grid,
  .check-grid,
  .exam-form {
    grid-template-columns: 1fr;
  }

  .exam-form {
    gap: 14px;
    padding: 18px;
  }

  .exam-form label,
  .exam-form legend {
    font-size: 14px;
    line-height: 1.35;
  }

  .exam-form input,
  .exam-form select,
  .exam-form textarea {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 15px;
    line-height: 1.45;
  }

  .exam-form textarea {
    min-height: 148px;
  }

  fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 14px 14px;
  }

  fieldset label {
    align-items: center;
    gap: 7px;
    font-size: 14px;
    line-height: 1.25;
  }

  fieldset input,
  .consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .consent {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.45;
  }

  .form-message {
    font-size: 13px;
  }

  .problem-cards article,
  .step-grid article {
    min-height: auto;
  }

  .compact-step p {
    white-space: nowrap;
    font-size: clamp(12px, 3.05vw, 14px);
    line-height: 1.45;
  }

  .big-flow {
    max-width: 220px;
    gap: 10px;
    margin-top: 28px;
  }

  .big-flow span {
    padding: 13px 16px;
    font-size: 16px;
  }

  .big-flow i {
    font-size: 22px;
    line-height: 1;
  }

  .story-images {
    min-height: auto;
  }

  .main-record {
    width: 70%;
  }

  .sub-record {
    width: 40%;
    bottom: 2%;
  }

  .session-card li {
    grid-template-columns: 1fr;
  }

  .personal-image,
  .personal-copy {
    border-radius: 18px;
  }

  .personal-image {
    padding: 12px;
  }

  .personal-image img {
    min-height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
  }

  .sticky-cta span,
  .sticky-cta b {
    display: grid;
    place-items: center;
    min-height: 54px;
    padding: 12px 8px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .sticky-cta.single b {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }
}

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