:root {
  --blue: #3d4c8f;
  --blue-dark: #232d63;
  --blue-ink: #182042;
  --pink: #d9006c;
  --pink-soft: #ff75a0;
  --cyan: #00d9bd;
  --cyan-bright: #00f5d4;
  --yellow: #ffd84d;
  --red: #ef4b55;
  --green: #80cb39;
  --text: #2d3553;
  --muted: #687087;
  --line: #e7eaf2;
  --paper: #ffffff;
  --wash: #f7f8fc;
  --pink-wash: #fff4f8;
  --cyan-wash: #edfffb;
  --shadow-sm: 0 12px 35px -24px rgba(35, 45, 99, 0.34);
  --shadow-md: 0 26px 70px -38px rgba(35, 45, 99, 0.48);
  --shadow-lg: 0 40px 100px -50px rgba(35, 45, 99, 0.64);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: rgba(0, 245, 212, 0.5);
  color: var(--blue-dark);
}

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

h1,
h2,
h3 {
  color: var(--blue-dark);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

h1 span,
h2 span {
  color: var(--pink);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

.section-shell {
  position: relative;
  padding-block: 112px;
}

.section-tint {
  background: var(--wash);
}

.section-dark {
  background: var(--blue-dark);
  color: #fff;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
}

.eyebrow span {
  color: var(--pink);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light::before {
  background: var(--cyan-bright);
}

.eyebrow-light span {
  color: var(--pink-soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

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

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

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 14px 30px -18px rgba(35, 45, 99, 0.75);
  color: #fff;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 18px 40px -20px rgba(35, 45, 99, 0.9);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.93rem;
}

.button-secondary {
  background: var(--pink);
  border-color: var(--pink);
}

.button-secondary:hover {
  background: #b80059;
  border-color: #b80059;
}

.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--blue-dark);
}

.button-light:hover {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  color: var(--blue-dark);
}

.button-outline {
  background: transparent;
  color: var(--blue);
}

.button-outline:hover {
  color: #fff;
}

.button-whatsapp {
  border-color: rgba(61, 76, 143, 0.18);
  background: rgba(127, 255, 223, 0.47);
  box-shadow: 0 14px 30px -20px rgba(35, 45, 99, 0.42);
  color: var(--blue-dark);
}

.button-whatsapp:hover {
  border-color: rgba(61, 76, 143, 0.28);
  background: rgba(127, 255, 223, 0.72);
  color: var(--blue-dark);
}

.button-share {
  border-color: rgba(61, 76, 143, 0.2);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--blue-dark);
}

.button-share::before {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(127, 255, 223, 0.47);
  content: "↗";
  font-size: 0.9rem;
  font-weight: 950;
}

.button-share:hover {
  border-color: var(--blue);
  background: var(--blue-dark);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.text-link:hover {
  color: var(--pink);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(231, 234, 242, 0.82);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 196px;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 1;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.button) {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  display: grid;
  min-height: calc(820px - var(--header-height));
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 245, 212, 0.12), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fafbff 58%, #fff4f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.5vw, 5rem);
  letter-spacing: -0.05em;
}

.hero h1 small {
  display: block;
  margin-top: 15px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--blue-dark);
}

.hero-main-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 710px;
  margin-bottom: 14px;
}

