/* ============================================================
   narcisaedu.com  —  global design system
   Coconut white dominates. Rose, blue, sage are splashes only.
   Black text. One typeface (Plus Jakarta Sans). No em dashes.
   ============================================================ */

:root {
  /* Four colours + black */
  --coconut: #fdf8f2;   /* MAIN. Dominant background everywhere */
  --rose:    #ea90a8;   /* splash accent */
  --blue:    #9ec3e1;   /* splash accent */
  --green:   #9cc0a0;   /* splash accent */
  --ink:     #191716;   /* all body text */

  /* Supporting soft tints (a touch more saturated for a dreamier, less beige feel) */
  --rose-soft:  #fbdde8;
  --blue-soft:  #dfecfb;
  --green-soft: #ddedE1;
  --rose-tint:  #f8cdda;   /* deeper splash for fills */
  --blue-tint:  #cfe2f6;
  --green-tint: #cfe6d4;
  --panel-warm: #eef3f7;   /* soft blue-cream panel (was pink) for balance */
  --card-white: #fffdfb;
  --line:       #e7e6ea;   /* neutral cool hairline, neither pink nor beige */

  /* Derived */
  --ink-70: rgba(25, 23, 22, 0.70);
  --ink-55: rgba(25, 23, 22, 0.55);
  --ink-40: rgba(25, 23, 22, 0.40);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow:    0 10px 30px -18px rgba(25, 23, 22, 0.30);
  --shadow-sm: 0 4px 14px -10px rgba(25, 23, 22, 0.35);

  --maxw: 1120px;
  --gap:  clamp(16px, 2.5vw, 28px);

  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--coconut);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Page-wide dreamy wash: soft pink, blue and green pooled in the corners,
   fixed so the whole site sits on a gentle field of colour, not flat beige. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(52% 44% at 3% 1%,    rgba(234,144,168,0.18), transparent 60%),  /* pink, gentle */
    radial-gradient(54% 46% at 100% 5%,  rgba(158,195,225,0.34), transparent 60%),  /* blue, stronger */
    radial-gradient(58% 50% at 95% 100%, rgba(156,192,160,0.30), transparent 62%),  /* green */
    radial-gradient(50% 44% at 0% 100%,  rgba(158,195,225,0.20), transparent 62%),  /* blue (was pink) */
    var(--coconut);
}

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

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.18rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--ink-70); }
strong { color: var(--ink); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.lead { font-size: 1.12rem; color: var(--ink-70); max-width: 60ch; }

/* ---------- Buttons (black = primary, pastel = secondary) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font: inherit;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.72em 1.3em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--coconut); }
.btn-primary:hover { box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--card-white); border-color: var(--ink-40); }
.btn-soft { background: var(--panel-warm); color: var(--ink); border-color: var(--line); }
.btn-soft:hover { background: var(--card-white); }
.btn-sm { padding: 0.5em 0.95em; font-size: 0.85rem; }

/* ============================================================
   HEADER + NAVIGATION (dropdown tabs)
   No overflow:hidden / backdrop-filter / filter / transform on the
   header or any ancestor of the menu, so dropdowns are never clipped.
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(223,236,251,0.9), rgba(248,247,243,0.9) 50%, rgba(221,237,225,0.86));
  border-bottom: 1px solid var(--line);
  /* deliberately NO backdrop-filter / transform here (would clip menus) */
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}

/* Wordmark */
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: 6px; }
.brand-mark {
  width: 32px; height: 32px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg, .logo-daffodil { width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 2px 4px rgba(25,23,22,0.12)); }
