/* ==========================================================================
   DIP Strategy Group LLC — site stylesheet
   ========================================================================== */

:root{
  --navy:#062B50;
  --navy-dark:#03223F;
  --navy-deep:#021627;
  --gold:#C79A32;
  --gold-light:#E4C878;
  --off-white:#F7F7F5;
  --bg-alt:#EDF1F5;
  --text:#14243A;
  --text-muted:#5B6B82;
  --white:#FFFFFF;
  --border:#E3E7ED;
  --shadow-sm: 0 4px 18px rgba(6,43,80,0.08);
  --shadow-md: 0 14px 40px rgba(6,43,80,0.12);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  overflow-x:hidden;
  width:100%;
  font-family:var(--sans);
  color:var(--text);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
h1,h2,h3,h4{ font-family:var(--serif); color:var(--navy); margin:0; font-weight:700; }
p{ margin:0; }
svg{ display:block; }

.container{ width:100%; max-width:1240px; margin:0 auto; padding:0 32px; }
section{ position:relative; }

/* -------------------- utility -------------------- */
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:700;
  margin-bottom:14px;
}
.eyebrow.center{ text-align:center; }
.eyebrow-lined{
  display:flex; align-items:center; justify-content:center; gap:16px;
  color:var(--gold); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; font-weight:700;
  margin-bottom:44px;
}
.eyebrow-lined::before,.eyebrow-lined::after{
  content:""; width:44px; height:1px; background:var(--gold); opacity:.6;
}
.section-head{ text-align:center; max-width:760px; margin:0 auto 52px; }
.section-head h2{ font-size:2.15rem; line-height:1.3; }
.section-head p{ color:var(--text-muted); margin-top:18px; font-size:1.02rem; }
.divider-gold{ width:60px; height:3px; background:var(--gold); margin:16px auto 0; border:none; }
.divider-gold.left{ margin-left:0; }

/* Grid items default to a content-based automatic min-width, which can force
   them wider than their track and overflow the viewport at in-between widths
   even when the track itself uses minmax(0,1fr). Reset it everywhere. */
.card-grid > *, .stat-row > *, .values-row > *, .numbered-row > *,
.region-grid > *, .stat-band-row > *, .inline-feature-row > *,
.footer-top > *, .split > *, .split-reverse > *, .process-wrap > *,
.process-row > *, .contact-layout > *{ min-width:0; }

.pad-lg{ padding:100px 0; }
.pad-md{ padding:76px 0; }
.bg-white{ background:var(--white); }
.bg-off{ background:var(--off-white); }
.bg-alt{ background:var(--bg-alt); }
.bg-navy{ background:var(--navy); color:var(--white); }
.bg-navy-dark{ background:var(--navy-dark); color:var(--white); }

