/* =========================================================
   International Design Academy Bangalore — Global Styles
   Palette: warm cream background, deep teal ink, burnt-rust
   gradient accent. Backgrounds stay light; teal is used only
   for text, outlines and small accent blocks — never large
   dark panels.
========================================================= */

:root {
  --bg:            #FAF6EF;
  --bg-alt:        #F1EADC;
  --bg-card:       #FFFFFF;
  --ink:           #17211F;
  --teal:          #0F3B3A;
  --teal-soft:     #1F5654;
  --teal-tint:     #E7EFEE;
  --rust:          #C1450F;
  --rust-light:    #E68A3E;
  --gold:          #B8945A;
  --muted:         #6E6A5F;
  --line:          #E7DFCF;
  --grad-accent:   linear-gradient(120deg, var(--rust) 0%, var(--rust-light) 100%);
  --grad-accent-hover: linear-gradient(120deg, #A83B0B 0%, #D97B2E 100%);
  --shadow-sm:     0 2px 10px rgba(15, 59, 58, 0.06);
  --shadow-md:     0 12px 32px rgba(15, 59, 58, 0.10);
  --radius:        14px;
  --radius-lg:     22px;
  --font-display:  'Fraunces', 'Georgia', serif;
  --font-body:     'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --container:     1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--teal);
}

p { margin: 0 0 1em; color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--teal {
  background: var(--teal);
  color: #F4EFE4;
}
.section--teal h2, .section--teal h3, .section--teal .eyebrow { color: #F4EFE4; }
.section--teal .eyebrow::before { background: var(--grad-accent); }
.section--teal p { color: rgba(244,239,228,0.82); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(193, 69, 15, 0.28);
}
.btn--primary:hover {
  background: var(--grad-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(193, 69, 15, 0.34);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 20px; font-size: 13px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .big { font-size: 15px; font-weight: 700; color: var(--teal); display: block; }
.logo-text .small { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: right 0.25s ease;
  border-radius: 2px;
}
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--rust); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  background: var(--teal);
}
.hero-art svg { width: 100%; height: 100%; display: block; }

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-item .num { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--teal); display:block; }
.stat-item .label { font-size: 13.5px; color: var(--muted); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.usp-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--grad-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-card h3 { font-size: 18px; margin-bottom: 4px; }
.usp-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.program-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--teal) center/cover no-repeat;
  color: #fff;
  padding: 28px 24px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}
.featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  background: var(--grad-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(193,69,15,0.4);
}
.program-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,41,0.35) 0%, rgba(11,25,24,0.55) 55%, rgba(9,18,17,0.92) 100%);
  z-index: 0;
}
.program-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(193,69,15,0.45), transparent 55%);
  z-index: 0;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.program-card > *:not(.featured-badge) { position: relative; z-index: 1; }
.program-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: auto;
}
.program-icon svg { width: 24px; height: 24px; }
.program-card .tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust-light);
  margin-top: 22px;
}
.program-card h3 { color: #fff; font-size: 21px; margin: 6px 0 10px; }
.program-card p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin-bottom: 14px; }
.program-card .go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
}
.program-card .go svg { width: 16px; height: 16px; }

