html, body{
  width: 100%;
  scroll-behavior: smooth;
}

body {
  padding-top: 6rem;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:

    radial-gradient(900px 1080px at 50% -5%,
      rgba(52, 148, 78, 0.20),
      #1b78ff00 62%
    );

    background-repeat: no-repeat;
}

@media (min-width: 652px) {
    body {
        background:

        radial-gradient(2500px 1080px at 50% -8%, rgba(52, 148, 78, 0.20),#1b78ff00 62%
    );
    }
}


H1, H2, H3, H4, H5, H6{
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
}


/* ===== GLOBAL VARS ===== */
:root{
  --nav-h: 56px;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);

  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);

  /* Button colors (from your Figma list) */
  --btn-primary: #6F8F7D; /* <-- replace with your exact Figma “Primary” if different */
  --btn-white: #FFFFFF;
  --btn-tint:  #F6F5F8;

  /* Hero colors */
  --hero-accent: #18c9ff;
  --hero-text: rgba(255,255,255,0.92);
  --hero-muted: rgba(255,255,255,0.68);
}

*{ box-sizing:border-box; }
a{ color:inherit; text-decoration:none; }


/* ===== NAV ===== */
.site-header{
  padding: 34px 18px;
  display:flex;
  justify-content:center;

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
}



.nav{
  width: min(1100px, 100%);
  height: var(--nav-h);
  padding: 35px 22px;
  display:flex;
  align-items:center;
  gap: 12px;

  /* glass */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.279);
  border-radius: 999px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* subtle separation */
  box-shadow:
    0 14px 30px rgba(0,0,0,0.05),
    0 1px 0 rgba(255, 255, 255, 0) inset;

  position: relative;
  z-index: 9999;
}


/* Brand */
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  padding: 4px 10px;
  border-radius: 12px;
  white-space:nowrap;
}

/* ✅ Responsive logo sizing */
.brand img{
  display:block;
  height: clamp(125px, 2.2vw, 200px); /* scales with screen */
  width: auto;                      /* keeps SVG proportions */
  max-width: 140px;                 /* prevents it from getting huge */
  object-fit: contain;
}

/* Links (desktop) */
.nav__links{
  margin-inline: auto;
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 0 10px;
}

.nav__link{
  font-size: 15px;
  color: black;
  padding: 10px 6px;
  position: relative;
  transition: color 160ms ease, transform 160ms ease;
}
.nav__link:hover{
  color: black;
  transform: translateY(-1px);
}


.nav__link.is-active{
  color: black;
  font-weight: bold;
}


.nav__link.is-active::after{
  content:"";
  position:absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 99px;
}




/* CTA button (right) */
.nav__cta{
  position: relative;
  overflow: hidden;
  background-color: #6F8F7D;

  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 10px 14px;
  height: calc(var(--nav-h) - 16px);
  border-radius: 999px;

  color: var(--btn-white);
  font-size: 13px;
  white-space:nowrap;

  transition: transform 180ms ease, filter 180ms ease;
}
.nav__cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.20) 0%,
    rgba(246,245,248,0.07) 55%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events:none;
}
.nav__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.nav__cta:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

.nav__cta-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(246,245,248,0.07);
}
.nav__cta-icon svg{
  width: 14px;
  height: 14px;
  color: var(--btn-white);
}



/* Toggle (mobile) */
.nav__toggle{
  display:none;
  margin-left:auto;
  width: 42px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
    background: rgb(111, 143, 125);
  cursor:pointer;
}
.hamburger{
  width: 18px;
  height: 12px;
  display:grid;
  gap: 3px;
  margin: 0 auto;
}
.hamburger span{
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,0.85);
}

/* Focus styles */
.nav__link:focus-visible,
.nav__cta:focus-visible,
.nav__toggle:focus-visible,
.brand:focus-visible{
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
  border-radius: 999px;
}

/* Responsive nav */
@media (max-width: 820px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav__links{
    position:absolute;
    left: 50%;
    top: calc(100% + 6px);
    width: calc(100% - 18px);

    transform: translateX(-50%) translateY(-10px);

    display:flex;
    flex-direction:column;
    gap: 10px;
    padding: 16px;

    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.10);
    background: white;
    backdrop-filter: blur(12px);

    box-shadow:
      0 18px 36px rgba(0,0,0,0.50),
      0 2px 0 rgba(255,255,255,0.04) inset;

    z-index: 50;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;

    transition:
      max-height 520ms cubic-bezier(.16, 1, .3, 1),
      opacity 340ms ease,
      transform 520ms cubic-bezier(.16, 1, .3, 1);
  }

  .nav__link{
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: background 180ms ease, transform 180ms ease, color 180ms ease;
  }

  .nav__link:hover{
    background: rgba(255,255,255,0.07);
    transform: translateY(-1px);
    color: var(--text);
  }

  .nav__link.is-active::after{ display:none; }

  .nav.is-open .nav__links{
    max-height: 520px;
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
    pointer-events: auto;
  }
}

