:root {
  --ink: #15383d;
  --muted: #5a7478;
  --teal-900: #0b4b53;
  --teal-800: #0f6670;
  --teal-600: #2b8f9a;
  --teal-400: #59a7b1;
  --teal-100: #dceff0;
  --cream: #fffaf2;
  --sand: #f5eadb;
  --apricot: #efa777;
  --white: #ffffff;
  --line: rgba(15, 102, 112, 0.15);
  --shadow: 0 24px 70px rgba(13, 65, 72, 0.14);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Tajawal", "Noto Kufi Arabic", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
.top-anchor { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 110px; }
.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; inset: 12px auto auto 12px; z-index: 1000; padding: 10px 16px;
  background: var(--white); color: var(--teal-900); border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 102, 112, 0.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center;
  overflow: hidden; color: var(--white); background: var(--teal-800); border: 2px solid rgba(255,255,255,.88); border-radius: 50%;
  box-shadow: 0 10px 24px rgba(15, 102, 112, 0.22);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand strong, .brand small { display: block; line-height: 1.25; }
.brand strong { font-size: .98rem; letter-spacing: .01em; }
.brand small { color: var(--muted); font-size: .75rem; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: .94rem; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; right: 0; bottom: -7px; width: 0; height: 2px;
  background: var(--teal-600); transition: width .25s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { width: 100%; }
.nav-cta { padding: 10px 17px; color: var(--white); background: var(--teal-800); border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; padding-block: 90px 120px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15,102,112,.09) 1px, transparent 1px);
  background-size: 28px 28px; mask-image: linear-gradient(to left, #000, transparent 70%); opacity: .45;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .6; }
.hero-orb-one { width: 420px; height: 420px; left: -190px; top: 20px; background: #e0f2f1; }
.hero-orb-two { width: 260px; height: 260px; right: 30%; bottom: -150px; background: #f6d9c3; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 88px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--teal-800); font-size: .88rem; font-weight: 800; letter-spacing: .03em; }
.eyebrow span { width: 34px; height: 2px; background: var(--apricot); border-radius: 9px; }
.eyebrow.light { color: #bfe1e4; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(2.8rem, 5.6vw, 5.4rem); line-height: 1.15; letter-spacing: -.045em; }
.hero h1 em { color: var(--teal-800); font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; right: 0; bottom: -7px; width: 100%; height: 7px; border-radius: 999px; background: var(--apricot); opacity: .65; transform: rotate(-1deg); }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: var(--muted); font-size: 1.18rem; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .program-card button:focus-visible, .dialog-close:focus-visible,
.feedback-card:focus-visible, .feedback-close:focus-visible, .feedback-nav:focus-visible { outline: 3px solid rgba(239, 167, 119, .75); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--teal-800); box-shadow: 0 14px 32px rgba(15,102,112,.22); }
.button-primary:hover { background: var(--teal-900); box-shadow: 0 18px 40px rgba(15,102,112,.29); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.55); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--muted); font-size: .9rem; }
.hero-notes b { color: var(--teal-600); margin-left: 4px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-image-frame {
  position: absolute; width: min(420px, 88%); height: 540px; inset: 0 0 auto auto;
  border: 12px solid rgba(255,255,255,.75); border-radius: 210px 210px 34px 34px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--white); transform: rotate(1.5deg);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 12px; min-width: 172px; padding: 13px 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; box-shadow: 0 18px 46px rgba(19,56,61,.16);
}
.floating-card b, .floating-card small { display: block; line-height: 1.35; }
.floating-card b { font-size: .98rem; }
.floating-card small { color: var(--muted); font-size: .75rem; margin-top: 2px; }
.floating-top { top: 76px; left: -18px; }
.floating-bottom { bottom: 52px; right: -26px; }
.mini-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--apricot); border-radius: 12px; font-size: 1.3rem; }
.mini-icon.leaf { background: var(--teal-600); }

