/*
Theme Name: The Ripple 3ffect
Theme URI: https://theripple3ffect.com/
Author: The Ripple 3ffect
Description: Custom two-page WordPress theme for The Ripple 3ffect.
Version: 2.2.0
Text Domain: ripple3ffect
*/

:root{
  --cream:#F2F0E6;
  --cream-2:#EAE7D8;
  --olive:#6B7A2E;
  --olive-deep:#556223;
  --terra:#B5187A;
  --ink:#26261F;
  --ink-soft:#575344;
  --magenta:#B5187A;
  --taupe:#CBB5AF;
  --line:#D9D5C2;
  --maxw:1450px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:"Archivo",system-ui,sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

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

.display{
  font-family:"Archivo Expanded","Archivo",sans-serif;
  font-weight:900;
  letter-spacing:-.01em;
  line-height:.98;
}

.eyebrow{
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.72rem;
  color:var(--terra);
}

/* ---------- NAV ---------- */

header.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(242,240,230,.86);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:66px;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  cursor:pointer;
  background:none;
  border:0;
  padding:0;
  font:inherit;
  color:inherit;
}

.brand .glyph{
  width:26px;
  height:26px;
  flex:none;
}

.brand .name{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:800;
  font-size:.95rem;
  letter-spacing:-.01em;
}

.brand .name b{
  color:var(--terra);
}

nav.links{
  display:flex;
  gap:6px;
}

.navbtn{
  background:none;
  border:0;
  font:inherit;
  font-weight:600;
  color:var(--ink-soft);
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer;
  transition:.18s;
}

.navbtn:hover{
  color:var(--ink);
}

.navbtn.active{
  background:var(--olive);
  color:#fff;
}

/* ---------- VIEWS ---------- */

.view{
  display:block;
  animation:fade .5s ease both;
}

.view.show{
  display:block;
}

@keyframes fade{
  from{
    opacity:0;
    transform:translateY(8px);
  }

  to{
    opacity:1;
    transform:none;
  }
}

/* ---------- HERO ---------- */

.hero{
  position:relative;
  overflow:hidden;
  padding:70px 0 84px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--cream-2);
  border:1px solid var(--line);
  color:var(--ink-soft);
  font-weight:600;
  font-size:.8rem;
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:26px;
}

.status .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--terra);
  animation:blink 1.8s ease-in-out infinite;
}

@keyframes blink{
  0%,
  100%{
    opacity:1;
  }

  50%{
    opacity:.3;
  }
}

.hero h1{
  margin:0;
  font-size:clamp(3rem,8.5vw,5.6rem);
}

.hero h1 .three{
  color:var(--terra);
}

.hero h1 .unit{
  white-space:nowrap;
}

.tagline{
  margin:22px 0 0;
  font-weight:700;
  font-size:clamp(1rem,2.4vw,1.28rem);
  letter-spacing:.01em;
}

.tagline span{
  color:var(--olive);
}

.lede{
  margin:20px 0 0;
  max-width:none;
  width:100%;
  color:var(--ink-soft);
  font-size:1.06rem;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-weight:700;
  text-decoration:none;
  padding:13px 22px;
  border-radius:999px;
  font-size:.95rem;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:.18s;
  font-family:inherit;
}

.btn-primary{
  background:var(--terra);
  color:#fff;
}

.btn-primary:hover{
  background:#97136a;
}

.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink);
}

.btn-ghost:hover{
  background:var(--ink);
  color:var(--cream);
}

/* ---------- RIPPLE SIGNATURE ---------- */

.ripple-stage{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:340px;
}

.logo-mark{
  position:relative;
  z-index:2;
  width:100%;
  max-width:360px;
  height:auto;
  display:block;
}

.echo{
  position:absolute;
  top:50%;
  left:50%;
  width:230px;
  height:230px;
  margin:-115px 0 0 -115px;
  border:2px solid var(--taupe);
  border-radius:50%;
  opacity:0;
  z-index:1;
  animation:ripple 5s ease-out infinite;
}

.echo.e2{
  animation-delay:1.7s;
}

.echo.e3{
  animation-delay:3.4s;
}

@keyframes ripple{
  0%{
    transform:scale(.55);
    opacity:0;
  }

  15%{
    opacity:.5;
  }

  100%{
    transform:scale(1.55);
    opacity:0;
  }
}