.hero-main-facts > div {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  padding: 15px 14px;
  border: 1px solid rgba(61, 76, 143, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.hero-main-facts span,
.hero-main-facts strong,
.hero-main-facts small {
  display: block;
}

.hero-main-facts span {
  margin-bottom: 3px;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main-facts strong {
  color: var(--blue-dark);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.25;
}

.hero-main-facts small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.hero-main-facts .is-featured {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.hero-main-facts .is-featured span {
  color: var(--pink-soft);
}

.hero-main-facts .is-featured strong {
  color: var(--cyan-bright);
}

.hero-main-facts .is-featured small {
  color: rgba(255, 255, 255, 0.75);
}

.hero-extended-hours {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 820;
}

.hero-try-note {
  display: grid;
  max-width: 710px;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.55fr);
  gap: 8px 18px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-left: 5px solid var(--pink);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(100deg, #fff8d9, #fff);
  box-shadow: var(--shadow-sm);
}

.hero-try-note strong {
  color: var(--blue-dark);
  font-size: 0.9rem;
  line-height: 1.3;
}

.hero-try-note span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 31px;
}

.hero-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(61, 76, 143, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.hero-availability {
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-availability strong {
  color: var(--pink);
}

.cancel-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cancel-note span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-wash);
  color: #087c6a;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-photo-frame {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(100%, 520px);
  height: 520px;
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 44px 44px 132px 44px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(35, 45, 99, 0.16));
  content: "";
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 1px solid rgba(61, 76, 143, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  line-height: 1.25;
}

.hero-float-card strong {
  color: var(--blue-dark);
  font-size: 1.16rem;
}

.hero-float-card span,
.hero-float-card small {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 730;
}

.hero-secondary-photo {
  position: absolute;
  z-index: 5;
  bottom: 4px;
  left: -28px;
  width: 172px;
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.hero-secondary-photo img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-secondary-photo figcaption {
  display: flex;
  flex-direction: column;
  padding: 10px 9px 8px;
  line-height: 1.25;
}

.hero-secondary-photo strong {
  color: var(--pink);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-secondary-photo span {
  margin-top: 3px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-float-price {
  top: 8px;
  right: -22px;
  min-width: 142px;
  background: var(--blue-dark);
  color: #fff;
  transform: rotate(2deg);
}

.hero-float-price strong {
  color: var(--cyan-bright);
  font-size: 2rem;
}

.hero-float-price span,
.hero-float-price small {
  color: rgba(255, 255, 255, 0.78);
}

.hero-code-dots {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}

.hero-code-dots i,
.hero-code-dots b {
  display: block;
  height: 13px;
  border-radius: 99px;
  background: var(--pink);
}

.hero-code-dots i {
  width: 13px;
}

.hero-code-dots b {
  width: 28px;
  background: var(--blue);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
}

.hero-orb-one {
  top: 12%;
  right: -90px;
  width: 230px;
  height: 230px;
  background: var(--cyan-bright);
}

.hero-orb-two {
  bottom: -120px;
  left: 28%;
  width: 240px;
  height: 240px;
  background: rgba(255, 117, 160, 0.25);
}

.quick-facts {
  position: relative;
  z-index: 4;
  padding-block: 0;
  background: var(--blue-dark);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-facts article {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 17px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-facts article:last-child {
  border-right: 0;
}

.fact-number {
  min-width: max-content;
  color: var(--cyan-bright);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.quick-facts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-facts strong {
  color: #fff;
  font-size: 0.96rem;
}

.intro {
  padding-block: 130px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 40px;
  color: var(--muted);
  font-size: 1.11rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy strong {
  color: var(--blue-dark);
}

.method {
  overflow: hidden;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.method-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.method-card > img,
.play-graphic {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.method-card > img {
  filter: saturate(0.88);
}

.method-card-copy {
  padding: 27px 27px 30px;
}

.method-card-copy > span {
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-card-copy h3 {
  margin-top: 7px;
}

.method-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.step-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(35, 45, 99, 0.22);
  color: var(--cyan-bright);
  font-size: 0.8rem;
  font-weight: 900;
}

.play-graphic {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(61, 76, 143, 0.08) 50px),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(61, 76, 143, 0.08) 50px);
}

.play-dot {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.dot-pink {
  top: 25px;
  left: 30px;
  background: var(--pink-soft);
}

.dot-blue {
  right: 25px;
  bottom: 22px;
  background: var(--blue);
}

.dot-cyan {
  right: 42px;
  top: 34px;
  width: 53px;
  height: 53px;
  background: var(--cyan-bright);
}

.play-arrow {
  position: absolute;
  left: 46px;
  bottom: 31px;
  color: var(--blue-dark);
  font-size: 2.2rem;
  font-weight: 900;
  transform: rotate(-22deg);
}

.play-word {
  position: relative;
  z-index: 2;
  padding: 13px 17px;
  border: 3px solid var(--blue-dark);
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  transform: rotate(-4deg);
}

.workshops {
  padding-bottom: 60px;
}

.workshop-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.workshop-summary {
  position: relative;
  display: grid;
  min-height: 400px;
  grid-template-columns: 98px 1fr;
  align-items: end;
  gap: 28px;
  overflow: hidden;
  padding: 34px;
  border: 0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workshop-summary-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.workshop-summary:hover .workshop-summary-photo {
  transform: scale(1.04);
}

.workshop-summary-morse .workshop-summary-photo {
  object-position: 50% 56%;
}

.workshop-summary-spinner .workshop-summary-photo {
  object-position: 50% 42%;
}

.workshop-summary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.workshop-summary::before,
.workshop-summary::after {
  position: absolute;
  content: "";
}

.workshop-summary::before {
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 32, 73, 0.04) 10%, rgba(25, 32, 73, 0.88) 88%);
}

.workshop-summary::after {
  display: none;
}

.workshop-summary-morse {
  background: linear-gradient(145deg, #fff2f7, #ffddea);
}

.workshop-summary-spinner {
  background: linear-gradient(145deg, #eafffb, #cafff3);
}

.workshop-day {
  position: relative;
  z-index: 2;
  display: flex;
  width: 96px;
  height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.workshop-day span,
.workshop-day strong {
  display: block;
}

.workshop-day span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.workshop-day strong {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

.workshop-summary-spinner .workshop-day {
  background: var(--blue);
}

.workshop-summary-copy {
  position: relative;
  z-index: 2;
}

.workshop-kicker {
  margin-bottom: 9px;
  color: var(--pink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workshop-summary-spinner .workshop-kicker {
  color: var(--cyan-bright);
}

.workshop-summary h3 {
  max-width: 360px;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
}

.workshop-summary p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.summary-arrow {
  position: absolute;
  z-index: 3;
  right: 33px;
  bottom: 27px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
}

.workshop-detail {
  overflow: hidden;
}

.morse-section {
  padding-top: 80px;
  background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}

.workshop-detail-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.workshop-detail-grid-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.workshop-story h2 {
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
}

.large-copy {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.72;
}

.feature-list,
.check-list,
.price-card ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  margin-bottom: 13px;
}

.feature-list li > span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-wash);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-list li > div {
  padding-top: 3px;
  color: var(--muted);
}

.feature-list strong {
  color: var(--blue-dark);
}

.workshop-note {
  margin-bottom: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: var(--cyan-wash);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 720;
}

.morse-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.morse-gallery figure {
  min-height: 235px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.morse-gallery .gallery-main {
  grid-row: 1 / 3;
}

.morse-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.morse-gallery .gallery-main img {
  object-position: 58% center;
}

.demo-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 55px;
  margin-top: 94px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.demo-copy h3 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.demo-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.morse-demo {
  padding: 27px;
  border-radius: var(--radius-md);
  background: var(--wash);
}

.morse-demo label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 820;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 780;
  text-transform: uppercase;
}

.input-row input:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 217, 189, 0.13);
}

.morse-output {
  min-height: 64px;
  margin-top: 19px;
  padding: 14px 16px;
  border: 1px dashed rgba(61, 76, 143, 0.28);
  border-radius: 13px;
  background: #fff;
  color: var(--blue-dark);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.bracelet-preview {
  display: flex;
  min-height: 67px;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 14px 16px;
  overflow-x: auto;
  border-radius: 13px;
  background: var(--blue-dark);
}

.bead {
  display: inline-block;
  flex: 0 0 auto;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  background: var(--pink-soft);
  box-shadow: inset 0 1px 2px rgba(35, 45, 99, 0.25);
}

.bead-dot {
  width: 16px;
}

.bead-dash {
  width: 32px;
  background: var(--cyan-bright);
}

.bead-space {
  width: 9px;
  height: 9px;
  margin-inline: 3px;
  border: 0;
  background: var(--yellow);
}

.bead-word-space {
  width: 20px;
  background: transparent;
  box-shadow: none;
}

.demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.demo-legend .bead {
  border-color: rgba(61, 76, 143, 0.18);
}

.spinner-section {
  padding-block: 132px;
}

.spinner-section h2 {
  color: #fff;
}

.spinner-section .large-copy {
  color: rgba(255, 255, 255, 0.72);
}

.spinner-lab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.spinner-photo {
  width: min(100%, 470px);
  height: 190px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.75);
}

.spinner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.spinner-panel {
  width: min(100%, 470px);
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px -38px rgba(0, 0, 0, 0.65);
  text-align: center;
}

.panel-label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.challenge-display {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  margin: 0 auto 26px;
}

.challenge-card {
  position: relative;
  display: flex;
  min-height: 168px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.28s ease, background 0.28s ease;
}

.challenge-card::before {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.challenge-card span,
.challenge-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.challenge-card span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.challenge-card strong {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.15;
  text-align: center;
}

.challenge-color {
  border-color: color-mix(in srgb, var(--challenge-color, var(--cyan-bright)) 62%, #fff 38%);
  background: color-mix(in srgb, var(--challenge-color, var(--cyan-bright)) 22%, rgba(255, 255, 255, 0.08));
}

.challenge-color::after {
  width: 47px;
  height: 47px;
  margin-bottom: 12px;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--challenge-color, var(--cyan-bright));
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.6);
  content: "";
  order: -1;
}

.challenge-plus {
  align-self: center;
  color: var(--pink-soft);
  font-size: 2rem;
  font-weight: 950;
}

.challenge-display.is-changing .challenge-card {
  opacity: 0.62;
  transform: scale(0.96);
}

.challenge-display.has-result .challenge-card {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

[data-spin-button]:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.spinner-result {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin: 17px 0 0;
  color: var(--cyan-bright);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.spinner-result.has-result {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.spinner-result.has-result::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--result-color, var(--cyan-bright));
  content: "";
}

.logic-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 9px;
  margin: 31px 0;
}

.logic-flow div {
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.logic-flow span,
.logic-flow strong {
  display: block;
}

.logic-flow span {
  margin-bottom: 5px;
  color: var(--pink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.logic-flow strong {
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.4;
}

.logic-flow i {
  align-self: center;
  color: var(--cyan-bright);
  font-style: normal;
  font-weight: 900;
}

.check-list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-bright);
  color: var(--blue-dark);
  content: "✓";
  font-size: 0.69rem;
  font-weight: 950;
}

.workshop-note-dark {
  border-left-color: var(--pink-soft);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.day-plan {
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 870px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 92px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(var(--pink), var(--cyan));
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 42px;
  min-height: 112px;
}

.timeline li::before {
  position: absolute;
  top: 7px;
  left: 83px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 2px rgba(217, 0, 108, 0.12);
  content: "";
}

.timeline li:nth-child(even)::before {
  background: var(--cyan);
}

.timeline time {
  padding-top: 2px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.timeline li > div {
  padding: 0 0 29px 20px;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 1.16rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 52px;
  padding: 24px;
  border: 1px solid rgba(0, 217, 189, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, var(--cyan-wash), #fff7fa);
}

.services-strip > div {
  padding: 10px 16px;
  border-right: 1px solid rgba(61, 76, 143, 0.12);
}

.services-strip span,
.services-strip strong {
  display: block;
}

.services-strip span {
  color: var(--pink);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-strip strong {
  color: var(--blue-dark);
}

.services-strip p {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-strip p strong {
  display: inline;
  color: var(--blue);
}

.meal-service {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 12px 28px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(61, 76, 143, 0.15);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.meal-service span,
.meal-service strong {
  display: block;
}

.meal-service span {
  color: var(--pink);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meal-service strong {
  color: var(--blue-dark);
}

.meal-service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.meal-service small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.73rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card-photo {
  width: calc(100% + 60px);
  height: 180px;
  margin: -34px -30px 27px;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 18px 18px;
  object-fit: cover;
}

.price-card:first-child .price-card-photo {
  object-position: 50% 62%;
}

.price-card-featured .price-card-photo {
  object-position: 50% 42%;
}

.price-card:last-child .price-card-photo {
  object-position: 50% 38%;
}

.price-card-featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-14px);
}

.popular-label {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.price-day {
  margin-bottom: 11px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 80px;
}

.price {
  display: flex;
  align-items: start;
  margin: 17px 0 5px;
  color: var(--blue-dark);
  line-height: 1;
}

.price strong {
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.price span {
  padding-top: 8px;
  color: var(--pink);
  font-size: 1.8rem;
  font-weight: 900;
}

.saving {
  margin: 0 0 6px;
  color: #087c6a;
  font-size: 0.83rem;
  font-weight: 850;
}

.price-card ul {
  flex: 1 1 auto;
}

.price-card li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  content: "✓";
  font-weight: 950;
}

.price-card .button {
  width: 100%;
}

.pricing-footnote {
  max-width: 880px;
  margin: 42px auto 0;
  padding: 17px 20px;
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 0.89rem;
  text-align: center;
}

.pricing-footnote strong {
  color: var(--blue-dark);
}

.practical-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.practical-photo {
  position: relative;
  aspect-ratio: 4 / 3;
}

.practical-photo::before {
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -26px;
  width: 75%;
  height: 62%;
  border-radius: 30px;
  background: var(--cyan-bright);
  content: "";
}

.practical-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 56% 62%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.practical-list {
  margin: 30px 0 0;
}

.practical-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.practical-list dt {
  color: var(--blue-dark);
  font-weight: 850;
}

.practical-list dd {
  margin: 0;
  color: var(--muted);
}

.faq {
  background: var(--wash);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted);
}

.faq-whatsapp {
  margin-top: 22px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  background: var(--cyan-wash);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 54px 22px 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 85px;
  background: #fff;
}

.final-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 15%, rgba(0, 245, 212, 0.22), transparent 28%),
    var(--blue-dark);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.final-cta-box::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 45px solid rgba(255, 117, 160, 0.16);
  border-radius: 50%;
  content: "";
}

.final-cta-box h2 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.final-cta-box h2 span {
  color: var(--cyan-bright);
}

.final-cta-box p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.final-cta-action small {
  color: rgba(255, 255, 255, 0.64);
}

.text-link-light {
  color: var(--cyan-bright);
}

.text-link-light:hover {
  color: var(--pink-soft);
}

.site-footer {
  padding: 48px 0 98px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 40px;
}

.site-footer img {
  width: 180px;
  height: auto;
  aspect-ratio: 10 / 1;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-legal {
  text-align: right;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 11px 10px 16px;
  border: 1px solid rgba(61, 76, 143, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 50px -18px rgba(35, 45, 99, 0.64);
  backdrop-filter: blur(14px);
}

.mobile-cta > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.mobile-cta strong {
  color: var(--blue-dark);
}

.mobile-cta span {
  color: var(--muted);
  font-size: 0.73rem;
}

.mobile-share {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(61, 76, 143, 0.18);
  border-radius: 50%;
  background: rgba(127, 255, 223, 0.47);
  color: var(--blue-dark);
  font-size: 1.1rem;
  font-weight: 950;
  text-decoration: none;
}

.mobile-share:hover {
  background: rgba(127, 255, 223, 0.78);
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

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

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

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 42px;
  }

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

  .hero-main-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-main-facts .is-featured {
    grid-column: 1 / 3;
    min-height: 88px;
  }

  .hero-photo-frame {
    height: 480px;
  }

  .quick-facts article {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding-inline: 22px;
  }

  .workshop-summary {
    grid-template-columns: 84px 1fr;
    gap: 20px;
    padding: 28px;
  }

  .workshop-day {
    width: 82px;
    height: 82px;
    min-height: 0;
    font-size: 0.88rem;
  }

  .logic-flow {
    grid-template-columns: 1fr;
  }

  .logic-flow i {
    transform: rotate(90deg);
  }

  .price-card {
    padding-inline: 24px;
  }

  .price-card-photo {
    width: calc(100% + 48px);
    margin-inline: -24px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .section-shell {
    padding-block: 88px;
  }

  .brand {
    width: 170px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 30px 40px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .hero {
    padding-top: 72px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-main-facts {
    max-width: 720px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-main-facts .is-featured {
    grid-column: auto;
  }

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

  .hero-photo-frame {
    right: 5%;
    left: 5%;
    width: auto;
  }

  .hero-secondary-photo {
    left: 0;
  }

  .hero-float-price {
    right: 0;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .intro-grid,
  .workshop-detail-grid,
  .workshop-detail-grid-reverse,
  .demo-wrap,
  .practical-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .method-card:last-child {
    grid-column: 1 / 3;
  }

  .workshop-summary-grid {
    grid-template-columns: 1fr;
  }

  .workshop-detail-grid-reverse .spinner-lab {
    order: 2;
  }

  .morse-gallery {
    max-width: 700px;
    margin-inline: auto;
  }

  .services-strip {
    grid-template-columns: 1fr 1fr;
  }

  .services-strip p {
    grid-column: 1 / 3;
    padding-inline: 16px;
  }

  .services-strip > div:nth-child(2) {
    border-right: 0;
  }

  .meal-service {
    grid-template-columns: 1fr;
  }

  .meal-service small {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 0;
  }

  .price-card h3 {
    min-height: 0;
  }

  .price-card-featured {
    margin-block: 14px;
    transform: none;
  }

  .practical-photo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .final-cta-action {
    align-items: flex-start;
  }

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

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

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

  .section-shell {
    padding-block: 72px;
  }

  .site-header {
    height: 66px;
  }

  .brand {
    width: 152px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 58px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero h1 small {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-main-facts {
    grid-template-columns: 1fr;
  }

  .hero-main-facts .is-featured {
    grid-column: auto;
  }

  .hero-main-facts > div {
    min-height: 86px;
  }

  .hero-try-note {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cancel-note {
    align-items: flex-start;
  }

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

  .hero-photo-frame {
    top: 10px;
    right: 2%;
    left: 2%;
    height: 385px;
    border-width: 8px;
    border-radius: 28px 28px 90px 28px;
  }

  .hero-float-card {
    padding: 12px 15px;
  }

  .hero-float-price {
    top: -10px;
  }

  .hero-code-dots {
    right: 0;
    bottom: -15px;
  }

  .hero-secondary-photo {
    bottom: -2px;
    left: 0;
    width: 128px;
    border-width: 6px;
    border-radius: 20px;
  }

  .hero-secondary-photo img {
    height: 138px;
  }

  .hero-secondary-photo figcaption {
    padding: 7px 7px 6px;
  }

  .hero-secondary-photo span {
    display: none;
  }

  .quick-facts article {
    min-height: 128px;
    padding: 20px 15px;
  }

  .fact-number {
    font-size: 1.5rem;
  }

  .intro {
    padding-block: 86px;
  }

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

  .method-card:last-child {
    grid-column: auto;
  }

  .workshop-summary {
    min-height: 350px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .workshop-day {
    width: 82px;
    height: 82px;
    min-height: 0;
  }

  .workshop-summary h3 {
    padding-right: 20px;
  }

  .morse-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 210px;
  }

  .morse-gallery .gallery-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .morse-gallery figure {
    min-height: 0;
  }

  .demo-wrap {
    gap: 30px;
    margin-top: 64px;
    padding: 26px 18px;
    border-radius: var(--radius-md);
  }

  .morse-demo {
    padding: 20px 14px;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row .button {
    width: 100%;
  }

  .bracelet-preview {
    padding-inline: 12px;
  }

  .spinner-panel {
    padding: 24px 14px;
  }

  .challenge-display {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .challenge-card {
    min-height: 128px;
  }

  .challenge-plus {
    line-height: 1;
  }

  .logic-flow div {
    padding-block: 13px;
  }

  .timeline::before {
    left: 69px;
  }

  .timeline li {
    grid-template-columns: 55px 1fr;
    gap: 27px;
    min-height: 124px;
  }

  .timeline li::before {
    left: 60px;
  }

  .timeline li > div {
    padding-left: 12px;
  }

  .timeline time {
    font-size: 0.78rem;
  }

  .services-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .services-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(61, 76, 143, 0.12);
  }

  .services-strip p {
    grid-column: auto;
    padding: 4px 16px;
  }

  .price-card {
    padding: 30px 22px 24px;
  }

  .price-card-photo {
    width: calc(100% + 44px);
    height: 165px;
    margin: -30px -22px 24px;
  }

  .price strong {
    font-size: 4rem;
  }

  .practical-photo {
    aspect-ratio: 4 / 3;
  }

  .practical-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .final-cta {
    padding-block: 58px;
  }

  .final-cta-box {
    padding: 34px 24px;
    border-radius: var(--radius-md);
  }

  .final-cta-action,
  .final-cta-action .button {
    width: 100%;
  }

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

  .site-footer {
    padding-bottom: 120px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .quick-facts p {
    font-size: 0.77rem;
  }

  .fact-number {
    font-size: 1.3rem;
  }

  .mobile-cta {
    gap: 8px;
    padding-left: 12px;
  }

  .mobile-cta .button {
    padding-inline: 15px;
  }
}

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

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-cta,
  .hero-actions,
  .share-whatsapp-link,
  .nav-toggle,
  .spinner-panel button,
  .input-row button {
    display: none !important;
  }

  .section-shell {
    padding-block: 40px;
  }

  .section-dark,
  .quick-facts,
  .final-cta-box {
    background: #fff !important;
    color: #000 !important;
  }

  .spinner-section h2,
  .final-cta-box h2,
  .quick-facts strong,
  .quick-facts p {
    color: #000 !important;
  }
}