.section-heading h2 { max-width: 660px; margin: 0; font-size: clamp(2.1rem, 4vw, 3.7rem); line-height: 1.25; letter-spacing: -.03em; }
.section-heading.centered { display: grid; justify-items: center; text-align: center; }
.section-heading.centered p:last-child { max-width: 600px; margin: 18px auto 0; color: var(--muted); font-size: 1.07rem; }
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.05fr .65fr; gap: 56px; align-items: start; }
.about-copy { color: var(--muted); font-size: 1.06rem; }
.about-copy p { margin: 0 0 16px; }
.about-copy p:nth-child(n+4) { display: none; }
.about-quote { padding: 30px; background: var(--sand); border-radius: 30px 8px 30px 30px; }
.about-quote svg { width: 38px; fill: var(--apricot); opacity: .9; }
.about-quote p { margin: 13px 0 0; font-weight: 700; line-height: 1.85; }

.programs { background: linear-gradient(180deg, #f6fbfa 0%, var(--cream) 100%); }
.offering-group { margin-top: 64px; }
.offering-group.separator-group { margin-top: 80px; padding-top: 72px; border-top: 1px solid var(--line); }
.offering-group-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.group-number {
  width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 52px;
  color: var(--white); background: var(--teal-800); border-radius: 17px 5px 17px 17px; font-weight: 800;
}
.offering-group-heading p { margin: 0 0 1px; color: var(--teal-600); font-size: .78rem; font-weight: 800; }
.offering-group-heading h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.2; }
.program-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.program-card {
  grid-column: span 6; min-width: 0; overflow: hidden; background: var(--white); border: 1px solid rgba(15,102,112,.1);
  border-radius: 26px; box-shadow: 0 12px 34px rgba(21,56,61,.06); transition: transform .3s ease, box-shadow .3s ease;
}
.program-grid:not(.package-grid) .program-card:last-child:nth-child(odd) { grid-column: 4 / span 6; }
.package-grid .program-card:only-child { grid-column: 4 / span 6; }
.program-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(21,56,61,.12); }
.program-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--teal-100); isolation: isolate; }
.program-image::after {
  content: ""; position: absolute; z-index: 1; inset: 0 0 0 auto; width: 68%; pointer-events: none;
  background: linear-gradient(270deg, rgba(255,250,242,.98) 3%, rgba(255,250,242,.88) 46%, rgba(255,250,242,.16) 88%, transparent 100%);
}
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.program-card:hover .program-image img { transform: scale(1.035); }
.program-card[data-index="0"] .program-image img { object-position: center 26%; }
.program-card[data-index="1"] .program-image img, .program-card[data-index="2"] .program-image img { object-position: center; }
.program-card[data-index="3"] .program-image img { object-position: center 60%; }
.program-image-copy {
  position: absolute; z-index: 2; inset: 0 0 0 auto; width: 54%; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; padding: clamp(20px, 3.2vw, 38px) clamp(18px, 3vw, 34px); text-align: right;
}
.program-image-kind { margin-bottom: 10px; color: var(--teal-800); font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.program-image-copy h3 { margin: 0; color: var(--ink); font-size: clamp(1.35rem, 2.25vw, 2rem); line-height: 1.35; text-wrap: balance; }
.program-image-copy p { margin: 10px 0 0; color: #45666a; font-size: clamp(.72rem, 1.2vw, .88rem); font-weight: 600; line-height: 1.55; }
.program-image-duration {
  margin-top: 16px; padding: 6px 11px; color: var(--teal-900); background: rgba(220,239,240,.88);
  border: 1px solid rgba(15,102,112,.12); border-radius: 999px; font-size: .72rem; font-weight: 800; line-height: 1.45;
}
.program-illustration {
  position: relative; z-index: 1; width: 100%; height: 100%; display: grid; align-content: center; justify-items: center; gap: 15px;
  padding: 28px; text-align: center; color: var(--teal-900);
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.9), transparent 24%), linear-gradient(145deg, #f7e5d5, #dceff0);
}
.program-illustration::before, .program-illustration::after { content: ""; position: absolute; border: 1px solid rgba(15,102,112,.18); border-radius: 50%; }
.program-illustration::before { width: 190px; height: 190px; }
.program-illustration::after { width: 245px; height: 245px; }
.program-illustration span { position: relative; z-index: 1; font-size: 4.7rem; line-height: 1; filter: drop-shadow(0 12px 18px rgba(21,56,61,.12)); }
.program-illustration small { position: relative; z-index: 1; max-width: 260px; font-weight: 800; line-height: 1.5; }
.program-body { padding: 25px 25px 27px; }
.program-card-category { margin: 0 0 8px; color: var(--teal-800); font-size: .76rem; font-weight: 800; line-height: 1.55; }
.program-body .program-summary { min-height: 90px; margin: 0; color: var(--muted); line-height: 1.75; }
.program-link {
  width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 13px 0 0;
  color: var(--teal-800); background: none; border: 0; border-top: 1px solid var(--line); font-weight: 800; cursor: pointer;
}
.program-link span { width: 30px; height: 30px; display: grid; place-items: center; background: var(--teal-100); border-radius: 50%; transition: transform .25s ease; }
.program-link:hover span { transform: translateX(-4px); }
.loading { grid-column: 1 / -1; text-align: center; color: var(--muted); }

.add-ons { background: var(--white); }
.add-on-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.add-on-card {
  position: relative; min-width: 0; padding: 30px 25px; overflow: hidden;
  background: var(--cream); border: 1px solid rgba(15,102,112,.1); border-radius: 24px 7px 24px 24px;
}
.add-on-card::after { content: ""; position: absolute; width: 90px; height: 90px; top: -44px; left: -40px; border-radius: 50%; background: var(--teal-100); opacity: .7; }
.add-on-icon { width: 47px; height: 47px; display: grid; place-items: center; color: var(--teal-900); background: var(--teal-100); border-radius: 15px; font-size: 1.45rem; }
.add-on-label { margin: 22px 0 6px !important; color: var(--teal-600) !important; font-size: .75rem; font-weight: 800; }
.add-on-card h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.45; }
.add-on-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.add-on-card ul { margin: 16px 0 0; padding-right: 20px; color: var(--muted); line-height: 1.75; }
.add-on-card li { margin-bottom: 5px; }
.add-on-card .add-on-note { margin-top: 18px; padding-top: 15px; color: var(--teal-800); border-top: 1px solid var(--line); font-weight: 700; }
.add-ons-action { display: flex; justify-content: center; margin-top: 34px; }

