@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.form-captcha {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.course-register-form .form-captcha { grid-column: 1 / -1; }
@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-heavy.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Leon Product";
  src: url("assets/fonts/leon-product-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Leon Product";
  src: url("assets/fonts/leon-product-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #1d3794;
  --blue-deep: #142d79;
  --blue-ink: #102b73;
  --cyan: #45d4d0;
  --cyan-soft: #e9f7f8;
  --coral: #ff553f;
  --yellow: #ffd51e;
  --white: #fff;
  --paper: #fbfbfa;
  --ink: #17377f;
  --muted: #65749a;
  --shadow: 0 18px 45px rgba(19, 46, 116, .12);
  --radius: 28px;
  --page: min(1220px, calc(100vw - 64px));
  --section-space: clamp(120px, 11vw, 180px);
  --section-space-large: clamp(160px, 14vw, 230px);
  --content-gap: clamp(48px, 7vw, 100px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Leon Product", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  color: var(--blue-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.section-pad {
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--section-space);
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
}
h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(2.5rem, 5.6vw, 5.3rem);
  letter-spacing: .006em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: .95rem;
  font-weight: 700;
}
.text-link span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.text-link:hover span { transform: translateX(-5px) rotate(-7deg); background: transparent; color: var(--coral); }
.text-link.light:hover span { color: var(--yellow); }
.text-link.light { color: #fff; }
.coral-link { color: var(--coral); }

/* Header */
.site-header {
  position: fixed;
  inset: 8px 8px auto;
  z-index: 100;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 4.48vw, 86px);
  padding-inline: clamp(26px, 2.66vw, 51px);
  color: #fff;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  inset: 0 0 auto;
  height: 72px;
  background: rgba(20, 49, 127, .96);
  box-shadow: 0 8px 30px rgba(8, 29, 85, .18);
  backdrop-filter: blur(18px);
}
.brand { direction: ltr; display: inline-flex; align-items: center; }
.brand img { display: block; width: clamp(100px, 7.19vw, 138px); height: auto; }
.site-nav { display: flex; direction: rtl; gap: clamp(34px, 5vw, 96px); }
.site-nav a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: clamp(.83rem, 1.04vw, 1.11rem);
  font-weight: 600;
}
.site-nav a span { display: block; justify-self: center; line-height: 1.15; }
.site-nav a::after {
  content: none;
}
.mini-wave {
  width: clamp(62px, 4.4vw, 84px);
  height: 10px;
  object-fit: fill;
  display: block;
  opacity: .95;
  transition: transform .25s ease, opacity .25s ease;
}
.site-nav a:hover .mini-wave,
.site-nav a.active .mini-wave { opacity: 1; transform: translateY(-1px) scaleX(1.06); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  width: calc(100% - 16px);
  height: clamp(650px, 47.71vw, 916px);
  min-height: 650px;
  margin: 8px auto 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 23px;
}
.hero-word {
  position: absolute;
  z-index: 1;
  top: 18.23%;
  right: auto;
  left: 50%;
  width: 100%;
  direction: ltr;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: min(19.6vw, 376px);
  font-weight: 900;
  line-height: .735;
  letter-spacing: -.045em;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  user-select: none;
}
.hero-word span { display: block; color: rgba(77, 112, 202, .32); }
.hero-word span:nth-child(2) { color: rgba(77, 112, 202, .22); }
.hero-word span:nth-child(3) { color: rgba(77, 112, 202, .14); }
.hero-copy {
  position: absolute;
  z-index: 4;
  top: 38.65%;
  right: 13.96%;
  width: min(616px, 43vw);
}
.hero .eyebrow {
  margin: 0 0 -7px;
  color: var(--cyan);
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .012em;
}
.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(4.25rem, 5vw, 6rem);
  line-height: .94;
  letter-spacing: .018em;
}
.hero-intro { max-width: 616px; margin-bottom: 18px; color: #fff; font-size: clamp(1rem, 1.05vw, 1.25rem); line-height: 1.35; }
.hero-copy .text-link { margin-top: 4px; font-size: clamp(.95rem, 1.05vw, 1.25rem); font-weight: 400; }
.hero-copy .text-link span { width: 39px; }
.hero-wave {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  width: 100%;
  height: 28.7%;
  pointer-events: none;
}
.hero-wave path { fill: var(--paper); }
.hero-boat {
  --boat-x: 0px;
  --boat-y: 0px;
  --boat-r: 0deg;
  position: absolute;
  z-index: 5;
  bottom: 38px;
  left: clamp(75px, 8.5vw, 165px);
  width: clamp(280px, 29vw, 480px);
  transform: translate3d(var(--boat-x), var(--boat-y), 0) rotate(var(--boat-r));
  transform-origin: 50% 80%;
  transition: transform .3s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.hero-boat img { display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 20px rgba(51, 13, 27, .2)); animation: boatFloat 5s ease-in-out infinite; transform-origin: 50% 80%; }
@keyframes boatFloat { 0%,100% { transform: translateY(0) rotate(-.65deg); } 50% { transform: translateY(-10px) rotate(.65deg); } }
.scroll-hint {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: 36px;
  width: 24px;
  height: 42px;
  border: 1px solid rgba(30, 63, 146, .35);
  border-radius: 20px;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--blue);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 60%, 100% { transform: translateY(14px); opacity: 0; } }

/* About */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "art copy";
  align-items: center;
  gap: var(--content-gap);
  min-height: 780px;
  direction: ltr;
}
.about-waves { position: absolute; z-index: -1; top: 105px; left: calc((100vw - var(--page)) / -2); width: min(66vw, 940px); height: 520px; overflow: visible; }
.about-waves path:first-child { fill: var(--cyan-soft); }
.about-waves path:last-child { fill: #fff; }
.about-copy { grid-area: copy; max-width: 570px; direction: rtl; }
.about-copy h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 3.5vw, 3.65rem); line-height: 1.06; }
.about-copy p { color: #3d5185; font-size: .98rem; line-height: 1.55; }
.about-copy blockquote {
  margin: 30px 0 0;
  padding-right: 20px;
  border-right: 4px solid var(--coral);
  color: var(--blue);
  font-size: 1.17rem;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 700;
}
.about-art { position: relative; grid-area: art; min-height: 520px; direction: ltr; }
.about-chest-image { position: absolute; top: 8px; left: 35px; width: min(470px, 42vw); height: auto; filter: drop-shadow(0 28px 30px rgba(13,70,96,.16)); }
.about-chest-red { position: absolute; z-index: 2; top: 278px; left: -18px; width: 235px; height: auto; filter: drop-shadow(0 24px 24px rgba(96,20,35,.18)); transform: rotate(-5deg); }
.floating-dots { position: absolute; top: 170px; right: -80px; width: 150px; height: 150px; background-image: radial-gradient(var(--yellow) 2px, transparent 2px); background-size: 18px 18px; opacity: .55; }

/* Work cards */
.featured { padding-top: var(--section-space-large); padding-bottom: var(--section-space-large); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(56px, 6vw, 84px); }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.4vw, 4.5rem); }
.section-heading.centered { display: block; text-align: center; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(64px, 7vw, 96px) clamp(30px, 4vw, 52px); }
.project-card {
  display: block;
  min-width: 0;
  padding: 0;
  text-align: right;
  background: none;
  border: 0;
  cursor: pointer;
  perspective: 1100px;
}
.project-visual {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background-color: #e8ecf6;
  border-radius: 25px 25px 72px 25px;
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.featured-grid .project-visual { border-radius: 24px; filter: drop-shadow(0 17px 24px rgba(19,46,116,.14)); box-shadow: none; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 650' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1000V568C906 624 815 534 708 572C588 616 493 521 372 570C247 620 126 550 0 586Z'/%3E%3C/svg%3E") center/100% 100% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 650' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1000V568C906 624 815 534 708 572C588 616 493 521 372 570C247 620 126 550 0 586Z'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.featured-grid .project-card:nth-child(even) .project-visual { border-radius: 24px; }
.featured-grid .project-meta { position: relative; }
.featured-grid .project-card-dolphin .project-visual { background: #3dbdaf; }
.featured-grid .project-card-dolphin .project-visual > img { object-position: center 38%; }
.project-visual > img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.01); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-visual > img { transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.055); }
.project-card:nth-child(even) .project-visual { border-radius: 25px 25px 25px 72px; }
.project-card:hover .project-visual { transform: translateY(-8px) scale(1.012) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); box-shadow: 0 28px 60px rgba(19, 46, 116, .18); }
.project-card-dolphin { position: relative; }
.project-dolphin { position: absolute; z-index: 3; left: -58px; bottom: 22px; width: 170px; height: auto; pointer-events: none; filter: drop-shadow(0 16px 15px rgba(14,82,102,.16)); transform: rotate(-8deg); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.project-card-dolphin:hover .project-dolphin { transform: translate(-8px,-7px) rotate(-3deg); }
.project-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 20px 8px 0; }
.project-meta strong { color: var(--blue); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: 1.35rem; font-weight: 700; }
.project-meta span { color: var(--muted); font-size: .87rem; }
.featured-grid .project-entry { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); }
.featured-grid .project-entry::before { content: "←"; display: grid; width: 31px; aspect-ratio: 1; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .25s ease, color .25s ease; }
.featured-grid .project-card:hover .project-entry::before { color: var(--coral); transform: translateX(-4px) rotate(-7deg); }