/* -------------------- buttons -------------------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 30px;
  font-size:.8rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  border-radius:2px; border:1px solid transparent;
  cursor:pointer; transition:background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn svg{ width:14px; height:14px; flex-shrink:0; transition:transform .22s ease; }
.btn:hover svg{ transform:translateX(3px); }
.btn:hover{ transform:translateY(-1px); }
.btn-navy{ background:var(--navy); color:#fff; }
.btn-navy:hover{ background:var(--navy-dark); }
.btn-gold{ background:var(--gold); color:var(--navy-deep); }
.btn-gold:hover{ background:#B4872A; }
.btn-outline{ background:transparent; color:#fff; border-color:rgba(255,255,255,.55); }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:#fff; }
.btn-outline-navy{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:#fff; }
.link-gold{ display:inline-flex; align-items:center; gap:8px; color:var(--gold); font-weight:700; font-size:.85rem; letter-spacing:.03em; }
.link-gold svg{ width:14px; height:14px; transition:transform .2s ease; }
.link-gold:hover svg{ transform:translateX(4px); }

/* -------------------- icon badges -------------------- */
.icon-badge{
  width:64px; height:64px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy); color:var(--gold); flex-shrink:0;
}
.icon-badge svg{ width:28px; height:28px; }
.icon-badge.sm{ width:52px; height:52px; }
.icon-badge.sm svg{ width:22px; height:22px; }
.icon-badge.ring{ background:var(--navy); box-shadow:0 0 0 3px var(--off-white), 0 0 0 4px var(--gold); }
.icon-badge.light{ background:var(--bg-alt); color:var(--navy); }
.icon-badge.outline-gold{ background:transparent; color:var(--gold); border:1.5px solid var(--gold); }
.icon-badge.teal{ background:#1D6E73; color:#fff; }
.icon-badge.green{ background:#4C6B33; color:#fff; }
.icon-badge.brown{ background:#8A5A2B; color:#fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:200;
  background:#fff; border-bottom:1px solid var(--border);
  transition:box-shadow .2s ease;
}
.site-header.is-scrolled{ box-shadow:var(--shadow-sm); }
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  max-width:1280px; margin:0 auto; padding:16px 32px;
  gap:24px;
}
.logo{ display:flex; flex-direction:column; }
.logo-mark{ display:flex; align-items:baseline; gap:9px; }
.logo-dip{ font-family:var(--serif); font-weight:700; font-size:1.9rem; color:var(--navy); letter-spacing:.01em; }
.logo-name{ font-family:var(--sans); font-weight:600; font-size:.92rem; letter-spacing:.1em; color:var(--navy); text-transform:uppercase; }
.logo-tag{ font-size:.6rem; letter-spacing:.06em; color:var(--text-muted); margin-top:3px; text-transform:uppercase; white-space:nowrap; }

@media (max-width: 430px){
  .logo-mark{ flex-direction:column; align-items:flex-start; gap:0; }
  .logo-dip{ font-size:1.5rem; line-height:1.1; }
  .logo-name{ font-size:.72rem; }
  .logo-tag{ display:none; }
}

.main-nav ul{ display:flex; align-items:center; gap:32px; }
.main-nav a{
  display:inline-block;
  font-size:.92rem; font-weight:500; color:var(--navy);
  padding:9px 2px 8px; border-bottom:2px solid transparent;
  transition:color .18s ease, border-color .18s ease;
}
.main-nav a:hover{ color:var(--gold); }
.main-nav a.active{ color:var(--gold); border-color:var(--gold); }

.header-right{ display:flex; align-items:center; gap:20px; }
.nav-toggle{
  display:none; align-items:center; justify-content:center;
  background:none; border:none; color:var(--navy); cursor:pointer;
  width:44px; height:44px; padding:0; flex-shrink:0;
}
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width: 1150px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; top:0; height:100vh; width:min(340px,86vw);
    background:var(--navy); padding:100px 36px 40px; transform:translateX(100%);
    transition:transform .3s ease; overflow-y:auto; z-index:160;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:22px; }
  .main-nav a{ color:#fff; font-size:1.05rem; }
  .main-nav a.active{ color:var(--gold); }
  .header-right .btn-navy{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav-scrim{
    display:none; position:fixed; inset:0; background:rgba(3,34,63,.5); z-index:150;
  }
  .nav-scrim.open{ display:block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative; display:flex; align-items:center;
  background-size:cover; background-position:center; color:#fff; overflow:hidden;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(3,25,45,.94) 0%, rgba(3,30,53,.72) 34%, rgba(3,30,53,.28) 64%, rgba(3,30,53,.05) 100%);
}
.hero-inner{ position:relative; z-index:2; max-width:1280px; margin:0 auto; padding:0 32px; width:100%; }
.hero-content{ max-width:600px; }

.hero-home{ min-height:560px; padding:70px 0; }
.hero-home h1{ font-size:3.1rem; color:#fff; line-height:1.15; margin-bottom:20px; }
.hero-home p{ font-size:1.05rem; color:rgba(255,255,255,.92); max-width:520px; margin-bottom:30px; }

.hero-page{ min-height:400px; padding:60px 0; }
.hero-page h1{ font-size:3.4rem; color:#fff; margin-bottom:18px; }
.hero-underline{ width:70px; height:3px; background:var(--gold); margin:0 0 22px; }
.hero-page .hero-sub{ font-size:1.12rem; color:#fff; font-weight:400; margin-bottom:8px; max-width:520px; }
.hero-page .hero-lead{ font-size:1rem; color:rgba(255,255,255,.85); max-width:520px; margin-top:8px; }

/* ==========================================================================
   Mission / stats row (home)
   ========================================================================== */
.mission-watermark{
  position:absolute; right:6%; top:8%; width:220px; opacity:.5; pointer-events:none;
}
.mission-copy{ max-width:820px; margin:0 auto; text-align:center; }
.mission-copy p{ color:var(--text-muted); margin-top:22px; font-size:1rem; line-height:1.75; }

.stat-row{
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top:64px; position:relative;
}
.stat-item{ text-align:center; padding:0 26px; position:relative; }
.stat-item + .stat-item::before{
  content:""; position:absolute; left:0; top:6px; bottom:6px; width:1px; background:var(--border);
}
.stat-item .icon-badge{ margin:0 auto 20px; }
.stat-item h3{ font-size:1.1rem; margin-bottom:10px; }
.stat-item p{ color:var(--text-muted); font-size:.92rem; }

@media (max-width: 900px){
  .stat-row{ grid-template-columns:repeat(2,1fr); gap:44px 0; }
  .stat-item + .stat-item::before{ display:none; }
}
@media (max-width: 560px){
  .stat-row{ grid-template-columns:minmax(0,1fr); }
}

/* ==========================================================================
   Card grids (industries)
   ========================================================================== */
.card-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:26px; }
.card-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.card-grid.cols-4{ grid-template-columns:repeat(4,1fr); }

.industry-card{
  background:#fff; border:1px solid var(--border); border-radius:4px; overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
}
.industry-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.industry-card .photo{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.industry-card .photo img{ width:100%; height:100%; object-fit:cover; }
.industry-card .badge-wrap{
  position:absolute; left:26px; bottom:-28px;
}
.industry-card .icon-badge{ box-shadow:0 0 0 5px #fff; }
.industry-card .card-body{ padding:42px 24px 28px; text-align:center; }
.industry-card h3{ font-size:1.2rem; margin-bottom:10px; }
.industry-card p{ color:var(--text-muted); font-size:.9rem; }

@media (max-width: 1080px){
  .card-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 700px){
  .card-grid{ grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width: 480px){
  .card-grid{ grid-template-columns:minmax(0,1fr) !important; }
}

/* why-matters inline row (industries) */
.inline-feature-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; max-width:1040px; margin:0 auto; }
.inline-feature{ display:flex; gap:18px; align-items:flex-start; }
.inline-feature h4{ font-size:1.05rem; margin-bottom:8px; }
.inline-feature p{ color:var(--text-muted); font-size:.9rem; }
@media (max-width: 860px){ .inline-feature-row{ grid-template-columns:minmax(0,1fr); gap:30px; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  position:relative; color:#fff; overflow:hidden;
  background-size:cover; background-position:center right;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(3,25,45,.96) 0%, rgba(3,30,53,.9) 42%, rgba(3,30,53,.5) 72%, rgba(3,30,53,.25) 100%);
}
.cta-inner{
  position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:30px; padding:70px 0;
}
.cta-text{ min-width:0; max-width:100%; }
.cta-text h2{ color:#fff; font-size:2.1rem; margin-bottom:14px; }
.cta-text p{ color:rgba(255,255,255,.88); max-width:480px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--navy-dark); color:rgba(255,255,255,.82); }
.footer-top{
  display:grid; grid-template-columns:minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap:40px;
  padding:70px 0 50px; border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-logo .logo-dip{ color:#fff; }
.footer-logo .logo-name{ color:#fff; }
.footer-col h4{ color:#fff; font-family:var(--sans); font-size:1rem; font-weight:700; margin-bottom:18px; }
.footer-col p{ font-size:.92rem; line-height:1.7; }
.footer-tagline{ margin-top:10px; font-size:.92rem; color:rgba(255,255,255,.75); }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s;
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); }
.footer-social svg{ width:16px; height:16px; }
.footer-row{ display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; }
.footer-row svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer-row a:hover{ color:var(--gold); }
.footer-divider{ width:36px; height:2px; background:var(--gold); margin-top:14px; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  padding:22px 0; font-size:.82rem; color:rgba(255,255,255,.6);
}
.footer-bottom a{ margin-left:18px; }
.footer-bottom a:hover{ color:var(--gold); }

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

/* ==========================================================================
   Two-column content blocks
   ========================================================================== */
.split{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:64px; align-items:center; }
.split .copy h2{ font-size:2rem; margin-bottom:20px; }
.split .copy p + p{ margin-top:16px; }
.split .copy p{ color:var(--text-muted); }
.split .media img,.split .media .img-frame{ border-radius:4px; overflow:hidden; box-shadow:var(--shadow-sm); }
@media (max-width: 900px){
  .split{ grid-template-columns:minmax(0,1fr); gap:36px; }
}

.split-reverse{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
.split-approach{ grid-template-columns:minmax(0,1fr) minmax(0,1.4fr); align-items:start; }
@media (max-width: 900px){ .split-approach{ grid-template-columns:minmax(0,1fr); } }
.split-reverse .media{ order:2; }
@media (max-width: 900px){
  .split-reverse .media{ order:0; }
}

/* approach values row */
.values-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:34px; margin-top:8px; }
.value-item{ text-align:left; }
.value-item svg{ width:40px; height:40px; color:var(--navy); margin-bottom:14px; }
.value-item h4{ font-size:1.08rem; margin-bottom:8px; }
.value-item .divider-gold{ margin:0 0 10px; }
.value-item p{ color:var(--text-muted); font-size:.9rem; }
@media (max-width: 860px){ .values-row{ grid-template-columns:repeat(2,1fr); gap:30px; } }
@media (max-width: 520px){ .values-row{ grid-template-columns:minmax(0,1fr); } }

/* why-clients / feature cards */
.feature-card{ background:var(--bg-alt); border-radius:4px; padding:34px 30px; display:flex; gap:20px; align-items:flex-start; }
.feature-card h4{ font-size:1.1rem; margin-bottom:10px; }
.feature-card p{ color:var(--text-muted); font-size:.92rem; }

/* ==========================================================================
   Services page
   ========================================================================== */
.numbered-row{ display:grid; grid-template-columns:repeat(5,1fr); gap:26px; margin-top:60px; }
.numbered-item{ text-align:left; }
.numbered-item .icon-badge{ margin-bottom:18px; }
.numbered-item h4{ font-size:1.02rem; margin-bottom:10px; line-height:1.35; }
.numbered-item p{ color:var(--text-muted); font-size:.87rem; }
@media (max-width: 1000px){ .numbered-row{ grid-template-columns:repeat(2,1fr); gap:36px 24px; } }
@media (max-width: 560px){ .numbered-row{ grid-template-columns:minmax(0,1fr); } }

.process-row{ display:flex; align-items:stretch; gap:0; margin-top:8px; }
.process-step{
  flex:1; background:#fff; border:1px solid var(--border); border-radius:4px; padding:32px 22px; text-align:center;
}
.process-step .icon-badge{ margin:0 auto 18px; }
.process-step h4{ font-size:1.02rem; margin-bottom:10px; }
.process-step p{ color:var(--text-muted); font-size:.87rem; }
.process-arrow{ display:flex; align-items:center; justify-content:center; width:44px; color:var(--gold); flex-shrink:0; }
.process-arrow svg{ width:22px; height:22px; }
.process-wrap{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.5fr); gap:56px; align-items:start; }
@media (max-width: 1220px){
  .process-wrap{ grid-template-columns:minmax(0,1fr); }
  .process-row{ flex-direction:column; gap:18px; }
  .process-arrow{ width:auto; height:26px; transform:rotate(90deg); }
}

.photo-strip{ display:grid; grid-template-columns:minmax(0,1.3fr) minmax(0,1fr); gap:4px; }
.photo-strip img{ width:100%; height:100%; object-fit:cover; max-height:340px; }
@media (max-width: 760px){ .photo-strip{ grid-template-columns:minmax(0,1fr); } }

/* ==========================================================================
   International Deals page
   ========================================================================== */
.intro-copy{ max-width:900px; margin:0 auto; text-align:center; }
.intro-copy p{ color:var(--navy); font-size:1.06rem; line-height:1.85; }
.intro-copy p + p{ margin-top:22px; }

@media (max-width: 860px){ .card-grid.cols-4{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.assist-card{
  background:#fff; border:1px solid var(--border); border-radius:4px; padding:36px 26px; text-align:center;
  transition:box-shadow .2s ease, transform .2s ease;
}
.assist-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.assist-card .icon-badge{ margin:0 auto 20px; }
.assist-card h4{ font-size:1.08rem; margin-bottom:10px; }
.assist-card p{ color:var(--text-muted); font-size:.9rem; }

.region-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.region-card{ display:flex; background:#fff; border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.region-card .photo{ width:38%; flex-shrink:0; overflow:hidden; }
.region-card .photo img{ width:100%; height:100%; object-fit:cover; }
.region-card .region-body{ padding:26px 22px; display:flex; flex-direction:column; }
.region-card h4{ font-size:1.1rem; margin-bottom:10px; }
.region-card p{ color:var(--text-muted); font-size:.88rem; flex:1; }
.region-card .divider-gold.left{ margin:16px 0 12px; }
@media (max-width: 900px){ .region-grid{ grid-template-columns:minmax(0,1fr); } }

.stat-band{ padding:64px 0; }
.stat-band-head{ text-align:center; margin-bottom:48px; }
.stat-band-head h2{ color:#fff; font-size:1.9rem; }
.stat-band-row{ display:grid; grid-template-columns:repeat(3,1fr); }
.stat-band-item{ text-align:center; padding:0 30px; position:relative; }
.stat-band-item + .stat-band-item::before{
  content:""; position:absolute; left:0; top:4px; bottom:4px; width:1px; background:rgba(255,255,255,.18);
}
.stat-band-item .icon-badge{ margin:0 auto 18px; }
.stat-band-item h4{ color:#fff; font-size:1.05rem; margin-bottom:10px; }
.stat-band-item p{ color:rgba(255,255,255,.75); font-size:.88rem; }
@media (max-width: 860px){
  .stat-band-row{ grid-template-columns:minmax(0,1fr); gap:36px; }
  .stat-band-item + .stat-band-item::before{ display:none; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout{ display:grid; grid-template-columns:280px minmax(0,1.3fr) minmax(0,1fr); gap:0; align-items:stretch; }
.contact-sidebar-img{ height:100%; min-height:520px; overflow:hidden; }
.contact-sidebar-img img{ width:100%; height:100%; object-fit:cover; }
.contact-form-wrap{ padding:64px 56px; }
.contact-info-wrap{ padding:64px 40px; border-left:1px solid var(--border); }
.contact-layout h3{ font-size:1.5rem; margin-bottom:26px; }

.form-field{
  width:100%; padding:15px 18px; margin-bottom:16px; font-family:var(--sans); font-size:.94rem;
  border:1px solid var(--border); border-radius:3px; background:#fff; color:var(--text);
}
textarea.form-field{ resize:vertical; min-height:120px; }
.form-field:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(199,154,50,.15); }
.form-note{ display:flex; align-items:center; gap:8px; color:var(--text-muted); font-size:.82rem; margin-top:14px; }
.form-note svg{ width:15px; height:15px; color:var(--text-muted); }

.contact-info-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:26px; }
.contact-info-row .icon-badge{ background:var(--bg-alt); color:var(--navy); }
.contact-info-row p{ font-size:.95rem; line-height:1.5; }
.contact-info-wrap .info-copy{ color:var(--text-muted); font-size:.92rem; margin-top:6px; line-height:1.75; }

@media (max-width: 1080px){
  .contact-layout{ grid-template-columns:minmax(0,1fr); }
  .contact-sidebar-img{ min-height:220px; }
  .contact-info-wrap{ border-left:none; border-top:1px solid var(--border); }
}

.reach-card{ background:var(--bg-alt); border-radius:4px; padding:32px 26px; }
.reach-card .icon-badge{ margin-bottom:18px; }
.reach-card h4{ font-size:1.05rem; margin-bottom:10px; }
.reach-card p{ color:var(--text-muted); font-size:.9rem; }

/* form success message */
.form-success{
  display:none; align-items:center; gap:12px; background:#EAF4EC; border:1px solid #BFE0C6;
  color:#245C33; padding:16px 18px; border-radius:4px; margin-bottom:18px; font-size:.9rem;
}
.form-success.show{ display:flex; }
.form-success svg{ width:20px; height:20px; flex-shrink:0; }

/* form error message */
.form-error{
  display:none; align-items:center; gap:12px; background:#FBEAEA; border:1px solid #E3B8B8;
  color:#7A2020; padding:16px 18px; border-radius:4px; margin-bottom:18px; font-size:.9rem;
}
.form-error.show{ display:flex; }
.form-error svg{ width:20px; height:20px; flex-shrink:0; }
.form-error a{ color:#7A2020; text-decoration:underline; }

/* Web3Forms honeypot field — must stay present but hidden from real visitors */
.botcheck-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ==========================================================================
   Misc
   ========================================================================== */
.reveal{ opacity:1; }

@media (max-width: 720px){
  .hero-home h1{ font-size:2.3rem; }
  .hero-page h1{ font-size:2.5rem; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .section-head h2{ font-size:1.7rem; }
  .footer-top{ text-align:left; }
  .contact-form-wrap, .contact-info-wrap{ padding:44px 26px; }
}
