/* =========================================================
   AARUNYA RECORD COMMUNITY DRIVE
   Complete stylesheet
   ========================================================= */

:root{
  --forest:#2f3c30;
  --forest-dark:#202920;
  --green:#53664a;
  --green-soft:#71816a;

  --gold:#b48a38;
  --gold-light:#d9bd72;
  --gold-dark:#806126;

  --cream:#f8f5ec;
  --paper:#fffdf7;
  --ink:#273028;
  --muted:#687168;

  --line:rgba(47,60,48,.14);

  --display:"Manrope",sans-serif;
  --body:"DM Sans",sans-serif;
  --script:"Caveat",cursive;
}


/* =========================================================
   RESET
========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

button{
  font:inherit;
}


/* =========================================================
   COMMON
========================================================= */

.container{
  width:min(1180px,calc(100% - 44px));
  margin:auto;
}

.narrow{
  max-width:820px;
}

.section{
  padding:clamp(65px,7vw,105px) 0;
}

.section-label{
  margin-bottom:18px;
  color:var(--gold-dark);
  font-size:10px;
  font-weight:800;
  letter-spacing:2.5px;
  text-transform:uppercase;
}

.section-label.light{
  color:var(--gold-light);
}

h1,
h2,
h3,
h4{
  margin:0;
  font-family:var(--display);
  font-weight:700;
  letter-spacing:-.045em;
  line-height:1.04;
}

h2{
  font-size:clamp(2.5rem,5vw,5rem);
  color:var(--forest);
}

p{
  color:var(--muted);
  font-size:16px;
  margin:0 0 18px;
}

strong{
  color:inherit;
}


/* =========================================================
   BUTTONS
========================================================= */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 21px;

  border:1px solid transparent;

  font-size:10px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;

  cursor:pointer;
  transition:.25s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.button-primary{
  background:var(--gold);
  color:#fff;
}

.button-primary:hover{
  background:var(--gold-dark);
}

.button-light{
  background:#fff;
  color:var(--forest);
}

.button-light:hover{
  background:var(--gold-light);
  color:var(--forest);
}

.button-outline{
  border-color:rgba(47,60,48,.35);
  color:var(--forest);
}

.button-outline:hover{
  background:var(--forest);
  color:#fff;
}

.section-green .button-outline{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.section-green .button-outline:hover{
  background:rgba(255,255,255,.1);
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;

  height:78px;

  background:rgba(248,245,236,.96);
  backdrop-filter:blur(16px);

  border-bottom:1px solid var(--line);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  width:150px;
  height:60px;
  object-fit:contain;
}

.header-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:11px 18px;

  background:var(--forest);
  color:#fff;

  font-size:10px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;

  transition:.25s ease;
}

.header-button:hover{
  background:var(--gold-dark);
  transform:translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;
  min-height:calc(100vh - 78px);
  min-height:min(850px,calc(100vh - 78px));

  display:flex;
  align-items:center;

  overflow:hidden;

  background:
    linear-gradient(
      90deg,
      rgba(29,42,32,.96) 0%,
      rgba(39,56,42,.82) 48%,
      rgba(43,59,44,.42) 100%
    ),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=82")
    center/cover;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(217,189,114,.28),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.03),
      rgba(0,0,0,.25)
    );
}

.hero-content{
  position:relative;
  z-index:2;

  max-width:820px;

  padding:70px 0;
}

.eyebrow{
  margin-bottom:20px;

  color:var(--gold-light);

  font-size:10px;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
}

.hero h1{
  max-width:820px;

  color:#fff;

  font-size:clamp(3.4rem,7vw,7rem);
}

.hero h1 span{
  display:block;

  color:var(--gold-light);

  font-family:var(--script);
  font-size:1.08em;
  font-weight:500;
  letter-spacing:0;
}

.hero-event{
  margin:28px 0 2px;

  color:#fff;

  font-family:var(--display);
  font-size:21px;
  font-weight:700;
}

