/* ═══════════════════════════════════════════════════
   style.css  —  Gawa Chuu  (global styles)
   ═══════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --accent:        #ff6d16;
  --forest-dark:   #162c12;
  --font-headline: 'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --container:     896px;    /* 5xl equivalent used site-wide */
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: white;
  overflow-x: hidden;
  background: #000;
}

/* ── NAVBAR ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  z-index: 200;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.nav.scrolled {
  background: var(--forest-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 12px 40px;
}

.nav__logoBox {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
}

/* Logo is now an <a> tag */
.nav__logo {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
}

.nav__partner {
  font-size: 8px;
  margin-top: -3px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
  color: #bbb;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-headline);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px)  rotate(45deg);  }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DRAWER ──────────────────────────────────────── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 298;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active { display: block; opacity: 1; }

.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 80vw);
  height: 100%;
  background: var(--forest-dark);
  z-index: 299;
  padding: 28px 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.nav__drawer.open { right: 0; }

.drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 32px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.drawer__close:hover { opacity: 1; }

.nav__drawer ul { list-style: none; }

.nav__drawer a {
  display: block;
  padding: 14px 0;
  color: white;
  text-decoration: none;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.nav__drawer a:hover,
.nav__drawer a.active {
  color: var(--accent);
  padding-left: 6px;
}

/* ── SHARED PAGE HERO (video or photo) ───────────── */
/* Used by: home, tiny-homes, past-projects, charity, about */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Each page sets its own fallback bg-image via a modifier */
.page-hero__fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}

.page-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 32px;
}

/* Shared eyebrow label above hero headline */
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 9px;
}

/* Shared hero headline — consistent across all pages */
.page-hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.5px;
}

/* ── HOME HERO (kept separate — different layout) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 460px;
  width: 100%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../../img/tiny-homes-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-color: #1e3a17;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: white;
}

.hero__subheadline {
  font-family: var(--font-headline);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ── SHARED SECTION INTRO TEXT ───────────────────── */
/* Centred paragraph used below hero on interior pages */
.section-intro {
  background: #f5f5f2;
  padding: 72px 24px;
  display: flex;
  justify-content: center;
}

.section-intro p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.55vw, 15.5px);
  line-height: 1.9;
  max-width: 760px;
  text-align: center;
  color: #444;
}

/* ── ABOUT SECTION (home page) ───────────────────── */
.about-section {
  background: #f5f5f2;
  color: #1a1a1a;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-section p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.9;
  max-width: 760px;
  text-align: center;
  color: #444;
}

/* ── BTN-TEXT ─────────────────────────────────────── */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-text:hover            { color: var(--accent); }
.btn-text:hover .btn-arrow { transform: translateX(5px); }

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* ── OPTIONS SECTION (home) ──────────────────────── */
.options-section {
  background: #e8e8e5;
  color: #1a1a1a;
  padding: 70px 24px 80px;
}

.options-section__heading {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 19px);
  text-align: center;
  margin-bottom: 48px;
  color: #222;
  font-weight: 400;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
}

.option-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.option-card__img:hover img { transform: scale(1.04); }

.option-card__title {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  color: #111;
}

.option-card__text {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 14.5px);
  line-height: 1.8;
  text-align: center;
  color: #444;
  flex: 1;
  margin-bottom: 20px;
}

/* ── PAST PROJECTS SECTION (home) ────────────────── */
.projects-section {
  background: #f5f5f2;
  padding: 70px 24px 80px;
}

.projects-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto 40px;
}

.projects-img { overflow: hidden; }

.projects-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.projects-img:hover img { transform: scale(1.04); }

.projects-img--left  { width: 48%; height: 240px; flex-shrink: 0; border-radius: 8px; }
.projects-img--right { width: 48%; height: 240px; flex-shrink: 0; border-radius: 8px; }

.projects-text {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.projects-text p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.85;
  color: #333;
}

.projects-bottom { display: flex; justify-content: center; }

.projects-img--bottom {
  width: 100%;
  max-width: 900px;
  height: 320px;
  border-radius: 8px;
}

