/* ============================================================
   Renaissance Schools — Shared Stylesheet
   Brand: Navy #1E1E6E | Orange #E87722 | Tagline: Learning for Life
   ============================================================ */

/* --- Google Fonts import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --navy:        #1E1E6E;
  --navy-dark:   #15155a;
  --navy-light:  #2a2a88;
  --orange:      #E87722;
  --orange-dark: #c96519;
  --orange-light:#f0924a;

  --white:       #ffffff;
  --off-white:   #f7f7fc;
  --light-gray:  #eff0f6;
  --mid-gray:    #d8d9e8;
  --text-dark:   #111130;
  --text-body:   #3b3b5e;
  --text-muted:  #6a6a90;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-xs:   0 1px 4px rgba(30,30,110,.07);
  --shadow-sm:   0 2px 10px rgba(30,30,110,.10);
  --shadow-md:   0 6px 24px rgba(30,30,110,.13);
  --shadow-lg:   0 12px 48px rgba(30,30,110,.18);

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.28s ease;
  --max-w:       1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 88px 0; }
.section--navy  { background: var(--navy); }
.section--gray  { background: var(--off-white); }
.section--light { background: var(--light-gray); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: .6rem; }
.section-header p  { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }

/* Decorative orange rule under headings */
.underline-accent {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin-top: .75rem;
  border-radius: 2px;
}
.section-header--center .underline-accent { margin-inline: auto; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p, .section--navy li { color: rgba(255,255,255,.78); }
.section--navy .section-label { color: var(--orange-light); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(232,119,34,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(232,119,34,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
}
.btn-sm { padding: .55rem 1.2rem; font-size: .875rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}
.logo-tagline {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  position: relative;
  padding: .4rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-links a.active { font-weight: 600; color: var(--navy); }

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav-toggle span:nth-child(2) { width: 75%; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  padding: 1rem 0 1.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: .7rem 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--navy);
  border-left-color: var(--orange);
  background: var(--off-white);
}
.nav-drawer .drawer-cta {
  margin: .75rem 24px 0;
}
.nav-drawer .drawer-cta .btn { width: 100%; justify-content: center; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 64px 0;
}
.page-hero-content .section-label { color: rgba(255,255,255,.6); }
.page-hero-content h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 520px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
.card-icon--navy { background: var(--navy); }
.card-icon--orange { background: var(--orange); }

/* Pillar cards */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-card--orange { border-top-color: var(--orange); }
.pillar-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.pillar-card p  { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }

/* --- Stat Bar --- */
.stat-bar {
  background: var(--navy);
  padding: 1.75rem 0;
}
.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Hero Section (homepage) --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(21,21,90,.92) 0%,
    rgba(21,21,90,.78) 55%,
    rgba(21,21,90,.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 80px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 { color: var(--white); margin-bottom: .9rem; }
.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg { opacity: .5; }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- About / Principal Snapshot (home) --- */
.principal-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.principal-photo-wrap {
  position: relative;
}
.principal-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.principal-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
}
.principal-initials {
  font-family: var(--font-head);
  font-size: 5rem;
  opacity: .3;
  line-height: 1;
}
.principal-photo-label {
  font-size: .78rem;
  opacity: .5;
  margin-top: .5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.principal-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 160px;
}
.principal-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.principal-badge-label {
  font-size: .75rem;
  opacity: .9;
  line-height: 1.3;
  margin-top: .25rem;
}
.principal-text blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.principal-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.principal-title {
  font-size: .875rem;
  color: var(--text-muted);
}

/* --- Award badge --- */
.award-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1rem;
}
.award-tag span { color: var(--orange); font-size: 1rem; }

/* --- Academics Cards --- */
.subject-pill {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-body);
  margin: .25rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.subject-pill:hover,
.subject-pill--active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.subject-pill--orange {
  background: rgba(232,119,34,.1);
  border-color: var(--orange);
  color: var(--orange-dark);
}
.class-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.class-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.class-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .4rem; }
.class-card p  { font-size: .875rem; color: var(--text-muted); }
.class-range-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mid-gray);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .3rem;
}
.timeline-item h4 { color: var(--navy); margin-bottom: .3rem; }
.timeline-item p  { font-size: .9rem; color: var(--text-muted); }

