:root {
  /* The certification line keeps the brand's purple in a quieter, warmer palette. */
  --primary: #583747;
  --primary-deep: #3f2935;
  --primary-soft: #ece3e6;
  --secondary: #b29a72;
  --secondary-deep: #756040;
  --secondary-soft: #eee4d3;
  --ink: #282322;
  --body: #605953;
  --muted: #f5f0e9;
  --surface: #fbf8f3;
  --white: #fffdfa;
  --line: #e4dbd2;
  --dark: #30242b;
  --shadow: 0 22px 56px rgba(48, 36, 43, 0.10);
  --surface-wash: linear-gradient(140deg, #f8f4ee, #efe6db);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 > span {
  display: block;
}

h1 em {
  color: var(--primary);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--secondary);
}

.eyebrow--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  color: var(--white);
  background: var(--primary-deep);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(48, 36, 43, 0.12);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(48, 36, 43, 0.16);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--secondary-deep);
  outline-offset: 4px;
}

.button--small {
  min-height: 44px;
  padding: 11px 20px !important;
  color: var(--white) !important;
}

.button--light {
  width: 100%;
  color: var(--primary);
  background: var(--white);
  box-shadow: none;
}

.button--secondary {
  gap: 10px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: var(--ink);
  background: var(--muted);
  box-shadow: 0 10px 22px rgba(48, 36, 43, 0.06);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--primary-deep);
  background: var(--secondary-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255, 253, 250, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: padding 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(48, 36, 43, 0.05);
}

.nav-wrap,
.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
}

.brand {
  color: var(--ink);
  line-height: 1.15;
}

.brand img {
  width: 223px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  gap: 30px;
}

.main-nav > a:not(.button) {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav > a:not(.button):hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 88px;
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--muted);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  padding-top: 30px;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 16px;
  color: var(--primary);
  background: rgba(255, 253, 250, 0.85);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(8px);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: var(--body);
  font-size: 1.12rem;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 58px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.text-link span {
  color: var(--secondary-deep);
  font-size: 1.2rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  padding-right: 24px;
}

.hero__facts div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero__facts dt {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  min-height: 650px;
}

.hero__portrait {
  position: absolute;
  inset: 34px 0 0;
  z-index: 2;
  display: flex;
  overflow: hidden;
  background: var(--primary-soft);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
}

.hero__orb--one {
  top: 8px;
  right: -24px;
  width: 136px;
  height: 136px;
  background: var(--secondary);
  filter: blur(34px);
  opacity: 0.18;
}

.hero__orb--two {
  bottom: 42px;
  left: -30px;
  width: 94px;
  height: 94px;
  background: var(--primary-soft);
  filter: blur(28px);
  opacity: 0.4;
}

.hero__badge,
.hero__capacity {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 14px 36px rgba(48, 36, 43, 0.12);
  backdrop-filter: blur(8px);
}

.hero__badge {
  bottom: 8px;
  left: -30px;
  min-width: 235px;
  padding: 20px 24px;
  border-radius: 16px;
  transform: rotate(3deg);
}

.hero__badge span,
.hero__capacity span {
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__badge strong {
  margin: 3px 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.hero__badge small {
  font-size: 0.75rem;
}

.hero__capacity {
  top: 92px;
  right: 12px;
  padding: 16px 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 8px 14px 14px 8px;
}

.hero__capacity strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.metrics {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--primary-deep);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(48, 36, 43, 0.14);
}

.metrics__grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  padding: 28px 34px;
}

.metrics__grid div + div {
  border-left: 1px solid rgba(178, 154, 114, 0.3);
}

.metrics strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.metrics span {
  max-width: 100px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 70px;
}

