 /* ===== Fonts ===== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600;700&display=swap");

/* ===== Design Tokens ===== */
:root{
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --page-bg:#F5F7F4;
  --card-bg:#FFFFFF;
  --brand:#2D7A54;
  --teal:#38B2A6;
  --accent:#F2C94C;
  --text:#2B2B2B;
  --radius:16px;
  --shadow:0 8px 24px rgba(0,0,0,.06);
  --maxw:1200px;
}

/* ===== Reset & Base ===== */
*,*::before,*::after{ box-sizing:border-box }
html,body{ height:100% }
html{ scroll-behavior:smooth }
body{
  margin:0;
  color:var(--text);
  font-family: var(--font-body);
  line-height:1.6;
  background:var(--page-bg);
  overflow-x:hidden;
}

h1, h2, h3, .brand-name, .nav_list a, .footer-cta h2{
  font-family: var(--font-heading);
}

img,video{ max-width:100%; height:auto; display:block }
a{ color:var(--teal); text-decoration:none }
a:hover{ text-decoration:underline }
.container{ max-width:var(--maxw); margin-inline:auto; padding-inline:1rem }

/* ===== Announcement Bar (NOT fixed) ===== */
.announcement-bar{
  position:relative;
  z-index:10;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-align:center;
  padding:.75rem 1rem;
  font-family: var(--font-heading);
  font-size:1.05rem;
  font-weight:500;
  color:#1a1a1a;
  letter-spacing:.3px;
}
.announcement-bar strong{ color:var(--brand) }

/* ===== Header & Navigation (SCROLLS AWAY) ===== */
.site-header{
  position:relative;           /* IMPORTANT: no sticky/fixed */
  z-index:100;
  background:var(--brand);
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}

