/* =========================================================
   Harts Painting Service — Design System
   Palette:
     --sand      #A7A376  (brand accent, sampled from logo bg)
     --sand-dark #8C885E  (hover/active accent)
     --sand-light#EFEADA  (tints)
     --ink       #26312D  (deep coastal charcoal-teal — text & dark sections)
     --ink-soft  #55645C  (secondary text)
     --ocean     #4A6670  (secondary accent — links/icons)
     --bg        #FAF8F2  (warm off-white)
     --bg-alt    #F0ECDF  (soft sand section bg)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --sand:#A7A376;
  --sand-dark:#8C885E;
  --sand-light:#EFEADA;
  --ink:#26312D;
  --ink-soft:#55645C;
  --ocean:#4A6670;
  --ocean-dark:#374F58;
  --bg:#FAF8F2;
  --bg-alt:#F0ECDF;
  --white:#FFFFFF;
  --line:#DCD6C2;

  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:1240px;
  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:28px;
  --shadow-sm:0 2px 10px rgba(38,49,45,0.07);
  --shadow-md:0 12px 32px rgba(38,49,45,0.12);
  --shadow-lg:0 24px 60px rgba(38,49,45,0.18);
  --ease:cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms!important;animation-iteration-count:1!important;transition-duration:0.001ms!important;scroll-behavior:auto!important;}
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font:inherit;cursor:pointer;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
  color:var(--ink);
}
p{margin:0 0 1em;color:var(--ink-soft);}
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:24px;
}
section{position:relative;}

/* -------------------- Type scale -------------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ocean-dark);
  margin-bottom:1rem;
}
.eyebrow::before{
  content:"";
  width:28px;height:2px;
  background:var(--sand-dark);
  display:inline-block;
}
h1{font-size:clamp(2.4rem, 1.7rem + 3vw, 4.4rem);}
h2{font-size:clamp(1.9rem, 1.5rem + 1.8vw, 3rem);}
h3{font-size:clamp(1.25rem, 1.1rem + .7vw, 1.6rem);}
.lede{font-size:clamp(1.05rem,1rem + .3vw,1.25rem);color:var(--ink-soft);max-width:56ch;}

/* -------------------- Buttons -------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  padding:.95em 1.7em;
  border-radius:100px;
  font-weight:700;
  font-size:.98rem;
  border:2px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space:nowrap;
}
.btn svg{width:1.1em;height:1.1em;flex:none;}
.btn-primary{
  background:var(--sand);
  color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{background:var(--sand-dark);transform:translateY(-3px);box-shadow:var(--shadow-md);}
.btn-dark{
  background:var(--ink);
  color:var(--bg);
}
.btn-dark:hover{background:#1a2320;transform:translateY(-3px);box-shadow:var(--shadow-md);}
.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:var(--ink);
}
.btn-outline:hover{background:var(--ink);color:var(--bg);border-color:var(--ink);transform:translateY(-3px);}
.btn-outline.on-dark{color:var(--bg);}
.btn-outline.on-dark:hover{background:var(--bg);color:var(--ink);}
.btn-block{width:100%;}
.btn-lg{padding:1.15em 2.1em;font-size:1.05rem;}

.cta-row{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;}

/* -------------------- Header -------------------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(250,248,242,0.88);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled{
  box-shadow:0 4px 24px rgba(38,49,45,0.08);
  border-color:var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding-block:14px;
}
.brand{display:flex;align-items:center;gap:.65rem;flex:none;}
.brand img{height:44px;width:auto;transition:height .3s var(--ease);}
.brand-name{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  line-height:1.1;
  color:var(--ink);
}
.brand-name span{display:block;font-family:var(--font-body);font-weight:600;font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ocean-dark);margin-top:2px;}

.main-nav{display:flex;align-items:center;gap:2.2rem;}
.main-nav a{
  font-weight:600;
  font-size:.96rem;
  color:var(--ink-soft);
  position:relative;
  padding:.3em 0;
  transition:color .25s var(--ease);
}
.main-nav a::after{
  content:"";
  position:absolute;left:0;right:100%;bottom:-2px;
  height:2px;background:var(--sand-dark);
  transition:right .3s var(--ease);
}
.main-nav a:hover,.main-nav a[aria-current="page"]{color:var(--ink);}
.main-nav a:hover::after,.main-nav a[aria-current="page"]::after{right:0;}

.header-actions{display:flex;align-items:center;gap:.9rem;}
.header-actions .btn{padding:.75em 1.3em;font-size:.9rem;}
.call-chip{
  display:flex;align-items:center;gap:.5em;
  font-weight:700;font-size:.92rem;color:var(--ink);
}
.call-chip svg{width:1.1em;height:1.1em;color:var(--ocean-dark);}

.nav-toggle{
  display:none;
  flex:none;
  width:46px;height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--white);
  align-items:center;justify-content:center;
  position:relative;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:"";
  display:block;
  width:20px;height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span{position:relative;}
.nav-toggle span::before{position:absolute;top:-6px;left:0;}
.nav-toggle span::after{position:absolute;top:6px;left:0;}
.nav-toggle[aria-expanded="true"] span{background:transparent;}
.nav-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg);}
.nav-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg);}

.mobile-panel{
  display:none;
  position:fixed;inset:0 0 auto 0;
  top:0;
  background:var(--bg);
  padding:100px 28px 40px;
  z-index:99;
  transform:translateY(-12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  height:100dvh;
  overflow-y:auto;
}
.mobile-panel.is-open{opacity:1;transform:translateY(0);visibility:visible;pointer-events:auto;}
.mobile-panel nav{display:flex;flex-direction:column;gap:.4rem;margin-bottom:2rem;}
.mobile-panel nav a{
  font-family:var(--font-display);
  font-size:1.9rem;font-weight:600;
  padding:.4em 0;
  border-bottom:1px solid var(--line);
  color:var(--ink);
}
.mobile-panel nav a[aria-current="page"]{color:var(--ocean-dark);}
.mobile-panel .cta-row{flex-direction:column;align-items:stretch;}
.mobile-panel .btn{width:100%;}

/* -------------------- Hero -------------------- */
.hero{
  position:relative;
  padding-top:clamp(3rem,2rem + 4vw,6rem);
  padding-bottom:clamp(4rem,3rem + 4vw,7rem);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,3vw,4rem);
  align-items:center;
}
.hero-copy .stat-row{display:flex;gap:2.2rem;margin-top:2.2rem;flex-wrap:wrap;}
.hero-copy .stat-row div strong{display:block;font-family:var(--font-display);font-size:1.6rem;color:var(--ink);}
.hero-copy .stat-row div span{font-size:.85rem;color:var(--ink-soft);}
.hero-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.1;
}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(38,49,45,0) 45%, rgba(38,49,45,.55) 100%);
}
.hero-badge{
  position:absolute;
  left:20px;bottom:20px;
  z-index:2;
  background:rgba(250,248,242,.95);
  backdrop-filter:blur(6px);
  border-radius:var(--radius-md);
  padding:14px 18px;
  display:flex;align-items:center;gap:12px;
  box-shadow:var(--shadow-md);
}
.hero-badge .stars{color:var(--sand-dark);font-size:1rem;letter-spacing:2px;}
.hero-badge strong{display:block;font-family:var(--font-display);font-size:1.05rem;}
.hero-badge span{font-size:.78rem;color:var(--ink-soft);}
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:.35;
  z-index:-1;
}

