/* ============================================================
   HVNS HAVEN, shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Almarai:wght@300;400;700;800&display=swap');

:root{
  /* HVN'S HAVEN brand palette, sampled from hvns-haven.webflow.io */
  --cream: #E2D6C3;
  --cream-deep: #D5C6AC;
  --offwhite: #FFFEF0;
  --white: #FFFFFF;
  --blue: #A1BCC3;
  --blue-deep: #72A0AC;
  --blue-soft: #EAEBE1;
  --navy: #475A5F;
  --navy-soft: #3B4C50;
  --navy-tint: #55686D;
  --taupe: #988984;
  --taupe-deep: #7D6E68;
  --taupe-light: #B2A795;
  --ink: #211F1B;
  --ink-soft: #675F55;
  --ink-faint: #948C7E;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Almarai', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1220px;
  --shadow-soft: 0 20px 50px -25px rgba(33,31,27,0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.1; }
p{ margin: 0; }
button{ font-family: var(--sans); cursor: pointer; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.rounded-img{
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.rounded-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- photo treatment: grayscale, fades to color on hover ---------- */
.rounded-img img,
.photo-strip .cell img,
.approach-visual .side img{
  filter: grayscale(1) contrast(1.03);
  transition: filter .7s ease;
}
.rounded-img:hover img,
.photo-strip .cell:hover img,
.approach-visual .side:hover img{
  filter: grayscale(0) contrast(1.03);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-navy{ background: var(--navy); color: var(--cream); }
.btn-navy:hover{ background: var(--navy-soft); }
.btn-cream{ background: var(--cream); color: var(--navy); }
.btn-cream:hover{ background: var(--white); }
.btn-blue{ background: var(--blue); color: var(--navy); }
.btn-blue:hover{ background: var(--blue-deep); }
.btn-outline{ background: transparent; border-color: currentColor; }
.btn-outline.on-dark{ color: var(--offwhite); }
.btn-outline.on-dark:hover{ background: rgba(250,247,239,0.1); }
.btn-outline.on-light{ color: var(--navy); border-color: var(--navy); }
.btn-outline.on-light:hover{ background: var(--navy); color: var(--cream); }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top: 18px;
  z-index: 200;
  padding: 0 20px;
}
.nav-pill{
  max-width: var(--container);
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 26px;
  box-shadow: var(--shadow-soft);
}
.logo{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .mark{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo img.mark-img{
  height: 40px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0);
  opacity: 0.88;
}
.logo .mark-icon{
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background-color: var(--blue-deep);
  -webkit-mask-image: url('../brand/logo-submark.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../brand/logo-submark.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.logo .wordmark{
  letter-spacing: 0.04em;
}
footer .logo img.mark-img{ filter: none; opacity: 1; }
.hero-badge img.mark-img, .video-header img.mark-img{ filter: none; opacity: 1; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active{ font-weight: 600; }
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--navy);
}
.nav-cta{ display: flex; align-items: center; gap: 14px; }
.nav-cta .btn{ padding: 12px 24px; font-size: 14px; }
.menu-toggle{
  display: none;
  background: var(--navy);
  color: var(--cream);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top: 90px; left: 20px; right: 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-cta{ gap: 8px; }
  .nav-cta .btn-outline:not(.app-nav-btn){ display: none; }
  .nav-cta .app-nav-btn{
    width: 40px; height: 40px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 0;
  }
  .nav-cta .app-nav-btn::before{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475A5F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v13'/><path d='M6 11l6 6 6-6'/><path d='M5 21h14'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .menu-toggle{ display: flex; }
}

@media (max-width: 460px){
  .logo .wordmark{ display: none; }
  .nav-pill{ padding: 10px 10px 10px 16px; }
  .logo{ gap: 0; }
}

/* ---------- video header ---------- */
.bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}
.video-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33,31,27,0.35) 0%, rgba(33,31,27,0.55) 55%, rgba(33,31,27,0.82) 100%);
}
.gardenia-mark{
  position: absolute;
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* ---------- hero ---------- */
.hero{
  background: var(--navy);
  color: var(--offwhite);
  margin-top: -66px;
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .wrap{ position: relative; z-index: 2; }
.hero-eyebrow{ color: var(--blue); margin-bottom: 22px; }
.hero h1{
  font-size: clamp(38px, 5.4vw, 72px);
  max-width: 15ch;
  color: var(--offwhite);
}
.hero h1 em{
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.hero-sub{
  margin-top: 26px;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250,247,239,0.78);
}
.hero-actions{
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-photo{
  position: relative;
  margin-top: 70px;
  height: 420px;
}
.hero-photo .rounded-img{
  position: absolute;
  inset: 0;
  box-shadow: var(--shadow-soft);
}
.hero-badge{
  position: absolute;
  right: 6%;
  bottom: -46px;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--navy);
}

@media (max-width: 700px){
  .hero{ padding-top: 130px; }
  .hero-photo{ height: 280px; margin-top: 50px; }
  .hero-badge{ width: 110px; height: 110px; font-size: 12px; right: 4%; bottom: -30px; }
}

/* ---------- marquee ---------- */
.marquee-row{
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid rgba(30,42,56,0.08);
  border-bottom: 1px solid rgba(30,42,56,0.08);
}
.marquee-row.blue{ background: var(--blue); }
.marquee-row.cream{ background: var(--cream); }
.marquee-row.blue .marquee-track span{ color: var(--offwhite); }
.marquee-track{
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-row.reverse .marquee-track{ animation-direction: reverse; }
.marquee-track span{
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--navy);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- section basics ---------- */
section{ padding: 110px 0; }
@media (max-width: 700px){
  section{ padding: 64px 0; }
}
.section-head{
  max-width: 640px;
  margin: 0 0 56px;
}
@media (max-width: 700px){
  .section-head{ margin-bottom: 36px; }
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow{ color: var(--ink-soft); margin-bottom: 16px; }
.section-head h2{
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
}
.section-head p{
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.bg-cream{ background: var(--cream); }
.bg-blue{ background: var(--blue-soft); }
.bg-navy{ background: var(--navy); color: var(--offwhite); }
.bg-navy .section-head h2{ color: var(--offwhite); }
.bg-navy .section-head p{ color: rgba(250,247,239,0.75); }

/* ---------- intro split ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split .rounded-img{ height: 460px; }
.image-pair{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 460px;
}
.image-pair .rounded-img{ height: 100%; }
.split-text .eyebrow{ color: var(--ink-soft); margin-bottom: 18px; }
.split-text h2{ font-size: clamp(28px, 3.6vw, 42px); color: var(--navy); }
.split-text p{ margin-top: 20px; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.split-text .btn{ margin-top: 30px; }

.stat-row{
  display: flex;
  gap: 46px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-row .stat b{
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--navy);
}
.stat-row .stat span{ font-size: 14px; color: var(--ink-soft); }

.quote-card{
  margin-top: 34px;
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  max-width: 420px;
}
.quote-card .stars{ color: var(--blue-deep); letter-spacing: 3px; font-size: 15px; }
.quote-card p{ margin-top: 12px; font-size: 15.5px; line-height: 1.6; color: var(--ink); font-style: italic; font-family: var(--serif); }
.quote-card cite{ display: block; margin-top: 12px; font-size: 13px; color: var(--ink-soft); font-style: normal; }

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; gap: 40px; }
  .split .rounded-img{ height: 320px; }
  .image-pair{ height: 320px; gap: 10px; }
}

/* ---------- program cards ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.program-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.program-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.program-card .rounded-img{ height: 220px; margin-bottom: 22px; }
.program-card .tag{
  display: inline-block;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin: 0 10px 14px;
}
.program-card h3{ font-size: 22px; color: var(--navy); margin: 0 10px 10px; }
.program-card p{ font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 10px 18px; }
.program-card .learn{
  margin: 0 10px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.program-card .learn .arrow{ transition: transform .25s ease; }
.program-card:hover .learn .arrow{ transform: translateX(4px); }

@media (max-width: 940px){
  .card-grid{ grid-template-columns: 1fr; }
}

/* ---------- approach steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step .num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.step h3{ font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.step p{ font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- bio / founder ---------- */
.bio{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.bio .rounded-img{ height: 400px; }
.bio-text .eyebrow{ margin-bottom: 16px; color: var(--ink-soft); }
.bio-text h2{ font-size: clamp(28px,3.6vw,40px); color: var(--navy); }
.bio-text p{ margin-top: 18px; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }
.bio-text .role{ font-size: 15px; color: var(--ink-soft); margin-top: 6px; display:block; }

@media (max-width: 860px){
  .bio{ grid-template-columns: 1fr; gap: 34px; }
  .bio .rounded-img{ height: 300px; max-width: 300px; }
}

/* ---------- FAQ ---------- */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid rgba(30,42,56,0.14);
}
.faq-q{
  width: 100%;
  background: none;
  border: none;
  padding: 26px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
}
.faq-q .icon{
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  position: relative;
}
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p{
  padding: 0 4px 26px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
}
.faq-item.open .faq-a{ max-height: 260px; }
.faq-item.open .faq-q .icon{ background: var(--navy); color: var(--cream); }

/* ---------- CTA band ---------- */
.cta-band{
  position: relative;
  background: var(--navy);
  color: var(--offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.cta-band h2{ font-size: clamp(28px, 3.6vw, 42px); max-width: 14ch; }
.cta-band p{ margin-top: 16px; color: rgba(250,247,239,0.75); font-size: 16px; max-width: 44ch; }
.cta-band .hero-actions{ margin-top: 30px; }
.cta-band .rounded-img{ height: 320px; }

@media (max-width: 900px){
  .cta-band{ grid-template-columns: 1fr; padding: 46px 26px; }
  .cta-band .rounded-img{ height: 220px; }
}

/* ---------- footer ---------- */
footer{
  background: var(--navy);
  color: var(--offwhite);
  padding: 90px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
}
.footer-brand .logo{ color: var(--offwhite); margin-bottom: 18px; }
.footer-brand .logo .mark{ background: var(--cream); color: var(--navy); }
.footer-brand p{ font-size: 14.5px; line-height: 1.7; color: rgba(250,247,239,0.65); max-width: 34ch; }
.footer-social{ display: flex; gap: 12px; margin-top: 22px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,239,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
footer h4{ font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; font-weight: 600; }
footer ul li{ margin-bottom: 12px; }
footer ul li a{ font-size: 14.5px; color: rgba(250,247,239,0.78); }
footer ul li a:hover{ color: var(--cream); }
.footer-contact p{ font-size: 14.5px; color: rgba(250,247,239,0.78); line-height: 1.8; margin-bottom: 18px; }
.newsletter{ display: flex; gap: 8px; margin-top: 6px; }
.newsletter input{
  flex: 1;
  background: rgba(250,247,239,0.08);
  border: 1px solid rgba(250,247,239,0.25);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: var(--offwhite);
  font-size: 14px;
}
.newsletter input::placeholder{ color: rgba(250,247,239,0.5); }
.newsletter button{
  background: var(--cream);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  flex-shrink: 0;
  font-size: 16px;
}
.footer-bottom{
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(250,247,239,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,247,239,0.55);
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  background: var(--navy);
  color: var(--offwhite);
  margin-top: -66px;
  padding: 190px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .wrap{ position: relative; z-index: 2; }
.page-hero .eyebrow{ color: var(--blue); margin-bottom: 20px; }
.page-hero h1{ font-size: clamp(34px, 5vw, 58px); color: var(--offwhite); }
.page-hero h1 em{ color: var(--blue); font-style: italic; font-weight: 400; }
.page-hero p{ max-width: 56ch; margin: 22px auto 0; color: rgba(255,254,240,0.8); font-size: 17px; line-height: 1.6; }
.breadcrumb{ font-size: 13px; color: var(--blue); margin-bottom: 16px; letter-spacing: 0.04em; }

@media (max-width: 700px){
  .page-hero{ padding-top: 150px; }
}

/* ---------- generic content blocks ---------- */
.two-col{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 800px){ .two-col{ grid-template-columns: 1fr; } }

.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.value-card .num{ font-family: var(--serif); font-style: italic; color: var(--blue-deep); font-size: 30px; margin-bottom: 14px; }
.value-card h3{ font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.value-card p{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

.values-grid .value-card{ background: var(--navy); }
.values-grid .value-card .num{ color: var(--blue); }
.values-grid .value-card h3{ color: var(--offwhite); }
.values-grid .value-card p{ color: rgba(255,254,240,0.78); }
@media (max-width: 900px){ .values-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .values-grid{ grid-template-columns: 1fr; } }

.timeline{ max-width: 760px; margin: 0 auto; }
.timeline-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(30,42,56,0.12);
}
.timeline-item:first-child{ border-top: none; }
.timeline-item .year{ font-family: var(--serif); font-size: 22px; color: var(--navy); }
.timeline-item h3{ font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.timeline-item p{ font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- forms (contact / get involved) ---------- */
.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 22px; }
.field label{ display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea{
  width: 100%;
  border: 1.5px solid #DDE3E8;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--offwhite);
  color: var(--ink);
}
.field textarea{ min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--blue-deep); background: var(--white);
}
@media (max-width: 700px){
  .form-card{ padding: 30px 22px; }
  .form-row{ grid-template-columns: 1fr; }
}

.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 70px;
}
.info-card{
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.info-card .icon{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 17px;
}
.info-card h3{ font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.info-card p{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 800px){ .contact-info-grid{ grid-template-columns: 1fr; } }

.donate-tiers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .25s ease, transform .25s ease;
}
.tier-card.featured{ border-color: var(--blue-deep); transform: translateY(-10px); }
.tier-card .amount{ font-family: var(--serif); font-size: 40px; color: var(--navy); margin-bottom: 10px; }
.tier-card h3{ font-size: 16px; color: var(--navy); margin-bottom: 12px; }
.tier-card p{ font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 26px; }
@media (max-width: 900px){ .donate-tiers{ grid-template-columns: 1fr; } .tier-card.featured{ transform:none; } }

.ways-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px){ .ways-grid{ grid-template-columns: 1fr; } }

/* map / location */
.map-embed{
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  filter: grayscale(0.15);
  background: var(--blue-soft);
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; }

/* small utility */
.center{ text-align: center; }
.mt-lg{ margin-top: 60px; }

/* ---------- gardenia divider ---------- */
.gardenia-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
}
.gardenia-divider img{ width: 26px; height: 26px; opacity: 0.8; }
.gardenia-divider .line{ width: 46px; height: 1px; background: var(--taupe-light); }

/* ---------- team ---------- */
.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
}
.team-card{ text-align: left; }
.team-card .rounded-img{ height: 320px; margin-bottom: 20px; }
.team-card h3{ font-size: 21px; color: var(--navy); margin-bottom: 4px; }
.team-card .role{ display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 12px; }
.team-card p{ font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 900px){ .team-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .team-grid{ grid-template-columns: 1fr; } }

/* ---------- journal ---------- */
.journal-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.journal-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.journal-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.journal-card .rounded-img{ height: 200px; border-radius: 0; }
.journal-card .body{ padding: 24px 24px 28px; }
.journal-card .meta{ font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 12px; }
.journal-card h3{ font-size: 20px; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.journal-card p{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.journal-card .read{ margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 940px){ .journal-grid{ grid-template-columns: 1fr; } }

.journal-article{ max-width: 720px; margin: 0 auto; }
.journal-article .meta{ font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 18px; text-align: center; }
.journal-article h1{ text-align: center; font-size: clamp(30px,4vw,44px); color: var(--navy); margin-bottom: 34px; }
.journal-article .rounded-img{ height: 380px; margin-bottom: 40px; }
.journal-article p{ font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; }
.journal-article h2{ font-size: 24px; color: var(--navy); margin: 36px 0 16px; }
.journal-article ol, .journal-article ul{ margin: 0 0 22px; padding-left: 22px; }
.journal-article li{ font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 10px; }
.journal-article blockquote{
  margin: 34px 0;
  padding: 26px 30px;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
}

/* ---------- sponsors / partners strip ---------- */
.trust-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}
.trust-strip img{ height: 30px; width: auto; filter: grayscale(1); }

/* ---------- app hero / download CTA ---------- */
.app-nav-btn{ display: inline-flex; }

.store-badges{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.store-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,254,240,0.35);
  color: var(--offwhite);
  font-size: 13.5px;
}
.store-badge .cap{ display:block; font-size:9.5px; letter-spacing:0.08em; text-transform:uppercase; opacity:.7; }
.store-badge .name{ display:block; font-weight: 700; font-size: 14px; }

/* ---------- phone mockup ---------- */
.phone-stage{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  padding-top: 30px;
}
.phone{
  width: 260px;
  height: 540px;
  background: var(--ink);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  position: relative;
}
.phone.small{ width: 220px; height: 460px; transform: translateY(30px); }
.phone .screen{
  background: var(--offwhite);
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone .notch{
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: var(--radius-pill);
  z-index: 5;
}
.phone .screen-bar{
  background: var(--navy);
  color: var(--offwhite);
  padding: 30px 18px 14px;
  font-family: var(--serif);
  font-size: 15px;
}
.phone .screen-bar .greet{ display: block; font-size: 12px; opacity: .75; margin-bottom: 4px; font-family: var(--sans); }
.phone .screen-body{ padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.app-card{
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px -10px rgba(33,31,27,0.3);
}
.app-card .dot{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.app-card .txt b{ display: block; font-size: 12.5px; color: var(--ink); }
.app-card .txt span{ display: block; font-size: 10.5px; color: var(--ink-faint); }
.app-card.done .dot{ background: var(--navy); color: var(--offwhite); }
.app-card.done .txt b{ text-decoration: line-through; color: var(--ink-faint); }
.app-tab-row{ display:flex; gap:8px; margin-top:auto; padding-top:10px; border-top:1px solid rgba(33,31,27,0.08); }
.app-tab-row span{ flex:1; text-align:center; font-size:9px; color: var(--ink-faint); font-weight:600; }
.app-tab-row span.active{ color: var(--navy); }
.app-pill-row{ display:flex; gap:8px; flex-wrap:wrap; }
.app-pill{ background: var(--blue-soft); color: var(--navy); font-size: 10.5px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); }
.app-shift-card{ background: var(--blue-soft); border-radius: 14px; padding: 12px 14px; }
.app-shift-card b{ display:block; font-size: 12px; color: var(--navy); }
.app-shift-card span{ display:block; font-size: 10.5px; color: var(--ink-soft); margin-top: 2px; }
.app-shift-card .release-btn{ margin-top:8px; display:inline-block; background: var(--navy); color: var(--offwhite); font-size: 10px; font-weight:700; padding: 6px 12px; border-radius: var(--radius-pill); }
.app-video-thumb{ position:relative; border-radius: 12px; overflow:hidden; height: 70px; background: var(--taupe-light); }
.app-video-thumb .play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; background:rgba(33,31,27,0.25); }
.app-video-thumb .label{ position:absolute; left:8px; bottom:6px; color:#fff; font-size:10px; font-weight:700; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

.app-feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.app-feature-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.app-feature-card .ico{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}
.app-feature-card h3{ font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.app-feature-card p{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 900px){ .app-feature-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .app-feature-grid{ grid-template-columns: 1fr; } }

.va-band{
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
}
.va-band .badge{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  flex-shrink: 0;
}
.va-band p{ margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 700px){ .va-band{ flex-direction: column; text-align: center; } }

.notify-card{
  background: var(--navy);
  color: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
}
.notify-form{
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 30px auto 0;
}
.notify-form input{
  flex: 1;
  background: rgba(255,254,240,0.08);
  border: 1px solid rgba(255,254,240,0.3);
  border-radius: var(--radius-pill);
  padding: 15px 20px;
  color: var(--offwhite);
  font-size: 14.5px;
}
.notify-form input::placeholder{ color: rgba(255,254,240,0.5); }
@media (max-width: 700px){
  .notify-card{ padding: 40px 24px; }
  .notify-form{ flex-direction: column; }
}

@media (max-width: 760px){
  .phone-stage{ flex-direction: column; align-items: center; }
  .phone.small{ transform: none; }
}

/* ============================================================
   Home page extras: photo strip, wordmark, colorful grid,
   wave divider, difference section, approach visual
   ============================================================ */

/* ---------- photo strip gallery ---------- */
.photo-strip{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 0 4px;
}
.photo-strip .cell{
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.photo-strip .cell img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip .badge{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.photo-strip .badge img{ width: 46px; height: 46px; }

@media (max-width: 900px){
  .photo-strip{ grid-template-columns: repeat(3, 1fr); }
  .photo-strip .cell:nth-child(4), .photo-strip .cell:nth-child(5){ display: none; }
  .photo-strip .cell{ height: 240px; }
}
@media (max-width: 560px){
  .photo-strip{ grid-template-columns: repeat(2, 1fr); }
  .photo-strip .cell:nth-child(3){ display: none; }
  .photo-strip .badge{ width: 70px; height: 70px; }
  .photo-strip .badge img{ width: 32px; height: 32px; }
}

/* ---------- big wordmark band ---------- */
.wordmark-band{
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.wordmark-band .type{
  font-family: var(--serif);
  font-size: clamp(90px, 15vw, 220px);
  line-height: 0.9;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ---------- colorful services grid ---------- */
.color-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.color-tile{
  min-height: 300px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.color-tile h3{
  font-size: 26px;
  line-height: 1.2;
}
.color-tile p{
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 34ch;
}
.color-tile.sage{ background: var(--blue); color: var(--navy); }
.color-tile.taupe{ background: var(--navy); color: var(--offwhite); }
.color-tile.cream{ background: var(--offwhite); color: var(--navy); box-shadow: inset 0 0 0 1px rgba(33,31,27,0.06); }
.color-tile.photo{
  position: relative;
  color: var(--offwhite);
  justify-content: flex-end;
  overflow: hidden;
}
.color-tile.photo::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.03);
  transition: filter .7s ease;
}
.color-tile.photo:hover::before{ filter: grayscale(0) contrast(1.03); }
.color-tile.photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33,31,27,0) 40%, rgba(33,31,27,0.65) 100%);
}
.color-tile.photo > *{ position: relative; z-index: 2; }
.color-tile .tile-learn{
  align-self: flex-start;
  margin-top: 26px;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}
@media (max-width: 900px){
  .color-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .color-grid{ grid-template-columns: 1fr; }
  .color-tile{ min-height: 180px; padding: 28px 26px; }
  .color-tile h3{ font-size: 22px; }
}

/* ---------- wave divider ---------- */
.wave-divider{
  display: block;
  width: 100%;
  height: 90px;
  margin-top: -88px;
  margin-bottom: -2px;
  position: relative;
  z-index: 5;
}
@media (max-width: 700px){
  .wave-divider{ height: 50px; margin-top: -48px; }
}

/* ---------- scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,.8,.3,1), transform .9s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
.reveal-1{ transition-delay: .08s; }
.reveal-2{ transition-delay: .16s; }
.reveal-3{ transition-delay: .24s; }

/* ---------- "not just a program" difference section ---------- */
.difference{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.difference-photo{
  position: relative;
}
.difference-photo .rounded-img{ height: 460px; }
.speech-bubble{
  position: absolute;
  top: -30px;
  right: -10px;
  max-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.speech-bubble::after{
  content: "";
  position: absolute;
  bottom: -14px;
  left: 44px;
  width: 26px; height: 26px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: 0 0 0 6px;
}
.speech-bubble .stars{ color: var(--blue-deep); letter-spacing: 3px; font-size: 14px; text-align: center; }
.speech-bubble p{ margin-top: 12px; font-size: 15px; line-height: 1.55; color: var(--ink); text-align: center; font-family: var(--serif); font-style: italic; }
@media (max-width: 900px){
  .difference{ grid-template-columns: 1fr; gap: 40px; }
  .difference-photo .rounded-img{ height: 320px; }
  .speech-bubble{ position: static; margin-top: -40px; margin-left: auto; margin-right: 20px; }
}

/* ---------- approach visual (split full-bleed photos) ---------- */
.approach-visual{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 640px;
  padding: 0;
}
.approach-visual .side{
  position: relative;
  overflow: hidden;
  height: 640px;
}
.approach-visual .side img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-visual .side.left::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33,31,27,0.45), rgba(33,31,27,0.05) 60%);
}
.approach-visual .copy{
  position: absolute;
  left: 6%;
  bottom: 100px;
  max-width: 420px;
  z-index: 2;
  color: var(--offwhite);
}
@media (max-width: 900px){
  .approach-visual .copy{ bottom: 56px; }
}
.approach-visual .copy .eyebrow{ color: var(--blue); margin-bottom: 16px; }
.approach-visual .copy h2{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--offwhite);
}
.approach-medallion{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  overflow: hidden;
}
.approach-medallion .medallion-icon{
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1;
}
.approach-medallion img,
.approach-medallion svg{ width: 48px; height: 48px; }

@media (max-width: 900px){
  .approach-visual{ grid-template-columns: 1fr; height: auto; }
  .approach-visual .side{ height: 340px; }
  .approach-medallion{ width: 110px; height: 110px; }
  .approach-medallion .medallion-icon{ font-size: 22px; }
  .approach-medallion img,
  .approach-medallion svg{ width: 36px; height: 36px; }
}

/* ---------- home intro / faq-photo section ---------- */
.intro-band{
  text-align: center;
  padding: 130px 0 90px;
}
.intro-band .eyebrow{ color: var(--ink-soft); margin-bottom: 26px; }
.intro-band h2{
  font-size: clamp(26px, 3.6vw, 42px);
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.35;
  color: var(--ink);
}
.intro-band h2 em{ font-style: italic; color: var(--navy); }
.intro-band p{
  max-width: 56ch;
  margin: 34px auto 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}
@media (max-width: 700px){
  .intro-band{ padding: 64px 0 56px; }
  .intro-band .eyebrow{ margin-bottom: 18px; }
  .intro-band p{ margin-top: 24px; }
}

.faq-photo-section{
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.faq-photo-section .bg-photo{
  position: absolute;
  inset: 0;
}
.faq-photo-section .bg-photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.03) brightness(0.75);
}
.faq-photo-section .scrim{
  position: absolute;
  inset: 0;
  background: rgba(33,31,27,0.35);
}
.faq-card{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 60px 70px;
  box-shadow: var(--shadow-soft);
}
.faq-card .section-head{ margin-bottom: 40px; }
.faq-card .section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.faq-card .faq-list{ max-width: none; }
.faq-card .center{ margin-top: 44px; }
@media (max-width: 700px){
  .faq-photo-section{ padding: 56px 0; }
  .faq-card{ padding: 36px 22px; }
  .faq-card .section-head{ margin-bottom: 26px; }
}

/* ---------- footer, three column layout ---------- */
.footer-top{
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,254,240,0.15);
}
.footer-nav-cols{
  display: flex;
  gap: 46px;
}
.footer-nav-cols ul li{ margin-bottom: 14px; }
.footer-nav-cols ul li a{ font-size: 14.5px; color: rgba(255,254,240,0.8); }
.footer-nav-cols ul li a:hover{ color: var(--cream); }
.footer-tagline{
  text-align: center;
  padding-top: 4px;
}
.footer-tagline .logo{ justify-content: center; margin-bottom: 20px; color: var(--offwhite); }
.footer-tagline p{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--offwhite);
  max-width: 30ch;
  margin: 0 auto;
}
.footer-contact-col{ text-align: right; }
.footer-contact-col h4{ font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; font-weight: 600; }
.footer-contact-col p{ font-size: 14.5px; color: rgba(255,254,240,0.8); line-height: 1.8; margin-bottom: 18px; }
.footer-contact-col ul li{ margin-bottom: 12px; }
.footer-contact-col ul li a{ font-size: 14.5px; color: rgba(255,254,240,0.8); }
.footer-contact-col ul li a:hover{ color: var(--cream); }

@media (max-width: 800px){
  .footer-top{ grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-nav-cols{ justify-content: center; }
  .footer-contact-col{ text-align: center; }
}
@media (max-width: 480px){
  .footer-nav-cols{ flex-direction: column; gap: 20px; }
}