.brand-word { font-weight: 800; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand-word .edu {
  font-size: 0.62em; font-weight: 700; color: var(--ink-55);
  vertical-align: super; margin-left: 2px; letter-spacing: 0.02em;
}

/* Primary tabs */
.nav-tabs { display: flex; align-items: stretch; gap: 2px; height: 100%; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-tab {
  display: inline-flex; align-items: center; gap: 6px;
  height: 100%;
  padding: 0 14px;
  font: inherit; font-size: 0.96rem; font-weight: 600;
  background: none; border: none; color: var(--ink); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-tab .caret { transition: transform .18s ease; opacity: .6; }
.nav-item.open .nav-tab .caret { transform: rotate(180deg); }
.nav-tab:hover { color: var(--ink); }

/* Active section underline in the section accent colour */
.nav-item[data-accent="blue"].is-active  .nav-tab { border-color: var(--blue); }
.nav-item[data-accent="rose"].is-active  .nav-tab { border-color: var(--rose); }
.nav-item[data-accent="green"].is-active .nav-tab { border-color: var(--green); }

/* Dropdown panel: absolutely positioned directly below the tab. */
.nav-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 256px;
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item.open > .nav-menu,
.nav-item:hover > .nav-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 11px;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  transition: background .14s ease;
}
.nav-menu a:hover { background: var(--coconut); }
.nav-menu .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.nav-item[data-accent="blue"]  .dot { background: var(--blue); }
.nav-item[data-accent="rose"]  .dot { background: var(--rose); }
.nav-item[data-accent="green"] .dot { background: var(--green); }
.nav-menu .menu-sep { height: 1px; background: var(--line); margin: 6px 8px; }
.nav-menu a.menu-all { font-weight: 700; color: var(--ink); }
.nav-menu a.menu-all .arrow { margin-left: auto; opacity: .5; }

/* Right side */
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* Language / site switcher (full names: Global / Türkiye / Italia) */
.lang-select { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 0.85rem;
  padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--card-white); color: var(--ink); cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.lang-current:hover { border-color: var(--ink-40); }
.lang-current .lang-ic { display: inline-flex; }
.lang-current .lang-ic svg { width: 16px; height: 16px; display: block; }
.lang-current .caret { opacity: .55; transition: transform .18s ease; }
.lang-select.open .lang-current .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; left: auto;
  min-width: 168px;
  background: var(--card-white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 8px; z-index: 1200;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lang-select.open > .lang-menu,
.lang-select:hover > .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  display: block; padding: 9px 12px; border-radius: 11px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  transition: background .14s ease;
}
.lang-menu a:hover { background: var(--coconut); }
.lang-menu a.active { background: var(--coconut); }

/* Hamburger */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--card-white);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(36px, 6vw, 64px); overflow: visible; }
/* Faint dreamy wash: pink + blue + green radial gradients, low opacity */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 52% at 8% 2%,   rgba(234,144,168,0.30), transparent 66%),
    radial-gradient(50% 56% at 94% 8%,  rgba(158,195,225,0.46), transparent 70%),
    radial-gradient(54% 60% at 74% 98%, rgba(156,192,160,0.42), transparent 68%),
    radial-gradient(40% 46% at 30% 84%, rgba(158,195,225,0.24), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.hero h1 { max-width: 16ch; }
.hero p { font-size: 1.14rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-cred { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; color: var(--ink-55); font-size: 0.88rem; font-weight: 600; }
.hero-cred span { display: inline-flex; align-items: center; gap: 7px; }
.hero-cred .pip { width: 7px; height: 7px; border-radius: 50%; }
.hero-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--blue-tint), var(--green-tint) 52%, var(--rose-tint));
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  display: grid; place-items: center; padding: 24px; text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-bloom { width: 82%; height: auto; filter: drop-shadow(0 12px 22px rgba(25,23,22,0.12)); }
.hero-portrait .ph-cap {
  position: absolute; left: 0; right: 0; bottom: 14px;
  font-size: 0.78rem; color: var(--ink-55); font-weight: 600;
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
/* real video embeds fill the 16:9 placeholder frame */
.video-ph .video-frame { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
.section { padding: clamp(34px, 6vw, 60px) 0; }
.section-tight { padding: clamp(24px, 4vw, 40px) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(22px, 3vw, 34px); }
.section-warm { background: var(--panel-warm); border-block: 1px solid var(--line); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Programme cards */
.prog-card {
  display: flex; flex-direction: column;
  background: var(--card-white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prog-card[data-accent="blue"]  { border-left-color: var(--blue);  background: linear-gradient(165deg, var(--blue-soft),  var(--card-white) 72%); }
.prog-card[data-accent="rose"]  { border-left-color: var(--rose);  background: linear-gradient(165deg, var(--rose-soft),  var(--card-white) 72%); }
.prog-card[data-accent="green"] { border-left-color: var(--green); background: linear-gradient(165deg, var(--green-soft), var(--card-white) 72%); }
.prog-icon {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px;
}
.prog-card[data-accent="blue"]  .prog-icon { background: var(--blue-soft); }
.prog-card[data-accent="rose"]  .prog-icon { background: var(--rose-soft); }
.prog-card[data-accent="green"] .prog-icon { background: var(--green-soft); }
.prog-icon svg { width: 22px; height: 22px; }
.prog-card h3 { margin-bottom: 6px; }
.prog-card p { font-size: 0.95rem; margin-bottom: 16px; }
.prog-card .prog-link { margin-top: auto; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.prog-card .prog-link .arrow { transition: transform .18s ease; }
.prog-card:hover .prog-link .arrow { transform: translateX(3px); }

/* Chips / pills */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
  background: var(--card-white); border: 1px solid var(--line); color: var(--ink);
}
.chip[data-accent="blue"]  { background: var(--blue-soft); }
.chip[data-accent="rose"]  { background: var(--rose-soft); }
.chip[data-accent="green"] { background: var(--green-soft); }
a.chip { transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
a.chip:hover { transform: translateY(-1px); border-color: var(--ink-40); box-shadow: var(--shadow-sm); }
a.chip .arrow, a.chip span[aria-hidden] { opacity: .5; }

/* "What's included" row */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.feature {
  background: var(--card-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px;
}
/* cycle a gentle pastel through the included row, blue-led so it is balanced */
.feature:nth-child(4n+1) { background: linear-gradient(165deg, var(--blue-soft),  var(--card-white) 80%); }
.feature:nth-child(4n+2) { background: linear-gradient(165deg, var(--green-soft), var(--card-white) 80%); }
.feature:nth-child(4n+3) { background: linear-gradient(165deg, var(--rose-soft),  var(--card-white) 80%); }
.feature:nth-child(4n+4) { background: linear-gradient(165deg, var(--blue-soft),  var(--card-white) 80%); }
.feature:nth-child(4n+1) .f-ic { background: var(--blue-soft); }
.feature:nth-child(4n+2) .f-ic { background: var(--green-soft); }
.feature:nth-child(4n+3) .f-ic { background: var(--rose-soft); }
.feature:nth-child(4n+4) .f-ic { background: var(--blue-soft); }
.feature .f-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--coconut); display: grid; place-items: center; margin-bottom: 12px; }
.feature h4 { margin-bottom: 4px; }
.feature p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.85rem; color: var(--ink-55); padding-top: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }

/* ============================================================
   EXAM / PROGRAMME PAGE PANELS
   ============================================================ */
.page-head { padding: 10px 0 8px; }
.page-head h1 { margin-bottom: 8px; }
.accent-bar { width: 54px; height: 4px; border-radius: 4px; margin-bottom: 18px; }
.accent-bar[data-accent="blue"]  { background: var(--blue); }
.accent-bar[data-accent="rose"]  { background: var(--rose); }
.accent-bar[data-accent="green"] { background: var(--green); }

/* Exam monogram badges (styled abbreviations, not the official logos) */
.exam-badge {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px; border: 1px solid var(--line); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.exam-badge svg { width: 24px; height: 24px; }
.exam-badge-lg { width: 58px; height: 58px; border-radius: 17px; }
.exam-badge-lg svg { width: 30px; height: 30px; }
.exam-badge[data-accent="rose"]  { background: linear-gradient(150deg, #fff, var(--rose-tint)); }
.exam-badge[data-accent="green"] { background: linear-gradient(150deg, #fff, var(--green-tint)); }
.exam-badge[data-accent="blue"]  { background: linear-gradient(150deg, #fff, var(--blue-tint)); }
.page-head-exam { display: flex; align-items: flex-start; gap: 18px; }
.page-head-exam .exam-badge-lg { margin-top: 4px; }
.item-badge-row { margin-bottom: 12px; }

.panel {
  background: rgba(255, 253, 251, 0.78);   /* translucent so the colour field glows through */
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
}
.panel + .panel { margin-top: var(--gap); }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.panel h2 { font-size: 1.35rem; margin-bottom: 6px; }
.panel .panel-sub { color: var(--ink-55); font-size: 0.92rem; margin-bottom: 16px; }

/* Class duration options */
.duration-opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 6px; }
.dur {
  text-align: center; padding: 16px 8px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--coconut);
}
.dur .num { font-size: 1.3rem; font-weight: 800; }
.dur .unit { font-size: 0.78rem; color: var(--ink-55); font-weight: 600; }

/* Content list with bold labels */
.content-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.content-list li { display: flex; gap: 12px; }
.content-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; margin-top: 9px; flex: none; background: var(--ink-40);
}
.content-list[data-accent="blue"]  li::before { background: var(--blue); }
.content-list[data-accent="rose"]  li::before { background: var(--rose); }
.content-list[data-accent="green"] li::before { background: var(--green); }
.content-list .lbl { font-weight: 700; }

/* Materials rows */
.materials { display: grid; gap: 12px; }
.material {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--coconut);
}
.material .m-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--card-white); border: 1px solid var(--line); }
.material .m-ic svg { width: 22px; height: 22px; }
.material .m-body { flex: 1; min-width: 0; }
.material .m-body h4 { margin: 0 0 2px; }
.material .m-body p { margin: 0; font-size: 0.88rem; }
.material .m-action { flex: none; }
.lock-row { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--ink-55); font-weight: 600; }

/* Tracking + WhatsApp */
.tracking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--gap); align-items: stretch; }
.wa-card {
  background: var(--green-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; justify-content: center;
}
.wa-card h3 { margin-bottom: 6px; }
.wa-card p { font-size: 0.92rem; }

/* ============================================================
   BOOKING + CONTACT BLOCK
   ============================================================ */
.booking-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--gap); align-items: start; }
.calendly-box {
  background: var(--card-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; min-height: 320px; display: flex; flex-direction: column;
}
.calendly-embed {
  margin-top: 16px; flex: 1; border-radius: var(--radius-sm);
  border: 1px dashed var(--line); background: var(--coconut);
  display: grid; place-items: center; text-align: center; padding: 24px; color: var(--ink-55);
}
.calendly-embed .cal-mark { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-soft); display: grid; place-items: center; margin: 0 auto 12px; }
.calendly-frame {
  flex: 1; width: 100%; min-height: 580px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--card-white);
}
/* Real portrait photo (replaces the daffodil placeholder when PHOTO is set) */
.portrait-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.contact-card {
  background: var(--panel-warm); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 12px; align-self: start;
}
.contact-row { display: flex; align-items: center; gap: 13px; }
.contact-row .c-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--card-white); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.contact-row .c-ic svg { width: 20px; height: 20px; }
.contact-row .c-label { font-size: 0.76rem; color: var(--ink-55); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row .c-value { font-weight: 600; }
.todo { color: var(--rose); font-weight: 700; font-size: 0.78rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--panel-warm); border-top: 1px solid var(--line); margin-top: clamp(40px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--gap); padding: clamp(36px, 5vw, 56px) 0 28px; }
.footer-grid h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-55); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: var(--ink-70); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--ink); }
.footer-about p { font-size: 0.92rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: var(--ink-55); }

