/* ============================================
   VICTORY CITY SCHOOLS — DESIGN SYSTEM
   Palette drawn from the school crest:
   chocolate leather + cream parchment + sage + gold-tan
   ============================================ */

:root {
  /* Colors */
  --chocolate-dark: #2e1b10;
  --chocolate: #4a2c17;
  --chocolate-mid: #6b4423;
  --chocolate-light: #8b5e3c;
  --cream: #f6efdf;
  --cream-light: #fcf8ee;
  --cream-deep: #ede1c7;
  --sage: #6e8c4e;
  --sage-light: #a9c08a;
  --gold: #c68b3d;
  --gold-light: #e0b575;
  --ink: #2a1b10;
  --ink-soft: #5b4a3a;
  --white: #ffffff;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 4px;
  --stitch: repeating-linear-gradient(
    90deg,
    var(--gold) 0 10px,
    transparent 10px 18px
  );
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--chocolate-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
h3 {
  font-size: 1.3rem;
}
p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--chocolate-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(198, 139, 61, 0.35);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--chocolate-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--chocolate);
  color: var(--cream-light);
}
.btn-dark:hover {
  background: var(--chocolate-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--chocolate);
  border-color: var(--chocolate);
}
.btn-outline-dark:hover {
  background: var(--chocolate);
  color: var(--cream-light);
  transform: translateY(-2px);
}

/* ============= HEADER / NAV ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-light);
  border-bottom: 3px solid var(--chocolate);
  box-shadow: 0 2px 14px rgba(46, 27, 16, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1320px;      /* was var(--container) / 1180px */
  margin: 0 auto;
  flex-wrap: nowrap;      /* never drop to a second line */
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 28px;     /* pushes nav-links away from the logo */
  flex-shrink: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 0;              /* was 20px */
  align-items: center;
  flex-wrap: nowrap;      /* was wrap */
}
.nav-links a {
  font-size: 0.8rem; 
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 14px;      /* was 6px 0 — now gives room for the divider */
  white-space: nowrap;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: var(--cream-deep);
}

.nav-links a:first-child::before {
  display: none;          /* no divider before "Home" */
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--chocolate-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;              /* was 18px */
  flex-shrink: 0;
}

.nav-cta .btn-dark-desktop {
  padding: 10px 18px;     /* slightly tighter than default .btn padding */
  font-size: 0.85rem;
  white-space: nowrap;
}
.nav-dashboard {
  white-space: nowrap;
}

/* Dashboard button now lives in .nav-cta (not .nav-links) so it never
   wraps onto its own line independently of the nav links */
.nav-dashboard {
  color: var(--cream);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: var(--ink);
  padding: 8px 14px;
  border-radius: 20px;
}
.nav-dashboard:hover {
  background: var(--gold);
  color: var(--chocolate-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.nav-toggle .icon-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.nav-toggle .icon-burger span {
  width: 24px;
  height: 3px;
  background-color: var(--chocolate-dark) !important;
  border-radius: 2px;
  display: block;
}
.nav-toggle .icon-close {
  display: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--chocolate-dark);
  font-family: var(--font-body);
}
.nav-toggle.open .icon-burger {
  display: none;
}
.nav-toggle.open .icon-close {
  display: block;
}

/* ============= HERO SLIDESHOW (Homepage) ============= */
.hero {
  position: relative;
  background: var(--chocolate-dark);
  color: var(--cream);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 27, 16, 0.55) 0%,
    rgba(46, 27, 16, 0.72) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 90px 28px 70px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-slide-content {
  max-width: 640px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  position: absolute;
}
.hero-slide-content.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.hero h1 {
  color: var(--cream-light);
}
.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}
.hero p.lead {
  color: var(--cream-deep);
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 239, 223, 0.4);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.hero-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============= IMAGE-BASED PAGE HERO (inner pages) ============= */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 27, 16, 0.6) 0%,
    rgba(46, 27, 16, 0.78) 100%
  );
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 90px 28px 60px;
}

