/* ─── TOKENS ──────────────────────────────────────────────── */
  :root {
    --gray:      #363636;
    --orange:    #D9593C;
    --wine:      #803723;
    --terracota: #B75C3C;
    --cream:     #FAF7F4;
    --light:     #F3EDE7;
    --white:     #FFFFFF;

    --canela: 'Georgia', 'Times New Roman', serif;   /* fallback editorial serif */
    --poppins: 'Poppins', sans-serif;

    --max: 1180px;
    --gap: 2rem;
  }

  /* ─── RESET ───────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--poppins); color: var(--gray); background: var(--cream); -webkit-font-smoothing: antialiased; }
  img  { display: block; width: 100%; }
  a    { text-decoration: none; color: inherit; }

  /* ─── UTILITY ─────────────────────────────────────────────── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .tag { display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terracota); margin-bottom: .75rem; }
  .serif { font-family: var(--canela); font-weight: normal; font-style: italic; }

  /* ─── BUTTONS ─────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--poppins); font-size: .8rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .8rem 1.8rem; border-radius: 2px; transition: all .25s ease; cursor: pointer; border: none;
  }
  .btn-primary   { background: var(--orange); color: #fff; }
  .btn-primary:hover { background: var(--wine); }
  .btn-outline   { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
  .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .btn-dark      { background: var(--gray); color: #fff; }
  .btn-dark:hover{ background: #222; }
  .btn-ghost     { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
  .btn-ghost:hover { background: var(--orange); color: #fff; }

  /* ─── NAV ─────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(250,247,244,.96); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(54,54,54,.08);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo { font-family: var(--canela); font-size: 1.2rem; color: var(--gray); line-height: 1.2; }
  .nav-logo span { display: block; font-family: var(--poppins); font-size: .62rem; font-style: normal; letter-spacing: .15em; text-transform: uppercase; color: var(--terracota); margin-top: 2px; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: .8rem; font-weight: 500; color: var(--gray); opacity: .75; transition: opacity .2s; }
  .nav-links a:hover { opacity: 1; color: var(--orange); }
  .nav-cta { margin-left: 1rem; }

  /* ─── HERO ─────────────────────────────────────────────────── */
  #hero {
    min-height: 100vh; display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 68px; background: var(--cream);
    overflow: hidden;
  }
  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 2px; background: var(--orange);
  }
  .hero-eyebrow span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
  .hero-h1 {
    font-family: var(--canela); font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: normal;
    line-height: 1.07; color: var(--gray); margin-bottom: 1.5rem;
  }
  .hero-h1 em { font-style: italic; color: var(--terracota); }
  .hero-sub {
    font-size: clamp(.9rem, 1.5vw, 1.05rem); font-weight: 400; line-height: 1.7;
    color: var(--gray); opacity: .72; max-width: 460px; margin-bottom: 2.5rem;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

  .hero-photo {
    position: relative; overflow: hidden;
  }
  .hero-photo-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(.95);
  }
  /* Gradient photo placeholder */
  .hero-photo-placeholder {
    width: 100%; height: 100%; min-height: 520px;
    background: linear-gradient(135deg, var(--terracota) 0%, var(--wine) 50%, #4a2016 100%);
    position: relative; display: flex; align-items: flex-end;
  }
  .hero-photo-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  }
  .hero-photo-caption {
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
    font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.6); z-index: 2;
    display: flex; align-items: center; gap: .5rem;
  }
  .hero-photo-caption::before { content:''; display: block; width: 20px; height: 1px; background: rgba(255,255,255,.4); }

  /* ─── BELIEF STATEMENT ────────────────────────────────────── */
  #belief {
    background: var(--white); padding: clamp(4rem, 8vw, 8rem) 0;
    text-align: center;
    border-top: 1px solid rgba(54,54,54,.07);
  }
  .belief-text {
    font-family: var(--canela); font-size: clamp(1.3rem, 3.5vw, 2.15rem);
    font-weight: normal; font-style: italic;
    color: var(--gray); line-height: 1.65; max-width: 820px; margin: 0 auto;
  }
  .belief-text strong { font-style: normal; font-weight: normal; color: var(--terracota); }
  .belief-divider {
    width: 48px; height: 3px; background: var(--orange);
    margin: 2rem auto 0; border-radius: 2px;
  }

  /* ─── VIDEO / STORY ──────────────────────────────────────── */
  #video {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--light);
  }
  .video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .video-text .tag { margin-bottom: 1rem; }
  .video-text h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; line-height: 1.2; color: var(--gray); margin-bottom: 1.25rem;
  }
  .video-text p { font-size: .95rem; line-height: 1.8; color: var(--gray); opacity: .72; margin-bottom: 1.75rem; }
  .video-embed {
    aspect-ratio: 16/9; background: var(--gray);
    border-radius: 4px; overflow: hidden; position: relative;
    box-shadow: 0 24px 60px rgba(54,54,54,.18);
  }
  .video-embed iframe { width: 100%; height: 100%; border: none; }
  .video-play-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a1810, var(--wine));
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    position: relative;
  }
  .video-play-placeholder::after {
    content: ''; display: block;
    border-left: 36px solid rgba(255,255,255,.9);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 6px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  }

  /* ─── PROGRAMS ──────────────────────────────────────────── */
  #programs { padding: clamp(4rem, 8vw, 8rem) 0; background: var(--cream); }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); margin-bottom: 1rem;
  }
  .section-header p { font-size: .95rem; line-height: 1.8; color: var(--gray); opacity: .68; max-width: 540px; margin: 0 auto 1.5rem; }
  .programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
  .program-card {
    background: var(--white); border-radius: 4px; padding: 2rem 1.75rem;
    border-top: 3px solid var(--orange); position: relative; overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .program-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(54,54,54,.12); }
  .program-card:nth-child(2) { border-top-color: var(--terracota); }
  .program-card:nth-child(3) { border-top-color: var(--wine); }
  .program-card:nth-child(4) { border-top-color: var(--gray); }
  .program-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; font-size: 1.1rem;
  }
  .program-card h3 { font-size: 1rem; font-weight: 600; color: var(--gray); margin-bottom: .75rem; line-height: 1.3; }
  .program-card p  { font-size: .83rem; line-height: 1.7; color: var(--gray); opacity: .65; }
  .programs-cta { text-align: center; }

  /* ─── HOW IT WORKS ──────────────────────────────────────── */
  #how {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--gray); color: var(--white);
  }
  #how .section-header h2 { color: var(--white); }
  #how .section-header p  { color: rgba(255,255,255,.65); }
  .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; margin-top: 3rem; }
  .step { padding: 3rem 2.5rem; background: var(--gray); position: relative; }
  .step-number {
    font-family: var(--canela); font-size: 4.5rem; font-style: italic; line-height: 1;
    color: var(--orange); opacity: .35; margin-bottom: 1.5rem;
  }
  .step h3 { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
  .step p  { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); }
  .step-connector {
    position: absolute; top: 50%; right: -1px; transform: translateY(-50%);
    width: 2px; height: 40px; background: var(--orange); opacity: .5;
  }

  /* ─── STATS ─────────────────────────────────────────────── */
  #stats { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--light); }
  .stats-intro { text-align: center; margin-bottom: 3rem; }
  .stats-intro .tag { margin-bottom: .75rem; }
  .stats-intro h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; color: var(--gray);
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
  .stat-card {
    background: var(--white); padding: 2.25rem 2rem; border-radius: 4px; text-align: center;
    border-bottom: 3px solid transparent; transition: border-color .2s, transform .2s;
  }
  .stat-card:hover { border-bottom-color: var(--orange); transform: translateY(-2px); }
  .stat-number {
    font-family: var(--canela); font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: normal; color: var(--orange); line-height: 1;
    margin-bottom: .5rem;
  }
  .stat-label { font-size: .83rem; font-weight: 500; color: var(--gray); opacity: .7; line-height: 1.4; }

  /* ─── TESTIMONIAL ────────────────────────────────────────── */
  #testimonial {
    background: #1f0e08;
    padding: clamp(5rem, 10vw, 10rem) 0; text-align: center; position: relative; overflow: hidden;
  }
  #testimonial::before {
    content: '"';
    position: absolute; top: -2rem; left: 50%; transform: translateX(-50%);
    font-family: var(--canela); font-size: 28rem; color: var(--wine); opacity: .08; line-height: 1;
    pointer-events: none;
  }
  .testimonial-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
  .testimonial-inner blockquote {
    font-family: var(--canela); font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: normal; font-style: italic; color: var(--white);
    line-height: 1.45; margin-bottom: 2.5rem;
  }
  .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
  .testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota), var(--wine));
    flex-shrink: 0;
  }
  .testimonial-meta { text-align: left; }
  .testimonial-name { font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
  .testimonial-role { font-size: .74rem; color: rgba(255,255,255,.45); letter-spacing: .06em; }
  .testimonial-link { margin-top: 2.5rem; }
  .testimonial-link a { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--terracota); text-decoration: underline; text-underline-offset: 4px; }

  /* ─── NEWSLETTER ─────────────────────────────────────────── */
  #newsletter { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--white); }
  .newsletter-box {
    background: var(--orange); border-radius: 6px; padding: clamp(2.5rem, 6vw, 4.5rem);
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }
  .newsletter-text h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: normal; color: var(--white); margin-bottom: .75rem;
  }
  .newsletter-text p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.8); }
  .newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
  .newsletter-form input[type="email"] {
    width: 100%; padding: .9rem 1.25rem;
    border: none; border-radius: 2px;
    font-family: var(--poppins); font-size: .88rem;
    background: rgba(255,255,255,.15); color: var(--white);
    outline: none; border: 1.5px solid rgba(255,255,255,.3);
    transition: border-color .2s;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
  .newsletter-form input:focus { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.22); }
  .newsletter-form button {
    align-self: flex-start; background: var(--white); color: var(--orange);
    border: none; padding: .9rem 2rem; border-radius: 2px;
    font-family: var(--poppins); font-size: .8rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .newsletter-form button:hover { background: var(--cream); transform: translateY(-1px); }

  /* ─── COMMUNITY GALLERY ──────────────────────────────────── */
  #community { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream); overflow: hidden; }
  .community-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
  .community-header h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; color: var(--gray); max-width: 400px; line-height: 1.2;
  }
  .community-header p { font-size: .88rem; line-height: 1.7; color: var(--gray); opacity: .65; max-width: 380px; }
  .gallery-scroll {
    display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .gallery-scroll::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 280px; height: 320px; border-radius: 4px; overflow: hidden; position: relative;
  }
  .gallery-item-bg {
    width: 100%; height: 100%;
    background: var(--gray);
    display: flex; align-items: center; justify-content: center;
    transition: transform .4s ease;
  }
  .gallery-item:hover .gallery-item-bg { transform: scale(1.04); }
  .gallery-item-bg.c1 { background: linear-gradient(135deg, #5c2a1a, var(--wine)); }
  .gallery-item-bg.c2 { background: linear-gradient(135deg, var(--orange), #8a3822); }
  .gallery-item-bg.c3 { background: linear-gradient(135deg, var(--terracota), #3a1a0c); }
  .gallery-item-bg.c4 { background: linear-gradient(135deg, var(--gray), #5a2416); }
  .gallery-item-bg.c5 { background: linear-gradient(135deg, #6a2e1a, var(--orange)); }
  .gallery-item-label {
    position: absolute; bottom: 1rem; left: 1rem;
    font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.7); background: rgba(0,0,0,.35);
    padding: .3rem .7rem; border-radius: 2px;
  }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  footer { background: #1a0a04; color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: var(--canela); font-size: 1.4rem; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
  .footer-logo span { display: block; font-family: var(--poppins); font-size: .6rem; font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota); margin-top: 4px; }
  .footer-tagline { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 220px; }
  .footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .55rem; }
  .footer-col a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color .2s; }
  .footer-col a:hover { color: var(--orange); }
  .social-links { display: flex; gap: .75rem; margin-top: .25rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: rgba(255,255,255,.65); transition: background .2s, color .2s;
  }
  .social-link:hover { background: var(--orange); color: var(--white); }
  .footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
  .footer-mission { font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; font-family: var(--canela); }

  /* ─── ANIMATIONS ─────────────────────────────────────────── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-photo { display: none; }
    .hero-content { padding: 5rem 1.5rem 3rem; }
    .video-grid, .newsletter-box, .stats-grid, .programs-grid, .footer-top { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step-connector { display: none; }
  }
  @media (max-width: 600px) {
    .nav-links, .nav-cta { display: none; }
    .hero-h1 { font-size: 2.4rem; }
    .stats-grid, .programs-grid, .newsletter-box, .footer-top { grid-template-columns: 1fr; }
    .community-header { flex-direction: column; align-items: flex-start; }
    .video-grid { grid-template-columns: 1fr; }
  }