@media (max-width: 420px){
  .site-header{ padding: 12px; }
  .nav{ padding: 10px; }
  .brand__name{ font-size: 15px; }
  .nav__cta{ padding: 10px 12px; }

  .nav__links{
    top: calc(100% + 4px);
    width: calc(100% - 14px);
    padding: 14px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce){
  .nav__links{ transition: none; }
  .nav__link{ transition: none; }
  .nav__cta{ transition: none; }
}





/* ABOUT HERO SECTION BASE — MOBILE FIRST */
.about-hero{
  position: relative;
  padding: 2rem 1.5rem;
  max-width: 1900px;
  margin: 0 auto;
  overflow: hidden;
}

.about-content{
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* FULL WIDTH equalizer strip that can repeat forever */
.about-eq{
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  
  width: 100vw;
  height: 90px;

  background-image: url("images/backgrounds/about-equalizer.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 90px;

  opacity: 0.56;
  pointer-events: none;
  z-index: 1;
}



/* ABOUT TAG */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid #6f8f7d;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #6F8F7D;
    margin-bottom: 1rem;
}

.about-tag .dot {
    width: 10px;
    height: 10px;
    background: #6F8F7D;
    border-radius: 50%;
}

.span-green {
    color: #6F8F7D;
}

/* TITLE */
.about-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #6F8F7D;
}



.about-text p {
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 1.2rem;
    color: #4A4C56;
    font-family: "Poppins", sans-serif;
}

/* IMAGE */
.about-img {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}


.about-img img {
    width: auto;        /* was 100% – this caused horizontal stretch */
    max-width: 100%;    /* only shrink, never grow beyond natural size */
    height: auto;
}


@media (min-width: 700px) {
    .about-eq {
        bottom: 0;
        width: 200%;
    }
}

@media (min-width: 1000px) {
  
  .about-hero {
    margin-top: 4rem;
  }
  
  .about-content {
        display: flex;
        align-items: center;
        gap: 2rem;
        max-width: 1000px;
        padding-bottom: 5rem;
    }

    .text-section {
        flex: 1.6;       /* text gets more space */
    }

    .about-img {
        flex: 1;         /* image takes less space */
        display: flex;
        justify-content: flex-end;
    }

    .about-img img {
        max-width: 980px;   /* perfect size for desktop */
        width: 100%;        /* scales down but not up */
        height: auto;
        object-fit: contain;
    }
}


/* ============================
========= CONTACT SECTION ========
============================= */
.contact{
  padding: clamp(0px, 8vw, 0px) 18px;
  background: rgba(241, 244, 242, 0.70);
  position: relative;
  overflow: hidden;
}

.contact__container{
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
  /* border: 2px solid red; */
  padding-bottom: 4rem;
}

/* pill */
.contact__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #6F8F7D;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.contact__title{
  padding-top: 3rem;
  padding-bottom: 3rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 5.2vw, 50px);
  color: #2F3C35;
}


.contact__subtext{
  margin: 0 auto clamp(26px, 3vw, 40px);
  max-width: 900px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.8;
}

/* ============================
   FIXED: CONNECTED CENTER LINE
============================= */
.contact__panel{
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0;

  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* ONE consistent border around the whole panel */
  border: .5px solid rgba(111, 143, 125, 0.55);

}

/* OPTIONAL: inner rim glow (keeps the “inward” look) */
.contact__panel::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* CENTER DIVIDER: real line that touches top/bottom and matches border color */
.contact__panel::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;

  /* match your split: 1fr | 1.25fr  → divider is at 1 / (1 + 1.25) = 44.444% */
  left: 44.444%;

  width: 1px;
  background: rgba(111, 143, 125, 0.55);
; /* SAME as panel border */
  pointer-events:none;

}


/* LEFT */
.contact__info{
  padding: clamp(22px, 3vw, 34px);
  text-align: left;
}

.contact__info-title{
  margin: 4px 0 18px;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(0, 0, 0, 0.92);
}

.contact__info-card{
  padding: 16px 16px 18px;
  border-radius: 14px;
  background: #F2F5F3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}

.contact__info-label{
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.92);
  font-family: "Poppins", sans-serif;

}