/* ============================================================
   HUB PAGES (item grids)
   ============================================================ */
.item-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.item-card {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--card-white); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 4px solid var(--line);
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.item-card[data-accent="blue"]  { border-top-color: var(--blue);  background: linear-gradient(165deg, var(--blue-soft),  var(--card-white) 78%); }
.item-card[data-accent="rose"]  { border-top-color: var(--rose);  background: linear-gradient(165deg, var(--rose-soft),  var(--card-white) 78%); }
.item-card[data-accent="green"] { border-top-color: var(--green); background: linear-gradient(165deg, var(--green-soft), var(--card-white) 78%); }
.item-card h3 { margin: 0; }
.item-card p { font-size: 0.9rem; margin: 0; }
.item-card .go { margin-top: 10px; font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }

/* Generic prose */
.prose p { max-width: 68ch; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; max-width: 68ch; }
.prose ul li { display: flex; gap: 12px; }
.prose ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; margin-top: 9px; flex: none; background: var(--rose); }

.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.module {
  background: var(--card-white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px; display: flex; gap: 13px; align-items: flex-start;
}
.module .mod-n { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-soft); display: grid; place-items: center; font-weight: 800; font-size: 0.85rem; flex: none; }
.module h4 { margin: 0 0 3px; }
.module p { margin: 0; font-size: 0.88rem; }

