/* =====================================================
   Coastal Concrete & Exteriors
   Brand: teal #2DB4AC | charcoal #1F1F1F | white #FFFFFF
   ===================================================== */

:root{
  --teal: #2DB4AC;
  --teal-dark: #1F9E97;
  --charcoal: #1F1F1F;
  --charcoal-soft: #2A2A2A;
  --white: #FFFFFF;
  --grey-100: #F5F6F7;
  --grey-300: #D8DCDE;
  --grey-600: #5E6770;
  --shadow: 0 12px 32px rgba(0,0,0,.12);
  --radius: 10px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{overflow-x:hidden;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--charcoal);
  background:#E5E5E5;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}

h1,h2,h3,h4{font-weight:700;line-height:1.15;letter-spacing:-.01em;}
h1{font-size:clamp(2.2rem,4.5vw,3.6rem);}
h2{font-size:clamp(1.7rem,3vw,2.5rem);margin-bottom:.6rem;}
h3{font-size:1.15rem;margin-bottom:.4rem;}

.eyebrow{
  display:inline-block;
  font-size:1.05rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--teal);margin-bottom:.9rem;
}
.eyebrow-light{color:var(--teal);}

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.78rem 1.4rem;border-radius:6px;
  font-weight:600;font-size:.95rem;letter-spacing:.02em;
  cursor:pointer;transition:all .18s ease;border:2px solid transparent;
  white-space:nowrap;
}
.btn-primary{background:var(--teal);color:var(--white);border-color:var(--teal);}
.btn-primary:hover{background:var(--teal-dark);border-color:var(--teal-dark);transform:translateY(-1px);}
.btn-ghost{background:transparent;color:var(--charcoal);border-color:transparent;}
.btn-ghost:hover{color:var(--teal);}
.btn-outline{background:transparent;color:var(--white);border-color:var(--white);}
.btn-outline:hover{background:var(--white);color:var(--charcoal);}
.btn-lg{padding:.95rem 1.7rem;font-size:1rem;}
.btn-block{width:100%;}