.contact__info-row{
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__info-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: rgba(11,60,255,0.95);
  flex: 0 0 auto;
}

.contact__info-link{
  color: #4A4C56;
  text-decoration: none;
  font-size: 14px;
}
.contact__info-link:hover{ text-decoration: underline; }

.contact__info-text{
  margin: 0;
  color: #4A4C56;
  line-height: 1.5;
  font-size: 14px;
}

.contact__hours{
  margin-top: 16px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #6F8F7D;
}
.contact__hours-title{
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;

}
.contact__hours-text{
  margin: 0;
  color: #4A4C56;
  line-height: 1.6;
  font-size: 14px;
}

/* RIGHT */
.contact__form-wrap{
  padding: clamp(22px, 3vw, 34px);
  text-align: left;
}

.contact__form{
  display: grid;
  gap: 14px;
}

.contact__label{
  color: #070707;
  font-size: 16.5px;
  margin-top: 4px;
}

.contact__input,
.contact__textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #D2DCD7;
  background: white;
  color: #4A4C56;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.contact__textarea{
  min-height: 140px;
  resize: vertical;
}

.contact__input::placeholder,
.contact__textarea::placeholder{
  color: #4a4c5677;
  line-height: 1.6rem;
}

.contact__input:focus,
.contact__textarea:focus{
  border-color: #6F8F7D;
  box-shadow: 0 0 0 3px rgba(24,201,255,0.12);
}

/* submit button */
.contact__btn{
  justify-self: end;
  margin-top: 6px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);

  background: #6F8F7D;
  color: #fff;

  font-size: 14px;
  text-decoration: none;

  cursor: pointer;

  transition: transform 180ms ease, filter 180ms ease;
}

.contact__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.contact__btn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

.contact__btn-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: rgba(11,60,255,0.95);
}

/* ============================
=========== RESPONSIVE =========
============================= */
/* ============================
   RESPONSIVE: divider becomes horizontal
============================= */
@media (max-width: 980px){
  .contact__panel{
    grid-template-columns: 1fr;
  }

  /* kill the 50% divider on mobile */
  .contact__panel::after{
    content: none;
  }

  /* add a real divider between the stacked sections */
  .contact__form-wrap{
    border-top: 1px solid rgba(111, 143, 125, 0.55);
    padding-top: clamp(22px, 3vw, 34px);
    margin-top: 0; /* just in case */
    position: relative;
  }

  /* optional glow like your original divider */
  .contact__form-wrap::before{
    content:"";
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    pointer-events: none;

  }
}

@media (max-width: 520px){
  .contact{
    padding: 60px 20px;
  }
  .contact__info-card,
  .contact__hours{
    padding: 14px;
  }
}

.name-2 {
    position: relative;
    display: inline-block;
}

.squiggle-img {
    position: absolute;
    left: 0;
    bottom: -0.3em;
    width: 100%;

}































/* CALL TO ACTION SECTION */
.cta-section {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content {
    position: relative;
    width: 100%;
    background: linear-gradient(60deg, rgb(159, 180, 168), rgba(159, 180, 168, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 2rem;
    border-radius: 1rem;
    margin-top: 0;
}

.cta-eq-2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    
}


.cta-text h1 {
    font-size: clamp(1.2rem, 3vw, 2.rem);
    max-width: 600px;
    text-align: center;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
}

.cta-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers the button + text */
    text-align: center;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: white;
    color: black;
    border-radius: 999px;
    font-size: 15px;
    
    margin: 2rem;
}

.cta-img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0rem 6rem 0rem;
  }

.cta-img img {
    width: 100%;
    max-width: 300px;
    border-radius: 1.5rem;
}

@media (min-width: 700px) {
  .cta-img {
    padding-bottom: 10rem;
  }
}


@media (min-width: 850px){
    .cta-eq-2{
        width: 60%;
    }
}

@media (min-width: 890px) {
    .cta-content{
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem 4rem;
    }

    .cta-text {
        align-items: flex-start;
    }

    .cta-text h1 {
        text-align: left;
    }

    .cta-button {
        margin-left: 0;
    }

    .cta-eq-2{
        width: 50%;
    }
}


@media (min-width: 1200px) {
    .cta-content{
        padding: 4rem 6rem;
    }

    .cta-eq-2{
        width: 45%;
    }

}


