/* ── RESET & BASE ── */
:root {
  --pink:           #f08e80;  /* decorative only — borders, backgrounds */
  --pink-text:      #a84d3b;  /* AA-compliant: 4.71:1 on white — use for all coloured text */
  --pink-btn:       #a84d3b;  /* AA-compliant button bg with white text */
  --pink-btn-hover: #8a3828;
  --pink-dark:      #d4705f;
  --pink-soft:      #f5bdb5;
  --blush:          #fdf0e6;
  --white:          #ffffff;
  --off-white:      #fef8f3;
  --charcoal:       #1a1a1a;  /* #1a1a1a = 16.75:1 on white — exceeds AAA */
  --gray:           #595959;  /* 7:1 on white — AA compliant */
  --rule:           #ecddd4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── AODA / WCAG 2.0 AA ── */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Visible focus indicators for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--pink-dark);
  outline-offset: 3px;
}

/* Body text: #1a1a1a = 16.75:1 on white — exceeds WCAG AAA */
body { color: var(--charcoal); }

/* Body text contrast */
.section-body { color: var(--gray); }

/* Buttons: white text on --pink-btn (#a84d3b) = 4.71:1 — passes AA */
.btn-fill, .nav-btn, .btn-submit {
  color: #ffffff;
  background-color: var(--pink-btn);
}
.btn-fill:hover, .nav-btn:hover, .btn-submit:hover {
  background-color: var(--pink-btn-hover);
}

/* Ghost button: black text on white = 21:1 — passes AAA */
.btn-ghost { color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { color: var(--pink-text); border-color: var(--pink-text); }

/* Pointer cursor on all interactive elements */
button, [role="button"] { cursor: pointer; }

/* Form field labels — #595959 = 7:1 on white — passes AA */
.form-field label { color: var(--gray); }

/* Sufficient line height for readability (WCAG 1.4.8) */
p, li { line-height: 1.75; }

/* Error state for invalid fields */
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-bottom: 2px solid #b91c1c;
}
.field-error {
  color: #b91c1c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }

/* Form success message */
.form-success {
  display: none;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 16px;
  border-radius: 2px;
}
.form-success.visible { display: block; }

body {
  font-family: 'Almarai', sans-serif;
  font-size: 12pt;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 210px;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 16px;
}

em { font-style: italic; color: var(--pink-text); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 210px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(240,142,128,0.12);
  backdrop-filter: blur(10px);
}

.logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
  height: 200px;
  width: auto;
  display: block;
}

.nav-right { display: flex; align-items: center; gap: 36px; }

.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink-text); }

.nav-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 10px 22px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-btn:hover { background: var(--pink-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 210px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
  padding: 24px 32px;
  gap: 20px;
  z-index: 299;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mobile-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.mobile-menu .mobile-cta {
  color: var(--white);
  background: var(--pink);
  padding: 12px 20px;
  text-align: center;
  margin-top: 8px;
}
.mobile-menu.open { display: flex; }

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pink);
}

.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pink);
}

.section-heading {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

.section-inner { max-width: 1200px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-fill {
  display: inline-block;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 14px 32px;
  transition: background 0.2s;
}
.btn-fill:hover { background: var(--pink-dark); }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 14px 32px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--pink-text); color: var(--pink-text); }

.btn-white {
  display: inline-block;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-text);
  background: var(--white);
  padding: 14px 32px;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--blush); }

.btn-submit {
  font-family: 'Almarai', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--pink-dark); }

/* ── FORM ── */
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: 'Almarai', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--pink); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ── HOME: HERO ── */
.hero {
  background: var(--blush);
  padding: 120px 48px 100px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-inner { max-width: 820px; }

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-rule {
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: rgba(232,99,122,0.15);
}

/* ── HOME: WHY SECTION ── */
.why-section {
  padding: 100px 48px;
  background: var(--white);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.why-body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

.section-divider {
  height: 1px;
  background: var(--rule);
  margin: 0 48px;
}

/* ── HOME: FORM SECTION ── */
.form-section {
  padding: 100px 48px;
  background: var(--white);
}

.form-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 56px;
}

.form-header .section-body { max-width: none; }

.contact-form { width: 100%; }

/* ── ABOUT: PAGE HEADER ── */
.page-header {
  padding: 100px 48px 80px;
  background: var(--blush);
  border-bottom: 1px solid rgba(232,99,122,0.12);
}

.page-header-inner { max-width: 760px; }

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.page-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
  max-width: 560px;
}

/* ── ABOUT: SPLIT SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-left, .split-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}

.split-blush { background: var(--off-white); }
.split-pink  { background: var(--pink); }

.split-content { max-width: 420px; }

.split-pink .section-eyebrow { color: rgba(255,255,255,0.7); }
.split-pink .section-eyebrow::before { background: rgba(255,255,255,0.5); }

.pull-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
}

/* ── ABOUT: VALUES ── */
.values-section {
  padding: 100px 48px;
  background: var(--white);
}

.values-header { margin-bottom: 60px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.value-block {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.25s;
}
.value-block:hover { background: var(--blush); }

.value-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: var(--pink-soft);
  font-weight: 500;
  margin-bottom: 18px;
}

.value-block h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-block p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
}

/* ── ABOUT: WHO WE SERVE ── */
.who-section {
  padding: 100px 48px;
  background: var(--off-white);
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-content .section-body { max-width: none; }

/* ── ABOUT: FUNDING STRIP ── */
.funding-strip-section {
  padding: 80px 48px;
  background: var(--white);
}

.funding-strip-header { margin-bottom: 52px; }

.funding-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.funding-strip-item {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.25s;
}
.funding-strip-item:hover { background: var(--blush); }

.fs-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-text);
  margin-bottom: 10px;
}

.fs-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.fs-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
}

/* ── ABOUT: CTA BANNER ── */
.cta-banner {
  background: var(--pink);
  padding: 80px 48px;
  text-align: center;
}

.cta-banner-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner-inner p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

/* ── CONTACT PAGE ── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

.contact-info-col {
  background: var(--blush);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 64px;
}

.contact-info-content { max-width: 380px; width: 100%; padding-top: 20px; }

.contact-detail-list {
  border-top: 1px solid rgba(232,99,122,0.2);
  display: flex;
  flex-direction: column;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(232,99,122,0.12);
  align-items: flex-start;
}

.cd-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-text);
  min-width: 60px;
  padding-top: 2px;
  flex-shrink: 0;
}

.cd-value {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-form-col {
  padding: 80px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--white);
}

.contact-form-col .contact-form {
  max-width: 520px;
  width: 100%;
  padding-top: 20px;
}

/* ── FOOTER ── */
footer {
  background: #3a1a14;
  padding: 64px 48px 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
}

.footer-brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink-soft); }
.footer-col li { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.5); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(240,142,128,0.2);
  padding-top: 20px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.shown { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-right { gap: 0; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 80px 24px 72px; }
  .why-section, .form-section, .values-section,
  .who-section, .funding-strip-section, .cta-banner,
  .page-header { padding-left: 24px; padding-right: 24px; }

  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-divider { margin: 0 24px; }

  .split-section { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 64px 32px; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .funding-strip-grid { grid-template-columns: 1fr 1fr; }

  .contact-page { grid-template-columns: 1fr; }
  .contact-info-col { padding: 64px 32px; }
  .contact-form-col { padding: 64px 32px; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .form-section-inner { max-width: none; }
}

@media (max-width: 600px) {
  .values-grid, .funding-strip-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-title { font-size: 2.8rem; }
}