/* Note / callout */
.note {
  background: var(--blue-soft); border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.92rem;
}
.note strong { display: block; margin-bottom: 2px; }

/* ============================================================
   SECTION DIVIDER ORNAMENT (two faint rules + a 3-dot cluster)
   ============================================================ */
.divider { display: flex; align-items: center; gap: 16px; padding: clamp(6px, 2vw, 18px) 0; }
.divider .rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 25%, var(--line) 75%, transparent); }
.divider .dots { display: inline-flex; gap: 7px; }
.divider .dots i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.divider .dots i:nth-child(1) { background: var(--rose); }
.divider .dots i:nth-child(2) { background: var(--green); }
.divider .dots i:nth-child(3) { background: var(--blue); }

/* ============================================================
   PRICING
   ============================================================ */
.panel-price-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.panel-price-row h2 { margin-bottom: 6px; }
.price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--green-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; white-space: nowrap;
}
.price-tag .price-amount { font-weight: 800; font-size: 1.1rem; }
.price-tag .price-unit { font-size: 0.78rem; color: var(--ink-55); font-weight: 600; }
.dur .dur-price { margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--line); font-weight: 800; font-size: 0.98rem; }

.price-card {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: linear-gradient(160deg, var(--blue-soft), var(--card-white) 82%);
  border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 18px;
}
.price-card .eyebrow { color: var(--ink-55); }
.price-card .price-amount-lg { font-weight: 800; font-size: 2rem; letter-spacing: -0.02em; line-height: 1; }
.price-card .price-meta { color: var(--ink-70); font-size: 0.92rem; font-weight: 600; max-width: 42ch; }