.feedbacks { overflow: hidden; background: linear-gradient(180deg, #f7fbf8 0%, var(--cream) 100%); }
.feedback-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 32%); gap: 18px;
  margin-top: 52px; padding: 6px 3px 22px; overflow-x: auto; overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory; scrollbar-color: var(--teal-600) rgba(15,102,112,.1); scrollbar-width: thin;
}
.feedback-card {
  min-width: 0; padding: 0; overflow: hidden; scroll-snap-align: start; color: var(--teal-800); background: var(--white);
  border: 1px solid rgba(15,102,112,.12); border-radius: 24px; box-shadow: 0 14px 34px rgba(21,56,61,.08);
  font: inherit; font-weight: 800; cursor: zoom-in; transition: transform .3s ease, box-shadow .3s ease;
}
.feedback-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(21,56,61,.14); }
.feedback-card img { width: 100%; height: 560px; padding: 12px; object-fit: contain; background: #eaf3e4; }
.feedback-card span { display: block; padding: 13px 18px; border-top: 1px solid var(--line); }
.feedback-disclaimer { max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: .84rem; line-height: 1.75; text-align: center; }

.approach { color: var(--white); background: var(--teal-900); position: relative; overflow: hidden; }
.approach::before { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; top: -260px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.approach-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.approach h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.25; }
.approach-intro > p:not(.eyebrow) { color: #bed3d5; max-width: 480px; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 20px; color: #f8c7a6; font-weight: 800; }
.approach-list { border-top: 1px solid rgba(255,255,255,.16); }
.approach-item { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.approach-item > span { color: var(--apricot); font-weight: 800; }
.approach-item h3 { margin: 0 0 5px; font-size: 1.35rem; }
.approach-item p { margin: 0; color: #bed3d5; }

.contact { background: var(--cream); }
.contact-card {
  display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 58px 64px;
  color: var(--white); background: linear-gradient(125deg, var(--teal-600), var(--teal-800));
  border-radius: 40px 10px 40px 40px; box-shadow: var(--shadow);
}
.contact-card .eyebrow { color: #d9f0f1; }
.contact-card h2 { max-width: 690px; margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.3; }
.contact-card p:not(.eyebrow) { max-width: 650px; margin: 15px 0 0; color: #e2f2f3; }
.light-button { flex: 0 0 auto; color: var(--teal-900); background: var(--white); box-shadow: none; }
.light-button:hover { background: var(--cream); }

.site-footer { padding-block: 38px; background: #11353a; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: .8fr 1.4fr .6fr; gap: 35px; align-items: center; }
.footer-brand .brand-mark { background: var(--white); box-shadow: none; }
.footer-brand small { color: #a9c4c7; }
.disclaimer { margin: 0; color: #a9c4c7; font-size: .82rem; line-height: 1.7; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; color: #d9e9ea; font-size: .85rem; }

.program-dialog { width: min(920px, calc(100% - 28px)); max-height: min(90vh, 920px); padding: 0; border: 0; border-radius: 30px; color: var(--ink); background: var(--white); box-shadow: 0 30px 100px rgba(4,33,37,.34); overflow: hidden; }
.program-dialog::backdrop { background: rgba(3, 31, 35, .68); backdrop-filter: blur(5px); }
.dialog-shell { display: grid; grid-template-columns: .78fr 1.22fr; max-height: min(90vh, 920px); }
.dialog-cover { background: var(--teal-100); min-height: 100%; }
.dialog-cover img { width: 100%; height: 100%; object-fit: cover; }
.dialog-illustration { width: 100%; height: 100%; min-height: 440px; display: grid; align-content: center; justify-items: center; gap: 22px; padding: 34px; text-align: center; background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.9), transparent 25%), linear-gradient(145deg, #f7e5d5, #dceff0); }
.dialog-illustration[hidden] { display: none; }
.dialog-illustration span { font-size: 6.5rem; line-height: 1; }
.dialog-illustration small { max-width: 270px; color: var(--teal-900); font-size: 1rem; font-weight: 800; }
.dialog-body { position: relative; padding: 45px 42px; overflow-y: auto; }
.dialog-close { position: absolute; top: 16px; left: 18px; z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 50%; color: var(--ink); background: var(--sand); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.dialog-kicker { margin: 0 0 10px; padding-left: 45px; color: var(--teal-600); font-weight: 800; font-size: .82rem; }
.dialog-body > h2 { margin: 0 0 25px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.3; }
.dialog-content { color: var(--muted); }
.dialog-content h3 { margin: 34px 0 10px; color: var(--ink); font-size: 1.38rem; }
.dialog-content h4 { margin: 24px 0 8px; color: var(--teal-800); font-size: 1.1rem; }
.dialog-content p { margin: 0 0 13px; }
.dialog-content ul { margin: 5px 0 20px; padding-right: 22px; }
.dialog-content li { margin-bottom: 5px; }
.dialog-content strong { color: var(--ink); }
.dialog-content blockquote { margin: 22px 0; padding: 18px 20px; color: var(--ink); background: var(--sand); border-right: 4px solid var(--apricot); border-radius: 12px 4px 12px 12px; font-weight: 700; }
.dialog-content a { color: var(--teal-800); text-decoration: underline; }
.dialog-cta { margin-top: 28px; }

.feedback-dialog {
  width: min(980px, calc(100% - 28px)); max-height: 94vh; padding: 0; overflow: hidden;
  color: var(--ink); background: #f7f2e8; border: 0; border-radius: 26px; box-shadow: 0 30px 100px rgba(4,33,37,.4);
}
.feedback-dialog::backdrop { background: rgba(3,31,35,.78); backdrop-filter: blur(6px); }
.feedback-dialog-shell {
  position: relative; min-height: min(90vh, 900px); display: grid; grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 14px; align-items: center; padding: 56px 20px 18px;
}
.feedback-dialog figure { min-width: 0; margin: 0; text-align: center; }
.feedback-dialog figure img { width: 100%; max-height: calc(90vh - 120px); object-fit: contain; border-radius: 16px; }
.feedback-dialog figcaption { min-height: 22px; margin-top: 9px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.feedback-close {
  position: absolute; top: 12px; left: 14px; width: 42px; height: 42px; padding: 0; z-index: 2;
  color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 50%;
  font-size: 1.75rem; line-height: 1; cursor: pointer;
}
.feedback-nav {
  width: 48px; height: 48px; padding: 0; color: var(--white); background: var(--teal-800);
  border: 0; border-radius: 50%; font-size: 1.45rem; cursor: pointer; transition: transform .2s ease, background .2s ease;
}
.feedback-nav:hover { transform: scale(1.06); background: var(--teal-600); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-nav { gap: 15px; font-size: .86rem; }
  .hero-grid { gap: 42px; }
  .hero-visual { min-height: 500px; }
  .hero-image-frame { height: 480px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-quote { grid-column: 2; }
  .program-card { grid-column: span 6; }
  .program-grid:not(.package-grid) .program-card:last-child:nth-child(odd) { grid-column: 4 / span 6; }
  .add-on-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .disclaimer { grid-row: 2; grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); }
  .section { padding-block: 78px; }
  .nav-wrap { min-height: 72px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 72px; right: 14px; left: 14px; display: none; align-items: stretch; flex-direction: column;
    gap: 4px; padding: 15px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 13px; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-block: 66px 80px; }
  .hero-grid, .about-grid, .approach-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.1rem); }
  .hero h1 em { white-space: normal; }
  .hero-lead { font-size: 1.06rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 500px; }
  .hero-image-frame { position: relative; width: 88%; height: 480px; margin-right: auto; }
  .floating-top { top: 55px; left: -3px; }
  .floating-bottom { right: -2px; bottom: 18px; }
  .about-grid { gap: 25px; }
  .about-quote { grid-column: auto; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { grid-column: 1; }
  .program-grid:not(.package-grid) .program-card:last-child:nth-child(odd), .package-grid .program-card:only-child { grid-column: 1; }
  .program-body p { min-height: auto; }
  .program-image-copy { width: 57%; padding: 18px; }
  .program-image-copy h3 { font-size: clamp(1.12rem, 6vw, 1.55rem); }
  .program-image-copy p { margin-top: 7px; font-size: .7rem; line-height: 1.4; }
  .program-image-duration { margin-top: 11px; padding: 5px 9px; font-size: .66rem; }
  .offering-group { margin-top: 48px; }
  .offering-group.separator-group { margin-top: 58px; padding-top: 52px; }
  .add-on-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .feedback-track { grid-auto-columns: 86%; margin-top: 38px; }
  .feedback-card img { height: min(68vh, 540px); }
  .feedback-dialog-shell { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 7px; padding: 54px 8px 14px; }
  .feedback-nav { width: 40px; height: 40px; }
  .approach-grid { gap: 50px; }
  .contact-card { flex-direction: column; align-items: stretch; padding: 42px 26px; border-radius: 30px 8px 30px 30px; }
  .contact-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: right; }
  .disclaimer { grid-row: auto; grid-column: auto; text-align: right; }
  .footer-links { justify-content: flex-start; }
  .dialog-shell { grid-template-columns: 1fr; overflow-y: auto; }
  .dialog-cover { min-height: 230px; max-height: 260px; }
  .dialog-illustration { min-height: 260px; }
  .dialog-body { overflow: visible; padding: 34px 24px; }
  .program-dialog { overflow-y: auto; }
}

@media (max-width: 420px) {
  .brand strong { font-size: .88rem; }
  .brand small { font-size: .68rem; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .hero-notes { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 440px; }
  .hero-image-frame { height: 425px; }
  .floating-card { min-width: 150px; padding: 10px; }
  .program-image-copy { width: 60%; padding: 14px; }
  .program-image-kind { margin-bottom: 6px; font-size: .64rem; }
  .program-image-copy h3 { font-size: 1.04rem; line-height: 1.3; }
  .program-image-copy p { font-size: .64rem; }
  .program-image-duration { margin-top: 8px; padding: 4px 7px; font-size: .59rem; }
}

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