
:root{
  --bg:#f7fcff;
  --soft-blue:#e7f0fb;
  --soft-mint:#edf8f3;
  --navy:#214b63;
  --blue:#2f7ea2;
  --text:#365764;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(26,54,73,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Manrope",system-ui,sans-serif;
  line-height:1.68;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:26px;
  padding:18px 32px;
  background:rgba(247,252,255,.72);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.site-nav{
  display:flex;
  gap:26px;
  font-size:.98rem;
  color:var(--navy);
}
.top-cta,.primary-btn,.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 26px;
  font-size:.97rem;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease;
}
.top-cta,.primary-btn{
  background:var(--blue);
  color:var(--white);
  box-shadow:0 10px 26px rgba(47,126,162,.24);
}
.secondary-btn{
  background:var(--white);
  color:var(--blue);
  box-shadow:0 10px 26px rgba(255,255,255,.18);
}
.top-cta:hover,.primary-btn:hover,.secondary-btn:hover,.help-card:hover,.footer-socials a:hover{
  transform:translateY(-1px);
}

.hero{
  min-height:100vh;
  position:relative;
  background:url('hero.jpg') center top / cover no-repeat;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:130px 24px 98px;
}
.hero-gradient{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(10,24,33,.60) 0%, rgba(10,24,33,.28) 25%, rgba(10,24,33,.06) 45%, rgba(10,24,33,0) 62%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(1200px,100%);
  margin:0 auto;
  text-align:center;
}
.hero h1,.story-card h2,.section-title,.contact-copy h2,.cta-card h2,.help-card h3,.thank-you-card h1{
  font-family:"Cormorant Garamond",serif;
  line-height:.98;
  margin:0;
}
.hero h1{
  color:#fff;
  font-size:clamp(3.1rem,6.6vw,5.9rem);
  text-shadow:0 10px 30px rgba(0,0,0,.18);
}
.hero-line{
  display:block;
  white-space:nowrap;
}
.hero-line.strong{font-weight:700}
.hero-line.soft{font-weight:400; opacity:.92}
.hero-btn{margin-top:26px}

.container{
  width:min(1140px,calc(100% - 40px));
  margin:0 auto;
}
.section-label{
  display:inline-block;
  margin:0 0 14px;
  padding:6px 12px;
  border-radius:999px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.74rem;
  font-weight:700;
  color:var(--navy);
  background:rgba(47,126,162,.09);
}
.section-label.center{
  display:table;
  margin:0 auto 14px;
}
.section-label.light{
  color:#fff;
  background:rgba(255,255,255,.12);
}

.story-section,.help-section,.contact-section,.cta-section{
  padding:92px 0;
}
.two-col{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:48px;
  align-items:center;
}
.story-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(33,75,99,.06);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:40px;
}
.story-card h2{
  color:var(--navy);
  font-size:clamp(2.5rem,4vw,4rem);
  margin-bottom:18px;
}
.story-card p{margin:0 0 18px}
.story-emphasis{font-weight:700;color:var(--navy)}
.story-image{border-radius:30px;box-shadow:var(--shadow)}