.section-heading p:last-child {
  max-width: 650px;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center p:last-child {
  margin-inline: auto;
}

.intro__copy {
  padding-top: 42px;
}

.lead-copy {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.65;
}

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

.pillar {
  position: relative;
  min-height: 330px;
  padding: 36px 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.pillar--featured {
  background: var(--primary);
  border-color: var(--primary);
}

.pillar--featured h3,
.pillar--featured p,
.pillar--featured .pillar__number,
.pillar--featured .pillar__icon {
  color: var(--white);
}

.pillar__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pillar__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 38px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  place-items: center;
  font-size: 2rem;
}

.pillar--featured .pillar__icon {
  background: rgba(255, 255, 255, 0.14);
}

.pillar h3 {
  margin-bottom: 18px;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.keys {
  background: var(--muted);
}

.keys__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.keys__grid li {
  grid-column: span 3;
  min-height: 165px;
  padding: 30px;
  background: var(--white);
}

.keys__grid li:nth-child(n + 5) {
  grid-column: span 4;
}

.keys__grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--secondary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.keys__grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.syllabus {
  overflow: hidden;
}

.syllabus__heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.syllabus__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.syllabus__heading h2 {
  grid-column: 1;
  max-width: 820px;
}

.syllabus__heading > p:last-child {
  grid-column: 2;
  max-width: 390px;
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.day-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(48, 36, 43, 0.05);
}

.day-card header {
  min-height: 178px;
  padding: 32px;
  color: var(--white);
  background: var(--primary);
}

.day-card--accent header {
  background: var(--secondary-deep);
}

.day-card header span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-card header h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
}

.day-card time {
  font-size: 0.8rem;
  font-weight: 600;
}

.module-list {
  margin: 0;
  padding: 12px 32px 22px;
  list-style: none;
}

.module-list > li + li {
  border-top: 1px solid var(--line);
}

.module summary {
  display: grid;
  grid-template-columns: 82px 1fr 28px;
  gap: 15px;
  align-items: start;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.module summary::-webkit-details-marker {
  display: none;
}

.module summary::after {
  display: grid;
  width: 26px;
  height: 26px;
  content: "+";
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  place-items: center;
  background: var(--primary-soft);
  border-radius: 50%;
}

.module[open] summary::after {
  content: "−";
}

.module__time {
  padding-top: 3px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.day-card--accent .module__time,
.day-card--accent .module__title small {
  color: var(--secondary-deep);
}

.day-card--accent .module summary::after {
  color: var(--secondary-deep);
  background: var(--secondary-soft);
}

.module__title small {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module__title strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.4;
}

.module__content {
  padding: 0 0 26px 97px;
}

.module__content > p:first-child {
  margin: 0 0 14px;
  font-size: 0.83rem;
  line-height: 1.6;
}

.module__topics {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.5;
}

.module__topics li::marker {
  color: var(--primary);
}

.module__competency {
  margin: 20px 0 0;
  padding: 15px 16px;
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.55;
  background: var(--primary-soft);
  border-radius: 10px;
}

.module__competency strong {
  color: var(--ink);
}

.module__safety {
  margin-top: 20px;
  padding: 15px 16px;
  color: var(--body);
  font-size: 0.78rem;
  line-height: 1.55;
  background: var(--secondary-soft);
  border-left: 3px solid var(--secondary);
  border-radius: 0 10px 10px 0;
}

.schedule-break {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  color: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-break span {
  color: var(--primary);
  font-weight: 700;
}

.schedule-break strong {
  font-size: inherit;
}

.module-item--closing .module__title small {
  color: var(--body);
}

.syllabus__note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.82rem;
}

.speaker {
  position: relative;
  overflow: hidden;
  color: rgba(255, 253, 250, 0.82);
  background: var(--dark);
}

.speaker__shape {
  position: absolute;
  top: -140px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 95px solid rgba(178, 154, 114, 0.08);
  border-radius: 50%;
}

.speaker__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 95px;
  align-items: center;
}

.speaker__photo {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 650px;
}

.speaker__photo::before {
  position: absolute;
  inset: 10% 0 0;
  z-index: -1;
  content: "";
  background: linear-gradient(160deg, #765965, var(--primary));
  border-radius: 52% 48% 15% 15% / 42% 44% 10% 10%;
}

.speaker__photo > img:first-child {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 120%;
  max-width: none;
  transform: translateX(-50%);
}

.speaker__content {
  position: relative;
  z-index: 1;
}

.speaker__content h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.speaker__role {
  margin-bottom: 28px;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker__credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.speaker__credentials li {
  position: relative;
  padding-left: 22px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.speaker__credentials li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--secondary);
  border-radius: 50%;
}

.digital-classroom {
  background: var(--white);
}

.digital-classroom__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.digital-classroom__intro > div:last-child > p {
  max-width: 480px;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.7;
}

.access-badge {
  display: inline-flex;
  padding: 9px 14px;
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--primary-soft);
  border-radius: 999px;
}

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

.resource-card {
  min-height: 340px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.resource-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card:nth-child(even) > span {
  color: var(--secondary-deep);
}

.resource-card h3 {
  margin-bottom: 22px;
  font-size: 1.22rem;
}

.resource-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.resource-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--secondary);
  border-radius: 50%;
}

.digital-classroom__note {
  margin: 24px 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.enrollment {
  background: var(--surface-wash);
}

.enrollment__grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 90px;
  align-items: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin-top: 44px;
}

.details-grid div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.details-grid span,
.details-grid strong,
.details-grid small {
  display: block;
}

.details-grid span {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.details-grid strong {
  color: var(--ink);
  line-height: 1.5;
}

.details-grid small {
  margin-top: 3px;
}

.notice {
  margin-top: 42px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: 0 12px 12px 0;
}

.notice strong {
  color: var(--ink);
}

.notice p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.price-card {
  padding: 50px 44px;
  color: rgba(255, 253, 250, 0.85);
  background: var(--primary-deep);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.price-card > p {
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 26px;
  color: var(--white);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.15;
}

.price > span {
  font-size: 2rem;
}

.price small {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.price-card ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(178, 154, 114, 0.35);
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(178, 154, 114, 0.35);
  font-size: 0.84rem;
}

.price-card li strong {
  color: var(--white);
  white-space: nowrap;
}

.price-card li:first-child strong {
  opacity: 0.72;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price-card > small {
  display: block;
  margin-top: 18px;
  font-size: 0.72rem;
  text-align: center;
}

.payment-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 1.05fr;
  gap: 28px;
  margin-top: 0;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(48, 36, 43, 0.06);
}

.payment {
  padding-top: 30px;
  background: var(--surface-wash);
}

.payment-panel__heading {
  padding-right: 14px;
}

.payment-panel__heading .eyebrow {
  margin-bottom: 18px;
  font-size: 0.66rem;
}

.payment-panel__heading h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.payment-panel__heading > p:last-child {
  margin: 0;
  font-size: 0.86rem;
}

.payment-panel__heading > p strong {
  color: var(--ink);
}

.bank-details {
  padding: 26px;
  background: var(--primary-soft);
  border-radius: 16px;
}

.bank-details__label {
  display: block;
  margin-bottom: 20px;
  color: var(--primary-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bank-details dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.bank-details dl > div {
  display: grid;
  gap: 3px;
}

.bank-details dt {
  color: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.bank-details__clabe dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bank-details__clabe dd > span {
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.035em;
}

.bank-details__clabe button {
  padding: 6px 10px;
  color: var(--primary-deep);
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.bank-details > small {
  display: block;
  margin-top: 20px;
  font-size: 0.68rem;
  line-height: 1.5;
}

.payment-steps {
  display: flex;
  flex-direction: column;
}

.payment-steps ol {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.payment-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
}

.payment-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--secondary-deep);
  border-radius: 50%;
  place-items: center;
}

.payment-steps li p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.payment-steps li a {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-steps__button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.payment-steps > small {
  display: block;
  margin-top: 12px;
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.registration {
  position: relative;
  overflow: hidden;
}

.registration__blob {
  position: absolute;
  top: 80px;
  left: -250px;
  z-index: -1;
  width: 560px;
  height: 560px;
  background: var(--primary-soft);
  border-radius: 46% 54% 56% 44% / 42% 40% 60% 58%;
}

.registration__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.registration__copy {
  position: sticky;
  top: 130px;
}

.registration__copy > p:not(.eyebrow) {
  font-size: 1.05rem;
}

.registration__copy ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.registration__copy li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.registration__copy li span {
  color: var(--secondary-deep);
}

.registration-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 45px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #9b8778;
  border-radius: 9px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(88, 55, 71, 0.13);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--body);
  font-size: 0.76rem;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.registration-form .button {
  width: 100%;
}

.registration-form .button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.84rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #2d6950;
  background: #e9f7f0;
}

.form-status a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.is-error {
  color: #8c3540;
  background: #faecee;
}

.faq {
  padding-top: 40px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 50px 24px 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  content: "+";
  place-items: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 52px 24px 0;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 82px 0 28px;
  color: var(--body);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer__main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.footer__brand img {
  width: min(290px, 100%);
  height: auto;
}

.footer__brand p {
  max-width: 350px;
  margin: 28px 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer__links {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  gap: 38px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__column h3 {
  margin-bottom: 16px;
  color: var(--body);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  opacity: 1;
}

.footer__column a {
  padding: 4px 0;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.5;
  transition: color 150ms ease;
}

.footer__column a:hover,
.footer__contact a:hover,
.footer__legal a:hover {
  color: var(--primary);
}

.footer__contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 52px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer__contact a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: color 150ms ease;
}

.footer__contact a:first-child {
  max-width: 650px;
}

.footer__contact svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.76rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer__legal a {
  color: var(--body);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__social a {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--ink);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 150ms ease, border-color 150ms ease;
}

.footer__social a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.footer__social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer__social a:first-child svg,
.footer__social a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer__social .footer__icon-fill {
  fill: currentColor;
  stroke: none;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 38px;
  }

  .hero__visual {
    min-height: 590px;
  }

  .hero__portrait {
    inset: 34px 0 0;
  }

  .hero__capacity {
    right: 8px;
  }

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

  .pillar {
    min-height: 280px;
  }

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

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

  .payment-panel__heading {
    grid-column: 1 / -1;
    max-width: 660px;
  }

  .enrollment__grid,
  .registration__grid,
  .speaker__grid {
    gap: 55px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 86px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 88px 20px auto;
    display: none;
    align-items: stretch;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .main-nav a {
    padding: 7px 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero__wash {
    inset: 0;
    border-radius: 0;
  }

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

  .hero__content {
    position: relative;
    z-index: 6;
    text-align: center;
  }

  .hero__content .eyebrow,
  .hero__actions {
    justify-content: center;
  }

  .hero__lead,
  .hero__facts,
  h1 {
    margin-inline: auto;
  }

  .hero__visual {
    width: min(530px, 100%);
    min-height: 590px;
    margin: 20px auto 0;
  }

  .hero__portrait {
    inset: 34px 0 0;
  }

  .hero__badge {
    left: -20px;
  }

  .hero__capacity {
    right: -5px;
  }

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

  .metrics__grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(178, 154, 114, 0.3);
  }

  .metrics__grid div:nth-child(4) {
    border-top: 1px solid rgba(178, 154, 114, 0.3);
  }

  .intro__grid,
  .speaker__grid,
  .enrollment__grid,
  .registration__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 12px;
  }

  .intro__copy {
    padding-top: 0;
  }

  .digital-classroom__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .digital-classroom__intro > div:last-child > p {
    max-width: 680px;
  }

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

  .keys__grid li,
  .keys__grid li:nth-child(n + 5) {
    grid-column: auto;
  }

  .keys__grid li:last-child {
    grid-column: 1 / -1;
  }

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

  .module__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }

  .speaker__grid {
    gap: 75px;
  }

  .speaker__photo {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .speaker__content {
    padding-bottom: 20px;
  }

  .price-card {
    width: min(550px, 100%);
    margin-inline: auto;
  }

  .registration__copy {
    position: static;
  }

  .faq__grid {
    gap: 32px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__brand img,
  .footer__brand p {
    margin-inline: auto;
  }

  .footer__links {
    width: min(700px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 66px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.25rem);
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 176px;
    height: auto;
  }

  .main-nav {
    inset: 72px 12px auto;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero__content .eyebrow {
    font-size: 0.72rem;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .hero__facts div,
  .hero__facts div + div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    border: 0;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__portrait {
    inset: 35px -18px 0;
  }

  .hero__portrait img {
    width: 100%;
  }

  .hero__badge {
    bottom: -8px;
    left: -4px;
    min-width: 190px;
    padding: 15px 17px;
  }

  .hero__capacity {
    top: 15px;
    right: -4px;
    padding: 12px 14px;
  }

  .metrics {
    margin-top: 0;
    padding-top: 20px;
  }

  .metrics__grid div {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 125px;
    padding: 20px 10px;
    text-align: center;
  }

  .metrics span {
    max-width: 120px;
  }

  .pillars,
  .keys__grid,
  .digital-classroom__grid,
  .speaker__credentials,
  .details-grid,
  .registration-form {
    grid-template-columns: 1fr;
  }

  .pillar {
    min-height: auto;
  }

  .resource-card {
    min-height: auto;
  }

  .payment-panel {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .payment-panel__heading {
    grid-column: auto;
    padding-right: 0;
  }

  .keys__grid li {
    min-height: auto;
  }

  .syllabus__heading {
    display: block;
    margin-bottom: 38px;
  }

  .syllabus__heading .eyebrow {
    margin-bottom: 20px;
  }

  .syllabus__heading > p:last-child {
    margin-top: 18px;
  }

  .day-card header,
  .module-list {
    padding-right: 22px;
    padding-left: 22px;
  }

  .module summary {
    grid-template-columns: 1fr 28px;
    gap: 6px 12px;
  }

  .module__time {
    grid-column: 1;
    grid-row: 1;
  }

  .module__title {
    grid-column: 1;
    grid-row: 2;
  }

  .module summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .module__content {
    padding-left: 0;
  }

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

  .speaker__photo {
    min-height: 490px;
  }

  .speaker__photo > img:first-child {
    bottom: 0;
  }

  .price-card {
    padding: 38px 26px;
  }

  .price {
    font-size: 3.75rem;
  }

  .registration-form {
    padding: 28px 20px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer__links {
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
    gap: 16px;
  }

  .footer__column h3,
  .footer__column a {
    font-size: 0.72rem;
  }

  .footer__contact {
    flex-direction: column;
    gap: 16px;
  }

  .footer__legal {
    justify-content: center;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 -8px 24px rgba(48, 36, 43, 0.12);
    font-weight: 700;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