/* Stitch divider used between sections */
.stitch-divider {
  height: 6px;
  background: var(--stitch);
  opacity: 0.6;
}

/* ============= STATS STRIP ============= */
.stats-strip {
  background: var(--chocolate);
  color: var(--cream-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 28px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  display: block;
}
.stat .label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-deep);
}

/* ============= SECTIONS ============= */
.section {
  padding: 90px 0;
}
.section-cream {
  background: var(--cream);
}
.section-white {
  background: var(--cream-light);
}
.section-dark {
  background: var(--chocolate-dark);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3 {
  color: var(--cream-light);
}
.section-dark p {
  color: var(--cream-deep);
}

.section-head {
  max-width: 640px;
  margin-bottom: 50px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Card grid patterns */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.card {
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(46, 27, 16, 0.1);
  border-color: var(--gold);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--chocolate-dark);
}
.card .icon svg {
  width: 26px;
  height: 26px;
}

/* Level cards (Creche/Nursery/Primary/Secondary) */
.level-card {
  position: relative;
  background: var(--chocolate-dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 40px 30px;
  overflow: hidden;
}
.level-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
}
.level-card h3 {
  color: var(--gold-light);
}
.level-card p {
  color: var(--cream-deep);
}
.level-card ul {
  margin-top: 14px;
}
.level-card li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: var(--cream-deep);
  font-size: 0.94rem;
}
.level-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

/* Campus cards */
.campus-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.campus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(46, 27, 16, 0.1);
  border-color: var(--gold);
}
.campus-card .campus-top {
  background: var(--chocolate-dark);
  padding: 22px 26px;
  position: relative;
}
.campus-card .campus-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
}
.campus-card .campus-top h3 {
  color: var(--gold-light);
  margin-bottom: 4px;
}
.campus-card .campus-top .campus-levels {
  color: var(--cream-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.campus-card .campus-body {
  padding: 24px 26px 28px;
}
.campus-card .campus-address {
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 10px;
}
.campus-card .campus-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage);
  margin-top: 6px;
}
.campus-card .campus-link:hover {
  color: var(--gold);
}

/* Founder / profile card */
.founder-card {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: var(--chocolate-mid);
  text-align: center;
  font-size: 0.78rem;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ribbon banner (echoes the crest ribbon) */
.ribbon-quote {
  position: relative;
  text-align: center;
  padding: 60px 40px;
  background: var(--sage);
  color: var(--cream-light);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}
.ribbon-quote p {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream-light);
  max-width: 720px;
  margin: 0 auto;
}

/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 8px;
}
.testimonial {
  background: var(--cream-light);
  border-top: 4px solid var(--gold);
  padding: 40px 36px;
  border-radius: var(--radius);
  text-align: center;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-avatar .initials {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chocolate-dark);
}
.testimonial p.quote {
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
}
.testimonial .who {
  font-weight: 700;
  color: var(--chocolate);
  font-size: 0.9rem;
  margin-top: 12px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 239, 223, 0.35);
  background: transparent;
  color: var(--cream-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate-dark);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 239, 223, 0.35);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.carousel-dots span.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* Timeline (for admissions steps / history / principals) */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--cream-deep);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-light);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item .step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  font-weight: 700;
}
.section-dark .timeline::before {
  background: rgba(246, 239, 223, 0.18);
}
.section-dark .timeline-item::before {
  border-color: var(--chocolate-dark);
}

/* Principal timeline card variant (compact, on cream) */
.timeline-item .principal-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--chocolate-dark);
  margin: 2px 0 2px;
}
.timeline-item .principal-years {
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 700;
}

