:root {
  --background: 196 55% 97%;
  --foreground: 215 54% 17%;
  --border: 193 35% 85%;
  --input: 193 35% 85%;
  --ring: 191 77% 46%;
  --card: 0 0% 100%;
  --card-foreground: 215 54% 17%;
  --card-border: 193 35% 85%;
  --popover: 0 0% 100%;
  --popover-foreground: 215 54% 17%;
  --popover-border: 193 35% 85%;
  --primary: 213 71% 31%;
  --primary-foreground: 0 0% 100%;
  --secondary: 190 77% 48%;
  --secondary-foreground: 215 54% 17%;
  --muted: 194 38% 92%;
  --muted-foreground: 211 28% 44%;
  --accent: 31 86% 60%;
  --accent-foreground: 215 54% 17%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 100%;
  --sidebar: 213 71% 31%;
  --sidebar-foreground: 0 0% 100%;
  --sidebar-border: 213 53% 42%;
  --sidebar-primary: 190 77% 48%;
  --sidebar-primary-foreground: 215 54% 17%;
  --sidebar-accent: 213 53% 42%;
  --sidebar-accent-foreground: 0 0% 100%;
  --radius: 1.1rem;
  --app-font-sans: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --app-font-serif: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --app-font-mono: "SFMono-Regular", Consolas, monospace;
  --shadow-sm: 0 5px 18px hsl(210 52% 25% / .08);
  --shadow-md: 0 16px 46px hsl(210 52% 25% / .13);
}

.dark {
  --background: 213 49% 10%;
  --foreground: 194 38% 93%;
  --border: 213 38% 24%;
  --input: 213 38% 24%;
  --card: 213 45% 14%;
  --card-foreground: 194 38% 93%;
  --card-border: 213 38% 24%;
  --popover: 213 45% 14%;
  --popover-foreground: 194 38% 93%;
  --popover-border: 213 38% 24%;
  --primary: 190 77% 48%;
  --primary-foreground: 213 71% 14%;
  --secondary: 213 53% 42%;
  --secondary-foreground: 0 0% 100%;
  --muted: 213 38% 20%;
  --muted-foreground: 194 25% 72%;
  --accent: 31 86% 60%;
  --accent-foreground: 213 71% 14%;
  --destructive: 0 72% 58%;
  --destructive-foreground: 0 0% 100%;
  --sidebar: 213 49% 8%;
  --sidebar-foreground: 0 0% 100%;
  --sidebar-border: 213 38% 24%;
  --sidebar-primary: 190 77% 48%;
  --sidebar-primary-foreground: 213 71% 14%;
  --sidebar-accent: 213 53% 42%;
  --sidebar-accent-foreground: 0 0% 100%;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--app-font-sans);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
button, a, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
/*
 * The small utility classes below replace the scaffold's utility layer.
 * ASOMO3 keeps the styling in one custom stylesheet so the page remains
 * portable and easy to hand off.
 */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.hidden { display: none; }