/* -------------------- Sections -------------------- */
.section{padding-block:clamp(4rem,3rem + 4vw,7rem);}
.section-alt{background:var(--bg-alt);}
.section-dark{background:var(--ink);color:var(--bg);}
.section-dark p{color:#C9D0CB;}
.section-dark h2,.section-dark h3{color:var(--bg);}
.section-dark .eyebrow{color:var(--sand);}
.section-dark .eyebrow::before{background:var(--sand);}

.section-head{max-width:700px;margin-bottom:3rem;}
.section-head.center{margin-inline:auto;text-align:center;}

.wave-divider{display:block;width:100%;line-height:0;}
.wave-divider svg{width:100%;height:auto;display:block;}

/* -------------------- Cards / grids -------------------- */
.grid{display:grid;gap:1.8rem;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:2.2rem 2rem;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  height:100%;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.icon-badge{
  width:56px;height:56px;
  border-radius:16px;
  background:var(--sand-light);
  color:var(--ocean-dark);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.2rem;
}
.icon-badge svg{width:28px;height:28px;}
.card h3{margin-bottom:.5rem;}
.card p{margin-bottom:1.1rem;}
.card-link{font-weight:700;font-size:.92rem;color:var(--ocean-dark);display:inline-flex;align-items:center;gap:.4em;}
.card-link svg{width:1em;height:1em;transition:transform .3s var(--ease);}
.card-link:hover svg{transform:translateX(4px);}

/* -------------------- Service block (image + text) -------------------- */
.service-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,4vw,5rem);
  align-items:center;
  padding-block:clamp(3.5rem,3rem + 3vw,6rem);
  border-bottom:1px solid var(--line);
}
.service-block:last-child{border-bottom:none;}
.service-block.reverse .service-media{order:2;}
.service-block.reverse .service-copy{order:1;}
.service-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  position:relative;
  aspect-ratio:5/4;
}
.service-media img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease);}
.service-media:hover img{transform:scale(1.05);}
.service-media.panel{
  background:linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  display:flex;align-items:center;justify-content:center;
}
.service-media.panel svg{width:38%;height:38%;color:rgba(38,49,45,.28);}
.service-num{
  font-family:var(--font-display);
  font-size:.95rem;font-weight:700;
  color:var(--sand-dark);
  letter-spacing:.08em;
}
.service-list{margin-top:1.4rem;display:flex;flex-direction:column;gap:.7rem;}
.service-list li{display:flex;gap:.7em;align-items:flex-start;font-weight:600;color:var(--ink);}
.service-list svg{width:1.2em;height:1.2em;flex:none;color:var(--ocean-dark);margin-top:.15em;}