/* Award amount tables */
.award-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.award-table th,
.award-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.92rem;
}
.award-table th {
  background: var(--chocolate);
  color: var(--cream-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.award-table td.amount {
  font-weight: 700;
  color: var(--chocolate);
}
.award-table tr:last-child td {
  border-bottom: none;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

/* ============= GALLERY — MOSAIC LAYOUT ============= */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
}

.g-tile {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--chocolate-light);
  box-shadow: 0 6px 18px rgba(46, 27, 16, 0.08);
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.g-tile:hover img {
  transform: scale(1.08);
}

.g-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(46, 27, 16, 0.9) 85%);
  color: var(--cream-light);
  display: flex;
  flex-direction: column;
  transform: translateY(8px);
  opacity: 0.94;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.g-tile:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.g-tile figcaption .cap-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.g-tile figcaption .cap-sub {
  font-size: 0.74rem;
  color: var(--cream-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Mosaic tile sizing — creates a varied, intentional pattern rather than a rigid grid */
.g-tile.size-a {
  grid-column: span 3;
  grid-row: span 2;
}
.g-tile.size-b {
  grid-column: span 2;
  grid-row: span 2;
}
.g-tile.size-c {
  grid-column: span 4;
  grid-row: span 2;
}

@media (max-width: 980px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
  }
  .g-tile.size-a {
    grid-column: span 2;
  }
  .g-tile.size-b {
    grid-column: span 2;
  }
  .g-tile.size-c {
    grid-column: span 4;
  }
}

@media (max-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 14px;
  }
  .g-tile.size-a,
  .g-tile.size-b,
  .g-tile.size-c {
    grid-column: span 2;
    grid-row: span 2;
  }
  .g-tile figcaption {
    padding: 14px 12px 10px;
    opacity: 1;
    transform: translateY(0);
  }
}

/* News */
.news-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-deep);
}
.news-card .body {
  padding: 24px;
}
.news-card .date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  font-weight: 700;
}
.news-card .thumb {
  background: var(--cream);
  overflow: hidden;
}
.news-card .thumb img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .news-card .thumb {
    max-height: 260px;
  }
  .news-card .thumb img {
    max-height: 290px;
    max-width: auto;
  }
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full {
  grid-column: 1 / -1;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream-light);
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 139, 61, 0.2);
}
textarea {
  resize: vertical;
  min-height: 110px;
}

/* Footer */
.site-footer {
  background: var(--chocolate-dark);
  color: var(--cream-deep);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.site-footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(246, 239, 223, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(246, 239, 223, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(246, 239, 223, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate-dark);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--cream-deep);
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.page-hero h1 {
  color: var(--cream-light);
  margin-top: 10px;
}

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

/* Utility */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.badge-pill {
  display: inline-block;
  background: var(--sage-light);
  color: var(--chocolate-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Nav collapses earlier now that there are more nav items */
@media (max-width: 1150px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    border-bottom: 3px solid var(--chocolate);
    display: none;
    gap: 20px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn-dark-desktop {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 560px;
  }
  .hero-grid {
    padding-top: 50px;
  }
  .hero-slide-content {
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-card {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    padding: 10px 20px;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 480px;
  }
  .page-hero {
    min-height: 220px;
  }
  .page-hero .container {
    padding: 60px 20px 40px;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
  .award-table th,
  .award-table td {
    padding: 10px 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 46px;
    height: 46px;
  }
  h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
  .card {
    padding: 26px 20px;
  }
  .testimonial {
    padding: 30px 22px;
  }
  .founder-photo {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 380px) {
  .nav-wrap {
    padding: 8px 16px;
  }
  .container {
    padding: 0 16px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
}

.nav-toggle {
  position: relative;
  width: 38px;
  height: 38px;
}

.nav-toggle span {
  position: absolute;
  left: 7px;
  width: 24px;
  height: 3px;
  background-color: var(--chocolate-dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}
.nav-toggle span:nth-child(2) {
  top: 19px;
}
.nav-toggle span:nth-child(3) {
  top: 26px;
}

/* X state when open */
.nav-toggle.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.yowa p{
  color: #ede3cf;
}