/* ---------- Workshop category block ---------- */
.workshop-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.workshop-block .wb-copy { padding: 52px 48px; }
.workshop-block .wb-copy .eyebrow { color: var(--rust-light); }
.workshop-block .wb-copy h2 { color: #fff; font-size: 26px; }
.wb-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.wb-col h4 { display:flex; align-items:center; gap:10px; color:#fff; font-family: var(--font-body); font-size: 13.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; margin-bottom: 6px;}
.wb-col .wb-icon { width:32px; height:32px; border-radius:9px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,0.12); }
.wb-col .wb-icon svg { width:16px; height:16px; }
.wb-col .wb-sub { font-size: 11.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.wb-col ul { list-style: none; margin: 0; padding: 0; }
.wb-col li { font-size: 14px; color: rgba(255,255,255,0.85); padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.wb-col li:first-of-type { border-top: none; }
.workshop-block .wb-visual {
  position: relative;
  background: linear-gradient(160deg, #163A3C, #0B2323);
}
.workshop-block .wb-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,35,35,0.55) 0%, transparent 30%);
}

/* Simple workshop cards (used on workshops.php) */
.wk-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.wk-card .wb-icon-lg {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.wk-card .wb-icon-lg svg { width: 24px; height: 24px; }
.wk-card h3 { font-size: 19px; margin-bottom: 4px; }
.wk-card .wb-sub2 { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.wk-card ul { list-style: none; margin: 0; padding: 0; }
.wk-card li {
  font-size: 14.5px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.wk-card li:first-child { border-top: none; }
.wk-card li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

/* ---------- Weekend workshops strip ---------- */
.weekend-strip .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.weekend-strip .copy .tagline { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.weekend-badges { display: flex; gap: 34px; flex-wrap: wrap; }
.weekend-badge { display: flex; align-items: center; gap: 12px; }
.weekend-badge .b-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.weekend-badge .b-icon svg { width: 20px; height: 20px; }
.b-icon.c1 { background: #2F6E62; }
.b-icon.c2 { background: #1F5654; }
.b-icon.c3 { background: var(--grad-accent); }
.weekend-badge .b-title { font-weight: 700; font-size: 14.5px; color: var(--teal); display: block; }
.weekend-badge .b-text { font-size: 12.5px; color: var(--muted); }

/* ---------- Learning journey timeline ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.journey-step { text-align: center; position: relative; z-index: 1; }
.journey-step .j-icon {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.journey-step .j-icon svg { width: 22px; height: 22px; }
.journey-step:nth-child(odd) .j-icon { background: var(--grad-accent); border-color: transparent; color: #fff; }
.journey-step h4 { font-size: 15.5px; margin-bottom: 6px; color: var(--teal); }
.journey-step p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 54px 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 140% at 100% 100%, rgba(193,69,15,0.45), transparent 60%);
  z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 0; }
.cta-band h2 .accent { color: var(--rust-light); }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .cta-copy p { color: rgba(255,255,255,0.78); margin-top: 8px; margin-bottom: 0; max-width: 420px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal); color: rgba(244,239,228,0.85); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; font-size: 14.5px; }
.footer-grid li a:hover { color: var(--rust-light); }
.footer-about p { color: rgba(244,239,228,0.72); font-size: 14.5px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.footer-logo .logo-text .big { color: #fff; }
.footer-logo .logo-text .small { color: rgba(244,239,228,0.6); }
.logo-img-footer { height: 76px; width: auto; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { background: var(--grad-accent); border-color: transparent; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(244,239,228,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: #fff; }
.contact-line { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 12px; color: rgba(244,239,228,0.85); }

/* ---------- Footer subscribe form ---------- */
.subscribe-heading { margin-top: 28px; }
.subscribe-text {
  font-size: 13.5px;
  color: rgba(244,239,228,0.68);
  margin: 0 0 14px;
  max-width: 260px;
}
.subscribe-msg {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  margin: 0 0 14px;
}
.subscribe-msg svg { width: 16px; height: 16px; flex-shrink: 0; }
.subscribe-msg--ok { color: #8FD6A8; }
.subscribe-msg--ok svg { color: #8FD6A8; }
.subscribe-msg--err { color: #F3A98A; }
.subscribe-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 5px 5px 5px 16px;
  max-width: 280px;
}
.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 8px 0;
}
.subscribe-form input[type="email"]::placeholder { color: rgba(244,239,228,0.5); }
.subscribe-form input[type="email"]:focus { outline: none; }
.subscribe-form button {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--grad-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.subscribe-form button svg { width: 15px; height: 15px; }
.subscribe-form button:hover { transform: scale(1.08); }
.contact-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--rust-light); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 48px); max-width: 780px; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 620px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--rust); }

/* ---------- Program detail rows (programs.php) ---------- */
.program-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.program-row:last-child { border-bottom: none; }
.program-row:nth-child(even) { direction: rtl; }
.program-row:nth-child(even) > * { direction: ltr; }
.program-row .visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.program-row .visual svg { width: 100%; height: 100%; }
.program-row .tag-pill {
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.program-row h2 { font-size: 28px; }
.program-row .audience { font-size: 13.5px; color: var(--rust); font-weight: 700; margin-bottom: 14px; }
.program-row ul { list-style: none; margin: 20px 0 26px; padding: 0; }
.program-row li { font-size: 15px; padding: 9px 0 9px 26px; position: relative; border-top: 1px solid var(--line); }
.program-row li:first-child { border-top: none; }
.program-row li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad-accent);
}

/* ---------- Form ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(193,69,15,0.10);
}
.field textarea { resize: vertical; min-height: 120px; }

.alert { padding: 16px 20px; border-radius: 10px; font-size: 14.5px; margin-bottom: 24px; }
.alert--success { background: #E4F1E8; color: #1F6B3E; border: 1px solid #BFE3CB; }
.alert--error { background: #FBE7E2; color: #A8330E; border: 1px solid #F3C4B4; }

.contact-info-card {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px;
  height: 100%;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .contact-line { color: rgba(255,255,255,0.85); }
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 26px; border: 1px solid rgba(255,255,255,0.2); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.2); }

/* ---------- About page ---------- */
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card .num { font-family: var(--font-display); font-size: 34px; color: var(--rust); display: block; margin-bottom: 10px; }

.stat-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-block .stat-num { font-family: var(--font-display); font-size: 40px; color: var(--teal); }
.stat-block .stat-lbl { font-size: 13.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Bundle cards ---------- */
.bundle-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bundle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bundle-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--teal); }
.bundle-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--rust); }
.bundle-price-was { font-size: 17px; color: var(--muted); text-decoration: line-through; font-weight: 600; margin-right: 8px; }
.bundle-card--highlight .bundle-price-was { color: rgba(255,255,255,0.5); }
.bundle-note { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.bundle-card--highlight {
  background: var(--teal);
  border-color: transparent;
  color: #fff;
}
.bundle-card--highlight h3, .bundle-card--highlight .bundle-price { color: #fff; }
.bundle-card--highlight .bundle-note { color: rgba(255,255,255,0.65); }
.bundle-card--highlight li { color: rgba(255,255,255,0.88); border-top-color: rgba(255,255,255,0.14); }
.bundle-badge {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--grad-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(193,69,15,0.4);
}
.bundle-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.bundle-card li {
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.bundle-card li:first-child { border-top: none; }
.bundle-card li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

/* ---------- Comparison table (programs.php) ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--bg-card); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.compare-table th { background: var(--teal); color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 700; color: var(--teal); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-alt); }
.compare-table .cta-cell a { font-size: 13px; font-weight: 700; color: var(--rust); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.compare-table .cta-cell a svg { width: 14px; height: 14px; flex-shrink: 0; }
.compare-table .cta-cell a:hover { text-decoration: underline; }

/* ---------- Program finder quiz ---------- */
.finder-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.finder-step { display: none; }
.finder-step.active { display: block; }
.finder-step h3 { font-size: 20px; margin-bottom: 20px; }
.finder-options { display: flex; flex-direction: column; gap: 12px; }
.finder-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.finder-option:hover { border-color: var(--rust); background: var(--teal-tint); }
.finder-progress { display: flex; gap: 6px; margin-bottom: 26px; }
.finder-progress span { height: 4px; flex: 1; border-radius: 2px; background: var(--line); }
.finder-progress span.done { background: var(--grad-accent); }
.finder-result { text-align: center; }
.finder-result .tag-pill { display: inline-block; background: var(--teal-tint); color: var(--teal); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.finder-result h3 { font-size: 24px; }
.finder-result p { color: var(--muted); margin-bottom: 24px; }
.finder-restart { background: none; border: none; color: var(--muted); font-size: 13px; text-decoration: underline; cursor: pointer; margin-top: 16px; }

/* ---------- Workshop dates table ---------- */
.dates-table-wrap { border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background: var(--bg-card); }
.dates-row {
  display: grid;
  grid-template-columns: 100px 1.6fr 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.dates-row:last-child { border-bottom: none; }
.dates-row.head { background: var(--bg-alt); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--muted); }
.dates-track { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rust); background: var(--teal-tint); padding: 4px 10px; border-radius: 999px; width: fit-content; }
.dates-title { font-weight: 700; color: var(--teal); font-size: 14.5px; }
.dates-meta { font-size: 13.5px; color: var(--muted); }
.dates-row .cta-cell a { font-size: 13px; font-weight: 700; color: var(--rust); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.dates-row .cta-cell a svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Safety net: any icon svg (from ida_icon()) not explicitly sized elsewhere
   falls back to a sane 16px box instead of the browser's default ~300x150. */
svg[viewBox="0 0 24 24"] { width: 16px; height: 16px; }

/* ---------- Team cards (About page) ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.team-role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
  margin-bottom: 6px;
}
.team-card h3 { font-size: 17px; margin-bottom: 0; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .workshop-block { grid-template-columns: 1fr; }
  .workshop-block .wb-visual { display: none; }
  .journey { grid-template-columns: repeat(5, 1fr); }
  .stat-block { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .logo-text { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; aspect-ratio: 16/10; }
  .program-row { grid-template-columns: 1fr; direction: ltr !important; }
  .program-row > * { direction: ltr !important; }
  .form-row { grid-template-columns: 1fr; }
  .journey { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .journey::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .weekend-strip .container { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wb-cols { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .workshop-block .wb-copy { padding: 36px 26px; }
  .cta-band { padding: 38px 28px; }
  .form-card { padding: 26px; }
  .dates-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .dates-row.head { display: none; }
  .dates-row .cta-cell { margin-top: 8px; }
  .finder-card { padding: 26px; }
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 150;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}
@media (max-width: 600px) {
  .whatsapp-fab { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 640px) {
  .header-actions { gap: 8px; }
  .header-actions > a.btn--primary { display: none; }
  .site-header .container { height: 72px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 26px 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .mn-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a { font-family: var(--font-display); font-size: 26px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--teal); }
.mobile-nav .mn-actions { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav .close-btn { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--teal); }