/* -------------------- Testimonial -------------------- */
.testimonial{
  max-width:820px;margin-inline:auto;text-align:center;
}
.testimonial blockquote{
  font-family:var(--font-display);
  font-size:clamp(1.4rem,1.2rem + 1.2vw,2.1rem);
  font-weight:500;
  line-height:1.4;
  margin:0 0 1.6rem;
  color:var(--ink);
}
.section-dark .testimonial blockquote{color:var(--bg);}
.testimonial-quote-mark{
  font-family:var(--font-display);
  font-size:5rem;
  color:var(--sand);
  line-height:.6;
  display:block;
  margin-bottom:.6rem;
}
.testimonial-author{display:flex;align-items:center;justify-content:center;gap:.8rem;}
.testimonial-author .avatar{
  width:46px;height:46px;border-radius:50%;
  background:var(--sand);
  color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;
}
.testimonial-author strong{display:block;font-size:.95rem;}
.testimonial-author span{font-size:.82rem;color:var(--ink-soft);}
.section-dark .testimonial-author span{color:#B9C1BB;}
.stars-row{color:var(--sand);letter-spacing:3px;margin-bottom:1rem;font-size:1.1rem;}

/* -------------------- Areas -------------------- */
.area-chip-row{display:flex;flex-wrap:wrap;gap:.7rem;}
.area-chip{
  padding:.6em 1.2em;
  border-radius:100px;
  background:var(--white);
  border:1px solid var(--line);
  font-weight:700;
  font-size:.88rem;
  display:inline-flex;align-items:center;gap:.5em;
  transition:all .3s var(--ease);
}
.area-chip svg{width:1em;height:1em;color:var(--ocean-dark);}
.area-chip:hover{background:var(--ink);color:var(--bg);border-color:var(--ink);}
.area-chip:hover svg{color:var(--sand);}

.area-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:1.8rem;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.area-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--sand);}
.area-card .pin{
  width:42px;height:42px;border-radius:12px;
  background:var(--sand-light);color:var(--ocean-dark);
  display:flex;align-items:center;justify-content:center;margin-bottom:1rem;
}
.area-card .pin svg{width:22px;height:22px;}

/* -------------------- Gallery -------------------- */
.gallery-filters{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:2.6rem;}
.filter-btn{
  padding:.6em 1.3em;
  border-radius:100px;
  background:var(--white);
  border:1px solid var(--line);
  font-weight:700;font-size:.9rem;
  transition:all .25s var(--ease);
}
.filter-btn.is-active,.filter-btn:hover{background:var(--ink);color:var(--bg);border-color:var(--ink);}