.hero-record{
  margin:0 0 24px;

  color:var(--gold-light);

  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.hero-description{
  max-width:680px;

  color:rgba(255,255,255,.78);

  font-size:17px;
  line-height:1.7;
}

.hero-description strong{
  color:#fff;
}

.hero-highlight{
  display:inline-block;

  margin:10px 0 25px;
  padding:11px 16px;

  border-left:2px solid var(--gold-light);

  background:rgba(255,255,255,.06);

  color:#fff;

  font-family:var(--script);
  font-size:25px;
  line-height:1.1;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;

  margin-top:4px;
}

.hero-buttons .button-outline{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.hero-buttons .button-outline:hover{
  background:rgba(255,255,255,.1);
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  max-width:760px;

  margin-top:50px;

  border-top:1px solid rgba(255,255,255,.2);
}

.hero-stats div{
  padding:20px 18px 0;

  border-right:1px solid rgba(255,255,255,.16);
}

.hero-stats div:first-child{
  padding-left:0;
}

.hero-stats div:last-child{
  border-right:0;
}

.hero-stats strong{
  display:block;

  color:#fff;

  font-family:var(--display);
  font-size:27px;
  line-height:1;
}

.hero-stats span{
  display:block;

  margin-top:6px;

  color:rgba(255,255,255,.58);

  font-size:9px;
  font-weight:700;
  letter-spacing:1.3px;
  text-transform:uppercase;
}

.small-note{
  margin:13px 0 0;

  color:rgba(255,255,255,.4);

  font-size:9px;
}


/* =========================================================
   IMPORTANT:
   EARLY COMMUNITY CTA
========================================================= */

.hero-community-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  max-width:850px;

  margin-top:35px;
  padding:18px 20px;

  border:1px solid rgba(217,189,114,.3);

  background:rgba(20,30,23,.55);

  backdrop-filter:blur(8px);
}

.hero-community-copy{
  min-width:0;
}

.hero-community-copy small{
  display:block;

  margin-bottom:4px;

  color:var(--gold-light);

  font-size:8px;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
}

.hero-community-copy strong{
  display:block;

  color:#fff;

  font-family:var(--display);
  font-size:18px;
  line-height:1.2;
}

.hero-community-copy span{
  display:block;

  margin-top:3px;

  color:rgba(255,255,255,.58);

  font-size:11px;
}

.hero-community-cta .button{
  flex-shrink:0;
}


/* =========================================================
   CREAM / LIGHT SECTIONS
========================================================= */

.section-cream{
  background:var(--cream);
}

.section-light{
  background:var(--paper);
}

.section-intro{
  max-width:680px;
  margin:18px 0 40px;

  font-size:17px;
  line-height:1.7;
}


/* =========================================================
   STORY
========================================================= */

.section-cream .narrow p{
  max-width:760px;
}

.quote-box{
  margin-top:35px;
  padding:28px 30px;

  border-left:3px solid var(--gold);

  background:var(--paper);
}

.quote-box p{
  margin-bottom:8px;

  color:var(--forest);

  font-family:var(--script);
  font-size:25px;
  line-height:1.25;
}

.quote-box strong{
  display:block;

  color:var(--forest);

  font-family:var(--display);
  font-size:17px;
}


/* =========================================================
   FUNDING
========================================================= */

.funding-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;

  margin-top:35px;
}

.funding-card{
  padding:35px;

  border:1px solid var(--line);

  background:var(--cream);

  transition:.25s ease;
}

.funding-card:hover{
  transform:translateY(-4px);

  box-shadow:0 18px 45px rgba(47,60,48,.08);
}

.card-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:48px;
  height:48px;

  margin-bottom:24px;

  border-radius:50%;

  background:var(--forest);

  color:var(--gold-light);

  font-size:22px;
}

.amount{
  margin-bottom:6px;

  color:var(--gold-dark);

  font-family:var(--display);
  font-size:32px;
  font-weight:800;
}

.funding-card h3{
  margin-bottom:14px;

  color:var(--forest);

  font-size:24px;
}

.funding-card p{
  font-size:14px;
  line-height:1.65;
}


/* =========================================================
   GOAL PANEL
========================================================= */

.goal-panel{
  margin-top:25px;
  padding:28px 30px;

  border:1px solid var(--line);

  background:var(--forest);

  color:#fff;
}

.goal-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;

  margin-bottom:18px;
}

.goal-heading span{
  color:var(--gold-light);

  font-size:9px;
  font-weight:800;
  letter-spacing:1.8px;
}

.goal-heading strong{
  color:#fff;

  font-family:var(--display);
  font-size:27px;
}