/* Process */
.process { position: relative; z-index: 0; isolation: isolate; width: min(1000px, calc(100vw - 64px)); min-height: 1280px; padding-top: 60px; padding-bottom: 90px; }
.process .section-heading h2 { font-size: clamp(2.7rem, 3.6vw, 3.6rem); line-height: 1.08; letter-spacing: .012em; }
.route-line { position: absolute; z-index: -1; top: 163px; bottom: 262px; right: 50%; width: 2px; overflow: hidden; background: var(--blue); }
.route-line span { display: block; width: 100%; height: var(--route-progress, 0%); background: var(--yellow); transition: height .1s linear; }
.process-list { display: grid; gap: 100px; padding: 65px 0 0; margin: 0; list-style: none; }
.process-step { position: relative; display: grid; grid-template-columns: 1fr 110px 1fr; align-items: start; min-height: 282px; }
.process-step::before { content: ""; position: absolute; z-index: -2; top: 78px; right: 50%; width: calc(50% + (100vw - 100%) / 2); height: 170px; background: var(--cyan-soft); border-radius: 44% 56% 53% 47% / 34% 52% 48% 66%; transform: rotate(1deg); }
.process-step.reverse::before { right: auto; left: 50%; transform: rotate(-1deg); }
.process-step article { position: relative; grid-column: 1; justify-self: start; width: min(330px, 100%); min-height: 282px; padding: 31px 36px 58px; color: #fff; background: var(--blue); border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.process-step.reverse article { grid-column: 3; justify-self: end; }
.step-index { display: block; margin-bottom: -2px; color: var(--yellow); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: 1.22rem; font-weight: 900; line-height: 1; text-align: right; }
.process-step h3 { margin-bottom: 14px; color: var(--yellow); font-size: 1.36rem; line-height: 1.1; text-align: right; }
.process-step:nth-child(2) h3 { color: var(--cyan); }
.process-step:nth-child(3) h3 { color: var(--coral); }
.process-step:nth-child(2) .step-index { color: var(--cyan); }
.process-step:nth-child(3) .step-index { color: var(--coral); }
.process-step article p { margin: 0; color: rgba(255,255,255,.9); font-size: .93rem; line-height: 1.45; }
.step-wave { position: absolute; right: 50%; bottom: 35px; width: 110px; height: 8px; color: var(--yellow); background: radial-gradient(ellipse at center, currentColor 0 28%, transparent 32%) 0 0 / 18px 8px repeat-x; transform: translateX(50%); }
.process-step:nth-child(2) .step-wave { color: var(--cyan); }
.process-step:nth-child(3) .step-wave { color: var(--coral); }
.step-number { grid-column: 2; grid-row: 1; z-index: 3; display: grid; width: 92px; aspect-ratio: 1; justify-self: center; place-items: center; color: var(--yellow); background: var(--blue); border-radius: 50%; font-family: "Leon", Arial, sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.process-step:nth-child(2) .step-number { color: var(--cyan); }
.process-step:nth-child(3) .step-number { color: var(--coral); }
.step-art { grid-column: 3; grid-row: 1; justify-self: center; max-height: 282px; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(23,55,127,.16)); }
.reverse .step-art { grid-column: 1; }
.step-lighthouse { width: 165px; }
.step-binoculars { width: 270px; margin-top: 18px; transform: rotate(-7deg); }
.step-compass { width: 225px; margin-top: 6px; transform: rotate(7deg); }

/* Inspiration */
.inspiration { padding-top: var(--section-space); }
.inspiration-card { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; min-height: 390px; padding: 58px 8vw; overflow: hidden; color: #fff; background: var(--blue); border-radius: var(--radius); }
.inspiration-card h2 { color: #fff; margin-bottom: 16px; font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
.inspiration-card p:not(.section-kicker) { max-width: 530px; color: rgba(255,255,255,.78); }
.beam { position: absolute; z-index: 0; top: -80px; right: -80px; width: 52%; height: 120%; background: linear-gradient(115deg, rgba(255,213,30,.34), transparent 70%); clip-path: polygon(0 42%, 100% 0, 100% 100%); animation: beamMove 5s ease-in-out infinite alternate; }
@keyframes beamMove { to { transform: rotate(4deg); transform-origin: 100% 50%; } }
.inspiration-lighthouse { position: relative; z-index: 2; width: 145px; max-height: 270px; justify-self: center; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(92,59,0,.22)); }

/* Lighthouse initiative */
.lighthouse-page { background: #fff; }
.lighthouse-hero { position: relative; min-height: clamp(610px, 48vw, 760px); overflow: hidden; color: #fff; background: var(--blue); }
.lighthouse-hero-copy { position: relative; z-index: 3; width: min(1180px, calc(100% - 48px)); margin-inline: auto; padding-top: clamp(180px, 16vw, 245px); }
.lighthouse-hero-copy h1 { margin: 0 0 14px; color: #fff; font-size: clamp(5rem, 12vw, 10.5rem); line-height: .82; }
.lighthouse-hero-copy > p:not(.section-kicker) { max-width: 600px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: clamp(1.06rem, 1.5vw, 1.28rem); }
.lighthouse-hero-art { position: absolute; z-index: 2; left: clamp(7%, 11vw, 15%); bottom: 8%; width: clamp(145px, 17vw, 255px); filter: drop-shadow(0 30px 32px rgba(7,24,74,.3)); }
.lighthouse-beam { position: absolute; left: 5%; bottom: 25%; width: 58vw; height: 42vw; opacity: .13; background: linear-gradient(100deg, transparent 8%, var(--yellow) 48%, transparent 83%); clip-path: polygon(0 42%, 100% 0, 100% 100%); transform: rotate(-3deg); animation: beam-sweep 8s ease-in-out infinite alternate; }
.lighthouse-hero-wave { position: absolute; z-index: 1; right: 0; bottom: -1px; width: 100%; height: 25%; fill: #fff; }
.lighthouse-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); align-items: start; padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); }
.lighthouse-story-copy { position: sticky; top: 145px; }
.lighthouse-story-copy h2 { font-size: clamp(3.2rem, 5.6vw, 5.8rem); line-height: .92; }
.lighthouse-story-text { max-width: 690px; padding-top: 12px; font-size: clamp(1.04rem, 1.35vw, 1.2rem); line-height: 1.85; }
.lighthouse-story-text p + p { margin-top: 20px; }
.lighthouse-story-text strong { color: var(--blue); font-size: 1.12em; }
.lighthouse-gallery { position: relative; padding-top: 110px; padding-bottom: 130px; background: #fff; }
.lighthouse-gallery::before { content: ""; position: absolute; inset: -45px 0 auto; height: 95px; background: #fff; border-radius: 52% 48% 0 0 / 100% 100% 0 0; }
.lighthouse-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 2.6vw, 38px); margin-top: 62px; perspective: 1200px; }
.lighthouse-piece { position: relative; margin: 0; overflow: hidden; background: #fff; border: 12px solid #fff; border-radius: 26px 26px 74px 26px; box-shadow: 0 24px 60px rgba(23,55,145,.12); transform: rotateX(var(--light-rx, 0deg)) rotateY(var(--light-ry, 0deg)); transition: transform .28s ease, box-shadow .28s ease; }
.lighthouse-piece:nth-child(even) { border-radius: 26px 26px 26px 74px; }
.lighthouse-piece:hover { box-shadow: 0 32px 75px rgba(23,55,145,.19); }
.lighthouse-piece img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: contain; background: #fff; transform: translate(var(--light-x, 0), var(--light-y, 0)) scale(1.015); transition: transform .3s ease; }
.lighthouse-rights { display: flex; max-width: 900px; margin: 72px auto 0; padding: 22px 28px; align-items: center; justify-content: center; gap: 15px 28px; color: var(--blue); background: rgba(255,255,255,.78); border: 1px solid rgba(29,55,148,.12); border-radius: 20px 20px 52px 20px; text-align: center; }
.lighthouse-rights strong { flex: 0 0 auto; }
.lighthouse-rights span { color: var(--muted); }
.lighthouse-join { padding-top: 105px; padding-bottom: 120px; }
.lighthouse-join-card { position: relative; display: grid; grid-template-columns: .6fr 1.4fr; min-height: 390px; align-items: center; padding: 60px 9vw; overflow: hidden; color: #fff; background: var(--blue); border-radius: 34px 34px 100px 34px; }
.lighthouse-join-card::after { content: ""; position: absolute; inset: auto -5% -48% 30%; height: 70%; opacity: .12; background: var(--cyan); border-radius: 50% 50% 0 0; }
.lighthouse-join-card img { position: relative; z-index: 2; width: clamp(110px, 13vw, 185px); justify-self: center; filter: drop-shadow(0 24px 22px rgba(5,25,78,.3)); }
.lighthouse-join-card > div { position: relative; z-index: 2; }
.lighthouse-join-card h2 { color: #fff; font-size: clamp(3rem, 5vw, 5.2rem); }
.lighthouse-join-card p:not(.section-kicker) { color: rgba(255,255,255,.8); }
@keyframes beam-sweep { from { transform: rotate(-5deg) translateY(-1%); } to { transform: rotate(2deg) translateY(2%); } }
.pill-button { display: inline-flex; align-items: center; gap: 24px; margin-top: 18px; padding: 14px 23px; color: var(--blue); background: var(--yellow); border-radius: 99px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.pill-button:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,.13); }

/* Contact */
.contact { position: relative; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr); grid-template-areas: "art copy"; gap: clamp(50px, 7vw, 110px); direction: ltr; width: calc(100% - 20px); max-width: none; min-height: 790px; margin-bottom: 10px; padding: 190px max(6vw, calc((100vw - 1180px) / 2)) 65px; overflow: hidden; color: #fff; background: transparent; border-radius: var(--radius); }
.contact-background { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.contact-back-wave { fill: var(--cyan-soft); }
.contact-blue-wave { fill: var(--blue); }
.contact h2 { margin-bottom: 0; color: #fff; font-size: clamp(4.5rem, 7.6vw, 7.2rem); line-height: .96; letter-spacing: .015em; }
.contact .section-kicker { margin-bottom: 6px; font-size: clamp(1.25rem, 2.1vw, 1.8rem); line-height: 1.2; letter-spacing: .018em; }
.contact-copy { position: relative; z-index: 4; grid-area: copy; grid-column: 2; grid-row: 1; align-self: start; justify-self: end; width: 100%; max-width: 560px; padding-top: 10px; direction: rtl; }
.yellow-text { color: var(--yellow); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 70px; direction: rtl; }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form label { display: grid; gap: 5px; color: rgba(255,255,255,.82); font-size: .9rem; }
.contact-form .wide { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 6px 2px 10px; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.52); border-radius: 0; outline: 0; resize: vertical; transition: border .2s ease; }
.contact-form select { cursor: pointer; }
.contact-form select option { color: var(--blue); background: #fff; }
.contact-form .ltr-field { direction: ltr; text-align: left; unicode-bidi: plaintext; }
.contact-form input:-webkit-autofill, .contact-form input:-webkit-autofill:hover, .contact-form input:-webkit-autofill:focus { -webkit-text-fill-color: #fff; caret-color: #fff; box-shadow: 0 0 0 1000px var(--blue) inset; transition: background-color 9999s ease-out; }
.contact-sink, .form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.contact-form textarea { min-height: 115px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--yellow); border-bottom-width: 2px; }
.submit-button { grid-column: 1 / -1; justify-self: end; display: inline-flex; align-items: center; gap: 14px; padding: 10px 0; color: var(--yellow); background: none; border: 0; cursor: pointer; font-weight: 800; }
.submit-button span { display: grid; width: 34px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.form-status { align-self: center; margin: 0; color: #bdf4ef; font-size: .86rem; }
.contact-art { position: absolute; z-index: 3; left: 0; bottom: 18px; width: 60vw; height: 570px; overflow: visible; direction: ltr; isolation: isolate; pointer-events: none; }
.anchor { position: absolute; z-index: 3; top: 16px; left: clamp(100px, 9vw, 190px); width: clamp(330px, 27vw, 470px); height: 500px; object-fit: contain; filter: drop-shadow(0 25px 22px rgba(107,70,0,.22)); }
.contact-lines { position: absolute; z-index: 1; left: clamp(-95px, -4vw, -55px); bottom: 82px; width: min(900px, 52vw); height: auto; opacity: 1; clip-path: none; -webkit-mask-image: none; mask-image: none; }
.contact-details { position: absolute; z-index: 4; bottom: 55px; left: 44px; display: flex; align-items: center; gap: 6px; direction: ltr; color: #fff; font-size: .95rem; }
.contact-details a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-whatsapp { display: grid; width: 30px; aspect-ratio: 1; margin-right: 2px; place-items: center; color: #fff; background: #25d366; border-radius: 50%; }
.contact-details .contact-whatsapp { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-details .contact-whatsapp:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.contact-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.contact-whatsapp { animation: whatsappBreathe 3.8s ease-in-out infinite; }
@keyframes whatsappBreathe { 0%, 72%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); } 82% { transform: scale(1.06); box-shadow: 0 0 0 7px rgba(37,211,102,.13); } }
.submit-button:disabled { opacity: .58; cursor: wait; }
.submit-button:not(:disabled):hover span { transform: translateX(-4px); }
.submit-button span { transition: transform .25s ease; }
.origami-interactive { --paper-rotate: 0deg; --paper-scale: 1; rotate: var(--paper-rotate); scale: var(--paper-scale); animation: origamiFloat 5.8s ease-in-out var(--paper-delay, 0s) infinite; transition: rotate .35s cubic-bezier(.2,.8,.2,1), scale .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; will-change: translate, rotate, scale; }
.origami-interactive:hover { filter: drop-shadow(0 25px 25px rgba(16,47,120,.2)) saturate(1.04); }
@keyframes origamiFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
.contact-divider { opacity: .72; }

/* Footer */
.footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; width: var(--page); margin-inline: auto; padding: 35px 0 45px; color: var(--muted); font-size: .82rem; }
.footer p { margin: 0; text-align: center; }
.footer-brand img { width: 108px; }
.footer-links { display: flex; justify-content: end; gap: 16px; direction: ltr; }
.footer-links a:hover { color: var(--blue); }

/* Gallery */
.gallery-page { background: #fff; }
.gallery-hero { position: relative; width: calc(100% - 16px); height: clamp(560px, 42.5vw, 720px); min-height: 560px; margin: 8px auto 0; overflow: hidden; color: #fff; background: var(--blue); border-radius: 23px; }
.gallery-word { position: absolute; z-index: 1; top: 3.5%; left: 50%; width: 100%; direction: ltr; color: rgba(81,112,198,.3); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: min(17.4vw, 334px); font-weight: 900; line-height: .72; letter-spacing: -.045em; text-align: center; white-space: nowrap; transform: translateX(-50%); user-select: none; }
.gallery-word span { display: block; color: rgba(77,112,202,.32); }
.gallery-word span:nth-child(2) { color: rgba(81,112,198,.21); }
.gallery-word span:nth-child(3) { color: rgba(81,112,198,.12); }
.gallery-hero-copy { position: absolute; z-index: 4; top: 33%; right: 13.8%; width: min(500px, 38vw); text-align: right; }
.gallery-hero h1 { margin: 0; font-size: clamp(4rem, 5.35vw, 6.4rem); line-height: .9; letter-spacing: .018em; }
.gallery-wave { position: absolute; z-index: 3; inset: auto 0 0; width: 100%; height: 25.5%; pointer-events: none; }
.gallery-wave path { fill: #fff; }
.gallery-lookout { position: absolute; z-index: 5; bottom: 1.5%; left: clamp(60px, 7vw, 135px); width: clamp(330px, 34vw, 590px); pointer-events: none; }
.gallery-lookout img { position: relative; display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 24px rgba(4,25,74,.24)); animation: lookoutFloat 5.5s ease-in-out infinite; }
@keyframes lookoutFloat { 50% { transform: translateY(-10px) rotate(.8deg); } }
.gallery-content { padding-top: clamp(95px, 9vw, 145px); }
.gallery-heading { max-width: 730px; margin: 0 auto 42px; text-align: center; }
.gallery-heading h2 { margin-bottom: 13px; font-size: clamp(2.7rem, 4.5vw, 4.9rem); }
.gallery-heading > p:last-child { margin: 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-bottom: 55px; }
.filter-pill { padding: 10px 25px; color: var(--blue); background: #f1f5fa; border: 1px solid transparent; border-radius: 99px; cursor: pointer; transition: .25s ease; }
.filter-pill:hover, .filter-pill.active { color: #fff; background: var(--blue); transform: translateY(-2px); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(56px, 5.5vw, 78px) clamp(22px, 2.5vw, 36px); }
.gallery-card { transition: opacity .45s ease var(--reveal-delay, 0ms), transform .45s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.gallery-card.filtered-out { display: none; }
.gallery-card .project-visual { aspect-ratio: 1.22; border-radius: 22px 22px 62px 22px; }
.gallery-card:nth-child(even) .project-visual { border-radius: 22px 22px 22px 62px; }
.gallery-card .project-meta { display: grid; gap: 4px; padding-top: 17px; }
.gallery-card .project-meta strong { overflow: hidden; font-size: clamp(1.16rem, 1.45vw, 1.45rem); line-height: 1.18; text-overflow: ellipsis; white-space: nowrap; }
.gallery-card .project-meta span { grid-row: 2; }
.project-visual-fallback > img { padding: 18%; object-fit: contain; background: var(--cyan-soft); }
.view-project { position: absolute; z-index: 1; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: #fff; background: rgba(15,42,111,.76); opacity: 0; font-weight: 800; transition: opacity .3s ease; }
.view-project::after { content: "←"; display: grid; width: 44px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.gallery-card:hover .view-project { opacity: 1; }
.gallery-loading, .gallery-error { grid-column: 1 / -1; margin: 20px 0; color: var(--muted); text-align: center; }
.gallery-error { padding: 35px; color: var(--coral); background: #fff2ef; border-radius: 18px; }
.gallery-cta { width: 100%; max-width: none; padding: clamp(70px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2)) clamp(105px, 10vw, 145px); }
.gallery-cta-inner {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 66px clamp(32px, 9vw, 140px) 82px;
  overflow: visible;
  place-content: center;
  justify-items: center;
  color: #fff;
  background: linear-gradient(135deg, #203f9d 0%, var(--blue) 58%, #17337f 100%);
  border-radius: 34px 34px 110px 34px;
  box-shadow: 0 24px 60px rgba(23,55,145,.14);
  text-align: center;
}
.gallery-cta-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -32px 8% auto;
  height: 82px;
  background: var(--cyan-soft);
  border-radius: 48% 52% 45% 55% / 62% 45% 55% 38%;
  transform: rotate(-1deg);
}
.cta-compass {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 90px);
  bottom: 0;
  width: clamp(135px, 14vw, 205px);
  transform: translateY(42%) rotate(-5deg);
  filter: drop-shadow(0 18px 24px rgba(5,25,78,.25));
}
.project-cta { padding-top: clamp(80px, 9vw, 120px); padding-bottom: clamp(105px, 10vw, 145px); }
.project-cta .gallery-cta-inner { max-width: 1240px; margin-inline: auto; }
.project-cta .gallery-cta-inner h2 { max-width: 820px; }
.gallery-cta-inner p { margin-bottom: 5px; color: var(--cyan); font-weight: 800; }
.gallery-cta-inner h2 { color: #fff; font-size: clamp(2.6rem,5vw,5rem); }

/* Project detail */
.project-page { background: #fff; }
.project-detail-hero {
  position: relative;
  width: calc(100% - 16px);
  min-height: clamp(520px, 39vw, 690px);
  margin: 8px auto 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 23px;
}
.project-detail-word {
  position: absolute;
  inset: 10% 0 auto;
  direction: ltr;
  color: rgba(81,112,198,.26);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: min(15vw, 270px);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.035em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.project-detail-word span { display: block; }
.project-detail-word span:nth-child(2) { color: rgba(81,112,198,.17); }
.project-detail-word span:nth-child(3) { color: rgba(81,112,198,.09); }
.project-detail-copy {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 64px));
  margin-inline: auto;
  padding-top: clamp(145px, 12vw, 210px);
  text-align: center;
}
.project-detail-copy .section-kicker { margin-bottom: 12px; color: var(--cyan); font-size: 1rem; }
.project-detail-copy h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .98;
  letter-spacing: .012em;
}
.project-detail-count { color: rgba(255,255,255,.78); }
.project-back-link {
  position: absolute;
  top: 108px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .9rem;
}
.project-back-link span { display: grid; width: 32px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.project-detail-wave { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; height: 22%; }
.project-detail-wave path { fill: #fff; }
.project-story-section {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding-top: clamp(90px, 8vw, 130px);
  padding-bottom: clamp(100px, 10vw, 170px);
}
.project-story-copy { max-width: 520px; }
.project-story-copy h2 { margin-bottom: 30px; font-size: clamp(2.65rem, 4.6vw, 4.9rem); }
.project-story-text { color: #405584; font-size: 1.05rem; line-height: 1.56; }
.project-story-text p { margin: 0 0 .78em; }
.project-story-block + .project-story-block { margin-top: 34px; padding-top: 32px; border-top: 1px solid rgba(29,55,148,.14); }
.project-story-block h3 {
  position: relative;
  margin: 0 0 22px;
  padding-top: 14px;
  color: var(--blue);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}
.project-story-block h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 7px;
  background: url("assets/brand/nav-wave-cyan.svg") center / 100% 100% no-repeat;
}
.project-story-text .story-emphasis { color: var(--blue); font-weight: 700; }
.project-story-section.is-single-project { align-items: start; }
.project-story-section.is-single-project .project-cover-frame { position: sticky; top: 118px; }
.project-cover-frame {
  position: relative;
  margin: 0;
  padding: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
  background: #eef3f9;
  border-radius: 28px 28px 92px 28px;
  box-shadow: 0 26px 70px rgba(17,48,121,.16);
}
.project-cover-frame::after { content: ""; position: absolute; inset: auto 24px 15px auto; width: 90px; height: 7px; background: url("assets/brand/nav-wave-cyan.svg") center / 100% 100% no-repeat; }
.project-cover-frame img { display: block; width: 100%; max-height: 760px; object-fit: contain; border-radius: 18px 18px 70px 18px; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.project-cover-frame:hover img { transform: scale(1.012); }
.project-showcase { padding-top: 0; }
.project-media-grid { columns: 2; column-gap: clamp(22px, 3vw, 38px); }
.project-media-grid.is-single { max-width: 900px; margin-inline: auto; columns: 1; }
.project-media-grid.is-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1180px; margin-inline: auto; column-gap: clamp(22px, 3vw, 38px); }
.project-media-grid.is-pair .project-media-item { display: block; margin-bottom: 0; }
.project-media-grid.is-single .project-media-item { display: block; }
.project-media-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(22px, 3vw, 38px);
  padding: clamp(10px, 1.2vw, 17px);
  overflow: hidden;
  break-inside: avoid;
  background: #edf2f8;
  border-radius: 22px 22px 58px 22px;
  box-shadow: 0 16px 45px rgba(17,48,121,.11);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease;
}
.project-media-item:hover { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(17,48,121,.16); }
.project-media-item:nth-child(even) { border-radius: 22px 22px 22px 58px; }
.project-media-item img, .project-media-item video { display: block; width: 100%; height: auto; max-height: 1000px; object-fit: contain; border-radius: 14px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.project-media-item:hover img { transform: scale(1.012); }
.project-media-crop-mockup-grid {
  position: relative;
  aspect-ratio: 1.32;
  padding: 0;
  overflow: hidden;
  background: var(--blue);
}
.project-media-crop-mockup-grid img {
  position: absolute;
  inset-inline: 0;
  top: -89%;
  width: 100%;
  max-height: none;
  border-radius: 0;
}
.project-media-video { padding: 16px; background: var(--blue-deep); }
.project-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 52px;
  padding-bottom: 86px;
  border-top: 1px solid rgba(29,55,148,.15);
}
.project-nav-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 105px;
  padding: 18px clamp(20px, 3vw, 42px);
  color: var(--blue);
  background: transparent;
  transition: color .25s ease, transform .25s ease;
}
.project-nav-card + .project-nav-card { border-right: 1px solid rgba(29,55,148,.15); }
.project-nav-copy { display: grid; gap: 5px; min-width: 0; }
.project-nav-copy small { color: var(--cyan); font-size: .8rem; font-weight: 700; }
.project-nav-card strong {
  overflow: hidden;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  line-height: 1.13;
  text-overflow: ellipsis;
}
.project-nav-arrow {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.project-nav-next { grid-template-columns: minmax(0, 1fr) auto; text-align: left; }
.project-nav-next .project-nav-copy { grid-column: 1; grid-row: 1; }
.project-nav-next .project-nav-arrow { grid-column: 2; grid-row: 1; }
.project-nav-card:hover { color: #142c7d; transform: translateY(-2px); }
.project-nav-card:hover .project-nav-arrow { color: var(--coral); background: transparent; transform: translateX(-4px) rotate(-6deg); }
.project-error { padding-top: 180px; text-align: center; }
.project-error h1 { color: var(--blue); font-size: clamp(3rem, 6vw, 6rem); }

/* Modal */
.project-modal { width: min(1180px, calc(100vw - 32px)); max-height: min(820px, calc(100vh - 32px)); padding: 0; overflow: hidden auto; color: var(--ink); background: #fff; border: 0; border-radius: 28px; box-shadow: 0 30px 100px rgba(7,26,77,.35); }
.project-modal::backdrop { background: rgba(8,23,67,.74); backdrop-filter: blur(7px); }
.modal-close { position: absolute; z-index: 5; top: 14px; left: 14px; display: grid; width: 42px; aspect-ratio: 1; place-items: center; color: #fff; background: rgba(15,42,111,.78); border: 0; border-radius: 50%; cursor: pointer; font-size: 1.8rem; line-height: 1; }
.modal-layout { display: grid; grid-template-columns: 1.28fr .72fr; min-height: 620px; }
.modal-preview { position: relative; min-height: 520px; overflow: hidden; background: #e9eef7; }
.modal-slide-stage { position: absolute; inset: 0 0 58px; overflow: hidden; }
.modal-slide-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 55px rgba(14,41,108,.08); }
.slide-image { display: block; width: 100%; height: 100%; padding: 22px; object-fit: contain; background: #eef2f8; }
.slide-video { display: block; width: 100%; height: 100%; padding: 22px; object-fit: contain; background: #101f4c; }
.slide-video[hidden], .slide-image[hidden] { display: none; }
.slider-arrow { position: absolute; z-index: 3; top: calc(50% - 29px); display: grid; width: 48px; aspect-ratio: 1; place-items: center; color: var(--blue); background: rgba(255,255,255,.94); border: 0; border-radius: 50%; box-shadow: 0 8px 24px rgba(8,30,86,.2); cursor: pointer; font-size: 1.35rem; transition: transform .25s ease, background .25s ease; }
.slider-arrow:hover { color: var(--coral); background: rgba(255,255,255,.94); transform: translateY(-2px) rotate(-5deg); }
.slider-prev { right: 18px; }
.slider-next { left: 18px; }
.slider-footer { position: absolute; z-index: 3; inset: auto 0 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 58px; padding: 10px 20px; color: #fff; background: var(--blue); }
.slider-footer p { margin: 0; font-size: .88rem; }
.slider-dots { display: flex; gap: 8px; direction: ltr; }
.slider-dots button { width: 9px; height: 9px; padding: 0; background: rgba(255,255,255,.38); border: 0; border-radius: 50%; cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dots button.active { width: 24px; background: var(--yellow); border-radius: 99px; }
.slider-counter { justify-self: end; direction: ltr; font-size: .78rem; opacity: .75; }
.single-slide .slider-arrow, .single-slide .slider-dots { display: none; }
.modal-copy { align-self: center; min-width: 0; padding: 55px 42px; }
.modal-copy h2 { margin-bottom: 13px; font-size: clamp(1.85rem,2.45vw,2.9rem); line-height: 1.14; letter-spacing: .012em; }
.modal-count { margin-bottom: 22px; color: var(--cyan); font-size: .84rem; font-weight: 700; }
.modal-story { max-height: 285px; padding-top: 20px; overflow: auto; color: var(--muted); border-top: 1px solid #dce3ef; font-size: .94rem; line-height: 1.62; white-space: pre-line; scrollbar-color: var(--cyan) #edf1f7; scrollbar-width: thin; }
.modal-story + .text-link { margin-top: 27px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.project-grid .reveal:nth-child(2), .process-list .reveal:nth-child(2) { transition-delay: .1s; }
.project-grid .reveal:nth-child(3), .process-list .reveal:nth-child(3) { transition-delay: .18s; }
.project-grid .reveal:nth-child(4) { transition-delay: .26s; }

@media (max-width: 900px) {
  :root { --page: min(100% - 34px, 720px); --section-space: 92px; --section-space-large: 122px; }
  .site-header { height: 72px; padding-inline: 20px; }
  .brand img { width: 112px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; padding: 10px; place-content: center; gap: 5px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand, .menu-toggle { position: relative; z-index: 2; }
  .menu-open .site-header { inset: 0; height: 100dvh; padding: 20px; align-items: flex-start; background: var(--blue-deep); border-radius: 0 0 30px 30px; backdrop-filter: none; }
  .site-nav { position: absolute; inset: 92px 20px 24px; z-index: 1; display: grid; align-content: start; justify-items: center; gap: 24px; padding-top: 28px; background: transparent; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-nav a { width: min(100%, 320px); padding: 8px 20px; justify-items: center; font-size: 1.32rem; }
  .site-nav a span { justify-self: center; }
  .hero { width: calc(100% - 12px); height: 780px; min-height: 780px; margin-top: 6px; border-radius: 19px; }
  .hero-copy { top: 142px; right: 20px; width: calc(100% - 40px); margin-inline: auto; text-align: center; }
  .hero .eyebrow { margin-bottom: 0; }
  .hero h1 { font-size: clamp(3.8rem,15vw,6.7rem); letter-spacing: .022em; }
  .hero-intro { margin-inline: auto; }
  .hero-word { top: 190px; right: auto; left: 50%; font-size: clamp(8.8rem, 31vw, 14.5rem); line-height: .76; }
  .hero-boat { right: 50%; left: auto; bottom: 46px; width: min(400px, 84vw); transform: translateX(50%); }
  .hero-wave { height: 22%; }
  .scroll-hint { display: none; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about { grid-template-areas: "copy" "art"; }
  .about-copy { order: -1; }
  .about-waves { top: auto; bottom: 0; left: -18px; width: calc(100% + 36px); height: 420px; }
  .about-art { min-height: 430px; }
  .about-chest-image { top: 0; left: 50%; width: min(430px, 78vw); transform: translateX(-50%); }
  .about-chest-red { top: 245px; left: 6%; width: 190px; }
  .project-grid { grid-template-columns: 1fr; gap: 64px; }
  .project-dolphin { left: -12px; bottom: 28px; width: 145px; }
  .section-heading { align-items: start; }
  .process { width: var(--page); min-height: 0; padding-top: 110px; padding-bottom: 110px; }
  .process .section-heading { text-align: center; }
  .process-list { gap: 62px; padding-top: 48px; }
  .route-line { right: 43px; top: 245px; bottom: 160px; }
  .process-step, .process-step.reverse { grid-template-columns: 86px 1fr; gap: 22px; min-height: auto; }
  .process-step::before, .process-step.reverse::before { display: none; }
  .step-number, .process-step.reverse .step-number { grid-column: 1; }
  .process-step article, .process-step.reverse article { grid-column: 2; grid-row: 1; justify-self: stretch; width: 100%; min-height: 282px; }
  .step-art, .reverse .step-art { display: none; }
  .inspiration-card { grid-template-columns: 1fr; gap: 35px; padding: 55px 9vw; text-align: center; }
  .inspiration-card p:not(.section-kicker) { margin-inline: auto; }
  .inspiration-lighthouse { width: 105px; max-height: 190px; }
  .lighthouse-hero { min-height: 680px; }
  .lighthouse-hero-copy { width: calc(100% - 36px); padding-top: 165px; text-align: center; }
  .lighthouse-hero-copy > p:not(.section-kicker) { margin-inline: auto; }
  .lighthouse-hero-art { left: 50%; bottom: 7%; width: 128px; transform: translateX(-50%); }
  .lighthouse-beam { left: -30%; bottom: 7%; width: 160%; height: 50%; }
  .lighthouse-story { grid-template-columns: 1fr; gap: 34px; }
  .lighthouse-story-copy { position: static; }
  .lighthouse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
  .lighthouse-piece { border-width: 8px; border-radius: 20px 20px 52px 20px; }
  .lighthouse-piece:nth-child(even) { border-radius: 20px 20px 20px 52px; }
  .lighthouse-rights { display: grid; margin-top: 48px; padding: 22px 20px; gap: 8px; }
  .lighthouse-join { padding-inline: 18px; }
  .lighthouse-join-card { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px 58px; text-align: center; }
  .lighthouse-join-card img { width: 105px; }
  .contact { grid-template-columns: 1fr; grid-template-areas: "copy" "art"; gap: 28px; min-height: 1100px; padding: 160px 8vw 52px; }
  .contact-copy { grid-column: 1; grid-row: 1; justify-self: stretch; max-width: none; padding-top: 0; }
  .contact h2 { font-size: clamp(4.4rem, 14vw, 6.2rem); }
  .contact-form { margin-top: 48px; }
  .contact-art { display: block; left: 0; bottom: 18px; width: 100%; height: 390px; min-height: 0; }
  .anchor { top: 0; left: 50%; width: min(360px, 78vw); height: 380px; transform: translateX(-50%); }
  .contact-lines { bottom: 55px; left: -8vw; width: 110vw; opacity: .98; }
  .contact-details { bottom: 28px; left: 50%; font-size: .87rem; white-space: nowrap; transform: translateX(-50%); }
  .footer { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .gallery-hero { width: calc(100% - 12px); height: 780px; min-height: 780px; margin-top: 6px; border-radius: 19px; }
  .gallery-hero-copy { top: 142px; right: 20px; width: calc(100% - 40px); text-align: center; }
  .gallery-hero .eyebrow { margin-bottom: 0; }
  .gallery-hero-copy > p:not(.eyebrow) { margin-inline: auto; }
  .gallery-word { top: 190px; font-size: clamp(7.5rem, 25vw, 12rem); line-height: .76; }
  .gallery-lookout { right: 50%; left: auto; bottom: 8px; width: min(390px, 78vw); transform: translateX(50%); }
  .gallery-wave { height: 22%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .project-detail-hero { min-height: 620px; }
  .project-detail-copy { width: calc(100% - 40px); padding-top: 155px; }
  .project-detail-copy h1 { font-size: clamp(3rem, 9vw, 5rem); }
  .project-detail-word { top: 175px; font-size: 21vw; }
  .project-back-link { top: 90px; right: 0; }
  .project-story-section { grid-template-columns: 1fr; gap: 45px; }
  .project-story-copy { max-width: none; }
  .project-cover-frame { grid-row: 1; }
  .project-navigation { grid-template-columns: 1fr; }
  .project-nav-card + .project-nav-card { border-top: 1px solid rgba(29,55,148,.15); border-right: 0; }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-preview { min-height: 390px; }
}


@media (max-width: 620px) {
  body { font-size: 16px; }
  .lighthouse-grid { grid-template-columns: 1fr; }
  h2 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 22px; }
  .hero { height: 740px; min-height: 740px; }
  .hero-copy { top: 118px; }
  .hero-word { top: 150px; right: auto; left: 50%; font-size: 8.8rem; line-height: .78; }
  .hero-boat { bottom: 52px; }
  .hero-wave { height: 20%; }
  .about-art { min-height: 350px; transform: scale(.9); transform-origin: center top; }
  .project-dolphin { left: -5px; width: 118px; }
  .process { padding-top: 82px; padding-bottom: 82px; }
  .process .section-heading h2 { font-size: clamp(2.45rem, 13vw, 3.35rem); }
  .process-step article, .process-step.reverse article { padding: 29px 22px 56px; }
  .process-step article p { font-size: .88rem; }
  .step-number { width: 76px; font-size: 2.35rem; }
  .route-line { right: 37px; top: 205px; bottom: 135px; }
  .contact { width: calc(100% - 12px); min-height: 1160px; padding: 118px 24px 410px; border-radius: 22px; }
  .contact-copy { width: 100%; }
  .contact h2 { font-size: clamp(3rem, 15vw, 4.2rem); line-height: 1; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .wide { grid-column: auto; }
  .contact-form input, .contact-form textarea, .contact-form select { min-width: 0; }
  .contact-art { bottom: 42px; min-height: 300px; height: 320px; }
  .anchor { width: min(270px, 72vw); height: 290px; }
  .contact-lines { bottom: 18px; }
  .contact-details { bottom: 24px; width: calc(100% - 36px); justify-content: center; flex-wrap: wrap; row-gap: 2px; white-space: normal; }
  .gallery-hero { height: 720px; min-height: 720px; }
  .gallery-word { top: 166px; font-size: 7rem; line-height: .78; }
  .gallery-lookout { bottom: 4px; width: min(300px, 76vw); opacity: .96; }
  .gallery-hero-copy { top: 114px; width: calc(100% - 36px); }
  .gallery-hero h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .gallery-hero-copy > p:not(.eyebrow) { max-width: 330px; }
  .gallery-hero-copy .text-link { justify-content: center; }
  .gallery-content { padding-top: 55px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .project-detail-hero { min-height: 560px; }
  .project-detail-copy { padding-top: 145px; }
  .project-detail-copy h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .project-detail-word { top: 170px; font-size: 33vw; }
  .project-detail-wave { height: 16%; }
  .project-story-section { padding-top: 70px; padding-bottom: 95px; }
  .project-story-section.is-single-project .project-cover-frame { position: relative; top: auto; }
  .project-story-copy h2 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .project-story-text { font-size: 1rem; line-height: 1.56; }
  .project-media-grid { columns: 1; }
  .project-media-grid.is-pair { display: grid; grid-template-columns: 1fr; }
  .gallery-cta { padding: 72px 18px 105px; }
  .gallery-cta-inner, .project-cta .gallery-cta-inner { min-height: 300px; padding: 56px 22px 82px; border-radius: 26px 26px 76px 26px; }
  .gallery-cta-inner::before { inset: -24px 8% auto; height: 62px; }
  .gallery-cta .cta-compass, .project-cta .cta-compass { left: 20px; bottom: 0; width: 125px; transform: translateY(48%) rotate(-5deg); }
  .project-cta { padding-top: 72px; padding-bottom: 105px; }
  .project-nav-card { min-height: 96px; padding: 20px 8px; }
  .filters { margin-bottom: 35px; }
  .filter-pill { padding-inline: 18px; }
  .modal-preview { min-height: 300px; }
  .modal-slide-stage { bottom: 54px; }
  .slider-arrow { top: calc(50% - 25px); width: 42px; }
  .slider-prev { right: 10px; }
  .slider-next { left: 10px; }
  .slider-footer { grid-template-columns: 1fr auto; min-height: 54px; padding-inline: 14px; }
  .slider-footer p { display: none; }
  .slider-counter { grid-column: 1; grid-row: 1; justify-self: start; }
  .slider-dots { grid-column: 2; }
  .modal-copy { padding: 38px 26px; }
  .project-modal { max-height: calc(100vh - 20px); }
  .footer-links { display: grid; text-align: center; }
}

/* Courses page — canonical brand composition */
body.courses-page .site-header {
  inset: 8px 8px auto;
  height: clamp(64px, 4.48vw, 86px);
  padding-inline: clamp(26px, 2.66vw, 51px);
  background: transparent;
  box-shadow: none;
}
body.courses-page .site-header.scrolled {
  inset: 0 0 auto;
  height: 72px;
  background: rgba(20,49,127,.96);
  box-shadow: 0 8px 30px rgba(8,29,85,.18);
  backdrop-filter: blur(18px);
}
body.courses-page .site-nav { gap: clamp(34px,5vw,96px); }
body.courses-page .site-nav a[href="courses.html"] {
  min-width: 0;
  padding: 10px 25px;
  color: #111;
  background: rgba(255,255,255,.96);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(7,24,38,.1);
}
body.courses-page .site-nav a[href="courses.html"] .mini-wave { display: none; }

body.courses-page .courses-hero {
  min-height: 760px;
  overflow: hidden;
  border-radius: 0 0 38px 38px;
}
body.courses-page .courses-hero::after {
  display: block;
  z-index: 3;
  right: -3%;
  left: -3%;
  bottom: -126px;
  width: 106%;
  height: 215px;
  background: #fff;
  border-radius: 48% 52% 0 0;
  opacity: 1;
  transform: rotate(-2.5deg);
}
.course-hero-word {
  inset: 72px 0 auto 0;
  width: 100%;
  height: 600px;
  color: rgba(255,255,255,.085);
  pointer-events: none;
}
.course-hero-word span {
  left: 21%;
  width: 58%;
  font-size: clamp(8.2rem,13.5vw,16.5rem);
  text-align: center;
  transform: translateX(-50%);
}
.course-hero-word span:nth-child(1) { top: 0; }
.course-hero-word span:nth-child(2) { top: 200px; }
.course-hero-word span:nth-child(3) { top: 400px; }
body.courses-page .courses-hero-copy {
  right: 0;
  width: 55%;
  padding: 168px 6.3vw 155px 30px;
}
body.courses-page .courses-hero-copy h1 {
  width: 100%;
  max-width: 760px;
  font-size: clamp(3.35rem,4.15vw,5.15rem);
  line-height: .98;
}
body.courses-page .courses-hero-art-wrap {
  left: 2%;
  bottom: 18px;
  width: 49%;
}
body.courses-page .courses-hero-image { max-height: 510px; }
body.courses-page .course-launch {
  right: auto;
  left: 45%;
  bottom: 42px;
  display: flex;
  flex-direction: row-reverse;
  gap: 0;
  align-items: center;
  transform: translateX(-50%);
}
body.courses-page .course-launch strong {
  position: relative;
  z-index: 2;
  flex: 0 0 112px;
  width: 112px;
  min-width: 112px;
  height: 112px;
  padding: 20px;
  line-height: 1.05;
  white-space: normal;
}
body.courses-page .course-launch span {
  margin-left: -14px;
  padding: 13px 28px 13px 34px;
  white-space: nowrap;
}

body.courses-page .course-includes {
  display: block;
  width: var(--page);
}
body.courses-page .course-includes-copy {
  width: min(720px,100%);
  margin: 0 0 66px auto;
  text-align: right;
}
body.courses-page .course-includes-copy h2 { max-width: 680px; }
body.courses-page .course-includes-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(24px,3.5vw,68px);
  border: 0;
}
body.courses-page .course-includes-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 9%;
  left: 9%;
  height: 10px;
  background: url("assets/brand/nav-wave-cyan.svg") center/100% 100% repeat-x;
  opacity: .28;
}
body.courses-page .course-includes-grid article,
body.courses-page .course-includes-grid article:nth-child(n) {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 108px 8px 22px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
body.courses-page .course-includes-grid article::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 50%;
  bottom: auto;
  width: 76px;
  height: 76px;
  background: var(--cyan);
  clip-path: polygon(50% 0,100% 36%,82% 100%,18% 100%,0 36%);
  opacity: 1;
  transform: translateX(50%) rotate(45deg);
}
body.courses-page .course-includes-grid article:nth-child(2)::before { background: var(--coral); }
body.courses-page .course-includes-grid article:nth-child(3)::before { background: var(--yellow); }
body.courses-page .course-includes-grid article:nth-child(4)::before { background: var(--blue); }
body.courses-page .course-includes-grid article::after {
  content: "01";
  position: absolute;
  z-index: 2;
  top: 27px;
  right: 50%;
  left: auto;
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  clip-path: none;
  font-size: .88rem;
  font-weight: 900;
  transform: translateX(50%);
}
body.courses-page .course-includes-grid article:nth-child(2)::after { content: "02"; }
body.courses-page .course-includes-grid article:nth-child(3)::after { content: "03"; color: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(4)::after { content: "04"; }
body.courses-page .course-includes-grid article strong,
body.courses-page .course-includes-grid article:nth-child(4) strong { color: var(--blue); font-size: 1.2rem; }
body.courses-page .course-includes-grid article p,
body.courses-page .course-includes-grid article:nth-child(4) p { color: #566475; }

.register-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 780px;
  overflow: hidden;
  padding: 310px 7vw 74px;
  color: #fff;
  background: #fff;
  border-radius: 32px 32px 100px 32px;
  isolation: isolate;
}
.register-card::before,.register-card::after { display: none; }
.register-wave-background { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.register-back-wave { fill: #dff7f7; }
.register-blue-wave { fill: var(--blue); }
.register-origami-phone {
  z-index: 1;
  top: 18px;
  right: 2.5%;
  bottom: auto;
  left: auto;
  width: min(36%,500px);
  opacity: 1;
}
.register-origami-phone img { mix-blend-mode: multiply; }
.register-copy { grid-column: 2; align-self: end; padding-top: 80px; }
.course-register-form { grid-column: 1; align-self: end; }

.accessibility-toggle {
  display: grid;
  place-items: center;
  padding: 0;
}
.accessibility-toggle svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0;
  transform: none;
}

@media (max-width: 1000px) {
  body.courses-page .courses-hero-copy { width: 62%; }
  body.courses-page .courses-hero-art-wrap { width: 54%; }
  body.courses-page .course-launch { left: 48%; }
  .register-card { grid-template-columns: 1fr 1fr; padding-inline: 5vw; }
}

@media (max-width: 760px) {
  body.courses-page .site-header { inset: 0; height: 72px; padding-inline: 20px; }
  body.courses-page .site-header.menu-open { height: 100dvh; }
  body.courses-page .courses-hero { min-height: 760px; padding-bottom: 0; }
  .course-hero-word { top: 92px; }
  .course-hero-word span { left: 50%; width: 100%; font-size: 29vw; }
  .course-hero-word span:nth-child(2) { top: 155px; }
  .course-hero-word span:nth-child(3) { top: 310px; }
  body.courses-page .courses-hero-copy { position: relative; width: 100%; padding: 122px 22px 25px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.25rem,9.7vw,4rem); }
  body.courses-page .courses-hero-art-wrap { position: absolute; left: -7%; bottom: 60px; width: 108%; padding: 0; }
  body.courses-page .course-launch { right: 20px; left: auto; bottom: 22px; transform: none; }
  body.courses-page .course-launch strong { flex-basis: 86px; width: 86px; min-width: 86px; height: 86px; padding: 14px; }
  body.courses-page .course-launch span { max-width: none; padding: 9px 18px 9px 24px; white-space: nowrap; }
  body.courses-page .course-includes-copy { margin-bottom: 44px; }
  body.courses-page .course-includes-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  body.courses-page .course-includes-grid::before { display: none; }
  body.courses-page .course-includes-grid article,
  body.courses-page .course-includes-grid article:nth-child(n) { min-height: 205px; padding-top: 100px; }
  .register-card { display: block; min-height: 900px; padding: 330px 24px 70px; }
  .register-origami-phone { top: 30px; right: 50%; width: min(82%,430px); transform: translateX(50%); }
  .register-copy { padding-top: 0; }
  .course-register-form { margin-top: 38px; }
}

/* Courses hero — calmer composition aligned with the site's other page openings */
body.courses-page .courses-hero { min-height: 720px; overflow: hidden; border-radius: 0 0 34px 34px; }
body.courses-page .courses-hero::after { right: -2%; left: -2%; bottom: -158px; width: 104%; height: 215px; border-radius: 50% 50% 0 0; transform: none; }
body.courses-page .courses-hero-copy { padding-bottom: 105px; }
body.courses-page .courses-hero-copy .course-launch { position: static; display: flex; width: max-content; margin-top: 34px; transform: none; }
body.courses-page .courses-hero-copy .course-launch strong { width: 82px; height: 82px; font-size: .95rem; box-shadow: 6px 6px 0 var(--yellow); }
body.courses-page .courses-hero-copy .course-launch span { padding: 10px 16px; }
body.courses-page .courses-hero-art-wrap { left: 3%; bottom: 28px; width: 49%; }
body.courses-page .courses-hero-image { width: 100%; max-height: 445px; transform: none; object-position: center bottom; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-art-wrap { left: 1%; width: 53%; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero { padding-bottom: 34px; }
  body.courses-page .courses-hero-copy { padding-bottom: 22px; }
  body.courses-page .courses-hero-copy .course-launch { margin: 28px 0 0 auto; }
  body.courses-page .courses-hero-art-wrap { left: auto; bottom: auto; width: 100%; padding: 0 18px 58px; }
  body.courses-page .courses-hero::after { bottom: -176px; height: 218px; }
}

@media (max-width: 460px) {
  body.courses-page .course-includes-grid { grid-template-columns: 1fr; }
  body.courses-page .course-includes-grid article,
  body.courses-page .course-includes-grid article:nth-child(n) { min-height: 180px; }
  body.courses-page .course-launch { right: 12px; }
  body.courses-page .course-launch span { padding-inline: 12px 18px; font-size: .84rem; }
  .register-card { padding-top: 285px; }
}

/* Courses composition refinement */
body.courses-page .courses-hero::after { display: none; }
body.courses-page .courses-hero { min-height: 720px; overflow: hidden; border-radius: 0 0 30px 30px; }
@media (min-width: 761px) {
  .course-hero-word { inset: 54px 0 auto; width: 100%; height: 600px; overflow: hidden; }
  .course-hero-word span { right: auto; left: 50%; width: 100%; font-size: clamp(9rem,16.2vw,20rem); text-align: center; transform: translateX(-50%); }
  .course-hero-word span:nth-child(1) { top: 0; }
  .course-hero-word span:nth-child(2) { top: 205px; }
  .course-hero-word span:nth-child(3) { top: 410px; }
  body.courses-page .course-launch { right: auto; left: 48%; bottom: 30px; }
}

body.courses-page .course-proof { margin-top: 0; }
body.courses-page .course-includes { grid-template-columns: .78fr 1.22fr; align-items: start; }
body.courses-page .course-includes-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 2px solid var(--blue); }
body.courses-page .course-includes-grid article { display: grid; grid-template-columns: 1fr; min-height: 0; padding: 27px 92px 25px 28px; background: transparent; border-bottom: 1px solid rgba(29,55,148,.22); border-radius: 0; box-shadow: none; }
body.courses-page .course-includes-grid article:nth-child(n) { color: inherit; background: transparent; border-top: 0; }
body.courses-page .course-includes-grid article::after { top: 50%; right: 18px; left: auto; width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); background: transparent; clip-path: none; transform: translateY(-50%); font-size: 1rem; font-weight: 900; }
body.courses-page .course-includes-grid article:nth-child(1)::after { content: "01"; color: var(--cyan); }
body.courses-page .course-includes-grid article:nth-child(2)::after { content: "02"; color: var(--coral); }
body.courses-page .course-includes-grid article:nth-child(3)::after { content: "03"; color: #d3a900; }
body.courses-page .course-includes-grid article:nth-child(4)::after { content: "04"; color: var(--blue); }
body.courses-page .course-includes-grid article::before { right: 65px; bottom: auto; top: 50%; width: 18px; height: 18px; background: var(--cyan); clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); transform: translateY(-50%); opacity: 1; }
body.courses-page .course-includes-grid article:nth-child(2)::before { background: var(--coral); }
body.courses-page .course-includes-grid article:nth-child(3)::before { background: var(--yellow); }
body.courses-page .course-includes-grid article:nth-child(4)::before { background: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(4) strong { color: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(4) p { color: #566475; }

.register-card { grid-template-columns: 1.05fr .95fr; min-height: 760px; padding-bottom: 80px; }
.register-copy { align-self: start; padding-bottom: 360px; }
.register-origami-phone { right: -1%; left: auto; bottom: -3%; width: 47%; max-width: 650px; }
.course-register-form { align-self: center; }
.course-choice { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 12px; padding: 0; border: 0; }
.course-choice legend { grid-column: 1/-1; margin-bottom: 8px; color: #fff; font-size: 1.05rem; font-weight: 800; }
.course-choice label { display: block; cursor: pointer; }
.course-choice input { position: absolute; opacity: 0; pointer-events: none; }
.course-choice label span { display: grid; min-height: 52px; padding: 10px 14px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; text-align: center; transition: .2s ease; }
.course-choice input:checked + span { color: var(--blue); background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,213,30,.2); }
.course-choice input:focus-visible + span { outline: 3px solid #fff; outline-offset: 3px; }

@media (max-width: 900px) {
  body.courses-page .course-includes { grid-template-columns: 1fr; }
  .register-card { grid-template-columns: 1fr; }
  .register-copy { padding-bottom: 320px; }
  .register-origami-phone { right: 5%; width: 64%; opacity: .78; }
}

@media (max-width: 620px) {
  body.courses-page .courses-hero { padding-bottom: 0; }
  body.courses-page .course-launch { right: 20px; bottom: 20px; }
  .course-choice { grid-template-columns: 1fr; }
  .register-copy { padding-bottom: 235px; }
  .register-origami-phone { right: -12%; left: auto; width: 92%; opacity: .58; }
}

/* Courses - origami brand edition */
.courses-page { background: #fff; }
.courses-hero { grid-template-columns: .92fr 1.08fr; align-items: center; width: min(1640px, calc(100% - 40px)); min-height: 720px; margin-top: 20px; isolation: isolate; color: var(--blue); background: #fff; border: 3px solid var(--blue); border-radius: 30px 30px 120px 30px; box-shadow: 0 28px 80px rgba(24,51,143,.12); }
.courses-hero::before { content: ""; position: absolute; z-index: -2; inset: 0 0 auto; height: 24px; background: linear-gradient(90deg,var(--cyan) 0 25%,var(--coral) 25% 50%,var(--yellow) 50% 75%,var(--blue) 75%); }
.courses-hero::after { right: auto; left: -8%; bottom: -100px; width: 72%; height: 240px; background: var(--cyan); border-radius: 50% 50% 0 0; opacity: .12; transform: rotate(4deg); }
.courses-hero-folds { position: absolute; z-index: -1; inset: 24px 0 auto auto; width: 42%; height: 180px; overflow: hidden; opacity: .09; }
.courses-hero-folds i { position: absolute; width: 190px; height: 190px; background: var(--blue); clip-path: polygon(50% 0,100% 100%,0 100%); }
.courses-hero-folds i:nth-child(1) { top: -75px; right: -20px; transform: rotate(12deg); }
.courses-hero-folds i:nth-child(2) { top: -110px; right: 130px; background: var(--cyan); transform: rotate(-16deg); }
.courses-hero-folds i:nth-child(3) { top: -95px; right: 280px; background: var(--coral); transform: rotate(8deg); }
.courses-hero-copy { grid-column: 2; grid-row: 1; padding: 120px 7vw 90px 20px; }
.courses-hero-copy h1 { color: var(--blue); }
.courses-hero-copy h1 span { color: var(--coral); }
.courses-hero-copy > p:not(.section-kicker) { color: #4e6088; }
.course-launch span { color: var(--blue); }
.course-launch strong { color: #fff; background: var(--coral); box-shadow: 8px 8px 0 var(--yellow); }
.courses-hero-art-wrap { grid-column: 1; grid-row: 1; align-self: end; padding: 75px 0 30px 3vw; }
.courses-hero-image { display: block; width: 112%; height: auto; min-height: 0; max-height: 600px; object-fit: contain; clip-path: none; transform: translateX(-3%); filter: drop-shadow(0 24px 28px rgba(24,51,143,.16)); }
.course-proof { position: relative; margin-top: 36px; background: #f7fbfd; border-radius: 34px 34px 80px 34px; }
.course-proof-item:nth-child(1) strong { color: var(--coral); }
.course-proof-item:nth-child(2) strong { color: var(--cyan); }
.course-proof-item:nth-child(3) strong { color: var(--yellow); text-shadow: 0 1px 0 #ba9200; }
.course-proof-item:nth-child(4) strong { color: var(--blue); }
.course-route { overflow: hidden; }
.course-route::before { content: ""; position: absolute; top: 150px; right: -100px; width: 300px; height: 110px; background: var(--cyan); opacity: .08; clip-path: polygon(0 45%,68% 0,100% 50%,68% 100%); }
.course-station { border-width: 0 0 8px; border-color: var(--cyan); }
.course-station:nth-child(4n+1) { border-bottom-color: var(--blue); }
.course-station:nth-child(4n+2) { border-bottom-color: var(--coral); }
.course-station:nth-child(4n+3) { border-bottom-color: var(--yellow); }
.course-station:nth-child(4n) { border-bottom-color: var(--cyan); }
.course-station:nth-child(4n+1) span { color: rgba(24,51,143,.12); }
.course-station:nth-child(4n+2) span { color: rgba(240,75,58,.13); }
.course-station:nth-child(4n+3) span { color: rgba(242,197,29,.2); }
.course-station:nth-child(4n) span { color: rgba(34,199,214,.16); }
.course-includes-grid article:nth-child(1) { background: #e5f9fb; border-top: 7px solid var(--cyan); }
.course-includes-grid article:nth-child(2) { background: #fff0ed; border-top: 7px solid var(--coral); }
.course-includes-grid article:nth-child(3) { background: #fff9d8; border-top: 7px solid var(--yellow); }
.course-includes-grid article:nth-child(4) { color: #fff; background: var(--blue); border-top: 7px solid var(--cyan); }
.course-includes-grid article:nth-child(4) strong,.course-includes-grid article:nth-child(4) p { color: #fff; }
.magnific-card { position: relative; overflow: hidden; color: var(--blue); background: #e7f9fb; border: 3px solid var(--blue); border-radius: 34px 34px 110px 34px; }
.magnific-card::before { content: ""; position: absolute; inset: -90px -80px auto auto; width: 300px; height: 230px; background: var(--yellow); opacity: .9; clip-path: polygon(50% 0,100% 100%,0 100%); transform: rotate(18deg); }
.magnific-card::after { content: ""; position: absolute; left: -80px; bottom: -70px; width: 260px; height: 190px; background: var(--coral); opacity: .95; clip-path: polygon(0 50%,65% 0,100% 50%,65% 100%); }
.magnific-copy { position: relative; z-index: 1; }
.magnific-copy h2 { color: var(--blue); }
.magnific-copy > p:not(.section-kicker),.magnific-copy li { color: #42567e; }
.magnific-copy .text-link { color: var(--blue); }
.magnific-syllabus { z-index: 1; border: 3px solid #fff; box-shadow: 0 18px 50px rgba(24,51,143,.16); }
.course-testimonials { position: relative; }
.testimonial-card:nth-child(4n+1) { outline: 5px solid var(--blue); outline-offset: -5px; }
.testimonial-card:nth-child(4n+2) { outline: 5px solid var(--coral); outline-offset: -5px; }
.testimonial-card:nth-child(4n+3) { outline: 5px solid var(--yellow); outline-offset: -5px; }
.testimonial-card:nth-child(4n) { outline: 5px solid var(--cyan); outline-offset: -5px; }
.faq-list details:nth-child(4n+1) { border-right: 7px solid var(--blue); }
.faq-list details:nth-child(4n+2) { border-right: 7px solid var(--coral); }
.faq-list details:nth-child(4n+3) { border-right: 7px solid var(--yellow); }
.faq-list details:nth-child(4n) { border-right: 7px solid var(--cyan); }
.register-card { position: relative; overflow: hidden; background: var(--blue); }
.register-card::after { content: ""; position: absolute; left: -30px; bottom: -75px; width: 340px; height: 190px; background: var(--cyan); opacity: .22; clip-path: polygon(0 55%,38% 0,68% 58%,100% 18%,100% 100%,0 100%); }
.register-copy,.course-register-form { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .courses-hero { grid-template-columns: 1fr; }
  .courses-hero-copy { grid-column: 1; grid-row: 1; padding: 135px 28px 20px; }
  .courses-hero-art-wrap { grid-column: 1; grid-row: 2; padding: 0 8px 34px; }
  .courses-hero-image { width: 100%; max-height: 470px; transform: none; }
}

@media (max-width: 620px) {
  .courses-hero { width: calc(100% - 12px); border-width: 2px; border-radius: 20px 20px 70px 20px; }
  .courses-hero-copy { padding: 120px 22px 5px; }
  .courses-hero-copy h1 { font-size: clamp(2.85rem,14vw,4.1rem); line-height: .96; }
  .courses-hero-art-wrap { padding: 0 0 24px; }
  .courses-hero-image { min-height: 0; }
  .course-proof { margin-top: 20px; }
  .magnific-card::before { width: 180px; height: 140px; }
  .magnific-card::after { width: 180px; height: 130px; }
}

.accessibility-main { width: min(900px, calc(100% - 34px)); margin: 0 auto; padding: 150px 0 90px; }
.accessibility-main h1 { margin-bottom: 30px; color: var(--blue); font-size: clamp(3rem, 7vw, 5.5rem); }
.accessibility-main h2 { margin-top: 42px; margin-bottom: 14px; color: var(--blue); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.accessibility-main p, .accessibility-main li { font-size: 1.05rem; line-height: 1.8; }
.accessibility-main ul { padding-right: 24px; }
.accessibility-main a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }

.accessibility-widget { position: fixed; bottom: 20px; left: 20px; z-index: 1000; direction: rtl; font-family: inherit; }
.accessibility-toggle { display: flex; align-items: center; gap: 8px; min-height: 48px; padding: 10px 16px; color: #fff; background: var(--blue-deep); border: 2px solid #fff; border-radius: 999px; box-shadow: 0 8px 28px rgba(15,31,92,.28); font: inherit; font-weight: 700; cursor: pointer; }
.accessibility-toggle { justify-content: center; width: 54px; height: 54px; min-height: 54px; padding: 9px; }
.accessibility-toggle svg { width: 34px; height: 34px; transform: translateX(2px); }
.accessibility-panel { position: absolute; bottom: 58px; left: 0; width: 230px; padding: 18px; color: #17234c; background: #fff; border: 2px solid var(--blue); border-radius: 18px; box-shadow: 0 14px 42px rgba(15,31,92,.24); }
.accessibility-panel[hidden] { display: none; }
.accessibility-panel strong { display: block; margin-bottom: 12px; font-size: 1.05rem; }
.accessibility-panel button, .accessibility-panel a { display: block; width: 100%; padding: 10px 8px; color: var(--blue); background: transparent; border: 0; border-bottom: 1px solid #dfe5f2; text-align: right; font: inherit; font-weight: 600; cursor: pointer; }
.accessibility-panel a { border-bottom: 0; text-decoration: underline; text-underline-offset: 3px; }
.accessibility-font { font-size: 120%; }
.accessibility-links a { text-decoration: underline !important; text-decoration-thickness: 2px !important; text-underline-offset: 4px !important; }
.accessibility-contrast body { color: #fff; background: #000; }
.accessibility-contrast .site-header, .accessibility-contrast .contact, .accessibility-contrast .gallery-cta-inner, .accessibility-contrast .accessibility-toggle { color: #fff; background: #000; }
.accessibility-contrast a, .accessibility-contrast button, .accessibility-contrast h1, .accessibility-contrast h2, .accessibility-contrast h3 { color: #ffeb3b !important; }
.accessibility-contrast .accessibility-panel { color: #fff; background: #000; border-color: #ffeb3b; }

@media (max-width: 620px) {
  .accessibility-widget { bottom: 12px; left: 12px; }
  .accessibility-toggle { width: 50px; height: 50px; min-height: 50px; padding: 8px; }
  .accessibility-panel { width: min(230px, calc(100vw - 24px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Courses */
.courses-page { background: #f8fbfd; }
.courses-hero { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; width: calc(100% - 40px); min-height: 760px; margin: 20px auto 0; overflow: hidden; color: #fff; background: #071826; border-radius: 26px; }
.courses-hero::after { content: ""; position: absolute; right: -8%; bottom: -120px; width: 70%; height: 300px; background: #1b9fc3; border-radius: 50% 50% 0 0; opacity: .18; transform: rotate(-5deg); }
.courses-hero-word { position: absolute; top: 78px; right: 2%; color: rgba(27,159,195,.12); font-size: clamp(8rem,18vw,20rem); font-weight: 900; line-height: .8; letter-spacing: -.06em; }
.courses-hero-copy { position: relative; z-index: 2; align-self: center; max-width: 760px; padding: 130px 8vw 90px 40px; }
.courses-hero-copy h1 { margin: 15px 0 24px; font-size: clamp(3.5rem,6.5vw,7.2rem); line-height: .92; }
.courses-hero-copy h1 span { color: #f15a38; }
.courses-hero-copy > p:not(.section-kicker) { max-width: 650px; color: #dce9ef; font-size: 1.18rem; line-height: 1.75; }
.course-launch { display: flex; align-items: center; gap: 16px; margin: 30px 0; }
.course-launch strong { display: grid; width: 92px; height: 92px; place-content: center; color: #071826; background: var(--yellow); border-radius: 50%; font-size: 1.15rem; text-align: center; }
.course-launch span { font-size: 1.15rem; font-weight: 700; }
.courses-hero-image { align-self: stretch; width: 100%; height: 100%; min-height: 760px; object-fit: cover; object-position: 50% 30%; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%); }
.course-proof { display: grid; grid-template-columns: repeat(4,1fr); width: var(--page); padding-top: 80px; padding-bottom: 90px; }
.course-proof-item { padding: 25px; text-align: center; border-left: 1px solid #dbe4ea; }
.course-proof-item:last-child { border-left: 0; }
.course-proof-item strong { display: block; color: var(--blue); font-size: clamp(3rem,5vw,5.6rem); line-height: 1; }
.course-proof-item span { color: #52647a; font-weight: 700; }
.course-route { position: relative; width: var(--page); }
.course-stations { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 55px; }
.course-station { position: relative; min-height: 235px; padding: 34px 30px; overflow: hidden; background: #fff; border: 1px solid #dde7ed; border-radius: 22px 22px 58px 22px; box-shadow: 0 15px 45px rgba(19,45,93,.08); }
.course-station span { position: absolute; top: 16px; left: 20px; color: rgba(29,55,148,.1); font-size: 4.5rem; font-weight: 900; }
.course-station h3 { position: relative; margin: 38px 0 14px; color: var(--blue); font-size: 1.45rem; }
.course-station p { position: relative; color: #5a687a; line-height: 1.7; }
.course-station:nth-child(3n+2) { border-radius: 58px 22px 22px 22px; }
.course-station:nth-child(3n) h3 { color: #e34e33; }
.course-syllabus-link { display: inline-flex; gap: 12px; margin-top: 34px; color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 6px; }
.course-includes { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; width: var(--page); }
.course-includes-copy h2 { color: var(--blue); }
.course-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.course-includes-grid article { padding: 28px; background: #e6f5f8; border-radius: 18px 18px 48px 18px; }
.course-includes-grid article:nth-child(2),.course-includes-grid article:nth-child(3) { background: #fff1eb; }
.course-includes-grid strong { color: var(--blue); font-size: 1.18rem; }
.course-includes-grid p { margin-top: 8px; color: #566475; line-height: 1.65; }
.magnific-course { padding-inline: 20px; }
.magnific-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; width: min(1500px,100%); margin: 0 auto; padding: 80px 8vw; color: #fff; background: #071826; border-radius: 34px 34px 110px 34px; }
.magnific-copy h2 { margin: 14px 0 24px; font-size: clamp(3rem,6vw,6.5rem); line-height: .9; }
.magnific-copy > p:not(.section-kicker),.magnific-copy li { color: #dce9ef; line-height: 1.75; }
.magnific-copy ul { margin: 24px 0 30px; padding-right: 22px; }
.magnific-syllabus { position: relative; display: block; overflow: hidden; background: #fff; border-radius: 22px 22px 70px 22px; }
.magnific-syllabus img { width: 100%; height: 550px; object-fit: cover; object-position: top; }
.magnific-syllabus span { position: absolute; bottom: 18px; left: 18px; padding: 10px 18px; color: #071826; background: var(--yellow); border-radius: 99px; font-weight: 800; }
.course-testimonials { width: var(--page); }
.testimonial-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 50px; }
.testimonial-card { height: 330px; padding: 0; overflow: hidden; background: #fff; border: 0; border-radius: 18px; box-shadow: 0 12px 34px rgba(19,45,93,.12); cursor: zoom-in; }
.testimonial-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.course-quote { margin: 55px auto 0; color: var(--blue); font-size: clamp(2rem,4vw,4rem); font-weight: 800; text-align: center; }
.testimonial-dialog { width: min(900px,calc(100% - 30px)); max-height: 92vh; padding: 50px 15px 15px; background: #fff; border: 0; border-radius: 24px; }
.testimonial-dialog::backdrop { background: rgba(4,14,27,.82); }
.testimonial-dialog img { display: block; max-width: 100%; max-height: calc(92vh - 70px); margin: auto; }
.testimonial-dialog button { position: absolute; top: 7px; left: 14px; color: var(--blue); background: transparent; border: 0; font-size: 2rem; cursor: pointer; }
.course-faq { width: min(1050px,calc(100% - 34px)); }
.faq-list { display: grid; gap: 14px; margin-top: 48px; }
.faq-list details { background: #fff; border: 1px solid #dce6ed; border-radius: 18px 18px 45px 18px; box-shadow: 0 10px 25px rgba(19,45,93,.06); }
.faq-list summary { position: relative; padding: 25px 28px 25px 70px; color: var(--blue); font-size: 1.14rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::after { content: "+"; position: absolute; left: 25px; top: 18px; color: #f15a38; font-size: 2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 28px 28px; color: #526174; line-height: 1.8; }
.course-register { padding-inline: 20px; }
.register-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; width: min(1400px,100%); margin: 0 auto; padding: 75px 7vw; color: #fff; background: var(--blue); border-radius: 32px 32px 100px 32px; }
.register-copy h2 { margin: 12px 0 20px; font-size: clamp(3rem,5vw,5.7rem); line-height: .95; }
.register-copy > p:last-child { color: #dce5ff; line-height: 1.75; }
.course-register-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-content: center; }
.course-register-form label { display: grid; gap: 8px; color: #dce5ff; font-weight: 700; }
.course-register-form input { min-width: 0; padding: 14px 5px; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); font: inherit; }
.course-register-form input:focus { outline: 0; border-bottom-color: var(--yellow); }
.course-register-form .submit-button,.course-register-form .form-status { grid-column: 1/-1; }

@media (max-width: 900px) {
  .courses-hero { grid-template-columns: 1fr; min-height: 0; }
  .courses-hero-copy { padding: 135px 28px 60px; text-align: center; }
  .courses-hero-copy > p:not(.section-kicker) { margin-inline: auto; }
  .course-launch { justify-content: center; }
  .courses-hero-image { min-height: 480px; clip-path: polygon(0 8%,100% 0,100% 100%,0 100%); }
  .course-proof { grid-template-columns: 1fr 1fr; }
  .course-proof-item:nth-child(2) { border-left: 0; }
  .course-stations { grid-template-columns: 1fr 1fr; }
  .course-includes,.magnific-card,.register-card { grid-template-columns: 1fr; }
  .testimonial-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .courses-hero { width: calc(100% - 12px); margin-top: 6px; border-radius: 20px; }
  .courses-hero-copy h1 { font-size: clamp(3.2rem,15vw,4.7rem); }
  .courses-hero-image { min-height: 390px; }
  .course-proof { padding-top: 55px; padding-bottom: 60px; }
  .course-proof-item { padding: 22px 8px; }
  .course-proof-item strong { font-size: 3.2rem; }
  .course-stations { grid-template-columns: 1fr; }
  .course-includes { gap: 35px; }
  .course-includes-grid { grid-template-columns: 1fr; }
  .magnific-card,.register-card { gap: 36px; padding: 55px 24px 70px; border-radius: 26px 26px 72px 26px; }
  .magnific-syllabus img { height: 420px; }
  .testimonial-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; }
  .testimonial-card { flex: 0 0 78vw; height: 390px; scroll-snap-align: center; }
  .course-register-form { grid-template-columns: 1fr; }
.course-register-form .submit-button,.course-register-form .form-status { grid-column: auto; }
}

/* Keep the final course theme after legacy course rules. */
body.courses-page { background: #fff; }
body.courses-page .courses-hero { grid-template-columns: .92fr 1.08fr; align-items: center; width: min(1640px, calc(100% - 40px)); min-height: 720px; isolation: isolate; color: var(--blue); background: #fff; border: 3px solid var(--blue); border-radius: 30px 30px 120px 30px; box-shadow: 0 28px 80px rgba(24,51,143,.12); }
body.courses-page .courses-hero::before { content: ""; position: absolute; z-index: -2; inset: 0 0 auto; height: 24px; background: linear-gradient(90deg,var(--cyan) 0 25%,var(--coral) 25% 50%,var(--yellow) 50% 75%,var(--blue) 75%); }
body.courses-page .courses-hero::after { right: auto; left: -8%; bottom: -100px; width: 72%; height: 240px; background: var(--cyan); border-radius: 50% 50% 0 0; opacity: .12; transform: rotate(4deg); }
body.courses-page .courses-hero-copy { grid-column: 2; grid-row: 1; padding: 120px 7vw 90px 20px; }
body.courses-page .courses-hero-copy h1 { color: var(--blue); }
body.courses-page .courses-hero-copy h1 span { color: var(--coral); }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { color: #4e6088; }
body.courses-page .course-launch strong { color: #fff; background: var(--coral); box-shadow: 8px 8px 0 var(--yellow); }
body.courses-page .course-launch span { color: var(--blue); }
body.courses-page .courses-hero-art-wrap { grid-column: 1; grid-row: 1; align-self: end; padding: 75px 0 30px 3vw; }
body.courses-page .courses-hero-image { display: block; width: 112%; height: auto; min-height: 0; max-height: 600px; object-fit: contain; clip-path: none; transform: translateX(-3%); filter: drop-shadow(0 24px 28px rgba(24,51,143,.16)); }
body.courses-page .course-proof { position: relative; margin-top: 36px; background: #f7fbfd; border-radius: 34px 34px 80px 34px; }
body.courses-page .course-station { border-width: 0 0 8px; }
body.courses-page .magnific-card { position: relative; overflow: hidden; color: var(--blue); background: #e7f9fb; border: 3px solid var(--blue); border-radius: 34px 34px 110px 34px; }
body.courses-page .magnific-copy h2 { color: var(--blue); }
body.courses-page .magnific-copy > p:not(.section-kicker),body.courses-page .magnific-copy li { color: #42567e; }
body.courses-page .magnific-copy .text-link { color: var(--blue); }

@media (max-width: 900px) {
  body.courses-page .courses-hero { grid-template-columns: 1fr; min-height: 0; }
  body.courses-page .courses-hero-copy { grid-column: 1; grid-row: 1; padding: 135px 28px 20px; text-align: center; }
  body.courses-page .courses-hero-art-wrap { grid-column: 1; grid-row: 2; padding: 0 8px 34px; }
  body.courses-page .courses-hero-image { width: 100%; min-height: 0; max-height: 470px; clip-path: none; transform: none; }
}

@media (max-width: 620px) {
  body.courses-page .courses-hero { width: calc(100% - 12px); margin-top: 6px; border-width: 2px; border-radius: 20px 20px 70px 20px; }
  body.courses-page .courses-hero-copy { padding: 120px 22px 5px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.85rem,14vw,4.1rem); line-height: .96; }
  body.courses-page .courses-hero-art-wrap { padding: 0 0 24px; }
  body.courses-page .courses-hero-image { min-height: 0; }
}

/* Courses refinements */
body.courses-page .courses-hero-copy { text-align: right; }
body.courses-page .courses-hero-art-wrap { animation: heroOrigamiFloat 6s ease-in-out infinite; transform-origin: 50% 80%; }
body.courses-page .course-station { min-height: 300px; transition: transform .35s ease, box-shadow .35s ease; }
body.courses-page .course-station:hover { transform: translateY(-9px) rotate(.35deg); box-shadow: 0 24px 55px rgba(19,45,93,.16); }
body.courses-page .course-station:nth-child(even):hover { transform: translateY(-9px) rotate(-.35deg); }
.course-graduate-meter { display: grid; justify-items: center; gap: 8px; }
.course-graduate-meter strong { font-size: 1rem; }
.graduate-gauge { --meter: 0deg; position: relative; display: grid; width: 132px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: conic-gradient(var(--cyan) var(--meter), #dce6ef 0); box-shadow: inset 0 0 0 1px rgba(29,55,148,.08); transition: --meter 1.8s ease-out; }
.graduate-gauge::before { content: ""; position: absolute; inset: 13px; background: #fff; border-radius: 50%; }
.graduate-gauge span { position: relative; z-index: 1; color: var(--blue); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.graduate-gauge.is-counting { --meter: 360deg; }
@property --meter { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.tools-marquee { width: 100%; margin-top: 46px; overflow: hidden; color: #fff; background: var(--blue); border-radius: 999px; }
.tools-marquee div { display: flex; width: max-content; gap: 46px; padding: 16px 36px; animation: toolsFlow 22s linear infinite; }
.tools-marquee b { position: relative; font-size: 1.08rem; white-space: nowrap; }
.tools-marquee b::after { content: "◆"; position: absolute; left: -29px; color: var(--yellow); font-size: .72rem; }
.origami-divider { width: min(920px, 88vw); margin: 15px auto 0; }
.origami-divider img { display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 22px rgba(24,51,143,.13)); animation: dividerDrift 7s ease-in-out infinite; }
.course-mid-cta { display: flex; align-items: center; justify-content: center; gap: 28px; width: min(1050px,calc(100% - 34px)); margin: 5px auto 0; padding: 25px 30px; color: var(--blue); background: #fff8cf; border: 2px solid var(--yellow); border-radius: 24px 24px 60px 24px; box-shadow: 0 16px 45px rgba(29,55,148,.09); }
.course-mid-cta p { margin: 0; font-size: 1.2rem; font-weight: 800; }
.course-mid-cta .pill-button { flex: none; }
body.courses-page .magnific-course { padding-top: 75px; padding-bottom: 75px; }
body.courses-page .magnific-card { display: block; width: min(1050px,100%); padding: 44px clamp(28px,6vw,70px); border-width: 2px; border-radius: 26px 26px 70px 26px; }
body.courses-page .magnific-copy { max-width: 780px; }
body.courses-page .magnific-copy h2 { margin-bottom: 16px; font-size: clamp(2.2rem,4vw,4rem); line-height: 1; }
body.courses-page .magnific-card::before { width: 180px; height: 140px; opacity: .72; }
body.courses-page .magnific-card::after { width: 150px; height: 105px; opacity: .68; }
body.courses-page .footer { position: relative; min-height: 125px; padding-left: 145px; }
body.courses-page .footer > img { position: absolute; left: 32px; top: 50%; width: 92px; max-height: 45px; object-fit: contain; transform: translateY(-50%); }

@keyframes heroOrigamiFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-11px) rotate(-.35deg); } }
@keyframes dividerDrift { 0%,100% { transform: translateX(0) rotate(0); } 50% { transform: translateX(12px) rotate(.5deg); } }
@keyframes toolsFlow { to { transform: translateX(42%); } }

@media (max-width: 900px) {
  body.courses-page .courses-hero-copy { text-align: right; }
  .course-mid-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  body.courses-page .course-station { min-height: 0; }
  .graduate-gauge { width: 108px; }
  .graduate-gauge span { font-size: 2rem; }
  .tools-marquee { border-radius: 18px; }
  .origami-divider { width: 96vw; overflow: hidden; }
  .origami-divider img { width: 125%; margin-right: -12%; }
  .course-mid-cta { padding: 24px 18px; }
  .course-mid-cta .pill-button { width: 100%; text-align: center; }
  body.courses-page .footer { padding: 28px 18px 92px; }
  body.courses-page .footer > img { top: auto; bottom: 24px; left: 22px; width: 78px; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.courses-page .courses-hero-art-wrap,.origami-divider img,.tools-marquee div { animation: none; }
}

/* Courses header and hero proportion */
body.courses-page .site-header { inset: 0 0 auto; height: 88px; padding-inline: clamp(24px,4vw,66px); background: var(--blue-deep); box-shadow: 0 9px 28px rgba(8,29,85,.18); }
body.courses-page .site-nav { align-items: center; gap: clamp(20px,3.4vw,62px); }
.site-nav a[href="courses.html"] { min-width: 118px; padding: 9px 20px 10px; color: #111; background: #fff; border: 2px solid var(--yellow); border-radius: 13px; box-shadow: 5px 5px 0 var(--yellow); }
.site-nav a[href="courses.html"] .mini-wave { opacity: 1; }
body.courses-page .courses-hero { grid-template-columns: 1fr 1fr; min-height: 650px; margin-top: 108px; }
body.courses-page .courses-hero-copy { max-width: 760px; padding: 100px clamp(34px,6vw,110px) 72px 20px; }
body.courses-page .courses-hero-copy h1 { max-width: 680px; font-size: clamp(3.8rem,5.3vw,6.3rem); line-height: .92; }
body.courses-page .courses-hero-copy h1 span { display: block; margin-top: 12px; }
body.courses-page .courses-hero-art-wrap { align-self: center; padding: 100px 25px 38px 3vw; }
body.courses-page .courses-hero-image { width: 104%; max-height: 510px; transform: perspective(1100px) rotateY(3deg) rotateX(1deg); }

@media (max-width: 900px) {
  body.courses-page .site-header { height: 72px; }
  .site-nav a[href="courses.html"] { min-width: min(100%,320px); }
  body.courses-page .courses-hero { grid-template-columns: 1fr; margin-top: 84px; }
  body.courses-page .courses-hero-copy { padding: 86px 28px 18px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(3.1rem,11vw,5.4rem); }
  body.courses-page .courses-hero-art-wrap { padding: 0 10px 38px; }
  body.courses-page .courses-hero-image { width: 100%; transform: none; }
}

@media (max-width: 620px) {
  body.courses-page .courses-hero { margin-top: 78px; }
  body.courses-page .courses-hero-copy { padding: 72px 22px 8px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.7rem,13vw,4rem); }
}

/* Courses typography, continuous motion and testimonials */
.site-nav a[href="courses.html"] { min-width: 102px; padding: 6px 15px 7px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.75); border-radius: 999px; box-shadow: 0 4px 14px rgba(8,29,85,.14); }
body.courses-page .courses-hero { display: block; min-height: 680px; }
body.courses-page .courses-hero-copy { width: 68%; max-width: 920px; padding: 105px clamp(36px,7vw,125px) 78px 25px; }
body.courses-page .courses-hero-copy h1 { max-width: 790px; font-size: clamp(4rem,5.7vw,6.8rem); text-align: right; }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { max-width: 590px; }
body.courses-page .courses-hero-art-wrap { position: absolute; z-index: 1; left: -1%; bottom: 10px; width: 57%; padding: 0; pointer-events: none; }
body.courses-page .courses-hero-image { width: 100%; max-height: 455px; transform: perspective(1150px) rotateY(4deg) rotateX(1deg); }
.course-proof-item strong small { display: inline-block; margin-right: 4px; font-size: .34em; font-weight: 800; vertical-align: super; }
.course-proof-item strong .stat-number { color: inherit; font: inherit; }
.course-proof-item > strong:has(.stat-number) { display: inline-flex; direction: ltr; align-items: flex-start; justify-content: center; }
.course-proof-item > strong:has(.stat-number) small { order: 2; margin: .15em 0 0 5px; }
.tools-marquee { direction: ltr; }
.tools-marquee .tools-marquee-track { display: flex; width: max-content; gap: 0; padding: 0; animation: toolsLoop 28s linear infinite; will-change: transform; }
.tools-marquee .tools-set { display: flex; flex: none; gap: 46px; padding: 16px 36px; animation: none; }
.tools-marquee .tools-set b { flex: none; }
.testimonial-quotes { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 50px; }
.typed-testimonial { position: relative; min-height: 230px; margin: 0; padding: 40px 42px 32px; overflow: hidden; background: #fff; border: 2px solid var(--blue); border-radius: 24px 24px 68px 24px; box-shadow: 0 16px 45px rgba(19,45,93,.09); transition: transform .35s ease; }
.typed-testimonial::before { content: "״"; position: absolute; top: 4px; left: 22px; color: var(--yellow); font-size: 6rem; font-weight: 900; line-height: 1; opacity: .9; }
.typed-testimonial:nth-child(2) { border-color: var(--coral); }
.typed-testimonial:nth-child(3) { border-color: var(--cyan); }
.typed-testimonial:nth-child(4) { border-color: var(--yellow); }
.typed-testimonial:hover { transform: translateY(-7px) rotate(.25deg); }
.typed-testimonial p { position: relative; z-index: 1; margin-bottom: 26px; color: #243d7f; font-size: 1.18rem; line-height: 1.75; }
.typed-testimonial cite { color: var(--coral); font-style: normal; font-weight: 800; }
.testimonial-bombs { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 34px; }
.testimonial-bombs strong { display: grid; min-height: 135px; padding: 25px; place-items: center; color: #fff; background: var(--blue); border-radius: 20px 20px 52px 20px; font-size: clamp(1.35rem,2.1vw,2.25rem); line-height: 1.2; text-align: center; box-shadow: 0 16px 35px rgba(29,55,148,.16); }
.testimonial-bombs strong:nth-child(2) { color: var(--blue); background: var(--yellow); transform: translateY(18px) rotate(-1deg); }
.testimonial-bombs strong:nth-child(3) { background: var(--coral); transform: rotate(1deg); }
.course-final-cta { margin-top: calc(var(--section-space) * -.45); margin-bottom: 10px; }

@keyframes toolsLoop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-copy { width: 74%; }
  body.courses-page .courses-hero-art-wrap { width: 62%; opacity: .93; }
}

@media (max-width: 900px) {
  body.courses-page .courses-hero { min-height: 0; }
  body.courses-page .courses-hero-copy { width: 100%; padding: 84px 28px 8px; }
  body.courses-page .courses-hero-copy h1 { max-width: 100%; }
  body.courses-page .courses-hero-art-wrap { position: relative; left: auto; bottom: auto; width: 100%; padding: 0 8px 30px; }
  .testimonial-quotes { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-nav a[href="courses.html"] { padding: 7px 18px; }
  body.courses-page .courses-hero-copy { padding: 70px 22px 4px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.75rem,13vw,4rem); }
  .typed-testimonial { min-height: 0; padding: 34px 26px 27px; }
  .typed-testimonial p { font-size: 1.06rem; }
  .course-final-cta { margin-top: -35px; }
}

@media (prefers-reduced-motion: reduce) {
  .tools-marquee .tools-marquee-track { animation: none; }
}

/* Courses hero - same visual family as the gallery */
body.courses-page .courses-hero { width: 100%; min-height: 720px; margin-top: 0; color: #fff; background: var(--blue); border: 0; border-radius: 0 0 38px 38px; box-shadow: none; }
body.courses-page .courses-hero::before { display: none; }
body.courses-page .courses-hero::after { z-index: 3; right: -3%; left: -3%; bottom: -125px; width: 106%; height: 210px; background: #fff; border-radius: 48% 52% 0 0; opacity: 1; transform: rotate(-2.5deg); }
.course-hero-word { position: absolute; top: 72px; right: 18%; color: rgba(255,255,255,.09); font-family: Arial,sans-serif; font-size: clamp(8rem,17vw,20rem); font-weight: 900; line-height: .78; letter-spacing: -.07em; }
body.courses-page .courses-hero-folds { display: none; }
body.courses-page .courses-hero-copy { position: relative; z-index: 4; width: 64%; max-width: 980px; padding: 175px clamp(42px,8vw,150px) 145px 20px; }
body.courses-page .courses-hero-copy .section-kicker { color: var(--cyan); }
body.courses-page .courses-hero-copy h1 { max-width: 720px; color: #fff; font-size: clamp(3.8rem,5.35vw,6.25rem); }
body.courses-page .courses-hero-copy h1 span { color: var(--yellow); }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { color: rgba(255,255,255,.86); }
body.courses-page .course-launch span { color: #fff; }
body.courses-page .courses-hero-art-wrap { z-index: 5; left: -2%; bottom: -8px; width: 58%; opacity: 1; }
body.courses-page .courses-hero-image { max-height: 535px; filter: drop-shadow(0 30px 32px rgba(7,24,38,.28)); }

@media (max-width: 900px) {
  body.courses-page .courses-hero { min-height: 0; }
  .course-hero-word { top: 90px; right: 2%; font-size: 28vw; }
  body.courses-page .courses-hero-copy { width: 100%; padding: 140px 28px 35px; }
  body.courses-page .courses-hero-art-wrap { left: auto; bottom: auto; width: 100%; padding: 0 10px 105px; }
  body.courses-page .courses-hero::after { bottom: -145px; height: 210px; }
}

@media (max-width: 620px) {
  body.courses-page .courses-hero-copy { padding: 120px 22px 24px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.85rem,14vw,4.15rem); }
  body.courses-page .courses-hero-art-wrap { padding-bottom: 85px; }
  body.courses-page .courses-hero::after { bottom: -165px; }
}

@media (max-width: 900px) {
  .testimonial-bombs { grid-template-columns: 1fr; }
  .testimonial-bombs strong:nth-child(2),.testimonial-bombs strong:nth-child(3) { transform: none; }
}

/* Courses hero typography and verified testimonial polish */
body.courses-page .courses-hero { min-height: 760px; overflow: hidden visible; }
.course-hero-word { top: 55px; right: 4%; left: auto; display: grid; gap: 0; color: rgba(255,255,255,.085); font-size: clamp(7rem,12.5vw,15.5rem); line-height: .68; letter-spacing: -.065em; }
.course-hero-word span { display: block; direction: ltr; white-space: nowrap; }
body.courses-page .courses-hero-copy { width: 67%; max-width: 1050px; padding-top: 170px; padding-bottom: 165px; }
body.courses-page .courses-hero-copy h1 { max-width: none; margin-block: 15px 25px; font-size: clamp(3.45rem,4.65vw,5.65rem); line-height: .98; letter-spacing: -.035em; }
body.courses-page .courses-hero-copy h1 .hero-title-line { display: block; color: #fff; white-space: nowrap; }
body.courses-page .courses-hero-copy h1 .hero-title-accent { margin-top: 10px; color: var(--yellow); }
body.courses-page .course-launch { position: absolute; z-index: 9; right: 48%; bottom: 22px; margin: 0; transform: translateY(45%); }
body.courses-page .course-launch strong { width: 108px; height: 108px; color: #fff; background: var(--coral); box-shadow: 8px 8px 0 var(--yellow); }
body.courses-page .course-launch span { padding: 11px 18px; color: var(--blue); background: #fff; border: 2px solid var(--blue); border-radius: 999px; box-shadow: 0 12px 28px rgba(29,55,148,.12); white-space: nowrap; }
.zoom-stat { direction: ltr; white-space: nowrap; unicode-bidi: isolate; }
.testimonial-quotes { align-items: stretch; }
.typed-testimonial { display: grid; align-content: center; }
.typed-testimonial p { margin-bottom: 0; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-copy { width: 72%; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(3.1rem,6.7vw,4.8rem); }
  body.courses-page .course-launch { right: 43%; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero { overflow: hidden; padding-bottom: 82px; }
  .course-hero-word { top: 100px; right: -4%; gap: 8px; font-size: 27vw; line-height: .73; }
  body.courses-page .courses-hero-copy { width: 100%; padding: 128px 22px 20px; text-align: right; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.15rem,9.15vw,4rem); line-height: 1.02; letter-spacing: -.045em; }
  body.courses-page .courses-hero-copy h1 .hero-title-line { white-space: nowrap; }
  body.courses-page .course-launch { right: 22px; bottom: 42px; transform: none; }
  body.courses-page .course-launch strong { width: 82px; height: 82px; font-size: .98rem; }
  body.courses-page .course-launch span { padding: 8px 12px; font-size: .93rem; }
  body.courses-page .courses-hero-art-wrap { padding-bottom: 42px; }
}

@media (max-width: 380px) {
  body.courses-page .courses-hero-copy h1 { font-size: 8.65vw; }
  body.courses-page .course-launch { gap: 9px; }
  body.courses-page .course-launch span { max-width: 150px; white-space: normal; }
}

/* Final desktop lockup: exact two-line title, three background words and launch badge on the wave */
@media (min-width: 761px) {
  body.courses-page .courses-hero-copy { position: absolute; inset: 0 0 auto auto; width: 55%; max-width: none; padding: 165px 5.8vw 150px 30px; }
  body.courses-page .courses-hero-copy h1 { width: 100%; font-size: clamp(3.2rem,3.85vw,4.75rem); line-height: .98; }
  .course-hero-word { inset: 58px 0 auto 0; display: block; width: 100%; height: 610px; pointer-events: none; }
  .course-hero-word span { position: absolute; left: 20%; font-size: clamp(7.5rem,12.5vw,15.5rem); line-height: .7; transform: translateX(-50%); }
  .course-hero-word span:nth-child(1) { top: 0; }
  .course-hero-word span:nth-child(2) { top: 205px; }
  .course-hero-word span:nth-child(3) { top: 410px; }
  body.courses-page .course-launch { right: 47%; bottom: -48px; transform: none; }
}

.course-proof-item .zoom-stat { display: block; direction: ltr; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Branded paper language: editorial, maritime and precise */
body.courses-page .course-includes-grid article { position: relative; overflow: hidden; border: 0; border-radius: 4px 4px 42px 4px; box-shadow: 0 14px 32px rgba(29,55,148,.07); }
body.courses-page .course-includes-grid article::after { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 46px; background: linear-gradient(135deg,rgba(255,255,255,.95) 49%,rgba(29,55,148,.13) 50%); clip-path: polygon(0 0,100% 0,0 100%); }
body.courses-page .course-includes-grid article::before { content: ""; position: absolute; right: 28px; bottom: 18px; width: 72px; height: 8px; opacity: .55; background: url("assets/brand/nav-wave-cyan.svg") center/100% 100% no-repeat; }
body.courses-page .course-includes-grid article:nth-child(2)::before { background-image: url("assets/brand/nav-wave-coral.svg"); }
body.courses-page .course-includes-grid article:nth-child(3)::before { background-image: url("assets/brand/nav-wave-yellow.svg"); }
.testimonial-editorial { position: relative; display: grid; grid-template-columns: 1.55fr .45fr; gap: 0; margin-top: 52px; padding: 45px 0 30px; border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }
.testimonial-editorial::before { content: "״"; position: absolute; top: -42px; right: 0; color: var(--yellow); font-size: 7rem; font-weight: 900; line-height: 1; }
.testimonial-editorial blockquote { max-width: 920px; margin: 0; padding: 22px 55px 22px 45px; color: var(--blue); font-size: clamp(2rem,3.2vw,4rem); font-weight: 900; line-height: 1.18; letter-spacing: -.025em; }
.testimonial-editorial > div { display: grid; align-content: center; gap: 18px; padding: 20px 35px; border-right: 1px solid rgba(29,55,148,.25); }
.testimonial-editorial span { color: #50618a; font-size: 1.08rem; font-weight: 700; line-height: 1.5; }
.register-card { min-height: 650px; isolation: isolate; }
.register-origami-phone { position: absolute; z-index: 0; left: -2%; bottom: -3%; width: 48%; max-width: 680px; pointer-events: none; }
.register-origami-phone::after { content: ""; position: absolute; left: 12%; right: 8%; bottom: 5%; height: 13%; background: rgba(7,24,38,.28); border-radius: 50%; filter: blur(18px); }
.register-origami-phone img { position: relative; z-index: 1; display: block; width: 100%; filter: drop-shadow(0 22px 22px rgba(7,24,38,.2)); }
.register-copy,.course-register-form { z-index: 2; }
.register-card::before { content: ""; position: absolute; z-index: 1; right: 4%; top: 7%; width: 130px; height: 12px; background: url("assets/brand/nav-wave-cyan.svg") center/100% 100% no-repeat; }

body.courses-page .site-nav a[href="courses.html"] .mini-wave { display: block; }
@media (min-width: 761px) {
  body.courses-page .course-launch { bottom: 34px; }
}
.register-origami-phone { left: -4%; bottom: -1%; width: 55%; max-width: 760px; }
.register-origami-phone::after { display: none; }
.register-origami-phone img { width: 100%; mix-blend-mode: screen; filter: grayscale(1) sepia(1) saturate(7) hue-rotate(316deg) brightness(1.08) contrast(1.12); -webkit-mask-image: radial-gradient(ellipse 74% 72% at 54% 54%,#000 52%,transparent 84%); mask-image: radial-gradient(ellipse 74% 72% at 54% 54%,#000 52%,transparent 84%); }

@media (max-width: 900px) {
  .testimonial-editorial { grid-template-columns: 1fr; }
  .testimonial-editorial > div { grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(29,55,148,.2); border-right: 0; }
  .register-origami-phone { width: 65%; opacity: .42; }
}

@media (max-width: 620px) {
  .testimonial-editorial blockquote { padding: 25px 8px; font-size: clamp(1.75rem,8vw,2.5rem); }
  .testimonial-editorial > div { grid-template-columns: 1fr; padding-inline: 8px; }
  .register-origami-phone { left: -24%; bottom: -1%; width: 105%; opacity: .25; }
}

/* Final authority: courses uses the exact home-page header and wave language. */
body.courses-page .site-header { inset: 8px 8px auto; height: clamp(64px,4.48vw,86px); padding-inline: clamp(26px,2.66vw,51px); background: transparent; box-shadow: none; }
body.courses-page .site-header.scrolled { inset: 0 0 auto; height: 72px; background: rgba(20,49,127,.96); box-shadow: 0 8px 30px rgba(8,29,85,.18); backdrop-filter: blur(18px); }
body.courses-page .site-nav { gap: clamp(34px,5vw,96px); }
body.courses-page .site-nav a[href="courses.html"] { min-width: 0; padding: 10px 25px; color: #111; background: rgba(255,255,255,.96); border: 0; border-radius: 999px; box-shadow: 0 5px 14px rgba(7,24,38,.1); }
body.courses-page .site-nav a[href="courses.html"] .mini-wave { display: none; }

body.courses-page .courses-hero { min-height: 760px; overflow: hidden; }
body.courses-page .courses-hero::after { display: block; bottom: -126px; height: 215px; }
body.courses-page .courses-hero-copy { right: 0; width: 55%; padding: 168px 6.3vw 155px 30px; }
body.courses-page .courses-hero-copy h1 { max-width: 760px; font-size: clamp(3.35rem,4.15vw,5.15rem); }
body.courses-page .courses-hero-art-wrap { left: 2%; bottom: 18px; width: 49%; }
body.courses-page .courses-hero-image { max-height: 510px; }
body.courses-page .course-launch { right: auto; left: 45%; bottom: 42px; flex-direction: row-reverse; gap: 0; transform: translateX(-50%); }
body.courses-page .course-launch strong { flex: 0 0 112px; width: 112px; min-width: 112px; height: 112px; padding: 20px; line-height: 1.05; white-space: normal; }
body.courses-page .course-launch span { margin-left: -14px; padding: 13px 28px 13px 34px; white-space: nowrap; }

body.courses-page .course-includes { display: block; width: var(--page); }
body.courses-page .course-includes-copy { width: min(720px,100%); margin: 0 0 66px auto; text-align: right; }
body.courses-page .course-includes-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px,3.5vw,68px); border: 0; }
body.courses-page .course-includes-grid::before { content: ""; position: absolute; top: 42px; right: 9%; left: 9%; height: 10px; background: url("assets/brand/nav-wave-cyan.svg") center/100% 100% repeat-x; opacity: .28; }
body.courses-page .course-includes-grid article,
body.courses-page .course-includes-grid article:nth-child(n) { display: block; min-height: 220px; padding: 108px 8px 22px; text-align: center; color: inherit; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
body.courses-page .course-includes-grid article::before { top: 4px; right: 50%; bottom: auto; width: 76px; height: 76px; background: var(--cyan); clip-path: polygon(50% 0,100% 36%,82% 100%,18% 100%,0 36%); opacity: 1; transform: translateX(50%) rotate(45deg); }
body.courses-page .course-includes-grid article:nth-child(2)::before { background: var(--coral); }
body.courses-page .course-includes-grid article:nth-child(3)::before { background: var(--yellow); }
body.courses-page .course-includes-grid article:nth-child(4)::before { background: var(--blue); }
body.courses-page .course-includes-grid article::after { top: 27px; right: 50%; left: auto; width: auto; height: auto; color: #fff; background: transparent; clip-path: none; font-size: .88rem; transform: translateX(50%); }
body.courses-page .course-includes-grid article:nth-child(1)::after { content: "01"; }
body.courses-page .course-includes-grid article:nth-child(2)::after { content: "02"; }
body.courses-page .course-includes-grid article:nth-child(3)::after { content: "03"; color: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(4)::after { content: "04"; color: #fff; }
body.courses-page .course-includes-grid article strong,
body.courses-page .course-includes-grid article:nth-child(4) strong { color: var(--blue); font-size: 1.2rem; }
body.courses-page .course-includes-grid article p,
body.courses-page .course-includes-grid article:nth-child(4) p { color: #566475; }

body.courses-page .register-card { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 780px; padding: 310px 7vw 74px; color: #fff; background: #fff; }
body.courses-page .register-card::before,body.courses-page .register-card::after { display: none; }
.register-wave-background { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.register-back-wave { fill: #dff7f7; }
.register-blue-wave { fill: var(--blue); }
body.courses-page .register-origami-phone { z-index: 1; top: 18px; right: 2.5%; bottom: auto; left: auto; width: min(36%,500px); max-width: 500px; opacity: 1; }
body.courses-page .register-origami-phone img { mix-blend-mode: multiply; }
body.courses-page .register-copy { grid-column: 2; align-self: end; padding-top: 80px; }
body.courses-page .course-register-form { grid-column: 1; align-self: end; }
.accessibility-toggle { display: grid; place-items: center; padding: 0; }
.accessibility-toggle svg { display: block; width: 32px; height: 32px; margin: 0; transform: none; }

@media (max-width: 760px) {
  body.courses-page .site-header { inset: 0; height: 72px; padding-inline: 20px; }
  body.courses-page .courses-hero { min-height: 760px; padding-bottom: 0; }
  body.courses-page .courses-hero-copy { position: relative; width: 100%; padding: 122px 22px 25px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.25rem,9.7vw,4rem); }
  body.courses-page .courses-hero-art-wrap { position: absolute; left: -7%; bottom: 60px; width: 108%; padding: 0; }
  body.courses-page .course-launch { right: 20px; left: auto; bottom: 22px; transform: none; }
  body.courses-page .course-launch strong { flex-basis: 86px; width: 86px; min-width: 86px; height: 86px; padding: 14px; }
  body.courses-page .course-launch span { max-width: none; padding: 9px 18px 9px 24px; white-space: nowrap; }
  body.courses-page .course-includes-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  body.courses-page .course-includes-grid::before { display: none; }
  body.courses-page .register-card { display: block; min-height: 900px; padding: 330px 24px 70px; }
  body.courses-page .register-origami-phone { top: 30px; right: 50%; width: min(82%,430px); max-width: 430px; transform: translateX(50%); }
  body.courses-page .register-copy { padding-top: 0; }
  body.courses-page .course-register-form { margin-top: 38px; }
}

@media (max-width: 460px) {
  body.courses-page .course-includes-grid { grid-template-columns: 1fr; }
  body.courses-page .course-launch { right: 12px; }
  body.courses-page .course-launch span { padding-inline: 12px 18px; font-size: .84rem; }
  body.courses-page .register-card { padding-top: 285px; }
}

/* Precise shared header and compact course composition */
body.courses-page .site-header,
body.gallery-page .site-header,
body.lighthouse-page .site-header { inset: 8px 8px auto; height: clamp(64px,4.48vw,86px); padding-inline: clamp(26px,2.66vw,51px); }
body.courses-page .site-nav,
body.gallery-page .site-nav,
body.lighthouse-page .site-nav { gap: clamp(34px,5vw,96px); }

@media (min-width: 761px) {
  body.courses-page .course-launch { right: clamp(34px,7vw,132px); left: auto; bottom: 14px; transform: translateY(50%); }
  body.courses-page .courses-hero-art-wrap { left: 2%; bottom: -18px; width: 50%; }
}

body.courses-page .register-card { grid-template-columns: 1.06fr .94fr; min-height: 0; height: auto; padding: 225px clamp(34px,6vw,90px) 58px; gap: clamp(36px,5vw,74px); }
body.courses-page .register-copy { align-self: center; padding: 0; }
body.courses-page .course-register-form { align-self: center; margin: 0; }
body.courses-page .register-origami-phone { top: 12px; right: 4%; width: min(29%,390px); max-width: 390px; }
body.courses-page .register-wave-background { height: 100%; }

@media (max-width: 760px) {
  body.courses-page .site-header,
  body.gallery-page .site-header,
  body.lighthouse-page .site-header { inset: 0; height: 72px; padding-inline: 20px; }
  body.courses-page .course-launch { right: 18px; bottom: 18px; transform: none; }
  body.courses-page .courses-hero-art-wrap { left: -7%; bottom: 45px; }
  body.courses-page .register-card { min-height: 0; padding: 245px 24px 54px; }
  body.courses-page .register-copy { padding: 0; }
  body.courses-page .register-origami-phone { top: 18px; right: 50%; width: min(68%,310px); transform: translateX(50%); }
}

/* Stable final layout: shared header, wave-breaking hero, compact registration */
.site-header { inset: 8px 8px auto; height: clamp(64px,4.48vw,86px); padding-inline: clamp(26px,2.66vw,51px); }
.site-nav { gap: clamp(34px,5vw,96px); }

body.courses-page { overflow-x: hidden; }
body.courses-page .courses-hero { overflow: visible; }
body.courses-page .courses-hero-art-wrap { z-index: 6; bottom: -6px; }
body.courses-page .course-launch { z-index: 10; right: clamp(32px,6.5vw,124px); left: auto; bottom: 20px; transform: none; }
body.courses-page .course-launch strong { overflow: visible; }

body.courses-page .course-register {
  width: min(1220px,calc(100% - 64px));
  padding-block: 78px;
  padding-inline: 0;
}
body.courses-page .register-card {
  width: 100%;
  min-height: 560px;
  padding: 175px clamp(38px,5vw,72px) 48px;
  gap: clamp(30px,4vw,60px);
}
body.courses-page .register-copy { align-self: center; padding: 0; }
body.courses-page .register-copy h2 { font-size: clamp(2.8rem,4.2vw,4.6rem); }
body.courses-page .course-register-form { align-self: center; gap: 14px 22px; }
body.courses-page .course-register-form input { padding-block: 10px; }
body.courses-page .course-choice label span { min-height: 44px; }
body.courses-page .register-origami-phone { top: -4px; right: 5%; width: min(27%,340px); max-width: 340px; }

@media (max-width: 760px) {
  .site-header { inset: 0; height: 72px; padding-inline: 20px; }
  body.courses-page .courses-hero { overflow: hidden; }
  body.courses-page .course-launch { right: 16px; bottom: 18px; }
  body.courses-page .courses-hero-art-wrap { bottom: 48px; }
  body.courses-page .course-register { width: min(100% - 24px,720px); padding-block: 64px; }
  body.courses-page .register-card { min-height: 0; padding: 225px 22px 48px; }
  body.courses-page .register-origami-phone { top: 10px; right: 50%; width: min(64%,280px); transform: translateX(50%); }
}

/* Course registration — mirrors the original contact section */
body.courses-page .course-register {
  width: calc(100% - 20px);
  max-width: none;
  padding: 72px 0 10px;
}
body.courses-page .register-card {
  display: grid;
  grid-template-columns: minmax(360px,.9fr) minmax(480px,1.1fr);
  grid-template-rows: auto 1fr;
  gap: 22px clamp(50px,7vw,110px);
  width: 100%;
  min-height: 690px;
  padding: 175px max(6vw,calc((100vw - 1180px)/2)) 55px;
  direction: ltr;
  overflow: hidden;
  border-radius: var(--radius);
}
body.courses-page .register-wave-background { z-index: 0; }
body.courses-page .register-copy {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  padding: 0;
  direction: rtl;
}
body.courses-page .register-copy h2 {
  margin: 6px 0 16px;
  color: #fff;
  font-size: clamp(3rem,4.7vw,4.85rem);
  line-height: .92;
  letter-spacing: -.035em;
}
body.courses-page .register-copy h2 span { display: block; white-space: nowrap; }
body.courses-page .course-register-form {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: 100%;
  max-width: 560px;
  margin: 18px 0 0;
  direction: rtl;
}
body.courses-page .register-origami-phone {
  position: absolute;
  z-index: 3;
  top: auto;
  right: auto;
  bottom: 18px;
  left: 0;
  width: min(54vw,820px);
  max-width: none;
  height: 500px;
  opacity: 1;
  transform: none;
  pointer-events: none;
}
body.courses-page .register-origami-phone .register-lines {
  position: absolute;
  z-index: 1;
  left: -70px;
  bottom: 46px;
  width: min(760px,50vw);
  height: auto;
  mix-blend-mode: normal;
  filter: none;
  mask-image: none;
}
body.courses-page .register-origami-phone .register-phone {
  position: absolute;
  z-index: 2;
  left: clamp(70px,8vw,155px);
  bottom: 6px;
  width: clamp(300px,27vw,455px);
  height: 430px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 22px rgba(80,28,24,.2));
  -webkit-mask-image: none;
  mask-image: none;
}

body.courses-page .course-includes-grid article:nth-child(1)::after { color: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(2)::after { color: #fff; }
body.courses-page .course-includes-grid article:nth-child(3)::after { color: var(--blue); }
body.courses-page .course-includes-grid article:nth-child(4)::after { color: #fff; }
body.courses-page .course-includes-grid article::after {
  top: 28px;
  display: grid;
  min-width: 30px;
  min-height: 22px;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}
.course-price {
  display: grid;
  width: max-content;
  margin: 22px 0 2px;
  padding: 13px 20px 12px;
  color: var(--blue);
  background: #fff;
  border-right: 6px solid var(--yellow);
  border-radius: 4px 4px 28px 4px;
  box-shadow: 0 14px 30px rgba(7,24,38,.16);
}
.course-price > span { color: #53658e; font-size: .78rem; font-weight: 700; }
.course-price strong { display: flex; align-items: baseline; gap: 9px; margin-top: 1px; font-size: clamp(1.75rem,2.25vw,2.55rem); line-height: 1; }
.course-price strong em { color: var(--coral); font-size: .92rem; font-style: normal; }
.course-price small { margin-top: 4px; color: #53658e; font-size: .72rem; }

.course-offer {
  width: min(1180px,calc(100% - 34px));
  padding-top: 34px;
  padding-bottom: 72px;
}
.course-offer-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(34px,7vw,90px);
  padding: clamp(38px,5vw,68px) clamp(30px,6vw,82px);
  color: #fff;
  background: var(--blue);
  border-radius: 8px 8px 76px 8px;
  box-shadow: 0 24px 55px rgba(19,55,143,.14);
}
.course-offer-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(145deg,rgba(65,202,202,.22),transparent 58%);
  clip-path: polygon(0 0,76% 0,100% 50%,72% 100%,0 100%);
}
.course-offer-copy { max-width: 610px; }
.course-offer-copy .section-kicker { color: var(--cyan); }
.course-offer-copy h2 { margin: 8px 0 14px; color: #fff; font-size: clamp(2.05rem,4vw,4.2rem); line-height: .98; }
.course-offer-copy > p:last-child { max-width: 520px; margin: 0; color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.75; }
.course-offer-price { display: grid; justify-items: start; min-width: 280px; }
.course-offer-price > span { color: var(--coral); font-size: 1.05rem; font-weight: 900; }
.course-offer-price strong { color: var(--yellow); font-size: clamp(3.2rem,6vw,5.8rem); line-height: .95; letter-spacing: -.055em; }
.course-offer-price small { margin: 10px 0 20px; color: rgba(255,255,255,.82); font-size: .98rem; }
.course-offer-price .pill-button { margin: 0; }
.course-offer-price .course-alt-payment { margin: 10px 0 13px; color: rgba(255,255,255,.78); font-size: .88rem; }
.course-details-button { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .94rem; font-weight: 900; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 3px; }
.course-details-button:hover, .course-details-button:focus-visible { color: var(--cyan); border-color: var(--cyan); }
.course-offer-dates { margin: 0 0 22px; padding: 0 0 18px; border-bottom: 1px solid rgba(255,255,255,.28); }
.course-offer-dates > span { display: block; margin-bottom: 7px; color: var(--cyan); font-size: 1rem; font-weight: 900; }
.course-offer-dates > strong { display: block; color: #fff; font-size: 1.16rem; line-height: 1.45; letter-spacing: 0; }
.course-offer-dates > small { display: block; margin: 6px 0 0; color: rgba(255,255,255,.84); font-size: .96rem; line-height: 1.5; }
.course-friend-offer { max-width: 330px; margin: 18px 0 0; color: rgba(255,255,255,.86); font-size: .94rem; line-height: 1.65; }
.course-friend-offer strong { color: #fff; font-size: .96rem; letter-spacing: 0; }
.course-friend-offer a { color: var(--cyan); font-weight: 900; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* Course facts: compact editorial meter, not four generic boxes */
body.courses-page .course-proof {
  overflow: hidden;
  width: min(1120px,calc(100% - 34px));
  margin-top: 44px;
  padding: 24px 32px 27px;
  background: #fff;
  border: solid var(--blue);
  border-width: 2px 0;
  border-radius: 0;
  box-shadow: none;
}
body.courses-page .course-proof::before {
  content: none;
}
body.courses-page .course-proof-item { position: relative; padding: 8px 22px; }
body.courses-page .course-proof-item strong { font-size: clamp(2.7rem,3.8vw,4rem); }
body.courses-page .course-proof-item span { font-size: .9rem; }
body.courses-page .course-proof-item::after {
  content: "";
  display: block;
  width: 48px;
  height: 7px;
  margin: 10px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8'%3E%3Cpath d='M1 4c5-5 10 5 15 0s10 5 15 0 10 5 15 0 9 4 13 0' fill='none' stroke='%2341caca' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* These are benefits, not numbered steps */
body.courses-page .course-includes-grid article::after,
body.courses-page .course-includes-grid article:nth-child(n)::after { content: none; display: none; }

@media (max-width: 900px) {
  .course-offer-card { grid-template-columns: 1fr; gap: 28px; }
  .course-offer-price { min-width: 0; }
  body.courses-page .register-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 150px 28px 385px;
  }
  body.courses-page .register-copy,
  body.courses-page .course-register-form { grid-column: 1; max-width: 680px; margin-inline: auto; }
  body.courses-page .register-copy { grid-row: 1; }
  body.courses-page .course-register-form { grid-row: 2; }
  body.courses-page .register-origami-phone { bottom: 0; width: 100%; height: 370px; }
  body.courses-page .register-origami-phone .register-lines { width: 80%; }
  body.courses-page .register-origami-phone .register-phone { left: 6%; width: min(44vw,350px); height: 340px; }
}

@media (max-width: 620px) {
  body.courses-page .course-proof { padding: 20px 12px 23px; }
  body.courses-page .course-proof-item { padding: 14px 7px; }
  body.courses-page .course-proof-item strong { font-size: 2.75rem; }
  .course-offer { width: calc(100% - 20px); padding-bottom: 50px; }
  .course-offer-card { padding: 34px 24px 38px; border-radius: 6px 6px 52px 6px; }
  .course-offer-copy h2 { font-size: clamp(2.1rem,11vw,3.25rem); }
  body.courses-page .course-register { width: calc(100% - 12px); padding-top: 55px; }
  body.courses-page .register-card { padding: 125px 22px 310px; border-radius: 26px 26px 72px 26px; }
  body.courses-page .register-copy h2 { font-size: clamp(2.35rem,11vw,3.4rem); }
  body.courses-page .register-origami-phone { height: 300px; }
  body.courses-page .register-origami-phone .register-lines { left: -100px; bottom: 25px; width: 125%; }
  body.courses-page .register-origami-phone .register-phone { left: 1%; bottom: 0; width: min(68vw,300px); height: 285px; }
  .course-price { margin-top: 17px; padding: 11px 15px 10px; }
}

/* Final course-page placement and motion pass */
.course-offer-price strong .currency { margin-right: .16em; font-size: .46em; letter-spacing: 0; }
body.courses-page .courses-hero-art-wrap { z-index: 6; bottom: -310px; width: 44%; }
body.courses-page .course-launch { z-index: 10; right: clamp(32px,5.4vw,104px); left: auto; bottom: -36px; transform: none; }
body.courses-page .course-proof { margin-top: 96px; }
body.courses-page .footer { position: relative; min-height: 104px; padding-left: 128px; }
body.courses-page .footer > a:first-child { position: absolute; left: 24px; top: 50%; display: block; width: 86px; transform: translateY(-50%); }
body.courses-page .footer > a:first-child img { display: block; width: 100%; height: auto; max-height: 34px; object-fit: contain; }
body.courses-page .course-flight-image {
  width: 110%;
  max-height: none;
  transform: translateX(-4%) scale(1.05);
  filter: drop-shadow(0 22px 20px rgba(7,24,38,.2));
}

@media (max-width: 760px) {
  body.courses-page .course-launch { right: 16px; bottom: -30px; }
  body.courses-page .courses-hero-art-wrap { bottom: -34px; }
  body.courses-page .course-proof { margin-top: 72px; }
  body.courses-page .course-flight-image { width: 118%; transform: translateX(-8%) scale(1.08); }
}

@media (max-width: 620px) {
  body.courses-page .footer { padding: 28px 18px 78px; }
  body.courses-page .footer > a:first-child { top: auto; bottom: 22px; left: 20px; width: 72px; transform: none; }
}

/* Keep the continuation artwork and the following section as one composition. */
body.courses-page .origami-divider {
  height: clamp(270px,30vw,430px);
  margin-top: 8px;
  margin-bottom: -26px;
  overflow: hidden;
}
body.courses-page .origami-divider img {
  width: 100%;
  margin: 0;
}
body.courses-page .course-includes { padding-top: 42px; }

@media (max-width: 620px) {
  body.courses-page .origami-divider { width: 96vw; height: 285px; margin-bottom: -18px; }
  body.courses-page .origami-divider img { width: 125%; margin-right: -12%; }
  body.courses-page .course-includes { padding-top: 34px; }
}

/* Side-by-side continuation: full artwork to the right of the typography. */
body.courses-page .course-includes { padding-top: 70px; }
body.courses-page .course-includes-intro {
  display: grid;
  grid-template-columns: minmax(430px,1.12fr) minmax(330px,.88fr);
  align-items: center;
  gap: clamp(22px,4vw,62px);
  margin-bottom: 46px;
}
body.courses-page .course-includes-intro .origami-divider {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: visible;
}
body.courses-page .course-includes-intro .origami-divider img { width: 100%; margin: 0; }
body.courses-page .course-includes-intro .course-includes-copy {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  body.courses-page .course-includes-intro { grid-template-columns: 1fr; gap: 8px; margin-bottom: 34px; }
  body.courses-page .course-includes-intro .origami-divider,
  body.courses-page .course-includes-intro .course-includes-copy { grid-column: 1; }
  body.courses-page .course-includes-intro .origami-divider { grid-row: 2; width: min(720px,100%); margin-inline: auto; }
  body.courses-page .course-includes-intro .course-includes-copy { grid-row: 1; }
}

/* Join the tools strip to the continuation section as one visual sequence. */
body.courses-page .course-route { padding-bottom: 28px; }
body.courses-page .course-includes { padding-top: 24px; }

@media (max-width: 620px) {
  body.courses-page .course-route { padding-bottom: 20px; }
body.courses-page .course-includes { padding-top: 18px; }
}

/* Claude Code & Codex course */
.code-course-strip { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; width: min(1180px,calc(100% - 34px)); margin: 42px auto 34px; padding: 30px clamp(28px,5vw,64px); overflow: hidden; color: #fff; background: linear-gradient(110deg,var(--blue) 0 68%,#142974 100%); border-radius: 20px 20px 62px 20px; box-shadow: 0 18px 45px rgba(29,55,148,.15); }
.code-course-strip::after { content: "</>"; position: absolute; left: 4%; top: 50%; color: rgba(65,202,202,.17); font: 900 clamp(4rem,9vw,8rem)/1 monospace; transform: translateY(-50%) rotate(-7deg); }
.code-course-strip > * { position: relative; z-index: 1; }
.code-course-strip p { margin: 0 0 5px; color: var(--cyan); font-weight: 900; }
.code-course-strip h2 { margin: 0; color: #fff; font-size: clamp(1.8rem,3.6vw,3.45rem); line-height: 1; }
.code-course-strip span { display: block; margin-top: 9px; color: rgba(255,255,255,.82); }
.code-course-strip .pill-button { flex: none; margin: 0; background: var(--yellow); }
body.courses-page .course-choice label:last-of-type { grid-column: 1/-1; }
body.code-course-page { background: #fff; }
.code-hero { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; min-height: 720px; padding: 130px clamp(28px,7vw,120px) 72px; overflow: hidden; color: #fff; background: var(--blue); border-radius: 0 0 90px 0; }
.code-hero-copy { max-width: 690px; }
.code-hero-copy h1 { margin: 10px 0 22px; color: #fff; font-size: clamp(3.3rem,6.5vw,7.3rem); line-height: .9; }
.code-hero-copy h1 em { color: var(--yellow); font-style: normal; }
.code-hero-copy > p:not(.section-kicker) { max-width: 610px; color: rgba(255,255,255,.84); font-size: 1.13rem; line-height: 1.75; }
.code-hero-copy .pill-button { margin-top: 14px; }
.code-hero-art img { display: block; width: min(760px,110%); margin-inline: auto; filter: drop-shadow(0 25px 25px rgba(7,24,38,.28)); }
.code-program { padding-block: 100px 72px; }
.code-program .section-heading h2 { color: var(--blue); font-size: clamp(2.8rem,5vw,5rem); line-height: .95; }
.code-program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.code-program-grid article { position: relative; min-height: 270px; padding: 36px 30px; background: #eefafb; border-radius: 22px 22px 60px 22px; }
.code-program-grid article:nth-child(2) { background: #fff4d6; }
.code-program-grid article:nth-child(3) { background: #fff0ec; }
.code-program-grid article > span { color: rgba(29,55,148,.18); font-size: 3.6rem; font-weight: 900; }
.code-program-grid h3 { margin: 12px 0 10px; color: var(--blue); font-size: 1.45rem; }
.code-program-grid p { color: #566475; line-height: 1.7; }
.code-format { padding-block: 48px 92px; }
.code-format-card { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; padding: clamp(38px,6vw,80px); color: #fff; background: var(--blue); border-radius: 28px 28px 90px 28px; }
.code-format-card h2 { margin: 10px 0 16px; color: #fff; font-size: clamp(2.6rem,5vw,5rem); line-height: .94; }
.code-format-card > div > p:last-child { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.code-format-card ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.code-format-card li { display: grid; padding: 18px 22px; background: rgba(255,255,255,.1); border-right: 5px solid var(--cyan); border-radius: 12px; }
.code-format-card li:nth-child(2) { border-color: var(--yellow); }
.code-format-card li:nth-child(3) { border-color: var(--coral); }
.code-format-card time { font-size: 1.25rem; font-weight: 900; }
.code-format-card li span { margin-top: 3px; color: rgba(255,255,255,.74); }
.code-registration { padding-block: 40px 100px; }
.code-registration-card { display: grid; justify-items: center; max-width: 760px; margin: auto; padding: 62px 34px; text-align: center; background: #f4fafb; border: 2px solid var(--blue); border-radius: 26px 26px 80px 26px; }
.code-registration-card h2 { margin: 8px 0 12px; color: var(--blue); font-size: clamp(2.5rem,5vw,4.8rem); line-height: .95; }
.code-registration-meta { color: #566475; font-weight: 800; }
.code-price { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; color: var(--blue); font-size: clamp(4rem,8vw,7rem); line-height: 1; }
.code-price span { color: var(--coral); font-size: .4em; }
.code-price-later { margin: 6px 0 22px; color: #66758a; }
.code-registration-card .pill-button[disabled] { cursor: not-allowed; opacity: .58; }
.code-registration-card small { margin-top: 12px; color: #66758a; }
@media (max-width: 900px) { .code-course-strip { align-items: flex-start; flex-direction: column; } .code-hero,.code-format-card { grid-template-columns: 1fr; } .code-hero { padding-top: 120px; text-align: center; } .code-hero-copy { margin-inline: auto; } .code-hero-copy > p:not(.section-kicker) { margin-inline: auto; } .code-hero-art img { width: min(680px,100%); } .code-program-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .code-course-strip { width: calc(100% - 20px); margin-top: 30px; margin-bottom: 24px; padding: 26px 22px; border-radius: 18px 18px 48px 18px; } .code-course-strip .pill-button { width: 100%; justify-content: center; } .code-hero { min-height: 0; padding: 112px 20px 50px; border-radius: 0 0 58px 0; } .code-hero-copy h1 { font-size: clamp(3rem,15vw,4.4rem); } .code-program,.code-format,.code-registration { width: calc(100% - 24px); } .code-program-grid article { min-height: 0; } .code-format-card { gap: 30px; padding: 38px 24px; border-radius: 22px 22px 58px 22px; } .code-registration-card { padding: 44px 22px; } }

/* Final courses hero balance */
body.courses-page .courses-hero { min-height: 720px; overflow: hidden; border-radius: 0 0 34px 34px; }
body.courses-page .courses-hero::after { right: -2%; left: -2%; bottom: -158px; width: 104%; height: 215px; border-radius: 50% 50% 0 0; transform: none; }
body.courses-page .courses-hero-copy { padding-bottom: 105px; }
body.courses-page .courses-hero-copy .course-launch { position: static; right: auto; left: auto; bottom: auto; display: flex; width: max-content; margin-top: 34px; transform: none; }
body.courses-page .courses-hero-copy .course-launch strong { width: 82px; height: 82px; font-size: .95rem; box-shadow: 6px 6px 0 var(--yellow); }
body.courses-page .courses-hero-copy .course-launch span { padding: 10px 16px; }
body.courses-page .courses-hero-art-wrap { left: 3%; bottom: 26px; width: 49%; }
body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: 445px; transform: none; object-position: center bottom; }
body.courses-page .course-proof { margin-top: 28px; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-art-wrap { left: 1%; width: 53%; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero { min-height: 0; padding-bottom: 34px; }
  body.courses-page .courses-hero-copy { padding-bottom: 22px; }
  body.courses-page .courses-hero-copy .course-launch { margin: 28px 0 0 auto; }
  body.courses-page .courses-hero-art-wrap { position: relative; left: auto; bottom: auto; width: 100%; padding: 0 18px 58px; }
  body.courses-page .courses-hero-image.course-flight-image { width: 100%; transform: none; }
  body.courses-page .courses-hero::after { bottom: -176px; height: 218px; }
  body.courses-page .course-proof { margin-top: 32px; }
}

/* Courses hero — centered editorial composition */
body.courses-page .courses-hero { min-height: 900px; }
body.courses-page .course-hero-word { z-index: 0; top: 86px; right: 0; left: 0; width: 100%; justify-items: center; color: rgba(255,255,255,.085); font-size: clamp(10rem,19vw,23rem); line-height: .66; }
body.courses-page .courses-hero-copy { z-index: 4; width: min(100%,980px); max-width: none; margin-inline: auto; padding: 155px 28px 360px; text-align: center; }
body.courses-page .courses-hero-copy h1 { max-width: 900px; margin-inline: auto; text-align: center; }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { margin-inline: auto; }
body.courses-page .courses-hero-copy .pill-button { margin-inline: auto; }
body.courses-page .courses-hero-copy .course-launch { justify-content: center; margin: 30px auto 0; }
body.courses-page .courses-hero-copy .course-launch strong { flex: 0 0 94px; width: 94px; height: 94px; aspect-ratio: 1; padding: 8px; border-radius: 50%; line-height: 1.15; }
body.courses-page .courses-hero-copy .course-launch span { flex: 0 0 auto; }
body.courses-page .courses-hero-art-wrap { z-index: 2; right: 50%; left: auto; bottom: 18px; width: min(900px,72vw); transform: translateX(50%); }
body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: 470px; transform: none; }

@media (max-width: 760px) {
  body.courses-page .courses-hero { min-height: 0; padding-bottom: 0; }
  body.courses-page .course-hero-word { top: 100px; font-size: 31vw; }
  body.courses-page .courses-hero-copy { width: 100%; padding: 125px 20px 22px; text-align: center; }
  body.courses-page .courses-hero-copy h1 { text-align: center; }
  body.courses-page .courses-hero-copy .course-launch { margin: 28px auto 0; }
  body.courses-page .courses-hero-copy .course-launch strong { flex-basis: 82px; width: 82px; height: 82px; }
  body.courses-page .courses-hero-art-wrap { position: relative; right: auto; left: auto; bottom: auto; width: 112%; margin-inline: -6%; padding: 0 0 70px; transform: none; }
  body.courses-page .courses-hero-image.course-flight-image { width: 100%; }
}

/* Courses hero — split composition matching the Lighthouse opening */
body.courses-page .courses-hero { min-height: 760px; padding-bottom: 0; }
body.courses-page .course-hero-word { top: 72px; right: auto; left: 0; width: 56%; justify-items: start; overflow: hidden; font-size: clamp(9rem,16vw,19rem); line-height: .67; }
body.courses-page .courses-hero-copy { width: 55%; max-width: 900px; margin: 0 0 0 auto; padding: 165px clamp(38px,5.5vw,105px) 150px; text-align: center; }
body.courses-page .courses-hero-copy h1 { max-width: 780px; margin-inline: auto; text-align: center; }
body.courses-page .courses-hero-copy .course-launch { margin: 30px auto 0; }
body.courses-page .courses-hero::after { right: -4%; left: -4%; bottom: -116px; width: 108%; height: 220px; border-radius: 48% 52% 0 0; transform: rotate(-1.6deg); }
body.courses-page .courses-hero-art-wrap { position: absolute; z-index: 5; right: auto; left: 0; bottom: -4px; width: 55%; margin: 0; padding: 0 0 0 2vw; transform: none; }
body.courses-page .courses-hero-image.course-flight-image { width: 116%; max-height: 610px; transform: translateX(-5%); }
body.courses-page .courses-hero-copy .course-launch strong { flex: 0 0 94px; width: 94px; min-width: 94px; height: 94px; min-height: 94px; aspect-ratio: 1/1; border-radius: 50%; }
body.courses-page .course-proof { margin-top: 74px; }

@media (max-width: 900px) {
  body.courses-page .courses-hero { min-height: 0; padding-bottom: 0; }
  body.courses-page .course-hero-word { top: 90px; right: 0; left: 0; width: 100%; justify-items: center; font-size: 28vw; }
  body.courses-page .courses-hero-copy { width: 100%; max-width: none; margin: 0; padding: 128px 24px 22px; text-align: center; }
  body.courses-page .courses-hero-art-wrap { position: relative; left: auto; bottom: auto; width: 112%; margin-inline: -6%; padding: 0 0 82px; }
  body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: 500px; transform: none; }
  body.courses-page .courses-hero::after { bottom: -155px; height: 220px; }
  body.courses-page .course-proof { margin-top: 44px; }
}

/* Courses hero — definitive integrated composition */
body.courses-page .courses-hero { min-height: 780px; overflow: hidden; border-radius: 0; }
body.courses-page .courses-hero::after { display: none; }
body.courses-page .course-hero-word { z-index: 0; top: 78px; right: auto; left: 3.5%; display: grid; width: 48%; gap: 0; justify-items: start; overflow: visible; color: rgba(255,255,255,.085); font-size: clamp(7.7rem,10.7vw,13.2rem); line-height: .74; }
body.courses-page .course-hero-word span { overflow: visible; }
body.courses-page .courses-hero-copy { position: relative; z-index: 7; width: 54%; max-width: 900px; margin: 0 0 0 auto; padding: 170px clamp(42px,6vw,118px) 170px 24px; text-align: center; }
body.courses-page .courses-hero-copy h1 { max-width: 760px; margin: 15px auto 24px; font-size: clamp(3.25rem,4.25vw,5.15rem); line-height: 1; text-align: center; }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { max-width: 610px; margin-inline: auto; }
body.courses-page .courses-hero-copy .pill-button { margin-inline: auto; }
body.courses-page .courses-hero-copy .course-launch { position: static; display: inline-flex; width: auto; margin: 26px auto 0; padding: 5px 14px 5px 5px; gap: 10px; align-items: center; color: var(--blue); background: #fff; border: 2px solid rgba(255,255,255,.92); border-radius: 999px; box-shadow: 0 12px 26px rgba(8,29,85,.2); transform: none; }
body.courses-page .courses-hero-copy .course-launch strong { display: grid; flex: 0 0 66px; width: 66px; min-width: 66px; height: 66px; min-height: 66px; padding: 7px; place-items: center; color: #fff; background: var(--coral); border-radius: 50%; box-shadow: none; font-size: .82rem; line-height: 1.05; text-align: center; }
body.courses-page .courses-hero-copy .course-launch span { flex: 0 0 auto; padding: 0 5px 0 12px; color: var(--blue); background: transparent; border: 0; box-shadow: none; font-size: .95rem; font-weight: 900; }
body.courses-page .courses-hero-art-wrap { position: absolute; z-index: 5; right: auto; left: -1.5%; bottom: 4px; width: 59%; margin: 0; padding: 0; transform: none; }
body.courses-page .courses-hero-image.course-flight-image { display: block; width: 116%; max-height: 625px; transform: translateX(-4%); filter: drop-shadow(0 24px 25px rgba(7,24,38,.24)); }
.courses-hero-wave { position: absolute; z-index: 4; right: 0; bottom: -1px; left: 0; display: block; width: 100%; height: 178px; pointer-events: none; }
.courses-hero-wave-back { fill: #ddf7f7; }
.courses-hero-wave-front { fill: #fff; }
body.courses-page .course-proof { margin-top: 0; padding-top: 40px; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-copy { width: 58%; padding-inline: 28px; }
  body.courses-page .courses-hero-art-wrap { left: -4%; width: 62%; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero { min-height: 0; padding-bottom: 0; }
  body.courses-page .course-hero-word { top: 94px; left: 0; width: 100%; justify-items: center; font-size: 27vw; line-height: .75; }
  body.courses-page .courses-hero-copy { width: 100%; max-width: none; margin: 0; padding: 128px 20px 28px; }
  body.courses-page .courses-hero-copy h1 { font-size: clamp(2.3rem,9.6vw,4rem); }
  body.courses-page .courses-hero-copy .course-launch { margin-top: 24px; }
  body.courses-page .courses-hero-copy .course-launch strong { flex-basis: 60px; width: 60px; min-width: 60px; height: 60px; min-height: 60px; }
  body.courses-page .courses-hero-art-wrap { position: relative; z-index: 5; left: auto; bottom: auto; width: 122%; margin-inline: -11%; padding: 0 0 92px; }
  body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: 510px; transform: none; }
  .courses-hero-wave { height: 118px; }
  body.courses-page .course-proof { padding-top: 28px; }
}

/* Courses hero — larger wave and full-width background typography */
body.courses-page .course-hero-word { top: 50px; right: 0; left: 0; width: 100%; justify-items: center; overflow: hidden; font-size: clamp(10rem,16.5vw,20rem); line-height: .71; }
body.courses-page .course-hero-word span { width: 100%; text-align: center; }
body.courses-page .courses-hero-wave { height: 267px; }

@media (max-width: 760px) {
  body.courses-page .course-hero-word { top: 92px; font-size: 31vw; line-height: .74; }
  body.courses-page .courses-hero-wave { height: 177px; }
  body.courses-page .courses-hero-art-wrap { padding-bottom: 125px; }
}

/* Courses hero — restore the original visual scale and separate the actions */
body.courses-page .courses-hero-copy > .pill-button { display: flex; width: max-content; margin: 28px auto 0; }
body.courses-page .courses-hero-copy .course-launch { display: flex; width: max-content; margin: 26px auto 0; }
body.courses-page .courses-hero-art-wrap { left: -2%; bottom: -78px; width: 59%; overflow: visible; }
body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: none; transform: scale(1.25); transform-origin: 42% 72%; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-art-wrap { bottom: -54px; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.15); }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero-art-wrap { left: auto; bottom: auto; width: 112%; overflow: visible; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.08); transform-origin: center; }
}

/* Courses hero — composition matched to the site's original opening */
body.courses-page .courses-hero { min-height: 900px; }
body.courses-page .course-hero-word { top: 230px; right: 0; left: 0; width: 100%; justify-items: center; overflow: hidden; font-size: clamp(11rem,17.5vw,21rem); line-height: .69; }
body.courses-page .course-hero-word span { width: 112%; text-align: center; }
body.courses-page .courses-hero-copy { width: 55%; max-width: 900px; margin: 0 0 0 auto; padding: 300px clamp(42px,6vw,118px) 245px 24px; text-align: center; }
body.courses-page .courses-hero-copy h1 { max-width: 760px; margin-inline: auto; text-align: center; }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { margin-inline: auto; }
body.courses-page .courses-hero-copy > .pill-button { margin-top: 30px; }
body.courses-page .courses-hero-copy .course-launch { margin-top: 28px; }
body.courses-page .courses-hero-art-wrap { position: absolute; z-index: 6; left: -3%; bottom: -34px; width: 63%; overflow: visible; }
body.courses-page .courses-hero-image.course-flight-image { width: 100%; max-height: none; transform: scale(1.25); transform-origin: 38% 100%; }
body.courses-page .courses-hero-wave { z-index: 5; height: 320px; }
body.courses-page .courses-hero-wave-back { display: none; }
body.courses-page .courses-hero-wave-front { fill: #fff; }
body.courses-page .course-proof { margin-top: 0; padding-top: 34px; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-copy { padding-top: 250px; }
  body.courses-page .courses-hero-art-wrap { width: 66%; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.14); transform-origin: 38% 100%; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero { min-height: 0; }
  body.courses-page .course-hero-word { top: 185px; font-size: 30vw; }
  body.courses-page .courses-hero-copy { width: 100%; padding: 170px 20px 30px; }
  body.courses-page .courses-hero-art-wrap { position: relative; left: auto; bottom: auto; width: 118%; margin-inline: -9%; padding: 0 0 142px; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.08); transform-origin: center bottom; }
  body.courses-page .courses-hero-wave { height: 205px; }
}

/* Courses hero — final type hierarchy and artwork placement */
body.courses-page .course-hero-word { justify-items: end; }
body.courses-page .course-hero-word span { width: 108%; padding-right: 3%; text-align: right; }
body.courses-page .courses-hero-copy h1 .hero-title-line { font-size: .76em; font-weight: 400; letter-spacing: -.02em; }
body.courses-page .courses-hero-copy h1 .hero-title-accent { margin-top: 12px; font-size: 1.1em; font-weight: 900; letter-spacing: -.04em; }
body.courses-page .courses-hero-art-wrap { left: -1%; bottom: -120px; width: 55%; }
body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.08); transform-origin: 42% 100%; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-art-wrap { bottom: -86px; width: 58%; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.03); }
}

@media (max-width: 760px) {
  body.courses-page .course-hero-word span { padding-right: 0; text-align: center; }
  body.courses-page .courses-hero-copy h1 .hero-title-line { font-size: .8em; }
  body.courses-page .courses-hero-copy h1 .hero-title-accent { font-size: 1.08em; }
  body.courses-page .courses-hero-art-wrap { bottom: auto; width: 112%; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.02); }
}

/* Courses hero — exact final alignment */
body.courses-page .courses-hero-actions {
  display: flex;
  direction: rtl;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
body.courses-page .courses-hero-actions > .course-launch,
body.courses-page .courses-hero-actions > .pill-button {
  margin: 0;
}
body.courses-page .courses-hero-art-wrap { bottom: -258px; }
body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.08) rotate(3deg); }
body.courses-page .courses-hero-copy { text-align: right; }
body.courses-page .courses-hero-copy h1 { margin-right: 0; margin-left: auto; text-align: right; }
body.courses-page .courses-hero-copy > p:not(.section-kicker) { margin-right: 0; margin-left: auto; }
body.courses-page .courses-hero-actions { justify-content: flex-start; }
body.courses-page .course-proof { margin-top: 90px; padding-top: 56px; }

@media (max-width: 1000px) {
  body.courses-page .courses-hero-art-wrap { bottom: -190px; }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.03) rotate(2.5deg); }
  body.courses-page .course-proof { margin-top: 70px; padding-top: 50px; }
}

@media (max-width: 760px) {
  body.courses-page .courses-hero-actions { gap: 12px; }
  body.courses-page .courses-hero-art-wrap { bottom: auto; transform: translateY(60px); }
  body.courses-page .courses-hero-image.course-flight-image { transform: scale(1.02) rotate(2deg); }
  body.courses-page .course-proof { margin-top: 40px; padding-top: 44px; }
}

@media (max-width: 520px) {
  body.courses-page .courses-hero-actions { flex-wrap: wrap; }
}