/* ========== HEADER ========== */
.site-header{
  position:sticky;top:0;z-index:50;
  background:#1A1A1A;
  border-bottom:none;
}
.header-inner{display:flex;align-items:stretch;padding:0 24px 0 0;gap:24px;height:140px;max-width:none;}
.brand{display:flex;align-items:stretch;height:100%;}
.brand-logo{height:100%;width:auto;display:block;}
.main-nav{display:flex;gap:28px;align-items:center;margin-left:auto;}
.main-nav a{font-weight:600;font-size:.95rem;color:rgba(255,255,255,.85);transition:color .15s;}
.main-nav a:hover{color:var(--teal);}
.header-cta{display:flex;gap:10px;align-items:center;}
.header-cta .btn-ghost{color:#fff;}
.header-cta .btn-ghost:hover{color:var(--teal);}
.header-social{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  color:var(--teal);
  transition:transform .18s ease, background .18s ease;
}
.header-social svg{width:22px;height:22px;display:block;}
.header-social:hover{background:rgba(45,180,172,.12);transform:translateY(-1px);}

/* Hamburger (mobile only) */
.hamburger{
  display:none;
  background:transparent;border:none;cursor:pointer;
  width:34px;height:26px;
  flex-direction:column;justify-content:space-between;
  padding:0;
}
.hamburger span{
  display:block;width:100%;height:3px;
  background:var(--teal);border-radius:2px;
  transition:transform .2s, opacity .2s;
}
.main-nav.is-open{
  display:flex !important;
  flex-direction:column;
  position:absolute;
  top:100%;left:0;right:0;
  background:#1A1A1A;
  padding:24px;
  gap:20px;
  z-index:60;
  margin:0;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.main-nav.is-open a{font-size:1.05rem;padding:6px 0;}

/* ========== HERO ========== */
.hero{position:relative;min-height:88vh;display:flex;align-items:center;color:var(--white);overflow:hidden;}
.hero-image{position:absolute;inset:0;}
.hero-image img{width:100%;height:100%;object-fit:cover;object-position:30% center;}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(120deg, rgba(31,31,31,.78) 0%, rgba(31,31,31,.55) 45%, rgba(45,180,172,.35) 100%);
}
.hero-content{
  position:relative;z-index:2;
  /* override .container's centering and max-width so hero text stays anchored left */
  max-width:none;
  margin:0;
  width:100%;
  /* match site gutter on wide screens, fixed 24px otherwise */
  padding:0 24px 0 max(24px, calc((100vw - 1180px) / 2 + 24px));
  display:flex;
  flex-direction:column;
}
.hero-content > *{max-width:min(560px, 50vw);}
@media (max-width:768px){
  .hero{align-items:flex-start;}
  .hero-content{padding:20px 24px 0;}
  .hero-content > *{max-width:none;}
}
.hero-content h1{max-width:780px;}
.hero-content .hero-sub{max-width:620px;}
.hero .eyebrow{
  color:var(--teal);font-size:1.5rem;letter-spacing:.08em;
  margin:0;
  text-shadow:
    0 0 14px rgba(45,180,172,.85),
    0 0 28px rgba(45,180,172,.55),
    0 0 48px rgba(45,180,172,.35);
}
.hero-content h1{margin-bottom:1.2rem;color:var(--white);}
.hero-content .hero-headline{
  font-size:clamp(2.2rem,4.5vw,3.6rem);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.01em;
  color:var(--white);
  margin:0 0 1.2rem;
  max-width:780px;
}
.hero-sub{font-size:1.15rem;color:rgba(255,255,255,.92);margin-bottom:2rem;max-width:620px;}
.hero-buttons{
  position:absolute;
  bottom:40px;
  right:40px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:3;
}
.hero-buttons .btn{min-width:200px;}


/* ========== SECTIONS ========== */
.section{padding:90px 0;}
.section-dark{background:var(--charcoal);color:var(--white);}
.section-dark h2,.section-dark p{color:var(--white);}
.section-head{text-align:center;max-width:720px;margin:0 auto 56px;}
.section-sub{color:var(--grey-600);font-size:1.05rem;}
.section-dark .section-sub{color:rgba(255,255,255,.78);}

/* ========== SERVICES ========== */
.group-title{
  font-size:1.5rem;color:var(--charcoal);
  margin:0 0 24px;padding-bottom:10px;
  border-bottom:3px solid var(--teal);
  display:inline-block;
}
.group-title-spaced{margin-top:56px;}
.services-grid{
  display:grid;grid-template-columns:repeat(2, 1fr);gap:28px;
  max-width:720px;margin:0 auto;
}
@media (max-width:640px){
  .services-grid{grid-template-columns:1fr;max-width:380px;}
}
.service-card{
  background:var(--charcoal-soft);
  padding:32px 26px;border-radius:var(--radius);
  border:3px solid var(--teal);
  transition:all .22s ease;
  overflow:hidden;
}
.service-card:hover{transform:translateY(-4px);background:#232323;}
.service-card.has-image{padding-top:0;}
.service-image{
  margin:0 -26px 22px;
  aspect-ratio:1/1;
  overflow:hidden;
  border-bottom:2px solid var(--teal);
}
.service-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.service-image img[src="burnished-steps.png"]{object-position:center bottom;}
.services-cta{text-align:center;margin-top:48px;}
.range-link{
  display:inline-block;
  margin-top:1.1rem;
  color:var(--teal);
  text-decoration:underline;
  text-underline-offset:4px;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.02em;
  transition:color .15s;
}
.range-link:hover{color:#fff;}
#finishes{background:#FFFFFF;}
.finishes-sub{font-style:italic;font-size:.95rem;color:var(--grey-600);margin:-12px 0 24px;}
#finishes .group-title,
#finishes .style-text h3,
#finishes .style-text p{color:var(--charcoal) !important;}
.page-section{padding-top:60px;}

/* services page */
.services-page-hero{padding-bottom:24px;text-align:center;}
.services-page-title{
  font-size:clamp(2.2rem,4.5vw,3.4rem);
  margin:.2rem 0 .6rem;
  color:var(--charcoal);
}
.services-page-hint{
  color:var(--grey-600);
  font-size:1rem;
  margin:0 auto 28px;
  max-width:560px;
}
.page-lede{color:var(--grey-600);font-size:1.1rem;max-width:720px;}
.service-jump{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
@media (max-width:768px){
  .services-page-hero{padding-bottom:0 !important;text-align:left;}
  .services-page-hero + .service-detail{padding-top:22px !important;}
  .services-page-hint{margin-bottom:18px;}
}
@media (max-width:768px){
  .service-jump{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:10px !important;
  }
  .service-jump a{
    background:transparent !important;
    color:var(--teal) !important;
    border:none !important;
    border-radius:0 !important;
    padding:0 0 0 18px !important;
    font-size:1rem !important;
    text-decoration:underline !important;
    text-underline-offset:3px;
    position:relative;
    transform:none !important;
  }
  .service-jump a::before{
    content:"";
    position:absolute;
    left:0;top:50%;
    transform:translateY(-50%);
    width:18px;height:18px;
    background:url('dot-point.png') center/contain no-repeat;
  }
  .service-jump a{padding-left:26px !important;}
}
.service-jump a{
  display:inline-block;
  padding:10px 20px;
  background:var(--teal);
  color:#fff;
  border:1px solid var(--charcoal);
  border-radius:999px;
  font-weight:600;font-size:.95rem;
  text-decoration:none;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.service-jump a:hover,
.service-jump a:active{background:#fff;color:var(--teal);transform:translateY(-2px);}
.section-dark .page-lede{color:rgba(255,255,255,.78);}
.service-detail{padding:64px 0;scroll-margin-top:160px;position:relative;}
@media (max-width:900px){.service-detail{scroll-margin-top:120px;}}

/* Concrete wall background on the light-grey services page sections */
.services-page-hero:not(.section-dark),
.service-detail:not(.section-dark){
  background:linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.40)), url('gray-concrete-wall.jpg') center/cover no-repeat fixed;
}
.services-page-hero .services-page-title,
.services-page-hero .services-page-hint,
.service-detail:not(.section-dark) .service-detail-text h2,
.service-detail:not(.section-dark) .service-detail-text p{
  color:#FFFFFF;
}
.service-detail-inner{display:grid;grid-template-columns:1fr;gap:28px;}
.service-detail-text h2{margin-bottom:.6rem;}
.service-detail-text p{color:var(--grey-600);max-width:720px;}
.section-dark .service-detail-text p{color:rgba(255,255,255,.78);}
.gallery-carousel{
  position:relative;
  display:block;
  width:100%;
  max-width:1068px;
  box-sizing:border-box;
  min-width:0;
}
.service-detail-inner > *{min-width:0;}
.gallery-carousel[data-carousel] .carousel-track{min-width:0;}
.gallery-carousel[data-carousel] .carousel-track > img{min-width:0;}
.gallery-carousel > img{
  display:block;
  width:344px;
  height:344px;
  max-width:100%;
  object-fit:cover;
  border:3px solid var(--teal);
  border-radius:8px;
  box-sizing:border-box;
}
.gallery-carousel[data-carousel] .carousel-track{
  display:flex;
  gap:18px;
  overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  width:100%;
}
.gallery-carousel[data-carousel] .carousel-track::-webkit-scrollbar{display:none;}
.gallery-carousel[data-carousel] .carousel-track > .gallery-item,
.gallery-carousel[data-carousel] .carousel-track > img{
  flex:0 0 calc((100% - 36px) / 3);
  max-width:344px;
  width:auto;
  height:auto;
  aspect-ratio:1/1;
  border:3px solid var(--teal);
  border-radius:8px;
  box-sizing:border-box;
  display:block;
  position:relative;
  overflow:hidden;
  margin:0;
}
.gallery-carousel[data-carousel] .carousel-track > img{object-fit:cover;}
.gallery-carousel[data-carousel] .carousel-track > .gallery-item > img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  border:none;
  border-radius:0;
}
.gallery-carousel[data-carousel] .carousel-track > .gallery-item:nth-child(3n+1),
.gallery-carousel[data-carousel] .carousel-track > img:nth-child(3n+1){
  scroll-snap-align:start;
}
.gallery-label{
  position:absolute;
  top:6px;left:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;height:26px;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--teal);
  color:var(--teal);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.04em;
  z-index:3;
  pointer-events:none;
  box-sizing:border-box;
}
/* Gallery CTA row — floats in the section's existing bottom padding so it doesn't enlarge the section */
.gallery-cta{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  width:calc(100% - 48px);
  max-width:1068px;
  z-index:4;
}
.get-quote-link{
  display:inline-block;
  background:var(--teal);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.05em;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.4);
  white-space:nowrap;
  transition:transform .18s ease, background .18s ease;
}
.get-quote-link:hover{background:#fff;color:var(--teal);transform:translateY(-2px);}
.see-more-pill{
  display:inline-block;
  background:var(--teal);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.05em;
  box-shadow:0 6px 18px rgba(0,0,0,.4);
  white-space:nowrap;
  pointer-events:none;
}
.gallery-carousel.at-start .carousel-prev{opacity:0 !important;pointer-events:none !important;visibility:hidden;}

/* Mobile: 1.5 images visible (so users see there's more to swipe), pill below the gallery */
@media (max-width:768px){
  .gallery-carousel{display:flex;flex-direction:column;}
  .gallery-carousel[data-carousel] .carousel-track > .gallery-item,
  .gallery-carousel[data-carousel] .carousel-track > img{
    flex:0 0 65%;
    max-width:none;
  }
  /* snap on every item (not every 3rd) so 1.5-image scroll lands cleanly */
  .gallery-carousel[data-carousel] .carousel-track > .gallery-item,
  .gallery-carousel[data-carousel] .carousel-track > img{
    scroll-snap-align:start;
  }
  .gallery-cta{
    position:static;
    transform:none;
    width:100%;
    margin-top:14px;
  }
  .see-more-pill{
    background:transparent;
    color:var(--teal);
    padding:0;
    box-shadow:none;
    border-radius:0;
    font-weight:600;
    font-size:.95rem;
  }
  .see-more-pill::after{
    content:" →";
    font-weight:700;
  }
  .service-detail:not(.section-dark) .see-more-pill{color:#fff;}
}

/* quote CTA sitting in the empty grid slot — small button flush with the bottom of the neighbor's image */
.card-link.quote-cta-card{
  display:flex !important;
  flex-direction:column;
  align-items:flex-start;
  align-self:stretch;
  text-decoration:none;
  background:transparent;
  padding:0;
  color:inherit;
  transform:none;
  min-height:100%;
}
.card-link.quote-cta-card > .btn{
  margin-top:auto !important;
}
.card-link.quote-cta-card:hover{transform:none;}
.card-link.quote-cta-card:hover .btn{transform:translateY(-2px);}

/* home services 3+2 layout */
#services .styles-grid.home-services-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:24px;
  max-width:none;
}
#services .styles-grid.home-services-grid > .card-link{
  flex:0 0 calc(33.333% - 16px);
  max-width:344px;
}
@media (max-width:640px){
  #services .styles-grid.home-services-grid > .card-link{flex-basis:100%;max-width:344px;}
}

/* clickable service cards on home */
.card-link{display:block;color:inherit;text-decoration:none;transition:transform .18s ease;}
.card-link:hover{transform:translateY(-3px);}
.card-link:hover .style-image{box-shadow:0 8px 22px rgba(45,180,172,.35);}

/* ========== STYLES OF CONCRETE ========== */
.styles-grid{
  display:grid;grid-template-columns:repeat(2, 1fr);gap:32px;
  align-items:start;
  max-width:720px;margin:0 auto;
}
@media (max-width:640px){
  .styles-grid{grid-template-columns:1fr;max-width:380px;}
}
.style-card{display:flex;flex-direction:column;gap:14px;background:transparent;border:none;padding:0;}
.style-image{
  border:3px solid var(--teal);
  border-radius:8px;
  overflow:hidden;
  background:transparent;
  aspect-ratio:1/1 !important;
  line-height:0;
  width:100% !important;
  height:auto !important;
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
  position:relative;
}
.style-image img{display:block;width:100%;height:100%;object-fit:cover;}

/* ========== CAROUSEL ========== */
.carousel{position:relative;}
.style-image.carousel > .carousel-track{
  position:absolute;
  inset:0;
}
.carousel-track{
  width:100%;height:100%;
  display:flex;
  overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
}
.carousel-track::-webkit-scrollbar{display:none;}
.carousel-track img{
  width:100%;height:100%;
  flex:0 0 100%;
  scroll-snap-align:center;
  object-fit:cover;
}
.carousel-btn{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:42px;height:42px;border-radius:50%;
  background:rgba(0,0,0,.55);color:#fff;border:none;
  font-size:28px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .18s, opacity .25s ease;
  z-index:2;font-weight:400;font-family:inherit;
  opacity:0;
}
.carousel:hover .carousel-btn,
.gallery-carousel:hover .carousel-btn,
.carousel-btn:focus-visible{opacity:1;}
.carousel-btn:hover{background:var(--teal);}
.carousel-prev{left:12px;}
.carousel-next{right:12px;}
.carousel-hint{
  position:absolute;bottom:16px;left:50%;
  transform:translateX(-50%);
  background:var(--teal);color:#fff;
  padding:9px 18px;border-radius:999px;
  font-weight:700;font-size:.85rem;
  letter-spacing:.05em;
  z-index:2;
  box-shadow:0 6px 16px rgba(0,0,0,.35);
  pointer-events:none;
  transition:opacity .35s ease;
  white-space:nowrap;
}
.carousel.scrolled .carousel-hint{opacity:0;}
.style-text h3{color:var(--charcoal);font-size:1.2rem;margin:0 0 .3rem;}
.style-text p{color:#FFFFFF;font-size:.95rem;margin:0;font-weight:500;}
.section-dark .group-title{color:var(--white);}
.section-dark .style-text h3{color:var(--white);}
.section-dark .style-text p{color:rgba(255,255,255,.78);}
.service-card.has-image:hover .service-image img{transform:scale(1.04);}
.service-icon{
  width:48px;height:48px;border-radius:50%;
  background:rgba(45,180,172,.15);color:var(--teal);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:1rem;
}
.service-card h3{color:var(--white);}
.service-card p{color:rgba(255,255,255,.72);font-size:.95rem;}

/* ========== WORK / GALLERY ========== */
.work-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px;}
.work-tile{
  position:relative;overflow:hidden;border-radius:var(--radius);
  border:3px solid var(--teal);
  aspect-ratio: 4/3;
  box-shadow:var(--shadow);
}
.work-tile img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.work-tile:hover img{transform:scale(1.05);}

/* ========== ABOUT ========== */
.about-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:60px;align-items:start;}
.about-text h2{color:var(--charcoal);}
.about-text .about-headline{
  font-size:clamp(1.7rem,3vw,2.5rem);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.01em;
  color:var(--charcoal);
  margin:0 0 .6rem;
}
.about-text p{color:var(--grey-600);margin-bottom:1.5rem;}
.about-points{list-style:none;margin:0 0 1.8rem;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:.6rem 1rem;}
.about-points li{position:relative;padding-left:22px;color:var(--charcoal);font-size:.95rem;}
.about-points li::before{
  content:"";position:absolute;left:0;top:8px;
  width:10px;height:10px;border-radius:50%;background:var(--teal);
}
.about-image{border:4px solid var(--teal);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);max-width:340px;margin-top:42px;}
.about-buttons{display:flex;flex-direction:row;flex-wrap:nowrap;gap:12px;align-items:center;}
.about-buttons .btn{flex:0 1 auto;white-space:nowrap;}
@media (max-width:520px){
  .about-buttons .btn{padding:.7rem .9rem;font-size:.85rem;}
}
.about-image img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/5;}