.progress-track{
  width:100%;
  height:9px;

  overflow:hidden;

  background:rgba(255,255,255,.12);
}

.progress-bar{
  width:0%;
  height:100%;

  background:var(--gold-light);
}

.progress-details{
  display:flex;
  justify-content:space-between;

  margin-top:9px;

  color:rgba(255,255,255,.55);

  font-size:9px;
  letter-spacing:.5px;
}


/* =========================================================
   COMMUNITY MESSAGE
========================================================= */

.section-green{
  background:var(--forest);
  color:#fff;
}

.section-green h2{
  color:#fff;
}

.community-layout,
.participant-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.community-copy{
  padding-top:4px;
}

.community-copy p{
  margin-bottom:10px;

  color:rgba(255,255,255,.7);

  font-size:18px;
}

.community-final{
  margin-top:24px!important;

  color:#fff!important;

  font-family:var(--script);
  font-size:28px!important;
}


/* =========================================================
   SUPPORT LEVELS
========================================================= */

.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;

  margin-top:35px;
}

.support-card{
  position:relative;

  display:flex;
  flex-direction:column;

  min-height:260px;

  padding:27px 24px 24px;

  border:1px solid var(--line);

  background:var(--cream);

  transition:.25s ease;
}

.support-card:hover{
  transform:translateY(-4px);

  box-shadow:0 15px 40px rgba(47,60,48,.08);
}

.support-card.selected{
  border:2px solid var(--gold);
  box-shadow:0 12px 35px rgba(180,138,56,.12);
}

.support-amount{
  display:block;

  margin-bottom:13px;

  color:var(--gold-dark);

  font-family:var(--display);
  font-size:25px;
  font-weight:800;
}

.support-card h3{
  margin-bottom:10px;

  color:var(--forest);

  font-size:20px;
}

.support-card p{
  font-size:13px;
  line-height:1.55;
}

.support-button{
  width:100%;

  margin-top:auto;
  padding:12px;

  border:1px solid var(--forest);

  background:transparent;

  color:var(--forest);

  font-size:9px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;

  cursor:pointer;

  transition:.2s ease;
}

.support-button:hover,
.support-card.selected .support-button{
  background:var(--forest);
  color:#fff;
}

.support-card.custom{
  background:#eee9da;
}


/* =========================================================
   PAYMENT BOX
========================================================= */

.payment-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;

  margin-top:35px;
  padding:28px 30px;

  border:1px solid rgba(180,138,56,.28);

  background:var(--forest);
}

.payment-box .section-label{
  margin-bottom:8px;
  color:var(--gold-light);
}

.payment-box h3{
  color:#fff;
  font-size:25px;
}

.payment-box p{
  max-width:650px;
  margin:8px 0 0;

  color:rgba(255,255,255,.6);

  font-size:12px;
}

.payment-box .button{
  flex-shrink:0;
}


/* =========================================================
   PARTICIPANTS
========================================================= */

.large-highlight{
  margin:20px 0;

  color:var(--gold-light)!important;

  font-family:var(--script);
  font-size:30px!important;
}

.share-box{
  margin:25px 0 18px;
  padding:22px;

  border:1px solid rgba(255,255,255,.13);

  background:rgba(255,255,255,.045);
}

.share-title{
  margin-bottom:9px;

  color:var(--gold-light);

  font-size:8px;
  font-weight:800;
  letter-spacing:1.7px;
}

.share-box p{
  margin:0;

  color:rgba(255,255,255,.68);

  font-size:13px;
  line-height:1.65;
}


/* =========================================================
   SUPPORTER WALL
========================================================= */

.supporter-wall{
  min-height:180px;

  margin-top:30px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px dashed rgba(47,60,48,.22);

  background:var(--cream);

  color:var(--muted);

  font-size:12px;
  letter-spacing:.5px;
}


/* =========================================================
   BRAND STATEMENT
========================================================= */

.brand-statement{
  margin-top:35px;
  padding:25px 0;

  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);

  color:var(--forest);

  font-family:var(--script);
  font-size:30px;
  line-height:1.15;
}


/* =========================================================
   ORGANISATIONS
========================================================= */

.organisation-box{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:50px;

  padding:45px;

  background:var(--cream);

  border:1px solid var(--line);
}

.organisation-box h2{
  margin-bottom:20px;
}