/* brand row */
.container.brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:.75rem 1.25rem;
}
.brand-link{ display:flex; align-items:center; gap:14px; text-decoration:none }
.site-logo{ height:72px; width:auto; object-fit:contain }
.brand-text{ display:flex; flex-direction:column; line-height:1.1 }
.brand-name{ font-family: var(--font-heading); font-size:1.85rem; font-weight:700; color:#fff }
.brand-tagline{ font-family: var(--font-body); font-size:1.25rem; color:#cfe9de; margin-top:.25rem }

/* nav container */
.nav{ width:100%; }

/* mobile menu toggle */
.nav_toggle{
  display:none;
  margin-left:auto;
  background:transparent;
  border:1px solid rgba(231,246,242,.75);
  border-radius:999px;
  padding:.35rem .9rem;
  font-size:.9rem;
  color:#e7f6f2;
  cursor:pointer;
}

/* main nav list */
.nav_list{
  display:flex;
  justify-content:center;
  align-items:center;
  list-style:none;
  margin:0;
  padding:.65rem .75rem;
  gap:28px;
  background:var(--brand);
  border-radius:999px;
  max-width:calc(var(--maxw) + 2rem);
  margin-inline:auto;
}

.nav_list a{
  display:inline-flex;
  align-items:center;
  color:#e7f6f2;
  font-weight:700;
  padding:.55rem 1rem;
  border-radius:999px;
  text-decoration:none;
  transition:background .18s ease,color .18s ease;
}
.nav_list a:hover{ background:rgba(255,255,255,.10); color:#fff }
.nav_link.is-active{ background:#f5f7f4; color:#10352d }

.nav_list .nav_link--cta{
  background:#fff;
  color:#0f2420;
  font-weight:700;
  padding:.55rem 1.1rem;
  border-radius:999px;
}

/* Desktop tighten */
@media (max-width:1200px){
  .nav_list{ gap:18px }
  .nav_list a{ padding:.5rem .85rem }
}

/* Mobile: logo row + "Menu" button, dropdown nav */
@media (max-width:900px){
  .container.brand{
    flex-wrap:wrap;
    padding:.6rem 1rem;
  }

  .site-logo{ height:46px; }          /* less crowded */
  .brand-name{ font-size:1.4rem; }    /* less crowded */
  .brand-tagline{ display:none; }     /* less crowded (mobile only) */

  .nav_toggle{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
  }

  .nav_list{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    max-width:var(--maxw);
    background:var(--brand);
    border-radius:16px;
    margin:0 auto .75rem;
    padding:.75rem 1rem;
    gap:12px;
  }

  .nav.is-open .nav_list{ display:flex; }

  .nav_list a{
    padding:.45rem .2rem;
    font-weight:600;
  }

  .nav_list .nav_link--cta{
    align-self:flex-start;
    padding:.55rem 1.2rem;
  }
}

/* ===== Services dropdown ===== */
.nav_item--has-sub{ position:relative; }

.nav_item--has-sub > .nav_link{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.nav_item--has-sub > .nav_link::after{
  content:"▾";
  font-size:.7em;
  opacity:.9;
  color:#e7f6f2;
}

@media (min-width:901px){
  .nav_item--has-sub > .nav_submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:var(--brand);
    color:#fff;
    padding:6px 0;
    border-radius:10px;
    min-width:240px;
    box-shadow:0 6px 18px rgba(0,0,0,0.20);
    z-index:2000;
  }
  .nav_item--has-sub:hover > .nav_submenu{
    display:block;
  }

  .nav_sublink{
    display:block;
    padding:10px 18px;
    color:#ffffff;
    text-decoration:none;
    white-space:nowrap;
    font-weight:600;
    transition:background 0.2s ease, padding-left 0.2s ease;
  }
  .nav_sublink:hover{
    background:rgba(255,255,255,0.15);
    padding-left:24px;
    color:#ffffff;
  }
}

@media (max-width:900px){
  .nav_item--has-sub{ width:100% }

  .nav_submenu{
    display:none;
    list-style:none;
    margin:.25rem 0 .5rem;
    padding: .25rem 0 .25rem 1rem;
    width:100%;
    border-left:2px solid rgba(255,255,255,.2);
    background:transparent;
    box-shadow:none;
  }

  .nav_item--has-sub.sub-open > .nav_submenu{ display:block; }

  .nav_sublink{
    display:block;
    padding:.35rem 0;
    font-size:.95rem;
    color:#e7f6f2;
    opacity:.95;
    text-decoration:none;
  }
  .nav_sublink:hover{ text-decoration:underline; }
}

/* ===== HERO ===== */
.hero{
  position:relative;
  height:38vh;
  min-height:360px;
  max-height:440px;
  overflow:hidden;
}
.hero_video{ width:100%; height:100%; object-fit:cover; object-position:center 38% }
.hero_overlay{
  position:absolute; top:56%; left:67%; transform:translate(-50%,-50%);
  text-align:left; z-index:3; opacity:0;
  animation:heroFadeUp 1.8s ease-out .2s forwards;
  will-change:opacity,transform;
}
.hero_overlay .hero_serif{
  font-family: var(--font-heading);
  font-weight:700; text-transform:uppercase; letter-spacing:2px;
  font-size:clamp(40px,4.8vw,62px); line-height:1.1; color:#fff;
  text-shadow:0 8px 16px rgba(0,0,0,.35);
}
.hero_overlay .hero_script{
  font-family: var(--font-heading);
  font-weight:700;
  font-size:clamp(34px,4.8vw,60px);
  line-height:1.05;
  margin-top:.15em;
  color:#fff;
  text-shadow:0 10px 18px rgba(0,0,0,.35);
}
@keyframes heroFadeUp{
  from{opacity:0; transform:translate(-50%,-40%)}
  to{opacity:1; transform:translate(-50%,-50%)}
}

@media (max-width:900px){
  .hero{ height:40vh; min-height:300px }
  .hero_video{ object-position:center 58% }
  .hero_overlay{ top:52%; left:50%; transform:translate(-50%,-50%); text-align:center; width:90vw }
  .hero_overlay .hero_serif{ font-size:clamp(30px,7vw,46px) }
  .hero_overlay .hero_script{ font-size:clamp(26px,7.5vw,40px); margin-top:.25em }
}

/* ===== Tagline ===== */
.tagline{
  background:#FAFAF8; text-align:center;
  padding:clamp(6rem,10vw,9rem) 1rem clamp(4rem,8vw,7rem);
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  position:relative; z-index:1;
}
.tagline h2{
  font-family: var(--font-heading);
  font-weight:600;
  font-size:clamp(28px,3vw,42px); color:var(--brand); margin:0; line-height:1.3;
}
.tagline-brand{
  font-family: var(--font-heading);
  font-weight:700;
  font-size:clamp(22px,3.2vw,34px);
  color:var(--teal);
  margin-top:.75rem;
  line-height:1.1;
  letter-spacing:.2px;
}
.tagline::after{
  content:""; display:block; width:70px; height:3px; background:var(--accent);
  margin:2rem auto 0; border-radius:3px; opacity:.9;
}

/* ===== Feature Rows / Cards / Service Area / Footer CTA ===== */
.feature-rows{
  max-width:var(--maxw);
  margin:clamp(24px,4vw,56px) auto;
  padding:0 1rem;
  display:grid;
  gap:clamp(28px,4vw,48px)
}
.feature-row{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:clamp(20px,3.5vw,40px)
}
.feature-row.reverse{ grid-template-columns:1fr 1.1fr }
.feature-row.reverse .feature-media{ order:2 }
.feature-row.reverse .feature-copy{ order:1 }
.feature-media img{
  width:100%;
  height:clamp(260px,38vw,440px);
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}
.feature-copy h3{
  margin:0 0 .5rem;
  font-family: var(--font-heading);
  font-weight:700;
  letter-spacing:.5px;
  font-size:clamp(22px,2.6vw,34px);
  color:var(--brand)
}
.feature-copy p{
  margin:0;
  font-size:clamp(15px,1.25vw,18px);
  line-height:1.7;
  color:var(--text)
}
@media (max-width:900px){
  .feature-row,.feature-row.reverse{ grid-template-columns:1fr }
  .feature-row.reverse .feature-media{ order:1 }
  .feature-row.reverse .feature-copy{ order:2 }
  .feature-media img{ height:clamp(220px,48vw,320px) }
}

.cards-wrap{ max-width:var(--maxw); margin:3rem auto 4rem; padding:0 1rem }
.cards{ display:grid; gap:20px }
@media (min-width:900px){ .cards{ grid-template-columns:repeat(3,1fr) } }
.card{
  background:var(--card-bg);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:translateZ(0);
  transition:transform .25s, box-shadow .25s
}
.card:hover,.card:focus-within{ transform:translateY(-4px); box-shadow:0 14px 36px rgba(0,0,0,.12) }
.card img{ width:100%; height:260px; object-fit:cover }
.card_body{ padding:1.25rem }
.card h3{ margin:.15rem 0 .4rem; font-size:1.25rem }

.service-area{ max-width:var(--maxw); margin:4rem auto; padding:0 1rem }
.service-area h2{ font-size:2rem; margin:0 0 .5rem }
.service-columns{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; align-items:start }
@media (max-width:900px){ .service-columns{ grid-template-columns:repeat(2,1fr) } }
@media (max-width:700px){ .service-columns{ grid-template-columns:1fr } }

.footer-cta{
  position:relative; isolation:isolate;
  background:url("assets/hero-footer.jpg") center 45%/cover no-repeat #2D7A54;
  color:#fff; text-align:center; padding:clamp(3rem,7vw,5rem) 1rem; overflow:hidden;
}
.footer-cta::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(13,49,39,.72), rgba(13,49,39,.46) 60%, rgba(13,49,39,.25) 90%);
}
.footer-cta::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,.14), transparent 60%);
  z-index:0; pointer-events:none;
}
.footer-cta-content{ position:relative; z-index:1; max-width:760px; margin:0 auto }
.footer-cta h2{ font-family: var(--font-heading); font-size:clamp(28px,4vw,42px); margin:0 0 1rem }
.footer-cta p{ margin:0 0 2.5rem; font-size:clamp(17px,1.3vw,19px); color:rgba(255,255,255,.95) }
.footer-cta-buttons{ display:flex; justify-content:center; gap:1.1rem; flex-wrap:wrap }
.footer-cta-btn{
  display:inline-block; font-weight:700; letter-spacing:.3px; text-decoration:none;
  padding:.9rem 2rem; border-radius:30px;
  transition:transform .25s, background .25s, color .25s, border-color .25s
}
.footer-cta-btn.primary{ background:#fff; color:#0f2420 }
.footer-cta-btn.primary:hover{ background:#f2f2f2; transform:translateY(-2px) }
.footer-cta-btn.secondary{ background:transparent; color:#fff; border:2px solid #fff }
.footer-cta-btn.secondary:hover{ background:rgba(255,255,255,.18); transform:translateY(-2px) }

/* ===== Footer ===== */
.footer{
  background: var(--brand);
  color:#fff;
  padding: 2.5rem 1rem 6.5rem;
}

.footer .footer-top{
  max-width: var(--maxw);
  margin: 0 auto 1rem;
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items:flex-start;
  gap: clamp(18px, 4vw, 64px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size: .95rem;
  letter-spacing: .3px;
}

.footer .footer-column{
  flex: 1 1 280px;
  max-width: 420px;
  min-width: min(320px, 100%);
}

.footer-links{ margin-top: 1rem; }

.footer-links h4{
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 .6rem;
  font-size: 1.05rem;
  color: #fff;
}

.footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.35rem;
}

.footer-links a{
  color: #ffffffcc;
  text-decoration:none;
  transition: color .25s;
}

.footer-links a:hover{ color:#fff; }

.footer .footer-bottom{
  max-width: var(--maxw);
  margin: 1.25rem auto 0;
  text-align:center;
  opacity: .95;
}

/* ✅ THIS is what makes the big name show (works on ALL pages) */
.footer .footer-brand-name{
  font-family:"Playfair Display", ui-serif, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: .9;
  font-size: clamp(3rem, 9vw, 8.5rem);
  margin: 0;
  padding: 0;
}

/* keep copyright readable */
.footer .footer-bottom p{
  margin: .6rem 0 0;
  opacity: .9;
}

/* Mobile tweaks */
@media (max-width: 900px){
  .footer{ padding: 2rem 1rem 6.25rem; }
  .footer .footer-top{
    justify-content: flex-start;
    gap: 18px;
  }
  .footer .footer-brand-name{
    font-size: clamp(2.5rem, 11vw, 5rem);
  }
}



/* ===== Mobile CTA Dock ===== */
.cta-dock{
  position:fixed;
  z-index:80;
  left:0; right:0; bottom:0;
  display:none;
  gap:0;
  background:rgba(15,36,32,0.92);
  border-top:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  padding-bottom:env(safe-area-inset-bottom,0);
}
@media (max-width:900px){ .cta-dock{ display:flex } }
.mobile-cta_btn{
  flex:1;
  padding:.9rem .75rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.25rem;
  font-size:.9rem;
  color:#eaf3ef;
  text-decoration:none;
  font-weight:600;
}
.mobile-cta_btn:active{ background:rgba(255,255,255,.08) }
.mobile-cta__icon{ font-size:1.25rem; line-height:1 }

/* ===== Utilities ===== */
.visually-hidden{ position:absolute!important; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px) }

/* === ABOUT PAGE — layout & images === */
.about-hero__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px,3.5vw,42px);
  align-items: center;
}
.about-hero__media img{
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-split__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem,4vw,3.5rem) 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px,3.5vw,42px);
  align-items: center;
}
.about-split__media img{
  width: 100%;
  height: clamp(220px, 34vw, 360px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px,3.5vw,42px);
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}
.card-photo img{
  width: 100%;
  height: clamp(220px, 34vw, 320px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about .about-section img:not(.hf-img){
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px){
  .about-hero__inner,
  .about-split__inner,
  .about-grid{ grid-template-columns: 1fr; }
  .about-hero__media img{ height: 240px; }
  .about-split__media img{ height: 220px; }
  .card-photo img{ height: 220px; }
}

.about-cta{
  position: relative;
  color:#fff;
  background: url("assets/hero-footer.jpg") center 45% / cover no-repeat #2D7A54;
  isolation: isolate;
}
.about-cta::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(13,49,39,.72), rgba(13,49,39,.28) 60%, rgba(13,49,39,.15) 90%);
}
.about-cta__inner{
  position:relative; z-index:1;
  max-width: 880px; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  text-align:center;
}
.about-cta h2{ color:#fff; margin:0 0 .6rem; }
.tagline-note{ opacity:.95; margin: .25rem auto 0; }
.max700{ max-width:700px; margin-left:auto; margin-right:auto; }

.btn-row{ display:flex; gap:.8rem; flex-wrap:wrap; }
.btn{
  display:inline-block; text-decoration:none; font-weight:700; letter-spacing:.3px;
  padding:.9rem 1.4rem; border-radius:30px; transition:.25s ease;
}
.btn-primary{ background:#0f2420; color:#fff; }
.btn-primary:hover{ transform:translateY(-2px); }
.btn-ghost{ background:#fff; color:#0f2420; border:2px solid #0f2420; }
.btn-ghost:hover{ background:#0f2420; color:#fff; }

/* =========================
   FINAL HOTFIX (CLEAN)
   Keep ONLY this section at the bottom
========================= */

/* Ensure header is normal (not transparent/absolute from older rules) */
body.home .site-header{
  position: relative !important;
  background: var(--brand) !important;
}

/* Kill any underline/border that is hitting the brand text */
.brand-link,
.brand-link *{
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* CTA button text */
.nav_list .nav_link--cta{
  background: #fff !important;
  color: #0f2420 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.nav_list .nav_link--cta *{
  color: #0f2420 !important;
}

/* Services page: header sits normally under announcement */
body:not(.home) .site-header{
  position: relative !important;
  top: auto !important;
  transform: none !important;
}

/* Home hero size (if you like this taller hero) */
body.home .hero{
  margin-top: 0 !important;
  height: 75vh;
  min-height: 560px;
}
@media (max-width: 900px){
  body.home .hero{
    height: 65vh;
    min-height: 420px;
  }
}

/* ============================
   FLOATING "RIDE WITH US" BUTTON (ONE VERSION ONLY)
============================ */
.float-book{
  position: fixed;
  right: 18px;
  bottom: 90px; /* above mobile dock */
  z-index: 9999;

  background: #ffffff;
  color: #0f2420;
  border: 2px solid rgba(15,36,32,.18);
  padding: .65rem 1rem;
  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.float-book:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
@media (max-width:900px){
  .float-book{
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px) + 14px);
    padding: .6rem .95rem;
    font-size: .95rem;
  }
}

/* ================================
   NAV DROPDOWN FIX (KEEP ONE SYSTEM)
================================ */

/* Desktop: hover + keyboard focus */
.nav_item--has-sub{ position: relative; }
@media (min-width: 901px){
  .nav_item--has-sub > .nav_submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background: var(--brand);
    padding: 8px 0;
    border-radius: 10px;
    min-width: 260px;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
    z-index: 9999;
  }
  .nav_item--has-sub:hover > .nav_submenu,
  .nav_item--has-sub:focus-within > .nav_submenu{
    display:block;
  }
}

/* Mobile: ONLY control nav_list visibility (do NOT hide .nav itself) */
@media (max-width: 900px){
  .nav_list{ display:none; }
  .nav.is-open .nav_list{ display:flex; }

  .nav_list{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    background: var(--brand);
    border-radius: 16px;
    margin: 0 auto .75rem;
    padding: .75rem 1rem;
    gap: 12px;
  }

  .nav_submenu{
    display:none;
    list-style:none;
    margin:.25rem 0 .5rem;
    padding: .25rem 0 .25rem 1rem;
    width:100%;
    border-left:2px solid rgba(255,255,255,.2);
  }
  .nav_item--has-sub.sub-open > .nav_submenu{ display:block; }
}

/* =========================
   MOBILE SPACING CLEANUP (GLOBAL)
========================= */
@media (max-width: 900px){

  /* Account for bottom CTA dock so nothing is hidden */
  body{ padding-bottom: 88px; }

  /* Hero: slightly smaller so it doesn’t dominate */
  .hero{
    height: 36vh;
    min-height: 280px;
  }

  /* Tagline: was very tall */
  .tagline{ padding: 3.25rem 1rem 2.5rem; }
  .tagline::after{ margin-top: 1.25rem; }

  /* Feature rows tighter */
  .feature-rows{
    margin: 1.75rem auto;
    gap: 22px;
  }
  .feature-row{ gap: 18px; }
  .feature-media img{ height: 230px; }

  /* Cards tighter */
  .cards-wrap{ margin: 2rem auto 2.5rem; }
  .card img{ height: 210px; }
  .card_body{ padding: 1rem; }

  /* Service area tighter */
  .service-area{ margin: 2.5rem auto; }

  /* Footer CTA tighter */
  .footer-cta{ padding: 2.75rem 1rem; }

  /* Footer: keep room above dock */
  .footer{ padding: 2rem 1rem 6.25rem; }
}

/* =========================
   ABOUT PAGE — EDGE PADDING FIX
   (prevents text hugging screen edges)
========================= */

/* add consistent padding even on desktop */
.about-hero__inner{ padding: 0 1rem; }

@media (max-width: 900px){
  main.about{ padding-bottom: 110px; }

  .about-hero{ padding-top: 22px; padding-bottom: 18px; }
  .about-hero__inner{ gap: 16px; padding-left: 16px; padding-right: 16px; }

  .about-split__inner,
  .about-grid{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================
   NORMALIZE MOBILE HEADINGS (ONE VERSION ONLY)
========================= */
@media (max-width: 900px){
  h1{
    font-size: clamp(28px, 6.5vw, 34px);
    line-height: 1.2;
  }
  h2{
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.25;
  }
  h3{
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.3;
  }

  .card h3,
  .svc-card h3,
  .svc-feature__copy h3{
    font-size: clamp(18px, 4.8vw, 22px);
  }
}

/* =========================
   MOBILE BUTTON NORMALIZE
========================= */
@media (max-width: 900px){
  .btn,
  .footer-cta-btn,
  .nav_list .nav_link--cta,
  .svc-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 999px;
    box-sizing: border-box;
  }

  .btn-row,
  .footer-cta-buttons,
  .cta-row{
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .cta-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-size: 1rem;
    padding: 8px 10px;
  }
}

/* =========================
   MOBILE LINE-LENGTH SOFTENER
========================= */
@media (max-width: 900px){
  .lead,
  .about p,
  .feature-copy p,
  .svc-section p,
  .svc-hero__copy p,
  .card_body p,
  .footer-cta p{
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   SERVICES SUBPAGES — MOBILE POLISH
========================= */
@media (max-width: 900px){
  .svc-hero{
    padding-top: 18px;
    padding-bottom: 14px;
    gap: 14px;
  }
  .svc-section{
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .svc-grid4{ gap: 14px; }
  .svc-card{ padding: 16px; }

  .svc-feature{
    gap: 14px;
    margin-top: 18px;
  }

  .svc-section ul{ padding-left: 1.1rem; }
  .svc-section li{ margin-bottom: 8px; }
}

/* =========================
   "WINDOW" / PARALLAX SUPPORT FOR FOOTER CTA
========================= */
.hero-footer{
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: background-position;
}

/* Optional desktop-only fixed background (mobile browsers ignore this anyway) */
@media (min-width: 901px){
  .hero-footer{ background-attachment: fixed; }
}
@media (max-width: 900px){
  .hero-footer{ background-attachment: scroll; }
}

/* === ENSURE FOOTER BRAND NAME SHOWS ON SERVICES PAGES === */
.page-services .footer-bottom{
  display: block;
  margin-top: 2rem;
  text-align: center;
}

/* BIG footer brand (replaces old footer h1) */
.footer-brand-name{
  font-family:"Playfair Display", ui-serif, "Times New Roman", serif;
  font-weight:600;
  letter-spacing:.2px;
  line-height:.9;
  font-size: clamp(3rem, 9vw, 8.5rem);
  margin: 0;
  padding: 0;
  opacity: .85;
}





/* ===== FOOTER FIX (FORCE DESKTOP LAYOUT) ===== */
.footer .footer-top{
  justify-content: center !important;      /* stop huge gaps */
  gap: clamp(18px, 4vw, 64px) !important;  /* controlled spacing */
}

.footer .footer-column{
  flex: 1 1 280px !important;
  max-width: 420px !important;
}

/* Hero: keep text compact */
.hero_overlay{
  max-width: 760px;
}

.hero_kicker{
  margin: .65rem 0 0;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(14px, 1.4vw, 18px);
  text-shadow: 0 8px 16px rgba(0,0,0,.35);
}

/* Ensure the script line looks like before */
.hero_script{
  display:block;
}

/* Better primary submit button */
.btn-submit{
  appearance:none;
  border:0;
  width:100%;
  max-width:420px;
  cursor:pointer;

  background: linear-gradient(180deg, #2D7A54 0%, #246B49 100%);
  color:#fff;

  font-weight:800;
  letter-spacing:.2px;

  padding: 14px 18px;
  border-radius: 999px;

  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  filter: brightness(1.02);
}

.btn-submit:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.btn-submit:focus-visible{
  outline: 3px solid rgba(56,178,166,.55);
  outline-offset: 3px;
}
.contact-submit-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:420px;
  margin-top:6px;

  background: linear-gradient(135deg, #2D7A54, #1f5f44);
  color:#fff;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.3px;

  padding:14px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;

  box-shadow:0 10px 26px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.contact-submit-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}
.contact-submit-btn{
  width:100%;
  max-width:420px;
  margin-top:8px;

  background: linear-gradient(135deg,#2D7A54,#1f5f44);
  color:#fff;
  font-weight:700;
  font-size:1.05rem;

  padding:14px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;

  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:.15s ease;
}

.contact-submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 38px rgba(0,0,0,.22);
}