/* ========== QUOTE / FORM ========== */
.section-cta{background:#DCEDEB;}
.quote-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:start;}
.quote-info p{color:var(--grey-600);margin-bottom:1.5rem;}
.quote-contacts{display:flex;flex-direction:column;gap:12px;margin-bottom:1.5rem;}
.contact-row{display:flex;align-items:center;gap:12px;font-weight:500;color:var(--charcoal);}
.contact-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;background:var(--teal);color:var(--white);
  flex:0 0 38px;
}
.contact-icon svg{width:20px;height:20px;display:block;}
.social-row{display:flex;gap:10px;margin-top:.5rem;}
.social-btn{
  width:44px;height:44px;border-radius:50%;
  background:transparent;color:var(--teal);
  display:flex;align-items:center;justify-content:center;
  transition:all .18s ease;
  border:2px solid var(--teal);
}
.social-btn svg{width:22px;height:22px;display:block;}
.social-btn:hover{background:var(--teal);color:var(--white);transform:translateY(-2px);}

.quote-form{
  background:var(--white);padding:36px;border-radius:var(--radius);
  box-shadow:var(--shadow);border-top:4px solid var(--teal);
}
.field{margin-bottom:1rem;display:flex;flex-direction:column;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.field label{font-size:.82rem;font-weight:600;margin-bottom:6px;color:var(--charcoal);letter-spacing:.04em;text-transform:uppercase;}
.field input,.field select,.field textarea{
  padding:.8rem .9rem;border:1.5px solid var(--grey-300);border-radius:6px;
  font-family:inherit;font-size:.95rem;color:var(--charcoal);
  background:var(--white);transition:border .15s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--teal);
}
.form-note{font-size:.8rem;color:var(--grey-600);text-align:center;margin-top:.8rem;}