/* ============================================================
   DECORATIVE SPRIG MOTIFS (faint daffodil line-art in corners)
   ============================================================ */
.section-deco { position: relative; overflow: hidden; }
.section-deco > .container { position: relative; z-index: 1; }
.deco { position: absolute; z-index: 0; width: clamp(72px, 11vw, 132px); pointer-events: none; opacity: 0.12; }
.deco svg { width: 100%; height: auto; display: block; }
.deco[data-accent="rose"]  { color: var(--rose); }
.deco[data-accent="green"] { color: var(--green); }
.deco[data-accent="blue"]  { color: var(--blue); }
.deco-tr { top: -10px; right: 22px; transform: rotate(12deg); }
.deco-br { bottom: -8px; right: 26px; transform: rotate(-8deg); }
.deco-bl { bottom: -8px; left: 24px; transform: scaleX(-1) rotate(-8deg); }
@media (max-width: 700px) { .deco { opacity: 0.10; width: 84px; } .deco-tr { right: 8px; } }

/* ============================================================
   CORNER DECORATION (subtle dot-grid in card corners, neutral)
   ============================================================ */
.item-card, .feature, .prog-card { position: relative; }
.item-card::after, .feature::after, .prog-card::after {
  content: ""; position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; pointer-events: none; opacity: 0.22;
  background-image: radial-gradient(currentColor 1.3px, transparent 1.5px);
  background-size: 8px 8px; color: var(--ink-40);
}
.item-card[data-accent="rose"]::after,  .prog-card[data-accent="rose"]::after  { color: var(--rose); opacity: 0.3; }
.item-card[data-accent="green"]::after, .prog-card[data-accent="green"]::after { color: var(--green); opacity: 0.32; }
.item-card[data-accent="blue"]::after,  .prog-card[data-accent="blue"]::after  { color: var(--blue); opacity: 0.34; }
/* keep the dots clear of the exam badge on hub cards */
.item-card .item-badge-row { position: relative; z-index: 1; }