.help-section{
  background:linear-gradient(180deg,var(--soft-blue) 0%, #f3f8fc 100%);
}
.section-title{
  text-align:center;
  color:var(--navy);
  font-size:clamp(2.4rem,4vw,3.8rem);
  margin-bottom:32px;
}
.help-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.help-card{
  display:block;
  background:var(--white);
  border-radius:26px;
  padding:30px 28px;
  box-shadow:var(--shadow);
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
.help-card:hover{
  box-shadow:0 24px 48px rgba(26,54,73,.14);
}
.help-number{
  display:inline-block;
  margin-bottom:16px;
  color:var(--blue);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.09em;
}
.help-card h3{
  color:var(--navy);
  font-size:2rem;
  margin-bottom:10px;
}
.help-card p{margin:0 0 16px}
.card-link{color:var(--blue);font-weight:700}

.contact-section{
  background:linear-gradient(180deg,var(--soft-mint) 0%, #f8fbf9 100%);
}
.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:start;
}
.contact-copy h2{
  color:var(--navy);
  font-size:clamp(2.3rem,4vw,3.4rem);
  margin-bottom:16px;
}
.contact-note{font-size:.95rem;color:#4c6a76}
.contact-form{
  background:var(--white);
  padding:34px;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.contact-form label{
  display:block;
  margin-bottom:18px;
  font-size:.94rem;
  font-weight:600;
  color:var(--navy);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:8px;
  border:1px solid rgba(33,75,99,.14);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  color:var(--navy);
  background:#fff;
}
.contact-form textarea{resize:vertical}
.form-btn{border:none;cursor:pointer}
.hidden{display:none}

.cta-card{
  background:var(--navy);
  color:var(--white);
  border-radius:34px;
  padding:38px 42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:0 20px 45px rgba(33,75,99,.18);
}
.cta-card h2{
  color:var(--white);
  font-size:clamp(2.6rem,4vw,4rem);
}

.site-footer{
  background:#17384b;
  padding:28px 0 36px;
}
.footer-inner{
  display:flex;
  justify-content:center;
}
.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.footer-socials a{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  transition:transform .2s ease, background .2s ease;
}
.footer-socials a:hover{
  background:rgba(255,255,255,.16);
}
.footer-socials svg{
  width:20px;
  height:20px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.thank-you-page{
  min-height:100vh;
  display:grid;
  place-items:center;
}
.thank-you-wrap{
  width:min(760px,calc(100% - 32px));
}
.thank-you-card{
  background:#fff;
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:50px 36px;
  text-align:center;
}
.thank-you-card h1{
  color:var(--navy);
  font-size:clamp(2.8rem,5vw,4.4rem);
  margin-bottom:12px;
}

@media (max-width: 980px){
  .site-header{
    padding:14px 18px;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .site-nav{
    gap:14px;
    order:2;
    width:100%;
    justify-content:center;
  }
  .two-col,.contact-layout,.help-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:86vh;
    padding-top:148px;
    padding-bottom:72px;
  }
  .hero h1{
    font-size:clamp(2.5rem,9vw,4.2rem);
  }
  .hero-line{
    white-space:normal;
  }
  .story-card,.contact-form{
    padding:28px;
  }
  .cta-card{
    padding:28px;
    flex-direction:column;
    align-items:flex-start;
  }
}

.hero-content { transform: translateY(60px); }

.gallery-section{
  padding:80px 0;
  text-align:center;
}

.gallery img{
  width:100%;
  max-width:900px;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}




  .hero-gradient{
    background: linear-gradient(to top, rgba(10,24,33,.56) 0%, rgba(10,24,33,.18) 35%, rgba(10,24,33,0) 62%);
  }

  .hero-content{
    transform: translateY(10px);
  }
}




  .hero-content{
    transform: translateY(0px);
  }
}


  .hero-gradient{ z-index: 1; }
  .hero-content{ position: relative; z-index: 2; }
}


  100%{ transform: scale(1.08) translateX(3%); }
}


@media (max-width: 768px){

  .hero{
    background: none !important;
    padding: 60px 0;
    min-height: auto;
  }

  .hero::before{
    display: none !important;
  }

  .hero-gradient{
    display: none;
  }

  .hero-content{
    transform: none !important;
    text-align: center;
  }

  .hero-image-mobile{
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .hero-image-mobile img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

}


.hero-image-mobile{
  display: none;
}

@media (max-width: 768px){
  .hero-image-mobile{
    display: block;
  }
}


@media (max-width: 768px){

  .hero{
    padding: 80px 0 40px;
  }

  .hero-image-mobile{
    margin: 0 auto 30px;
  }

  .hero-content{
    padding: 0 20px;
  }

  .hero h1{
    margin-top: 10px;
  }
}


@media (max-width: 768px){

  .hero{
    background: none !important;
    background-image: none !important;
  }

  .hero::before{
    display: none !important;
    background: none !important;
  }

}





@media (min-width: 769px){
  .hero{
    align-items: flex-end;
    padding-top: 130px;
    padding-bottom: 34px;
  }

  .hero-content{
    transform: translateY(110px);
  }
}



}


@media (max-width: 768px){
  .help-grid{
    grid-template-columns:1fr !important;
  }
}


.story-card p{
  margin: 0 0 22px !important;
  line-height: 1.8 !important;
}

.story-card .story-emphasis{
  margin-top: 8px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.story-card .story-emphasis strong{
  font-weight: 700 !important;
}


.secondary-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 26px;
  font-size:.97rem;
  font-weight:700;
  background: rgba(255,255,255,.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  margin-left: 12px;
}

.secondary-btn.alt{
  margin-left: 12px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

@media (max-width: 768px){
  .secondary-hero-btn{
    margin-left: 0;
    margin-top: 12px;
  }
  .secondary-btn.alt{
    margin-left: 0;
    margin-top: 12px;
  }
}