.organisation-box p{
  max-width:700px;
  margin-bottom:0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-section{
  padding:100px 0;

  background:var(--forest);

  text-align:center;
}

.final-section .container{
  max-width:900px;
}

.final-section h2{
  color:#fff;

  font-size:clamp(3rem,6vw,6rem);
}

.final-section h2 span{
  color:var(--gold-light);

  font-family:var(--script);
  font-weight:500;
  letter-spacing:0;
}

.final-section p{
  max-width:680px;
  margin:25px auto 30px;

  color:rgba(255,255,255,.68);

  font-size:17px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
  padding:55px 0 30px;

  background:var(--forest-dark);

  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}

.footer-logo{
  width:140px;

  filter:brightness(0) invert(1);

  opacity:.9;
}

.footer p{
  max-width:560px;
  margin-top:15px;

  color:rgba(255,255,255,.48);

  font-size:12px;
}

.footer h4{
  margin-bottom:12px;

  color:#fff;

  font-size:14px;
  letter-spacing:.2px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media(max-width:900px){

  .container{
    width:min(100% - 40px,760px);
  }

  .hero{
    min-height:auto;
  }

  .hero-content{
    padding:75px 0 65px;
  }

  .hero h1{
    font-size:clamp(3rem,9vw,5.5rem);
  }

  .hero-stats{
    margin-top:40px;
  }

  .hero-community-cta{
    align-items:flex-start;
    flex-direction:column;
  }

  .funding-grid{
    grid-template-columns:1fr;
  }

  .support-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .community-layout,
  .participant-layout{
    grid-template-columns:1fr;
    gap:40px;
  }

  .payment-box{
    align-items:flex-start;
    flex-direction:column;
  }

  .organisation-box{
    grid-template-columns:1fr;
    gap:25px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media(max-width:600px){

  .container{
    width:calc(100% - 40px);
  }

  .site-header{
    height:70px;
  }

  .brand img{
    width:125px;
    height:52px;
  }

  .header-button{
    padding:10px 13px;

    font-size:8px;
  }

  .hero{
    min-height:auto;

    background-position:62% center;
  }

  .hero-content{
    padding:60px 0 50px;
  }

  .eyebrow{
    font-size:8px;
    letter-spacing:2px;
  }

  .hero h1{
    font-size:clamp(2.9rem,13vw,4.2rem);
  }

  .hero-event{
    font-size:18px;
    margin-top:22px;
  }

  .hero-record{
    font-size:10px;
  }

  .hero-description{
    font-size:14px;
  }

  .hero-highlight{
    font-size:23px;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-buttons .button{
    width:100%;
  }

  .hero-community-cta{
    margin-top:28px;
    padding:17px;
  }

  .hero-community-copy strong{
    font-size:16px;
  }

  .hero-stats{
    grid-template-columns:repeat(2,1fr);

    margin-top:35px;
  }

  .hero-stats div{
    padding:16px 12px;

    border-bottom:1px solid rgba(255,255,255,.13);
  }

  .hero-stats div:nth-child(2){
    border-right:0;
  }

  .hero-stats div:nth-child(3),
  .hero-stats div:nth-child(4){
    border-bottom:0;
  }

  .hero-stats div:first-child{
    padding-left:0;
  }

  .hero-stats strong{
    font-size:24px;
  }

  .section{
    padding:55px 0;
  }

  h2{
    font-size:clamp(2.3rem,11vw,3.3rem);
  }

  .funding-card{
    padding:27px 22px;
  }

  .goal-panel{
    padding:23px 20px;
  }

  .goal-heading{
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }

  .support-grid{
    grid-template-columns:1fr;
  }

  .support-card{
    min-height:230px;
  }

  .payment-box{
    padding:24px 20px;
  }

  .payment-box .button{
    width:100%;
  }

  .community-copy p{
    font-size:16px;
  }

  .large-highlight{
    font-size:27px!important;
  }

  .organisation-box{
    padding:28px 22px;
  }

  .organisation-box .button{
    width:100%;
  }

  .final-section{
    padding:75px 0;
  }

  .final-section h2{
    font-size:clamp(2.8rem,12vw,4rem);
  }

  .final-section p{
    font-size:15px;
  }

  .footer{
    padding:45px 0 25px;
  }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

button:focus-visible,
a:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    transition:none!important;
  }
}