/* ── CHARITY SECTION (home + reused) ─────────────── */
.charity-section {
  background: #e8e8e5;
  padding: 70px 40px;
}

.charity-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: var(--container);
  margin: 0 auto;
}

.charity-img {
  width: 280px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.charity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.charity-img:hover img { transform: scale(1.04); }

.charity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Shared label used across all pages */
.charity-label {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
}

.charity-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.85;
  color: #444;
}

/* ── INQUIRY / FOOTER SECTION ────────────────────── */
.inquiry-section {
  background: #f5f5f2;
  padding: 100px 40px;
}

.inquiry-container {
  max-width: var(--container);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

.inquiry-left  { width: 35%; color: #111; }
.inquiry-right { width: 60%; }

.inq-logo {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #111;
}

.inq-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.inq-contact { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-item i { color: var(--accent); font-size: 16px; margin-top: 4px; }

.contact-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.contact-item a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--accent); }

.contact-item p { color: #111; font-size: 15px; }

.inq-title {
  font-family: var(--font-headline);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #111;
}

#inquiryForm { display: flex; flex-direction: column; gap: 18px; }

#inquiryForm input,
#inquiryForm textarea {
  width: 100%;
  padding: 15px 18px;
  border: none;
  background: #e2e2e2;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

#inquiryForm textarea { height: 120px; resize: none; }

.inq-btn {
  background: transparent;
  border: none;
  color: var(--forest-dark);
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  padding: 0;
  margin-top: 6px;
}

.inq-btn:hover { color: var(--accent); }

/* ── RESPONSIVE — GLOBAL ─────────────────────────── */
@media (max-width: 900px) {
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 12px; }
}

@media (max-width: 768px) {
  .nav          { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav__links   { display: none; }
  .nav__hamburger { display: flex; }

  .page-hero { height: 60vh; min-height: 340px; }
  .page-hero__headline { font-size: clamp(20px, 5.5vw, 32px); }

  .hero { height: 55vh; min-height: 320px; }
  .hero__headline   { font-size: 20px; }
  .hero__subheadline { font-size: 17px; }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 540px;
  }

  .about-section  { padding: 60px 20px; }
  .options-section { padding: 60px 20px 70px; }
  .section-intro  { padding: 60px 20px; }

  .charity-section { padding: 60px 24px; }
  .charity-inner   { gap: 36px; }
  .charity-img     { width: 220px; height: 210px; }

  .inquiry-section { padding: 70px 24px; }
  .inquiry-container { flex-direction: column; gap: 52px; }
  .inquiry-left,
  .inquiry-right   { width: 100%; }

  .projects-top    { gap: 16px; margin-bottom: 32px; }
  .projects-img--left,
  .projects-img--right { height: 180px; }
  .projects-img--bottom { height: 220px; }
}

@media (max-width: 580px) {
  .charity-inner { flex-direction: column; gap: 28px; }
  .charity-img   { width: 100%; height: 220px; }
}

@media (max-width: 480px) {
  .nav        { padding: 14px 16px; }
  .nav__logo  { font-size: 15px; }
  .nav__partner { font-size: 7px; letter-spacing: 3px; }

  .hero         { height: 50vh; min-height: 280px; }
  .page-hero    { height: 55vh; min-height: 300px; }
  .hero__headline    { font-size: 18px; }
  .hero__subheadline { font-size: 15px; }

  .projects-section { padding: 50px 16px 60px; }
  .projects-top     { flex-direction: column; gap: 12px; }
  .projects-img--left,
  .projects-img--right { width: 100%; height: 200px; }
  .projects-img--bottom { height: 200px; max-width: 100%; }

  .inquiry-section { padding: 56px 16px; }
}
/* ═══════════════════════════════════════════════════
   tiny-homes.css  —  page-specific only
   Shared: .page-hero, .charity-label,
           .btn-text, .btn-arrow  →  all in style.css
   ═══════════════════════════════════════════════════ */

/* ── INTRO ───────────────────────────────────────── */
.th-intro {
  background: #f5f5f2;
  padding: 72px 24px;
  display: flex;
  justify-content: center;
}

.th-intro p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.55vw, 15.5px);
  line-height: 1.9;
  max-width: 760px;
  text-align: center;
  color: #444;
}