/* ========== FOOTER ========== */
.site-footer{background:var(--charcoal);color:rgba(255,255,255,.78);padding-top:60px;}
.footer-inner{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:50px;}
.footer-icon{display:none;width:22px;height:22px;}
.footer-brand .footer-logo{height:160px;width:auto;border-radius:4px;margin-bottom:1rem;border:1px solid #59BBB8;}
.footer-col h4{color:var(--white);margin-bottom:1rem;font-size:1rem;}
.footer-col a,.footer-col span{display:block;color:rgba(255,255,255,.7);font-size:.92rem;padding:5px 0;transition:color .15s;}
.footer-col a:hover{color:var(--teal);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;font-size:.85rem;color:rgba(255,255,255,.55);text-align:center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px){
  .main-nav{display:none;}
  .header-inner{padding:0 18px 0 0;height:100px;position:relative;}
  .header-cta{margin-left:auto;gap:6px;}
  .header-cta .btn-ghost{display:none;}
  .hamburger{display:flex;order:99;margin-left:10px;}
  .about-grid,.quote-grid{grid-template-columns:1fr;gap:40px;}
  .about-points{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr 1fr;gap:24px 20px;padding-bottom:30px;}
  .site-footer{padding-top:36px;}
  .footer-brand .footer-logo{height:80px;}
  .footer-brand p{font-size:.85rem;}
  .footer-col h4{font-size:.92rem;margin-bottom:.5rem;}
  .footer-col a,.footer-col span{font-size:.85rem;padding:3px 0;}
  /* Swap text for icons in Contact + Follow columns */
  .footer-contact .footer-text,
  .footer-follow .footer-text{display:none;}
  .footer-icon{display:inline-block;color:rgba(255,255,255,.85);}
  .footer-contact,
  .footer-follow{display:flex;flex-direction:column;}
  .footer-contact h4,
  .footer-follow h4{width:100%;}
  .footer-contact > a,
  .footer-contact > span,
  .footer-follow > a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    padding:0;
    margin:0;
    transition:background .15s, color .15s;
  }
  .footer-contact > a:hover,
  .footer-follow > a:hover{background:var(--teal);color:#fff;}
  .footer-contact > a:hover .footer-icon,
  .footer-follow > a:hover .footer-icon{color:#fff;}
  .footer-contact, .footer-follow{
    display:grid;
    grid-template-columns:auto auto auto;
    gap:8px;
    align-items:center;
    justify-content:start;
  }
  .footer-contact h4, .footer-follow h4{grid-column:1/-1;}
  .section{padding:60px 0;}
}
@media (max-width: 520px){
  .field-row{grid-template-columns:1fr;}
  .header-cta .btn-primary{display:none;}
}
@media (max-width: 768px){
  .hero-buttons{
    right:auto;
    left:50%;
    transform:translateX(-50%);
    align-items:center;
  }
}