/* ---------- STRIP ---------- */

.strip{
  background:var(--olive);
  color:#fff;
}

.strip .wrap{
  display:flex;
  flex-wrap:wrap;
  gap:14px 40px;
  justify-content:center;
  padding:22px 28px;
  text-align:center;
  min-height:24px;
}

.strip b{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:800;
}

.strip .item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.95rem;
}

.strip .item::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--terra);
}

/* ---------- PILLAR CARDS (HOME) ---------- */

section.block{
  padding:74px 0;
}

.sec-head{
    width:100%;
    max-width:1600px;
    margin:0 auto 38px;
}

.sec-head h2{
    font-family:"Archivo Expanded",sans-serif;
    font-weight:800;

    font-size:clamp(1.45rem,2vw,2.35rem);

    line-height:1.08;
    letter-spacing:-0.03em;

    margin:.35em 0 0;

    white-space:nowrap;

    width:100%;
    max-width:none;
}

.sec-head p{
  color:var(--ink-soft);
  margin:14px 0 0;
  max-width:none;
  width:100%;
  white-space:nowrap;
}

.cards3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:26px 24px;
  transition:.2s;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 34px -20px rgba(38,38,31,.4);
}

.card .num{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:900;
  color:var(--cream-2);
  font-size:2.4rem;
  line-height:1;
}

.card h3{
  margin:6px 0 8px;
  font-size:1.12rem;
  font-family:"Archivo Expanded",sans-serif;
  font-weight:800;
}

.card p{
  margin:0;
  color:var(--ink-soft);
  font-size:.95rem;
}

/* ---------- ABOUT ---------- */

.about-hero{
  padding:60px 0 20px;
}

.about-hero h1{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:900;
  font-size:clamp(2.2rem,6vw,3.6rem);
  margin:.3em 0 0;
  line-height:1;
}