/* ── EXCELLENT BUILDS ────────────────────────────── */
.th-builds {
  background: #fff;
  padding: 70px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.th-builds__img {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}

.th-builds__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}

.th-builds__img:hover img { transform: scale(1.03); }

.th-builds__sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #666;
  font-style: italic;
}

/* ── BECOME A PARTNER ────────────────────────────── */
.th-partner { background: #e8e8e5; padding: 80px 40px; }

.th-partner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.th-partner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.th-partner__body {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.9;
  color: #444;
}

.th-partner__img {
  width: 420px;
  height: 360px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.th-partner__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.th-partner__img:hover img { transform: scale(1.04); }

/* ── HOW IT WORKS ────────────────────────────────── */
.th-how { background: #f5f5f2; padding: 80px 40px; }

.th-how__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.th-how__inner > p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.85;
  color: #333;
}

.th-how__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.th-how__list li {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 14.5px);
  color: #444;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.th-how__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 16px;
  line-height: 1.5;
}

/* ── PAST PROJECTS TEASER ────────────────────────── */
.th-projects-teaser { background: #e8e8e5; padding: 80px 40px; }

.th-projects-teaser__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 52px;
}

.th-projects-teaser__img {
  width: 360px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.th-projects-teaser__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.th-projects-teaser__img:hover img { transform: scale(1.04); }

.th-projects-teaser__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.th-projects-teaser__body {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.85;
  color: #444;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .th-partner        { padding: 60px 24px; }
  .th-partner__inner { flex-direction: column-reverse; gap: 36px; }
  .th-partner__img   { width: 100%; height: 260px; }
  .th-how            { padding: 60px 24px; }
  .th-projects-teaser        { padding: 60px 24px; }
  .th-projects-teaser__inner { flex-direction: column; gap: 32px; }
  .th-projects-teaser__img   { width: 100%; height: 240px; }
}

@media (max-width: 480px) {
  .th-intro           { padding: 56px 20px; }
  .th-builds          { padding: 50px 16px 60px; }
  .th-how             { padding: 48px 16px; }
  .th-projects-teaser { padding: 48px 16px; }
}
/* ═══════════════════════════════════════════════════
   past-projects.css  —  page-specific only
   Shared: .page-hero, .charity-section, .charity-label,
           .btn-text, .btn-arrow  →  all in style.css
   ═══════════════════════════════════════════════════ */

/* ── INTRO ───────────────────────────────────────── */
.pp-intro {
  background: #f5f5f2;
  padding: 72px 24px;
  display: flex;
  justify-content: center;
}

.pp-intro p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.55vw, 15.5px);
  line-height: 1.9;
  max-width: 760px;
  text-align: center;
  color: #444;
}

/* ── PROJECT SECTION WRAPPER ─────────────────────── */
.pp-project { padding: 72px 40px; }
.pp-project--light { background: #f5f5f2; }
.pp-project--grey  { background: #e8e8e5; }

.pp-project__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── CAROUSEL ────────────────────────────────────── */
.pp-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
  aspect-ratio: 16 / 10;
}

.pp-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.pp-carousel__slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.pp-carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.pp-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.pp-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.pp-carousel__dot.is-active {
  background: white;
  transform: scale(1.25);
}

.pp-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.30);
  color: white;
  border: none;
  font-size: 18px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}

.pp-carousel__arrow:hover       { background: rgba(0,0,0,0.55); }
.pp-carousel__arrow--prev       { left: 12px; }
.pp-carousel__arrow--next       { right: 12px; }