.masonry{
  columns:3 260px;
  column-gap:1.6rem;
}
.masonry .g-item{
  break-inside:avoid;
  margin-bottom:1.6rem;
  border-radius:var(--radius-md);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  background:var(--white);
}
.masonry .g-item img{width:100%;display:block;transition:transform .6s var(--ease);}
.masonry .g-item:hover img{transform:scale(1.06);}
.g-caption{
  position:absolute;left:0;right:0;bottom:0;
  padding:1.4rem 1.2rem 1rem;
  background:linear-gradient(180deg, transparent, rgba(38,49,45,.85));
  color:#fff;
  opacity:0;
  transform:translateY(8px);
  transition:all .35s var(--ease);
}
.g-item:hover .g-caption{opacity:1;transform:translateY(0);}
.g-caption strong{display:block;font-family:var(--font-display);font-size:1.05rem;}
.g-caption span{font-size:.78rem;opacity:.85;}

.g-item.panel-card{
  aspect-ratio:4/5;
  background:linear-gradient(150deg, var(--sand) 0%, var(--ocean) 130%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.6rem;
  color:var(--ink);
}
.g-item.panel-card svg{width:34px;height:34px;margin-bottom:.8rem;opacity:.7;}
.g-item.panel-card strong{font-family:var(--font-display);font-size:1.15rem;display:block;}
.g-item.panel-card span{font-size:.82rem;opacity:.75;}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;z-index:200;
  background:rgba(20,26,24,.92);
  display:flex;align-items:center;justify-content:center;
  padding:5vh 5vw;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open{opacity:1;visibility:visible;pointer-events:auto;}
.lightbox img{max-width:100%;max-height:88vh;border-radius:12px;box-shadow:var(--shadow-lg);}
.lightbox-close{
  position:absolute;top:24px;right:24px;
  width:48px;height:48px;border-radius:50%;
  background:var(--bg);color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
}

/* -------------------- CTA banner -------------------- */
.cta-banner{
  border-radius:var(--radius-lg);
  padding:clamp(2.5rem,3vw,4.5rem);
  background:linear-gradient(135deg, var(--ink) 0%, #1c2622 100%);
  color:var(--bg);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute;
  width:340px;height:340px;
  border-radius:50%;
  background:var(--sand);
  opacity:.15;
  right:-100px;top:-140px;
}
.cta-banner h2{color:var(--bg);max-width:520px;position:relative;}
.cta-banner p{color:#C9D0CB;position:relative;max-width:480px;}
.cta-banner .cta-row{position:relative;}

/* -------------------- Footer -------------------- */
.site-footer{background:var(--ink);color:#C9D0CB;padding-top:clamp(3.5rem,3rem + 3vw,5.5rem);}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2.5rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand img{height:40px;filter:invert(1) brightness(2.1);margin-bottom:1rem;}
.footer-brand p{color:#9BA69F;max-width:32ch;}
.footer-col h4{color:var(--bg);font-family:var(--font-body);font-size:.85rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:1.1rem;}
.footer-col ul{display:flex;flex-direction:column;gap:.65rem;}
.footer-col a{color:#C9D0CB;font-size:.94rem;transition:color .25s var(--ease);}
.footer-col a:hover{color:var(--sand);}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{background:var(--sand);color:var(--ink);}
.footer-social svg{width:18px;height:18px;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-block:1.6rem;
  font-size:.82rem;color:#8B968F;
  flex-wrap:wrap;gap:.8rem;
}
.footer-bottom a{color:#8B968F;}
.footer-bottom a:hover{color:var(--sand);}

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero{
  padding-top:clamp(3.5rem,3rem + 3vw,6rem);
  padding-bottom:clamp(3rem,2.5rem + 2vw,4.5rem);
  background:var(--bg-alt);
  position:relative;
  overflow:hidden;
}
.breadcrumb{display:flex;align-items:center;gap:.5em;font-size:.85rem;font-weight:600;color:var(--ink-soft);margin-bottom:1.4rem;}
.breadcrumb a:hover{color:var(--ink);}
.page-hero h1{max-width:780px;}
.page-hero .lede{margin-top:1rem;}

/* -------------------- Reveal animation -------------------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in-view{opacity:1;transform:translateY(0);}
.reveal-stagger > *{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-stagger.in-view > *{opacity:1;transform:translateY(0);}
.reveal-stagger.in-view > *:nth-child(1){transition-delay:.05s;}
.reveal-stagger.in-view > *:nth-child(2){transition-delay:.15s;}
.reveal-stagger.in-view > *:nth-child(3){transition-delay:.25s;}
.reveal-stagger.in-view > *:nth-child(4){transition-delay:.35s;}
.reveal-stagger.in-view > *:nth-child(5){transition-delay:.45s;}
.reveal-stagger.in-view > *:nth-child(6){transition-delay:.55s;}
.reveal-stagger.in-view > *:nth-child(7){transition-delay:.65s;}

/* -------------------- Contact page -------------------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,4vw,4rem);align-items:start;}
.contact-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:clamp(1.8rem,2vw,2.6rem);
  box-shadow:var(--shadow-sm);
}
.contact-method{
  display:flex;align-items:center;gap:1.1rem;
  padding:1.2rem 0;
  border-bottom:1px solid var(--line);
  flex-wrap:wrap;
}
.contact-method:last-child{border-bottom:none;}
.contact-method .icon-badge{margin-bottom:0;flex:none;}
.contact-method-text{flex:1 1 180px;min-width:0;}
.contact-method strong{display:block;font-size:1.1rem;overflow-wrap:anywhere;}
.contact-method span{font-size:.88rem;color:var(--ink-soft);}
.contact-method .btn{margin-left:auto;flex:none;}
@media (max-width:480px){
  .contact-method{flex-direction:column;align-items:flex-start;}
  .contact-method .btn{margin-left:0;width:100%;margin-top:.4rem;}
}
.hours-table{width:100%;border-collapse:collapse;margin-top:1rem;}
.hours-table td{padding:.5em 0;font-size:.92rem;border-bottom:1px dashed var(--line);}
.hours-table td:last-child{text-align:right;font-weight:700;color:var(--ink);}

/* -------------------- FAQ (accordion, used on contact) -------------------- */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
  padding:1.4rem 0;
  background:none;border:none;
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:600;
  color:var(--ink);
  text-align:left;
}
.faq-q svg{flex:none;width:22px;height:22px;transition:transform .35s var(--ease);color:var(--ocean-dark);}
.faq-item.is-open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.faq-a p{padding-bottom:1.4rem;margin:0;}

/* -------------------- Misc -------------------- */
.badge-row{display:flex;flex-wrap:wrap;gap:1.6rem;align-items:center;}
.badge-row .badge{display:flex;align-items:center;gap:.6em;font-weight:700;font-size:.9rem;color:var(--ink-soft);}
.badge-row svg{width:1.3em;height:1.3em;color:var(--sand-dark);}
.divider-dot{width:5px;height:5px;border-radius:50%;background:var(--line);}

.back-to-top{
  position:fixed;right:22px;bottom:22px;z-index:80;
  width:48px;height:48px;border-radius:50%;
  background:var(--ink);color:var(--bg);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:all .3s var(--ease);
}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--sand);color:var(--ink);}

.skip-link{
  position:absolute;left:-999px;top:0;
  background:var(--ink);color:var(--bg);
  padding:.8em 1.2em;z-index:999;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:1080px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:960px){
  .main-nav,.header-actions .btn-outline,.header-actions .call-chip{display:none;}
  .nav-toggle{display:flex;}
  .mobile-panel{display:block;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{order:-1;}
  .service-block,.service-block.reverse{grid-template-columns:1fr;}
  .service-block.reverse .service-media,.service-block.reverse .service-copy{order:initial;}
  .contact-grid{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr 1fr;}
}
@media (max-width:720px){
  .grid-3,.grid-2,.grid-4{grid-template-columns:1fr;}
  .masonry{columns:2 200px;}
  .cta-banner{flex-direction:column;align-items:flex-start;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
}
@media (max-width:520px){
  .masonry{columns:1;}
  .footer-grid{grid-template-columns:1fr;}
  .header-actions .btn{padding:.65em 1em;font-size:.85rem;}
  .brand-name{display:none;}
}