/* ===================== */
/* ====== FOOTER ======= */
/* ===================== */
.footer{
  padding: clamp(56px, 6vw, 90px) 18px 26px;
  background: url(images/backgrounds/footer-bg.png);
  background-size: cover;
  background-position: center;
  min-width: 40%;
  height: auto;
  margin: 1.2rem;
  border-radius: 1.5rem;
}

.footer__container{
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
}

/* TOP ROW */
.footer__top{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.footer__brand{
  max-width: 420px;
}

.footer__logo{
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.footer__logo img {
  width: clamp(22rem, 14vh, 12rem);  
  height: auto;                    /* keeps SVG proportions */
  max-width: 140px;  
  object-fit: contain;
 
}


.footer__logo-name{
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.889);
  letter-spacing: 0.2px;
}

.footer__logo-tag{
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.889);
}


.footer-h1 {
  margin: 18px 0 18px;
  color: rgba(255, 255, 255, 0.889);
  line-height: 1.25;
  max-width: 360px;
}

.footer__blurb{
  margin: 18px 0 18px;
  color: rgb(255, 255, 255);
  line-height: 1.65;
  font-size: 14px;
  max-width: 360px;
}


.span-underline {
    text-decoration: underline;
    color: white;
}

/* Socials */
.footer__social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__social-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);

  box-shadow: 0 16px 28px rgba(0,0,0,0.35);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer__social-btn svg{
  width: 18px;
  height: 18px;
}

.footer__social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(24,201,255,0.35);
}

.footer__social-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

/* Right columns */
.footer__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 60px);
  justify-content: end;
}

.footer__heading{
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: rgb(255, 255, 255);
}

.footer__col{
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__link{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer__link:hover{
  color: rgba(255,255,255,0.90);
  transform: translateX(2px);
}

.footer__link:focus-visible{
  outline: 2px solid rgba(24,201,255,0.65);
  outline-offset: 4px;
  border-radius: 8px;
}

/* GIANT WORD + BUBBLE */
.footer__hero{
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
}

.footer__giant{
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-align: center;

  /* huge but still responsive */
  font-size: clamp(24px, 10vw, 62px);
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.footer__bubble{
  position: absolute;
  inset: auto;
  display: grid;
  place-items: center;

  width: clamp(150px, 18vw, 230px);
  height: clamp(150px, 18vw, 230px);
  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(90deg, rgba(24,201,255,0.95), rgba(11,60,255,0.95));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 70px rgba(24,201,255,0.22);

  border: 1px solid rgba(255,255,255,0.22);
  transform: translateY(-50px);
  transition: transform 180ms ease, filter 180ms ease;
}

.footer__bubble span{
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  font-size: clamp(14px, 1.55vw, 20px);
}

.footer__bubble:hover{
  transform: translateY(-10px) scale(1.01);
  filter: brightness(1.03);
}

.footer__bubble:active{
  transform: translateY(-6px) scale(0.99);
}

/* Bottom */
.footer__bottom{
  margin-top: clamp(26px, 3vw, 40px);
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

/* ===================== */
/* ===== Responsive ===== */
/* ===================== */
@media (max-width: 800px){
  .footer__top{
    grid-template-columns: 2fr;
  }

  .footer__brand{
    max-width: 520px;
  }

  .footer__cols{
    justify-content: start;
  }

  .footer__giant{
    white-space: normal; /* allow wrap on smaller screens */
    line-height: 0.98;
  }

  .footer__bubble{
    position: static;
    margin-top: 18px;
    transform: none;
  }
}

@media (max-width: 520px){
  .footer__cols{
    gap: 26px;
  }

  .footer__hero{
    padding: 26px 0 10px;
  }
}

/* FOOTER ICONS */

.footer__link .phone,.email, .location{
  width: 20px;
  height: 20px;
  /* padding-right: 5px; */
  filter: brightness(0) invert(1);
}

.footer__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer__link .phone, .email, .location{
  display: block;
  height: 1em;
  width: auto;
  flex: 0 0 auto;

  filter: brightness(0) invert(1);
}





/* POP IN ON SCROLL (safe: nothing hides unless JS adds body.reveal) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Base state: hidden until it enters view */
.fade-on-load{
  opacity: 0;
}

/* Animate only when JS adds .in-view */
.fade-on-load.in-view{
  animation: fadeIn .5s ease-in-out forwards;
}

/* Optional: fade + slide up looks nicer */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* If you want the slide effect instead, swap fadeIn for fadeUp below */
.fade-on-load.in-view{
  animation: fadeUp .6s ease-in-out forwards;
}

@media (prefers-reduced-motion: reduce){
  .fade-on-load{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