.w-full { width: 100%; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.px-4 { padding-inline: 1rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.min-h-9 { min-height: 2.25rem; }
.min-h-10 { min-height: 2.5rem; }
.min-h-\[4\.6rem\] { min-height: 4.6rem; }
.min-h-\[100dvh\] { min-height: 100dvh; }
.max-w-\[450px\] { max-width: 450px; }
.max-w-\[500px\] { max-width: 500px; }
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255,255,255,.6); }
.text-white\/80 { color: rgba(255,255,255,.8); }
.text-\[\#173c70\] { color: #173c70; }
.text-\[\#32bfd0\] { color: #32bfd0; }
.text-\[\#50647a\] { color: #50647a; }
.text-\[\#71849a\] { color: #71849a; }
.text-\[\.67rem\] { font-size: .67rem; }
.text-\[\.68rem\] { font-size: .68rem; }
.text-\[\.95rem\] { font-size: .95rem; }
.leading-\[1\.4\] { line-height: 1.4; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[\.95\] { line-height: .95; }
.leading-\[\.96\] { line-height: .96; }
.tracking-\[\.08em\] { letter-spacing: .08em; }
.tracking-\[\.11em\] { letter-spacing: .11em; }
.bg-white\/5 { background: rgba(255,255,255,.05); }
.border-white\/30 { border-color: rgba(255,255,255,.3); }
@media (min-width: 681px) { .sm\:inline { display: inline; } }

/*
@layer base {
  html { scroll-behavior: smooth; }
  body {
    @apply font-sans antialiased bg-background text-foreground;
    margin: 0;
    min-width: 320px;
  }
  button, a, input, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
}
*/

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes pulse-ring {
  0%, 100% { opacity: .25; transform: scale(.94); }
  50% { opacity: .55; transform: scale(1); }
}

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, hsl(190 77% 48% / .11), transparent 26rem),
    linear-gradient(180deg, hsl(196 55% 97%), hsl(0 0% 100%) 24rem, hsl(196 55% 97%));
}

.container-wide {
  width: min(100% - 2.25rem, 1160px);
  margin-inline: auto;
}

.topbar .container-wide,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar .container-wide {
  min-height: 2.25rem;
}

.nav-inner {
  min-height: 4.6rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: hsl(var(--foreground) / .72);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: hsl(var(--secondary));
}

.section-pad { padding-block: clamp(5rem, 10vw, 8.75rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: hsl(var(--secondary));
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.display-title {
  font-family: var(--app-font-serif);
  font-weight: 400;
  letter-spacing: -.055em;
}

.topbar {
  position: relative;
  z-index: 20;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 19;
  border-bottom: 1px solid hsl(var(--border) / .6);
  background: hsl(196 55% 97% / .88);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: hsl(var(--primary));
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid hsl(var(--secondary) / .5);
  border-radius: 50%;
  color: hsl(var(--secondary));
  font-family: var(--app-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px hsl(var(--secondary) / .08);
}

.brand-name {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.12;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.brand-name small {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.nav-link {
  color: hsl(var(--foreground) / .72);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-link:hover, .nav-link:focus-visible { color: hsl(var(--secondary)); }

.btn-primary, .btn-light, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  min-height: 3rem;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: .65rem;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.btn-primary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 8px 20px hsl(190 77% 38% / .22);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: hsl(190 76% 42%);
  box-shadow: 0 13px 28px hsl(190 77% 38% / .27);
  transform: translateY(-2px);
}

.btn-light {
  background: hsl(0 0% 100% / .96);
  color: hsl(var(--primary));
  box-shadow: 0 10px 24px hsl(213 71% 18% / .17);
}

.btn-light:hover, .btn-light:focus-visible { transform: translateY(-2px); box-shadow: 0 15px 30px hsl(213 71% 18% / .22); }

.btn-outline {
  border-color: hsl(var(--primary) / .22);
  background: hsl(0 0% 100% / .45);
  color: hsl(var(--primary));
}

.btn-outline:hover, .btn-outline:focus-visible { background: hsl(var(--primary)); color: hsl(0 0% 100%); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: min(750px, calc(100dvh - 112px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, hsl(213 71% 22% / .99) 0%, hsl(213 71% 27% / .96) 47%, hsl(193 71% 42% / .9) 100%);
  color: hsl(0 0% 100%);
}

.hero::before, .hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  background-image: linear-gradient(125deg, transparent 47%, hsl(190 77% 68% / .13) 47.1%, transparent 47.5%);
  background-size: 23rem 23rem;
  opacity: .8;
}

.hero::after {
  right: -8rem;
  top: 12%;
  width: 31rem;
  height: 31rem;
  border: 1px solid hsl(190 77% 78% / .3);
  border-radius: 45% 55% 48% 52%;
  animation: pulse-ring 7s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, .78fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.hero-copy { animation: rise .7s ease both; }
.hero-copy .eyebrow { color: hsl(190 77% 74%); }
.hero-copy .eyebrow::before { background: hsl(var(--accent)); }

.hero-title {
  max-width: 710px;
  margin: 1.25rem 0 1.35rem;
  font-size: clamp(3.25rem, 7vw, 6.55rem);
  line-height: .88;
}

.hero-title em {
  color: hsl(190 77% 67%);
  font-style: normal;
}

.hero-lead {
  max-width: 580px;
  color: hsl(0 0% 100% / .76);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid hsl(0 0% 100% / .2);
}

.meta-item { display: flex; align-items: center; gap: .55rem; color: hsl(0 0% 100% / .75); font-size: .77rem; }
.meta-item svg { color: hsl(190 77% 66%); }

.hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 370px);
  animation: rise .8s .15s ease both;
}

.hero-art::before {
  position: absolute;
  inset: -1rem;
  border: 1px solid hsl(190 77% 76% / .28);
  border-radius: 1.1rem;
  content: "";
  transform: rotate(4deg);
}

.hero-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 694 / 1024;
  object-fit: cover;
  object-position: top;
  border: 8px solid hsl(0 0% 100% / .94);
  border-radius: .8rem;
  box-shadow: 0 25px 70px hsl(213 75% 12% / .3);
  transform: rotate(2deg);
}

.hero-stamp {
  position: absolute;
  right: -1.25rem;
  bottom: 1.5rem;
  z-index: 2;
  display: grid;
  width: 8.25rem;
  height: 8.25rem;
  place-content: center;
  border: 1px solid hsl(190 77% 75% / .5);
  border-radius: 50%;
  background: hsl(var(--primary) / .88);
  color: hsl(0 0% 100%);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
  animation: drift 6s ease-in-out infinite;
}

.hero-stamp strong { display: block; color: hsl(190 77% 68%); font-family: var(--app-font-serif); font-size: 2rem; font-weight: 400; letter-spacing: -.06em; }

.trust-strip { border-bottom: 1px solid hsl(var(--border)); background: hsl(0 0% 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: .85rem; min-height: 6.25rem; padding: 1.15rem 1rem; border-right: 1px solid hsl(var(--border)); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { flex: none; color: hsl(var(--secondary)); }
.trust-item strong { display: block; color: hsl(var(--primary)); font-size: .8rem; letter-spacing: .03em; }
.trust-item span { display: block; margin-top: .2rem; color: hsl(var(--muted-foreground)); font-size: .7rem; line-height: 1.35; }

.section-heading { max-width: 680px; }
.section-heading h2 { margin: 1rem 0 1rem; color: hsl(var(--primary)); font-size: clamp(2.4rem, 4.5vw, 4.5rem); line-height: .98; }
.section-heading p { max-width: 610px; color: hsl(var(--muted-foreground)); font-size: 1rem; line-height: 1.7; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 8vw, 8rem); align-items: start; }
.intro-aside { position: relative; padding-top: 1.5rem; }
.intro-aside::after { position: absolute; right: 12%; top: 0; width: 5rem; height: 5rem; border: 1px solid hsl(var(--secondary) / .42); border-radius: 50%; content: ""; }
.intro-aside p { max-width: 320px; color: hsl(var(--muted-foreground)); font-size: 1.03rem; line-height: 1.7; }
.signature { display: block; margin-top: 2rem; color: hsl(var(--primary)); font-family: var(--app-font-serif); font-size: 1.4rem; }
.signature small { display: block; margin-top: .4rem; color: hsl(var(--muted-foreground)); font-family: var(--app-font-sans); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.intro-points { display: grid; gap: 1.1rem; }
.intro-point { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: start; padding: 1.15rem; border-left: 2px solid hsl(var(--secondary)); background: hsl(0 0% 100% / .65); }
.point-num { color: hsl(var(--secondary)); font-family: var(--app-font-serif); font-size: 1.45rem; }
.intro-point h3 { margin: 0; color: hsl(var(--primary)); font-size: .95rem; }
.intro-point p { margin: .4rem 0 0; color: hsl(var(--muted-foreground)); font-size: .84rem; line-height: 1.55; }

.program-section { background: hsl(var(--primary)); color: hsl(0 0% 100%); }
.program-section .eyebrow { color: hsl(190 77% 68%); }
.program-section .section-heading h2 { color: hsl(0 0% 100%); }
.program-section .section-heading p { color: hsl(0 0% 100% / .67); }
.program-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 7vw, 6rem); margin-top: 3.5rem; }
.program-card { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid hsl(190 77% 72% / .24); border-radius: .85rem; background: linear-gradient(135deg, hsl(213 53% 42% / .65), hsl(213 71% 23% / .42)); }
.program-card h3 { margin: 0 0 1.4rem; color: hsl(190 77% 71%); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; }
.day-block { padding-block: 1.1rem; border-top: 1px solid hsl(0 0% 100% / .14); }
.day-block:first-of-type { padding-top: 0; border-top: 0; }
.day-label { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.day-label strong { font-family: var(--app-font-serif); font-size: 1.45rem; font-weight: 400; }
.day-label span { color: hsl(190 77% 71%); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.day-block p { margin: .45rem 0 0; color: hsl(0 0% 100% / .66); font-size: .84rem; line-height: 1.5; }
.program-list { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.program-list li { display: flex; gap: .7rem; align-items: flex-start; padding-bottom: .75rem; border-bottom: 1px solid hsl(var(--primary-foreground) / .12); color: hsl(0 0% 100% / .82); font-size: .88rem; line-height: 1.45; }
.program-list li:last-child { border-bottom: 0; }
.program-list svg { flex: none; margin-top: .15rem; color: hsl(var(--accent)); }

.workshops-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.workshop-list { display: grid; gap: .8rem; margin-top: 2rem; }
.workshop-item { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; border: 1px solid hsl(var(--border)); border-radius: .75rem; background: hsl(0 0% 100% / .72); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.workshop-item:hover { border-color: hsl(var(--secondary) / .65); box-shadow: var(--shadow-sm); transform: translateX(5px); }
.workshop-icon { display: grid; width: 2.55rem; height: 2.55rem; flex: none; place-items: center; border-radius: .6rem; background: hsl(190 77% 48% / .12); color: hsl(var(--secondary)); }
.workshop-item strong { color: hsl(var(--primary)); font-size: .86rem; line-height: 1.35; }
.workshop-item span { display: block; margin-top: .18rem; color: hsl(var(--muted-foreground)); font-size: .7rem; }
.editorial-card { position: relative; min-height: 385px; padding: 2.2rem; overflow: hidden; border-radius: 1rem; background: hsl(var(--secondary)); color: hsl(var(--primary)); }
.editorial-card::before, .editorial-card::after { position: absolute; border: 1px solid hsl(var(--primary) / .17); border-radius: 50%; content: ""; }
.editorial-card::before { width: 21rem; height: 21rem; right: -8rem; top: -7rem; }
.editorial-card::after { width: 14rem; height: 14rem; right: -4rem; top: -3rem; }
.editorial-card > * { position: relative; z-index: 1; }
.editorial-card .eyebrow { color: hsl(var(--primary)); }
.editorial-card h3 { max-width: 330px; margin: 4.5rem 0 1rem; font-family: var(--app-font-serif); font-size: clamp(2.3rem, 4vw, 3.7rem); font-weight: 400; letter-spacing: -.06em; line-height: .92; }
.editorial-card p { max-width: 300px; font-size: .84rem; line-height: 1.6; opacity: .8; }
.editorial-card .mini-label { position: absolute; right: 2rem; bottom: 2rem; display: flex; align-items: center; gap: .5rem; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.speakers-section { background: hsl(190 66% 92% / .48); }
.speaker-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.speaker-head p { max-width: 360px; margin: 0; color: hsl(var(--muted-foreground)); font-size: .9rem; line-height: 1.6; }
.speaker-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 3rem; }
.collage-panel { position: relative; min-height: 0; overflow: hidden; border-radius: .75rem; background: hsl(var(--primary)); aspect-ratio: 3 / 4; }
.collage-panel::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, hsl(213 71% 14% / .82)); content: ""; }
.collage-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82) contrast(.95); transition: transform .5s ease; }
.collage-panel:hover img { transform: scale(1.04); }
.collage-panel:first-child { grid-row: span 1; }
.collage-panel:last-child { grid-column: span 1; }
.collage-caption { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; color: hsl(0 0% 100%); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.speaker-note { display: flex; gap: .7rem; align-items: center; margin-top: 1.2rem; color: hsl(var(--muted-foreground)); font-size: .72rem; }
.speaker-note svg { color: hsl(var(--secondary)); }

.details-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.details-card { display: grid; gap: .7rem; padding: 1.35rem; border-top: 2px solid hsl(var(--secondary)); background: hsl(0 0% 100% / .7); }
.detail-row { display: grid; grid-template-columns: 1.1rem 1fr; gap: .8rem; align-items: start; padding: .8rem 0; border-bottom: 1px solid hsl(var(--border)); }
.detail-row:last-child { border-bottom: 0; }
.detail-row svg { margin-top: .15rem; color: hsl(var(--secondary)); }
.detail-row strong { display: block; color: hsl(var(--primary)); font-size: .82rem; }
.detail-row span { display: block; margin-top: .25rem; color: hsl(var(--muted-foreground)); font-size: .75rem; line-height: 1.4; }
.faq-list { display: grid; gap: .75rem; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border: 0; background: transparent; color: hsl(var(--primary)); cursor: pointer; text-align: left; font-size: .87rem; font-weight: 800; }
.faq-trigger svg { flex: none; transition: transform .25s ease; }
.faq-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; color: hsl(var(--muted-foreground)); font-size: .82rem; line-height: 1.6; opacity: 0; transition: max-height .3s ease, opacity .3s ease, padding .3s ease; }
.faq-answer.open { max-height: 12rem; padding-bottom: 1rem; opacity: 1; }

.register-section { position: relative; background: linear-gradient(120deg, hsl(var(--primary)) 0%, hsl(213 71% 25%) 63%, hsl(190 70% 40%) 100%); color: hsl(0 0% 100%); }
.register-section::before { position: absolute; inset: 0; background: radial-gradient(circle at 9% 50%, hsl(190 77% 70% / .16), transparent 22rem); content: ""; }
.register-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.register-section .eyebrow { color: hsl(190 77% 70%); }
.register-section h2 { max-width: 670px; margin: 1rem 0; font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: .94; }
.register-section p { max-width: 580px; color: hsl(0 0% 100% / .7); line-height: 1.65; }
.register-contact { display: flex; flex-wrap: wrap; gap: .75rem 1.4rem; margin-top: 1.5rem; color: hsl(0 0% 100% / .75); font-size: .78rem; }
.register-contact span { display: inline-flex; align-items: center; gap: .45rem; }
.register-contact svg { color: hsl(190 77% 68%); }
.register-cta { min-width: 220px; text-align: center; }
.register-cta p { margin: .85rem auto 0; color: hsl(0 0% 100% / .53); font-size: .68rem; line-height: 1.4; }

.mobile-nav { display: none; }
.modal-backdrop { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; padding: 1rem; background: hsl(213 71% 14% / .68); backdrop-filter: blur(8px); }
.modal { width: min(100%, 520px); max-height: min(680px, calc(100dvh - 2rem)); overflow: auto; border: 1px solid hsl(var(--border)); border-radius: 1rem; background: hsl(0 0% 100%); box-shadow: var(--shadow-md); animation: rise .3s ease both; }
.modal-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.5rem 0; }
.modal-header h2 { margin: 0; color: hsl(var(--primary)); font-family: var(--app-font-serif); font-size: 2rem; font-weight: 400; letter-spacing: -.04em; }
.modal-header p { margin: .35rem 0 0; color: hsl(var(--muted-foreground)); font-size: .76rem; line-height: 1.45; }
.modal-close { display: grid; width: 2.25rem; height: 2.25rem; flex: none; place-items: center; border: 0; border-radius: .5rem; background: hsl(var(--muted)); color: hsl(var(--primary)); cursor: pointer; }
.modal-form { display: grid; gap: 1rem; padding: 1.5rem; }
.form-field { display: grid; gap: .4rem; }
.form-field label { color: hsl(var(--primary)); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.form-field input, .form-field select { width: 100%; min-height: 2.8rem; padding: .7rem .8rem; border: 1px solid hsl(var(--border)); border-radius: .5rem; outline: 0; background: hsl(196 55% 97%); color: hsl(var(--foreground)); font-size: .82rem; }
.form-field input:focus, .form-field select:focus { border-color: hsl(var(--secondary)); box-shadow: 0 0 0 3px hsl(var(--secondary) / .13); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-submit { width: 100%; margin-top: .35rem; }
.success-message { display: grid; gap: .6rem; padding: 2.2rem 1.5rem 2rem; text-align: center; }
.success-message .success-icon { display: grid; width: 3.3rem; height: 3.3rem; margin: 0 auto; place-items: center; border-radius: 50%; background: hsl(190 77% 48% / .14); color: hsl(var(--secondary)); }
.success-message h3 { margin: 0; color: hsl(var(--primary)); font-family: var(--app-font-serif); font-size: 1.9rem; font-weight: 400; }
.success-message p { margin: 0; color: hsl(var(--muted-foreground)); font-size: .82rem; line-height: 1.6; }

@media (max-width: 860px) {
  .hero-grid, .intro-grid, .program-grid, .workshops-layout, .details-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { justify-self: start; width: min(100%, 315px); margin-inline: auto; }
  .program-grid, .workshops-layout, .details-grid { gap: 3rem; }
  .register-layout { grid-template-columns: 1fr; }
  .register-cta { justify-self: start; }
}

@media (max-width: 680px) {
  .container-wide { width: min(100% - 1.5rem, 1160px); }
  .topbar .container-wide { justify-content: center; text-align: center; }
  .nav-wrap { padding-block: .6rem; }
  .nav-desktop { display: none; }
  .nav-inner { gap: .75rem; }
  .nav-actions { gap: .45rem; }
  .nav-actions .btn-primary { padding-inline: .8rem; }
  .mobile-nav { display: flex; align-items: center; gap: .8rem; }
  .mobile-nav a { color: hsl(var(--primary)); font-size: .7rem; font-weight: 800; text-decoration: none; }
  .hero-grid { padding-block: 3.6rem 4.5rem; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-stamp { right: -.35rem; bottom: 1rem; transform: scale(.82); }
  .hero-meta { gap: .8rem 1.1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 4.6rem; border-right: 0; border-bottom: 1px solid hsl(var(--border)); }
  .trust-item:last-child { border-bottom: 0; }
  .section-pad { padding-block: 4.75rem; }
  .speaker-head { display: block; }
  .speaker-head p { margin-top: 1rem; }
  .speaker-collage { grid-template-columns: repeat(3, 1fr); }
  .collage-panel:first-child { grid-row: span 1; grid-column: span 1; }
  .collage-panel:last-child { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-header, .modal-form { padding-inline: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}