@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;800&family=Heebo:wght@300;400;750;900&family=Outfit:wght@300;400;700;900&display=swap');

:root {
  --rose-25: #fff8fb;
  --rose-50: #fff1f7;
  --rose-100: #ffe0ec;
  --rose-200: #f7bfd3;
  --rose-500: #d84f84;
  --berry: #7b173f;
  --ink: #2f1d27;
  --muted: #7c6671;
  --sage: #8fa39a;
  --white: #ffffff;
  --line: rgba(123, 23, 63, 0.16);
  --shadow: 0 22px 70px rgba(80, 25, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 224, 236, 0.82), rgba(255, 248, 251, 0.95) 28rem),
    var(--rose-25);
  font-family: "Heebo", "Assistant", "Noto Sans Hebrew", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

body.editor-mode {
  padding-bottom: 6rem;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 251, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  color: var(--white);
  background: var(--berry);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.nav-links {
  gap: clamp(0.7rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--berry);
}

.nav-cta,
.button {
  border: 1px solid var(--berry);
  border-radius: 999px;
  padding: 0.74rem 1.2rem;
  font-weight: 800;
}

.nav-cta {
  color: var(--berry);
  background: var(--white);
}

.button {
  display: inline-flex;
  justify-content: center;
  min-width: 10rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button:focus-visible,
.shot:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(216, 79, 132, 0.35);
  outline-offset: 3px;
}

.primary {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 14px 36px rgba(123, 23, 63, 0.28);
}

.secondary {
  color: var(--berry);
  background: rgba(255, 255, 255, 0.72);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero {
  min-height: calc(90svh - 4.1rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.hero-media {
  position: relative;
  min-height: min(61svh, 44rem);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--rose-100);
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.2s;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 29, 39, 0.05), rgba(123, 23, 63, 0.3));
}

.hero-media img {
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
}

.editable-image {
  position: relative;
}

.image-drop-ui {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--white);
  text-align: center;
  background: rgba(47, 29, 39, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background 180ms ease;
}

.image-drop-ui span {
  padding: 0.7rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

body.editor-mode .editable-image {
  cursor: pointer;
}

.text-editable {
  border-radius: 6px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

body.editor-mode .text-editable {
  cursor: text;
}

body.editor-mode .text-editable:hover,
body.editor-mode .text-editable:focus {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 2px rgba(216, 79, 132, 0.16);
  outline: none;
}

body.editor-mode .editable-image:hover .image-drop-ui,
body.editor-mode .editable-image.is-dragover .image-drop-ui {
  opacity: 1;
}

body.editor-mode .editable-image.is-dragover .image-drop-ui {
  background: rgba(123, 23, 63, 0.68);
}

.hero-copy {
  max-width: 34rem;
  padding-block: clamp(1rem, 3vw, 2.5rem);
}

.hero-copy > * {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy .eyebrow { animation-delay: 0.1s; }
.hero-copy h1 { animation-delay: 0.2s; }
.hero-copy .lead { animation-delay: 0.3s; }
.hero-copy .hero-actions { animation-delay: 0.4s; }

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.8vw, 6.15rem);
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.lead {
  max-width: 29rem;
  color: #513843;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hero-actions,
.closing-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}

.hero-proof div {
  padding: clamp(1rem, 3vw, 1.6rem);
  border-inline-start: 1px solid var(--line);
}

.hero-proof div:first-child {
  border-inline-start: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--berry);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero-proof span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.section-band,
.portfolio,
.academy,
.closing {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.section-band {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro p:not(.eyebrow) {
  max-width: 55rem;
  color: #4f3b45;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
}

.section-heading {
  max-width: 42rem;
}

.section-heading.compact {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.portfolio {
  background: linear-gradient(180deg, #fff5f9, var(--rose-25));
}

.portfolio-story {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(19rem, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 6.5rem;
  display: grid;
  place-items: center;
  width: min(100%, calc((100svh - 8rem) * var(--story-ratio-decimal, 0.75)));
  height: auto;
  aspect-ratio: var(--story-ratio, 3 / 4);
  min-height: min(26rem, calc(100svh - 8rem));
  max-height: calc(100svh - 8rem);
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
  background: #f4e8ee;
  box-shadow: 0 24px 70px rgba(80, 25, 52, 0.14);
  border: 1px solid rgba(123, 23, 63, 0.12);
}

.story-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(0.55rem, 1.2vw, 0.8rem);
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: #f4e8ee;
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.story-stage.is-active {
  opacity: 1;
  pointer-events: auto;
}

.story-stage img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  transform: none !important;
  clip-path: none !important;
}

.story-glow {
  display: none;
}

.story-track {
  display: grid;
  gap: 0;
}

.story-step {
  min-height: 64svh;
  display: grid;
  align-content: center;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  column-gap: 1.25rem;
  padding: 2rem 0;
  border-block-start: 1px solid rgba(123, 23, 63, 0.14);
  opacity: 0.34;
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(-0.35rem);
}

.story-index {
  grid-row: 1 / span 3;
  display: block;
  padding-top: 0.2rem;
  color: rgba(123, 23, 63, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1;
}

.story-kicker {
  grid-column: 2;
  margin-bottom: 0.6rem;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.story-step h3 {
  grid-column: 2;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  line-height: 1.08;
}

.story-step p {
  grid-column: 2;
  max-width: 28rem;
  margin: 0.85rem 0 0;
  color: #5b4751;
  font-size: 1.04rem;
  line-height: 1.75;
}

.shot {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--rose-100);
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  box-shadow: 0 12px 34px rgba(123, 23, 63, 0.13);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-grid article {
  min-height: 12rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.95), rgba(255, 255, 255, 0.82));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(123, 23, 63, 0.08);
  border-color: rgba(123, 23, 63, 0.3);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--berry);
  background: rgba(123, 23, 63, 0.05);
  padding: 0.5rem;
  border-radius: 50%;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.service-grid p,
.academy p,
.closing p {
  color: var(--muted);
}

.academy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  background: linear-gradient(135deg, #331922, var(--berry));
  color: var(--white);
}

.academy .eyebrow,
.academy p {
  color: #ffe0ec;
}

.academy-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.academy-panel span {
  display: grid;
  min-height: 7rem;
  place-items: center;
  border: 1px solid rgba(255, 224, 236, 0.35);
  border-radius: 8px;
  color: #ffe8f0;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.closing {
  min-height: 70svh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 224, 236, 0.95), transparent 35rem),
    var(--rose-25);
}

.closing h2 {
  max-width: 52rem;
}

.closing p:not(.eyebrow) {
  max-width: 38rem;
  font-size: 1.1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(35, 18, 28, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: auto;
  max-width: min(94vw, 82rem);
  max-height: 90svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.9rem;
  cursor: pointer;
}

.editor-toolbar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: min(92vw, 40rem);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: 0 14px 40px rgba(80, 25, 52, 0.16);
  backdrop-filter: blur(14px);
}

.editor-toolbar .button {
  min-width: auto;
}

.editor-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero,
  .section-band,
  .academy,
  .portfolio-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: -1;
  }

  .hero-media {
    min-height: 42svh;
  }

  .story-visual {
    position: sticky;
    top: 4rem;
    z-index: 10;
    width: min(100%, calc((100svh - 5.5rem) * var(--story-ratio-decimal, 0.75)));
    height: auto;
    aspect-ratio: var(--story-ratio, 3 / 4);
    min-height: min(22rem, calc(100svh - 5.5rem));
    max-height: calc(100svh - 5.5rem);
    box-shadow: 0 10px 30px rgba(80, 25, 52, 0.08);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
  }

  .story-stage img {
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .story-step {
    min-height: 50svh;
    padding: 3.5rem 0.5rem;
    margin-bottom: 0;
    background: transparent;
  }

  .story-step.is-active {
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-inline: 0.85rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 0.85rem;
  }

  .hero-media {
    min-height: 40svh;
  }

  .hero-proof,
  .service-grid,
  .academy-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section-band,
  .portfolio,
  .academy,
  .closing {
    padding-inline: 0.9rem;
  }

  .editor-toolbar {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .story-visual {
    top: 3.65rem;
    width: min(100%, calc((100svh - 5.5rem) * var(--story-ratio-decimal, 0.75)));
    height: auto;
    aspect-ratio: var(--story-ratio, 3 / 4);
    min-height: min(30rem, calc(100svh - 6.5rem));
    max-height: calc(100svh - 5.5rem);
    background: rgba(255, 249, 252, 0.98);
  }

  .story-stage img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }

  .story-step h3 {
    font-size: 1.55rem;
  }

  .story-step {
    grid-template-columns: 2.55rem minmax(0, 1fr);
    column-gap: 0.85rem;
  }

  .story-index {
    font-size: 1.45rem;
  }

  .portfolio .section-heading.compact {
    margin-bottom: 1.6rem;
  }

  .portfolio .section-heading h2 {
    max-width: 21rem;
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
    line-height: 1.06;
  }

  .portfolio-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(8.25rem, 43vw);
    gap: 0.85rem;
    align-items: start;
    direction: ltr;
  }

  .story-visual {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 4.35rem;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    aspect-ratio: var(--story-ratio, 3 / 4);
    border: 1px solid rgba(123, 23, 63, 0.16);
    border-radius: 8px;
    background: #fffafd;
    box-shadow: 0 14px 36px rgba(80, 25, 52, 0.13);
  }

  .story-stage {
    padding: 0.25rem;
    background: #fffafd;
  }

  .story-stage img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .story-track {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    direction: rtl;
  }

  .story-step {
    min-height: 68svh;
    display: block;
    padding: clamp(2.5rem, 10svh, 5rem) 0.7rem 2.5rem 0.1rem;
    border-block-start: 1px solid rgba(123, 23, 63, 0.18);
    border-inline-end: 3px solid transparent;
    opacity: 0.34;
    transform: none;
    transition: opacity 300ms ease, border-color 300ms ease, background-color 300ms ease;
  }

  .story-step.is-active {
    border-inline-end-color: var(--berry);
    opacity: 1;
    transform: none;
    background: linear-gradient(270deg, rgba(255, 224, 236, 0.52), transparent 76%);
  }

  .story-index {
    display: block;
    margin-bottom: 1rem;
    padding: 0;
    color: rgba(123, 23, 63, 0.62);
    font-size: 1.05rem;
    font-weight: 700;
  }

  .story-kicker {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .story-step h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.32rem, 6vw, 1.65rem);
    line-height: 1.12;
  }

  .story-step p {
    margin-top: 0.8rem;
    color: #49343f;
    font-size: 0.95rem;
    font-weight: 560;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ==========================================================================
   About Instructor Section
   ========================================================================== */
.about-instructor {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-instructor-media {
  position: relative;
  min-height: min(61svh, 44rem);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--rose-100);
}

.about-instructor-media img {
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
}

.about-instructor-copy {
  max-width: 36rem;
  padding-block: clamp(1rem, 3vw, 2.5rem);
}

.about-instructor-copy h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 900;
}

.about-instructor-copy .subtitle {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 750;
}

.about-instructor-copy p {
  color: #4f3b45;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: linear-gradient(180deg, var(--rose-25), var(--white));
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  max-width: 48rem;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(123, 23, 63, 0.25);
  background: var(--white);
}

.faq-item.is-open {
  box-shadow: 0 8px 24px rgba(123, 23, 63, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: none;
  background: var(--rose-50);
}

.faq-icon-chevron {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--berry);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(0deg);
}

.faq-item.is-open .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 15rem;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .about-instructor {
    grid-template-columns: 1fr;
  }
  
  .about-instructor-media {
    min-height: 42svh;
  }
  
  .about-instructor-copy {
    order: -1;
  }
}