.about-hero p{
  max-width:52ch;
  color:var(--ink-soft);
  margin:18px 0 0;
  font-size:1.08rem;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.panel{
  border-radius:18px;
  padding:34px 32px;
}

.panel.olive{
  background:var(--olive);
  color:#fff;
}

.panel.terra{
  background:var(--terra);
  color:#fff;
}

.panel.plain{
  background:#fff;
  border:1px solid var(--line);
}

.panel h3{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:800;
  margin:0 0 12px;
  font-size:1.25rem;
}

.panel ul{
  margin:0;
  padding-left:1.1em;
}

.panel li{
  margin:.4em 0;
}

.stat{
  font-family:"Archivo Expanded",sans-serif;
  font-weight:900;
  font-size:2.9rem;
  line-height:1;
}

.stat + .cap{
  opacity:.9;
  font-size:.9rem;
  margin-top:4px;
}

/* ---------- HOW WE GET THERE ---------- */

.pillars{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.pillars .pill{
    background:#fff;
    border:1px solid var(--line);
    border-top:3px solid var(--olive);
    border-radius:16px;

    height:165px;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    padding:18px !important;
}

.pillars .pill:nth-child(even){
    border-top-color:var(--terra);
}

.pillars .pill h4{
    margin:0 0 10px 0 !important;
    width:100%;
    text-align:center !important;
    font-family:"Archivo Expanded",sans-serif;
    font-size:1.05rem;
    line-height:1.3;
}

.pillars .pill p{
    margin:0 !important;
    width:100%;
    text-align:center !important;
    color:var(--ink-soft);
    line-height:1.5;
}

/* Tablet */

@media (max-width:860px){

    .pillars{
        grid-template-columns:repeat(2,1fr);
    }

    .pillars .pill{
        height:160px;
    }
}

/* Mobile */

@media (max-width:480px){

    .pillars{
        grid-template-columns:1fr;
    }

    .pillars .pill{
        height:auto;
        min-height:140px;
    }
}

/* ---------- TAGS ---------- */

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag{
  background:var(--cream-2);
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 18px;
  font-weight:600;
  font-size:.92rem;
}

/* ---------- STEPS ---------- */

.steps{
  counter-reset:step;
  display:grid;
  gap:2px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
}

.step{
  display:flex;
  gap:16px;
  align-items:baseline;
  background:#fff;
  padding:16px 22px;
}

.step::before{
  counter-increment:step;
  content:counter(step);
  font-family:"Archivo Expanded",sans-serif;
  font-weight:900;
  color:var(--terra);
  font-size:1.05rem;
  min-width:22px;
}

.step:nth-child(odd){
  background:#fdfcf6;
}

/* ---------- CTA BAND ---------- */

.band{
    background:var(--ink);
    color:var(--cream);

    width:96%;
    max-width:1600px;

    margin:40px auto;

    padding:70px 70px;

    border-radius:28px;

    text-align:center;

    overflow:hidden;
}

.band h2{
    font-family:"Archivo","Archivo Expanded",sans-serif;
    font-weight:900;

    font-size:clamp(2rem,2.8vw,3.4rem);

    line-height:1.05;
    letter-spacing:-0.03em;

    margin:0 auto 18px;

    white-space:nowrap;

    width:100%;
    max-width:none;

    color:var(--cream);
}
.band p{
  color:#cfcbba;
  max-width:62ch;
  margin:0 auto 26px;
  font-size:1rem;
  line-height:1.7;
}

.band .btn-primary:hover{
  background:#cf2f97;
}

/* ---------- FOOTER ---------- */

footer{
  padding:56px 0;
  border-top:1px solid var(--line);
  margin-top:70px;
}

.foot-grid{
  display:grid;
  grid-template-columns:minmax(260px,.85fr) minmax(0,2.15fr);
  gap:70px;
  align-items:start;
}

.footer-brand{
  min-width:0;
}

footer .name{
  font-family:"Archivo Expanded","Archivo",sans-serif;
  font-weight:800;
}

footer .name b{
  color:var(--terra);
}

footer a{
  color:var(--olive-deep);
  font-weight:600;
}

.fine{
  color:var(--ink-soft);
  font-size:.85rem;
  margin-top:10px;
  max-width:46ch;
}

.partners{
  display:grid;
  grid-template-columns:1.55fr 1.15fr 1fr;
  gap:40px;
  align-items:start;
  min-width:0;
  font-size:.85rem;
  color:var(--ink-soft);
}

.footer-group{
  min-width:0;
}

.footer-group .ph{
  margin-bottom:14px;
}

.footer-group .ph b{
  display:block;
  color:var(--ink);
  font-size:.92rem;
  font-weight:800;
}

.people{
  list-style:none;
  margin:0;
  padding:0;
}

.people li{
  margin:0 0 14px;
  line-height:1.35;
}

.people li a,
.people li strong{
  color:var(--magenta);
  font-weight:700;
  text-decoration:none;
}

.people li a:hover{
  text-decoration:underline;
}

.people li span{
  display:block;
  color:var(--ink-soft);
  font-weight:500;
  font-size:.82rem;
  margin-top:2px;
}

.partners .email{
  color:var(--olive-deep);
  font-weight:600;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:860px){

  .sec-head p{
    white-space:normal;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .ripple-stage{
    order:-1;
    min-height:240px;
  }

  .cards3{
    grid-template-columns:1fr;
  }

  .split{
    grid-template-columns:1fr;
  }

  .pillars{
    grid-template-columns:repeat(2,1fr);
  }

  .pill{
    min-height:150px;
  }

  .band{
    padding:40px 24px;
  }
}

@media(max-width:480px){

  .pillars{
    grid-template-columns:1fr;
  }

  .pill{
    min-height:135px;
    padding:22px 20px;
  }

  .nav-inner .navbtn{
    padding:8px 11px;
  }
}

@media(prefers-reduced-motion:reduce){

  .pulse,
  .status .dot{
    animation:none;
  }

  .view{
    animation:none;
  }

  .pulse{
    opacity:.4;
  }
}

/* ---------- WORDPRESS ROUTING / NAVIGATION FIXES ---------- */

.navbtn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.brand{
  text-decoration:none;
}

.current-menu-item,
.navbtn.active{
  color:var(--terra);
}

.admin-bar .nav{
  top:32px;
}

@media(max-width:782px){

  .admin-bar .nav{
    top:46px;
  }
}

@media(max-width:860px){
    .pillars{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }
}

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

/* =========================================================
   FINAL FORCE FIX — ABOUT/VISION HEADING ON ONE DESKTOP LINE
   Keep this block at the VERY END of style.css
   ========================================================= */

.about-hero{
  overflow:visible !important;
}

.about-hero > .wrap,
.about-hero .wrap{
  width:min(1440px, calc(100% - 56px)) !important;
  max-width:1440px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.about-hero h1,
.about-hero .display{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    white-space:nowrap !important;
}

.sec-head h2{
    white-space:nowrap !important;
    font-size:clamp(1.45rem,2vw,2.35rem) !important;
    letter-spacing:-0.03em !important;
}

/* Medium desktop/laptop screens */
@media (min-width:861px) and (max-width:1199px){
  .about-hero h1,
  .about-hero .display,
  .about-hero .sec-head h1,
  .about-hero .sec-head h2{
    font-size:clamp(1.75rem, 3.15vw, 2.55rem) !important;
  }
}

/* Tablets and phones may wrap safely */
@media (max-width:860px){
  .about-hero > .wrap,
  .about-hero .wrap{
    width:100% !important;
    max-width:var(--maxw) !important;
    padding-left:28px !important;
    padding-right:28px !important;
  }

  .about-hero h1,
  .about-hero .display,
  .about-hero .sec-head h1,
  .about-hero .sec-head h2{
    white-space:normal !important;
    font-size:clamp(2rem, 8vw, 3rem) !important;
  }
}

/* =========================================================
   FINAL RESPONSIVE OVERRIDES
   ========================================================= */

@media (min-width:861px){
  .about-hero h1{
    white-space:nowrap !important;
  }

  .band h2{
    white-space:nowrap !important;
    font-size:clamp(2rem,2.8vw,3.4rem) !important;
}
}

@media (max-width:860px){
  .about-hero h1,
  .band h2{
    white-space:normal !important;
  }

  .band{
    padding:42px 24px !important;
  }

  .band h2{
    font-size:clamp(1.8rem,7vw,2.7rem) !important;
  }

  .sec-head p{
    white-space:normal !important;
  }
}

@media (max-width:480px){
  .band{
    padding:36px 20px !important;
  }

  .band h2{
    font-size:clamp(1.65rem,8vw,2.2rem) !important;
  }
}

/* =========================================================
   FINAL MOBILE / TABLET LAYOUT FIXES
   Desktop stays 5 columns; tablet 2; mobile 1
   Keep this block at the VERY END of style.css
   ========================================================= */

/* Desktop: preserve current five-card row */
@media (min-width:861px){
  .pillars{
    display:grid !important;
    grid-template-columns:repeat(5, minmax(0, 1fr)) !important;
    gap:16px !important;
    align-items:stretch !important;
  }

  .pillars .pill{
    height:165px !important;
    min-height:165px !important;
    padding:18px !important;
  }
}

/* Tablet */
@media (min-width:601px) and (max-width:860px){
  .pillars{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:14px !important;
    align-items:stretch !important;
  }

  .pillars .pill{
    width:100% !important;
    height:auto !important;
    min-height:155px !important;
    padding:20px 18px !important;
  }

  .pillars .pill h4{
    margin:0 0 8px !important;
    font-size:1rem !important;
    line-height:1.3 !important;
  }

  .pillars .pill p{
    margin:0 !important;
    font-size:.92rem !important;
    line-height:1.5 !important;
  }
}

/* Mobile */
@media (max-width:600px){
  .wrap{
    width:100% !important;
    max-width:100% !important;
    padding-left:20px !important;
    padding-right:20px !important;
  }

  section.block{
    padding-top:48px;
    padding-bottom:48px;
  }

  .pillars{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    width:100% !important;
  }

  .pillars .pill{
    width:100% !important;
    height:auto !important;
    min-height:132px !important;
    padding:22px 20px !important;
    border-radius:14px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
  }

  .pillars .pill h4{
    width:100% !important;
    margin:0 0 8px !important;
    text-align:center !important;
    font-size:1rem !important;
    line-height:1.3 !important;
  }

  .pillars .pill p{
    width:100% !important;
    margin:0 !important;
    text-align:center !important;
    font-size:.92rem !important;
    line-height:1.45 !important;
  }

  .sec-head{
    width:100% !important;
    max-width:100% !important;
    margin-bottom:30px !important;
  }

  .sec-head h2{
    white-space:normal !important;
    font-size:clamp(1.75rem,8vw,2.35rem) !important;
    line-height:1.08 !important;
  }

  .sec-head p{
    white-space:normal !important;
    width:100% !important;
    font-size:1rem !important;
    line-height:1.65 !important;
  }

  .split{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .panel{
    padding:26px 22px !important;
  }

  .band{
    width:100% !important;
    max-width:100% !important;
    margin:20px auto !important;
    padding:36px 20px !important;
    border-radius:20px !important;
  }

  .band h2{
    white-space:normal !important;
    font-size:clamp(1.65rem,8vw,2.2rem) !important;
    line-height:1.08 !important;
  }

  .band p{
    max-width:100% !important;
    font-size:.95rem !important;
  }

  .cta-row{
    flex-direction:column !important;
    align-items:stretch !important;
    gap:10px !important;
  }

  .cta-row .btn{
    width:100% !important;
    justify-content:center !important;
  }

  .tags{
    gap:8px !important;
  }

  .tag{
    padding:8px 14px !important;
    font-size:.86rem !important;
  }
}


/* =========================================================
   FINAL FOOTER RESPONSIVE OVERRIDES
   ========================================================= */

@media(max-width:1100px){
  .foot-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .partners{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
  }
}

@media(max-width:700px){
  footer{
    padding:40px 0;
  }

  .foot-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .partners{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-group .ph{
    margin-bottom:10px;
  }

  .people li{
    margin-bottom:13px;
  }
}

/* =========================================================
   FINAL FOOTER NAME COLOR FIX
   All names/organisations use the Ripple magenta.
   Roles/descriptions remain dark.
   Keep this block at the VERY END of style.css
   ========================================================= */

.people li .footer-name{
  color:var(--magenta) !important;
  font-weight:700 !important;
  text-decoration:none !important;
  font-size:inherit !important;
  margin-top:0 !important;
}

.people li a.footer-name{
  display:inline !important;
}

.people li span.footer-name{
  display:block !important;
}

.people li .footer-name-inline{
  display:inline !important;
  color:var(--magenta) !important;
  font-weight:700 !important;
  font-size:inherit !important;
  margin:0 .18em !important;
}

.people li .footer-role{
  display:block !important;
  color:var(--ink-soft) !important;
  font-weight:500 !important;
  font-size:.82rem !important;
  margin-top:2px !important;
}

/* Keep linked footer names pink on hover as well */
.people li a.footer-name:hover{
  color:var(--magenta) !important;
  text-decoration:underline !important;
}

.contact-section {
    padding: 100px 40px;
    background: #f4f1e8;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
}

.contact-heading h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 15px 0;
    color: #25251f;
}

.contact-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    background: #25251f;
    padding: 45px;
    border-radius: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f5f2e9;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid #555;
    border-radius: 10px;
    background: #303029;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #a6b75a;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.contact-submit {
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    background: #73852b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 700px) {

    .contact-section {
        padding: 70px 20px;
    }

    .contact-heading h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* =========================================================
   JOIN THE COALITION BUTTON
   Pink button + WhatsApp link
   Keep this block at the VERY END of style.css
   ========================================================= */

.cta-row .join-coalition-btn,
.join-coalition-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  background: var(--terra) !important;
  color: #ffffff !important;

  padding: 13px 22px !important;
  min-height: 53px;

  border: 1.5px solid var(--terra) !important;
  border-radius: 999px !important;

  font-family: inherit !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;

  text-decoration: none !important;
  cursor: pointer;

  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease !important;
}

/* Hover */
.cta-row .join-coalition-btn:hover,
.join-coalition-btn:hover {
  background: #97136a !important;
  border-color: #97136a !important;
  color: #ffffff !important;
  text-decoration: none !important;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(181, 24, 122, .20);
}

/* Active / clicked */
.cta-row .join-coalition-btn:active,
.join-coalition-btn:active {
  transform: translateY(0);
}

/* Keyboard accessibility */
.cta-row .join-coalition-btn:focus-visible,
.join-coalition-btn:focus-visible {
  outline: 3px solid rgba(181, 24, 122, .25);
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 600px) {

  .cta-row .join-coalition-btn,
  .join-coalition-btn {
    width: 100% !important;
    justify-content: center !important;
  }

}