/* ============================================================
   VIDEO PLACEHOLDER (Narcisa adds clips later)
   ============================================================ */
.video-ph {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(234,144,168,0.10), transparent 70%),
    var(--card-white);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video-ph[data-accent="blue"]  { background: radial-gradient(60% 70% at 50% 40%, rgba(158,195,225,0.14), transparent 70%), var(--card-white); }
.video-ph[data-accent="rose"]  { background: radial-gradient(60% 70% at 50% 40%, rgba(234,144,168,0.14), transparent 70%), var(--card-white); }
.video-ph[data-accent="green"] { background: radial-gradient(60% 70% at 50% 40%, rgba(156,192,160,0.16), transparent 70%), var(--card-white); }
.video-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 24px; }
.video-play {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--coconut); border: 1px solid var(--line);
  color: var(--ink); box-shadow: var(--shadow-sm);
}
.video-play svg { width: 30px; height: 30px; }
.video-note { font-size: 0.9rem; color: var(--ink-55); font-weight: 600; }

/* ============================================================
   REVEAL ANIMATION (subtle)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 360px; }
  .grid-4, .feature-row { grid-template-columns: repeat(2, 1fr); }
  .item-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid, .tracking-grid, .booking-grid { grid-template-columns: 1fr; }
}

/* Mobile nav: below 900px collapse tabs behind hamburger (accordion) */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-tabs {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    height: auto;
    background: var(--card-white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px; display: none;
  }
  .site-header.menu-open .nav-tabs { display: flex; }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-tab { height: 52px; padding: 0 10px; justify-content: space-between; width: 100%; border-bottom: none; }
  .nav-tab .caret { margin-left: auto; }
  .nav-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; min-width: 0;
    background: transparent; padding: 0 0 8px;
    display: none;
  }
  .nav-item.open > .nav-menu { display: block; }
  .nav-item:hover > .nav-menu { /* no hover-open on mobile */ }
  .nav-menu a { padding-left: 22px; }
  .nav-right { margin-left: auto; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .feature-row, .item-grid, .module-grid, .duration-opts { grid-template-columns: 1fr; }
  .duration-opts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .material { flex-wrap: wrap; }
  .material .m-action { width: 100%; }
  .material .m-action .btn { width: 100%; }

  /* Keep the required header controls (Free trial + site switcher) on screen */
  .nav { gap: 8px; }
  .nav-right { gap: 7px; }
  .brand { margin-right: 0; gap: 7px; }
  .brand-word { font-size: 1.02rem; }
  .nav-right .btn-sm { padding: 0.5em 0.7em; font-size: 0.78rem; }
  .lang-current { padding: 6px 9px; font-size: 0.78rem; gap: 6px; }
  .lang-current .lang-name { display: none; } /* show globe + caret only when very tight */
  .nav-toggle { width: 38px; height: 38px; }
  .container { padding-inline: 16px; }
}