/* ── PROJECT TEXT ────────────────────────────────── */
.pp-project__name {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.pp-project__location {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 6px;
}

.pp-project__body {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.9;
  color: #444;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .pp-project { padding: 56px 24px; }
  .pp-carousel__arrow { width: 32px; height: 32px; font-size: 15px; }
}

@media (max-width: 480px) {
  .pp-intro   { padding: 56px 20px; }
  .pp-project { padding: 48px 16px; }
  .pp-carousel__arrow { display: none; }
}

/* ═══════════════════════════════════════════════════
   charity.css  —  page-specific only
   Shared: .page-hero, .charity-label,
           .btn-text, .btn-arrow  →  all in style.css
   ═══════════════════════════════════════════════════ */

/* ── INTRO ───────────────────────────────────────── */
.ch-intro {
  background: #f5f5f2;
  padding: 72px 40px;
  display: flex;
  justify-content: center;
}

.ch-intro__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ch-intro__p1,
.ch-intro__p2 {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.55vw, 15.5px);
  line-height: 1.9;
  color: #444;
}

/* ── PROJECT SECTIONS ────────────────────────────── */
.ch-project { padding: 72px 40px; }
.ch-project--light { background: #f5f5f2; }
.ch-project--grey  { background: #e8e8e5; }

.ch-project__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ch-project__header { display: flex; flex-direction: column; gap: 3px; }

.ch-project__title {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.3px;
}

.ch-project__meta {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #555;
}

.ch-project__img {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
}

.ch-project__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.ch-project__img:hover img { transform: scale(1.03); }

.ch-project__body { display: flex; flex-direction: column; gap: 16px; }

.ch-project__body p {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.9;
  color: #444;
}

.ch-project__donate { margin-top: 8px; }

/* ── CHARITY PAST PROJECTS TEASER ────────────────── */
.ch-past { background: #e8e8e5; padding: 70px 40px; }

.ch-past__inner {
  display: flex;
  align-items: center;
  gap: 52px;
  max-width: var(--container);
  margin: 0 auto;
}

.ch-past__img {
  width: 280px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.ch-past__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.ch-past__img:hover img { transform: scale(1.04); }

.ch-past__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ch-past__body {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.85;
  color: #444;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .ch-intro   { padding: 60px 24px; }
  .ch-project { padding: 56px 24px; }
  .ch-past    { padding: 60px 24px; }
  .ch-past__inner { gap: 32px; }
  .ch-past__img   { width: 200px; height: 190px; }
}

@media (max-width: 580px) {
  .ch-past__inner { flex-direction: column; gap: 28px; }
  .ch-past__img   { width: 100%; height: 220px; }
}

@media (max-width: 480px) {
  .ch-intro   { padding: 52px 20px; }
  .ch-project { padding: 48px 16px; }
  .ch-past    { padding: 48px 16px; }
}
/* ═══════════════════════════════════════════════════
   about.css  —  page-specific only
   Shared: .page-hero, .charity-label,
           .btn-text, .btn-arrow  →  all in style.css
   ═══════════════════════════════════════════════════ */

/* ── WHO WE ARE ──────────────────────────────────── */
.ab-who {
  background: #fff;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.ab-who__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

.ab-who__title {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: #111;
  letter-spacing: 0.3px;
}

.ab-who__inner p {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.9;
  color: #444;
}

/* ── VALUES ──────────────────────────────────────── */
/* Wrapper — no extra padding, children handle it */
.ab-values { display: flex; flex-direction: column; }

.ab-value     { background: #e8e8e5; padding: 64px 40px; }
.ab-value--alt { background: #f5f5f2; }

.ab-value__img {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  margin: 0 auto;
}

.ab-value__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.ab-value__img:hover img { transform: scale(1.03); }

.ab-value__text {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-value__name {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
}

.ab-value__body {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.45vw, 15px);
  line-height: 1.85;
  color: #444;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .ab-who   { padding: 60px 24px; }
  .ab-value { padding: 52px 24px; }
}

@media (max-width: 480px) {
  .ab-who   { padding: 52px 20px; }
  .ab-value { padding: 44px 16px; }
  .ab-value__img { max-width: 100%; }
}