/* =====================================================================
   GLOW ACADEMY — Premium Multi-Page Beauty & Cosmetology School Template
   Plain HTML5 + CSS3. No frameworks. No build step.
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Everything (colors, radius, shadows, fonts) cascades from here.
   Update the Google Fonts <link> in each HTML file if you change fonts.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #fffaf6;   /* warm ivory page background          */
  --ink:       #3a2b27;   /* deep cocoa-brown (headings)         */
  --accent:    #c08a6e;   /* rose-gold (primary)                 */
  --accent-d:  #a9745a;   /* deeper rose-gold for hovers         */
  --accent2:   #d8a7a0;   /* dusty blush                         */
  --accent2-d: #c08a82;   /* deeper blush                        */
  --accent3:   #b9967e;   /* warm taupe                          */
  --accent3-d: #9d7b64;   /* deeper taupe                        */
  --muted:     #998a82;   /* muted mauve-grey text               */
  --surface:   #ffffff;   /* card / surface white                */
  --line:      #f1e6df;   /* soft blush hairline borders         */
  --cream:     #f8ede6;   /* cream tint for soft sections        */

  /* --- Fonts --- */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    20px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --shadow:    0 14px 34px rgba(58, 43, 39, .07);
  --shadow-lg: 0 28px 60px rgba(58, 43, 39, .13);
  --shadow-c:  0 12px 28px rgba(192, 138, 110, .30);
  --ease:      .35s cubic-bezier(.34, 1.1, .4, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #5a4d47;
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.005em;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent-d); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.section--blush { background: linear-gradient(180deg, #fff 0%, #fbeeee 100%); }
.section--tight { padding: 66px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-d);
  background: rgba(192, 138, 110, .12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.is-blush { color: var(--accent2-d); background: rgba(216, 167, 160, .18); }
.eyebrow.is-taupe { color: var(--accent3-d); background: rgba(185, 150, 126, .16); }

.lead { font-size: 1.16rem; color: #6a5b54; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-c);
}
.btn-primary:hover { background: var(--accent-d); color: #fff; box-shadow: 0 16px 34px rgba(192, 138, 110, .42); }

.btn-blush {
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 12px 28px rgba(216, 167, 160, .34);
}
.btn-blush:hover { background: var(--accent2-d); color: #fff; }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-d); }

.btn-light {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-light:hover { background: #fff; color: var(--accent-d); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 246, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(192, 138, 110, .35);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(8deg) scale(1.05); }
.brand .logo-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .96rem;
  color: #6a5b54;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(192, 138, 110, .12); color: var(--accent-d); }
.nav-links a.active { color: var(--accent-d); font-weight: 600; background: rgba(192, 138, 110, .14); }

.nav-cta { margin-left: 10px; }
.nav-cta a:hover { color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(192, 138, 110, .12);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   DECORATIVE BLOBS
   --------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 480px at 90% -8%, rgba(216, 167, 160, .26), transparent 62%),
    radial-gradient(620px 460px at 0% 110%, rgba(192, 138, 110, .16), transparent 58%),
    linear-gradient(180deg, #fffaf6 0%, #fbeeea 100%);
  padding: 88px 0 96px;
}
.hero .blob-1 { width: 230px; height: 230px; background: var(--accent2); top: 12%; left: -60px; opacity: .16; }
.hero .blob-2 { width: 180px; height: 180px; background: var(--accent); bottom: 6%; right: 46%; opacity: .12; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .script { font-style: italic; color: var(--accent-d); }
.hero .lead { max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .92rem; }
.hero-badges b { font-family: var(--font-head); font-size: 1.7rem; color: var(--accent-d); line-height: 1; }

/* Hero visual — layered real photos */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hv-float {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hv-float .fe {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(192, 138, 110, .14);
  display: grid; place-items: center;
  color: var(--accent-d);
}
.hv-float .fe svg { width: 22px; height: 22px; }
.hv-float b { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); display: block; line-height: 1.1; }
.hv-float small { display: block; color: var(--muted); font-size: .78rem; }
.hv-float.f1 { top: -24px; left: -22px; animation: bob 5s ease-in-out infinite; }
.hv-float.f2 { bottom: 26px; right: -24px; animation: bob 5.6s ease-in-out infinite .6s; }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------------------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------------------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .ts { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-grid .ts strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--accent-d);
  line-height: 1;
  font-weight: 600;
}
.trust-grid .ts span { color: var(--muted); font-size: .92rem; letter-spacing: .02em; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(192, 138, 110, .4); }
.card .icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: rgba(192, 138, 110, .12);
  display: grid; place-items: center;
  color: var(--accent-d);
  margin-bottom: 20px;
  transition: transform var(--ease);
}
.card:hover .icon { transform: rotate(-6deg) scale(1.06); }
.card .icon.is-blush { background: rgba(216, 167, 160, .18); color: var(--accent2-d); }
.card .icon.is-taupe { background: rgba(185, 150, 126, .16); color: var(--accent3-d); }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: #6a5b54; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   COURSE / PROGRAM CARDS (with photos)
   --------------------------------------------------------------------- */
.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.course-media { position: relative; overflow: hidden; }
.course-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .6s ease;
}
.course-card:hover .course-media img { transform: scale(1.05); }
.course-badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--accent-d);
  padding: 7px 14px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.course-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.course-body h3 { margin-bottom: 8px; }
.course-body > p { color: #6a5b54; font-size: .98rem; }
.course-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin: 4px 0 18px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
}
.course-meta span { display: inline-flex; align-items: center; gap: 7px; }
.course-meta svg { width: 16px; height: 16px; color: var(--accent); }
.course-body .btn { margin-top: auto; align-self: flex-start; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  color: #6a5b54;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 11px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-d); transform: translateY(-2px); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST
   --------------------------------------------------------------------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 16px rgba(192, 138, 110, .3);
}
.feature .tick svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: #6a5b54; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media .tag {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,.94);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow);
}
.split-media .tag b { font-family: var(--font-head); font-size: 1.5rem; color: var(--accent-d); display: block; line-height: 1; }
.split-media .tag span { font-size: .82rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   STEPS / TIMELINE (career path)
   --------------------------------------------------------------------- */
.path { display: grid; gap: 18px; max-width: 780px; margin: 0 auto; }
.path-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
}
.path-item:hover { transform: translateX(6px); }
.path-item .pnum {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.5rem;
  display: grid; place-items: center;
}
.path-item h3 { font-size: 1.18rem; margin: 0 0 2px; }
.path-item p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TEAM / INSTRUCTORS
   --------------------------------------------------------------------- */
.team-card { text-align: center; padding: 0; overflow: hidden; }
.team-card .team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.team-card .team-info { padding: 24px 22px 28px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-d); font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .stars { color: var(--accent); margin-bottom: 16px; letter-spacing: 3px; font-size: 1.05rem; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.18rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}
.quote-author b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(216, 167, 160, .4), transparent 60%),
    linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(216, 167, 160, .24), transparent 60%),
    radial-gradient(420px 320px at 6% 120%, rgba(192, 138, 110, .14), transparent 60%),
    linear-gradient(180deg, #fbeeea, #fffaf6);
  padding: 70px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-banner .blob-1 { width: 150px; height: 150px; background: var(--accent2); top: 14%; right: 8%; opacity: .14; }
.page-banner h1 { margin-bottom: 12px; position: relative; z-index: 1; }
.page-banner p { max-width: 640px; color: #6a5b54; margin-bottom: 0; position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--accent-d); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   ADMISSIONS — steps, tuition, faq
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.4rem;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.16rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: #6a5b54; }

/* Tuition / pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 24px 50px rgba(192, 138, 110, .22); }
.price-card .price-tier { font-family: var(--font-body); font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-d); }
.price-card .price-amt { font-family: var(--font-head); font-size: 2.8rem; color: var(--ink); line-height: 1; margin: 14px 0 4px; }
.price-card .price-amt small { font-family: var(--font-body); font-size: .9rem; color: var(--muted); font-weight: 400; }
.price-card .price-desc { color: var(--muted); font-size: .94rem; margin-bottom: 22px; }
.price-list { display: grid; gap: 12px; margin-bottom: 28px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: #6a5b54; }
.price-list li svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent); margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; }

.tuition-note {
  background: linear-gradient(135deg, var(--cream), #fbeeee);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow);
}
.tuition-note h3 { margin: 0 0 8px; }

/* FAQ (accordion) */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform var(--ease); color: var(--accent-d); flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease), padding var(--ease); padding: 0 26px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }
.faq-a p { margin: 0; color: #6a5b54; font-size: .98rem; }

/* ---------------------------------------------------------------------
   ACCREDITATION / FACILITIES
   --------------------------------------------------------------------- */
.facility {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility .fc-emoji {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%; display: grid; place-items: center;
  color: var(--accent-d);
  background: rgba(216, 167, 160, .16);
}
.facility .fc-emoji svg { width: 28px; height: 28px; }
.facility h3 { font-size: 1.18rem; margin-bottom: 6px; }
.facility p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffcfa;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(192, 138, 110, .14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #d4604f; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d4604f; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #f1f7f0;
  border: 1px solid #c7e3bd;
  color: #4a7a3c;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, var(--cream), #fbeeee);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; color: var(--accent-d);
  box-shadow: var(--shadow);
}
.info-row .info-ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); display: block; line-height: 1.2; }
.info-row span { font-size: .94rem; color: #6a5b54; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(192,138,110,.05), rgba(192,138,110,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    #fbf5f1;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { color: var(--accent-d); }
.map-placeholder .pin svg { width: 40px; height: 40px; }
.map-placeholder b { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); display: block; margin-top: 6px; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #3a2b27;
  color: rgba(255,255,255,.78);
  padding: 68px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 46px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .01em;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .94rem; }
.footer-col a:hover { color: var(--accent2); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: #fff;
  transition: background var(--ease), transform var(--ease);
}
.social a svg { width: 19px; height: 19px; }
.social a:hover { background: var(--accent); transform: translateY(-3px); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34, 1.1, .4, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 66px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .split--reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 30px; }
  .path-item { grid-template-columns: 48px 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hv-float.f1 { left: -8px; }
  .hv-float.f2 { right: -8px; }
}