/* --- Admissions Steps --- */
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { color: var(--navy); margin-bottom: .3rem; }
.step-body p  { font-size: .9rem; color: var(--text-muted); }

/* --- Contact / Campus Cards --- */
.campus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
}
.campus-card-header {
  background: var(--navy);
  color: white;
  padding: 1.25rem 1.75rem;
}
.campus-card-header h3 { color: white; font-size: 1.3rem; margin-bottom: .25rem; }
.campus-card-header span { font-size: .82rem; opacity: .7; }
.campus-card-body {
  padding: 1.75rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-text small {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.contact-text a {
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-text a:hover { color: var(--orange); }

/* --- Forms --- */
.form-group {
  margin-bottom: 1.35rem;
}
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-label .required { color: var(--orange); margin-left: .2rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,30,110,.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236a6a90' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #166534;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

/* --- Campus Life --- */
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.activity-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.activity-body {
  padding: 1.25rem 1.5rem;
}
.activity-body h4 { color: var(--navy); margin-bottom: .4rem; }
.activity-body p  { font-size: .875rem; color: var(--text-muted); }

/* --- Value chips --- */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.value-chip:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.value-chip-icon { font-size: 1rem; }

/* --- Instagram Section --- */
.instagram-section { padding: 80px 0; background: var(--off-white); }
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.instagram-handle svg { color: var(--orange); }
.elfsight-placeholder {
  background: var(--white);
  border: 2px dashed var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
.elfsight-placeholder h4 { color: var(--navy); margin-bottom: .5rem; }
.elfsight-placeholder code {
  display: inline-block;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: .2rem .6rem;
  font-size: .82rem;
  color: var(--navy);
  margin: .25rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Feature Row (alternating) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-img-wrap { order: 2; }
.feature-row--reverse .feature-text    { order: 1; }
.feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* --- Social Media Links --- */
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--orange); }
.social-link--navy {
  background: var(--off-white);
  color: var(--navy);
}
.social-link--navy:hover { background: var(--navy); color: white; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-text-wrap .logo-name { color: white; }
.footer-logo img { height: 40px; width: auto; filter: brightness(10) saturate(0); }
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.footer-logo-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange-light); }
.footer-address {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.footer-address strong { color: white; display: block; margin-bottom: .2rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .4rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange-light); }

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1.5px solid var(--mid-gray);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: .95rem;
  color: var(--text-muted);
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Map placeholder --- */
.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  gap: .75rem;
  border: 1.5px dashed var(--mid-gray);
}
.map-placeholder-icon { font-size: 2.5rem; }

/* --- Highlight Box --- */
.highlight-box {
  background: linear-gradient(135deg, rgba(30,30,110,.05), rgba(232,119,34,.07));
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.highlight-box--orange {
  background: rgba(232,119,34,.08);
  border-color: rgba(232,119,34,.3);
}
.highlight-box--navy {
  background: rgba(30,30,110,.06);
  border-color: rgba(30,30,110,.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .principal-snapshot { grid-template-columns: 1fr; gap: 3rem; }
  .principal-badge { right: 1rem; bottom: -1.5rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse .feature-img-wrap { order: 0; }
  .feature-row--reverse .feature-text    { order: 0; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .hero      { min-height: 80vh; }
  .hero-content { padding: 60px 0 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll  { display: none; }

  .grid-2   { grid-template-columns: 1fr; }
  .grid-3   { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .instagram-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stat-bar-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .stat-number   { font-size: 1.6rem; }
  .btn-lg        { width: 100%; justify-content: center; }
  .principal-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; max-width: 100%; }
  .page-hero { min-height: 240px; }
}
