/* ============================================================
   PRZYCHODNIA WETERYNARYJNA — premium standard
   Paleta: ciepła zieleń + krem + grafit
   Typo: Playfair Display + Inter
   ============================================================ */

:root{
  --moss: #2d5a3d;
  --moss-deep: #224630;
  --moss-soft: #4a7359;
  --moss-bg: rgba(45,90,61,.08);
  --cream: #faf5ea;
  --cream-2: #f3ecdb;
  --paper: #fefcf7;
  --ink: #1a1f1c;
  --ink-2: #2d332f;
  --muted: #6b6f6c;
  --line: #e7e0cf;

  --container: 1240px;
  --radius: 14px;
  --shadow-sm: 0 6px 24px rgba(20,30,22,.06);
  --shadow-md: 0 18px 48px rgba(20,30,22,.10);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ overflow-x:hidden; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: -.01em;
  overflow-wrap: break-word;
}
h1{ font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2{ font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3{ font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
em{ font-style: italic; color: var(--moss); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  display:inline-block;
  width: 30px; height: 1px;
  background: var(--moss);
}
.eyebrow--light{ color: rgba(255,255,255,.92); }
.eyebrow--light::before{ background: rgba(255,255,255,.85); }
.eyebrow--center{ justify-content:center; }
.eyebrow--center::after{
  content:"";
  display:inline-block;
  width: 30px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.eyebrow--center::before{ background: currentColor; opacity:.8; }

.lead{
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}

.section{ padding: 120px 0; }
.section--alt{ background: var(--cream); }

.section-head{ max-width: 720px; margin-bottom: 64px; }
.section-head--center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head--center .lead{ margin-left:auto; margin-right:auto; }

/* ===================== Buttons ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--primary{
  background: var(--moss);
  color: #fff;
}
.btn--primary:hover{ background: var(--moss-deep); transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{ background: rgba(255,255,255,.16); }
.btn--full{ width: 100%; }

/* ===================== Phone CTA pill ===================== */
.phone-cta{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.phone-cta:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }
.phone-cta-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  flex-shrink: 0;
}
.phone-cta-text{
  display:flex; flex-direction:column; line-height:1.1;
}
.phone-cta-text small{
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .82;
  margin-bottom: 3px;
}
.phone-cta-text strong{
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .03em;
}

.phone-cta--header{
  background: var(--moss-bg);
  border-color: rgba(45,90,61,.18);
  color: var(--ink);
  backdrop-filter: none;
}
.phone-cta--header:hover{ background: rgba(45,90,61,.14); }
.phone-cta--header .phone-cta-text small{ color: var(--muted); opacity: 1; }

/* ===================== Brand text block (new header structure) ===================== */
.brand-block{
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-block .brand-mark{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.brand-info{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.brand-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: inherit;
  letter-spacing: .01em;
}
.brand-address{
  position: relative;
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: inherit;
  padding-bottom: 4px;
  margin-top: 2px;
  width: fit-content;
  opacity: .92;
  transition: opacity .2s ease;
}
.brand-address::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  animation: addrPulse 1.8s infinite ease-in-out;
}
.brand-address:hover{ opacity: 1; }
@keyframes addrPulse{
  0%, 100% { opacity: .35; transform: scaleX(.6); transform-origin: left center; }
  50%      { opacity: 1;   transform: scaleX(1); }
}

/* ===================== Facebook icon button (replaces phone-cta in header) ===================== */
.fb-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease, color .25s ease;
  flex-shrink: 0;
}
.fb-link:hover{
  background: var(--moss);
  border-color: var(--moss);
  color: #fff;
  transform: translateY(-1px);
}
.fb-link svg{ width: 20px; height: 20px; }
.site-header.is-stuck .fb-link{
  background: var(--moss-bg);
  border-color: rgba(45,90,61,.18);
  color: var(--moss);
}
.site-header.is-stuck .fb-link:hover{
  background: var(--moss);
  color: #fff;
}

/* ===================== Header ===================== */
.site-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck{
  position: fixed;
  background: rgba(254,252,247,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(20,30,22,.06);
  padding: 14px 0;
}
.site-header.is-stuck .phone-cta--header{
  background: var(--moss-bg);
  border-color: rgba(45,90,61,.18);
  color: var(--ink);
}
.site-header.is-stuck .primary-nav a{ color: var(--ink); }
.site-header.is-stuck .brand{ color: var(--ink); }

.header-inner{
  display:flex;
  align-items:center;
  gap: 28px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  color: #fff;
  flex-shrink:0;
}
.brand--dark{ color: var(--cream); }
.brand-mark{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  flex-shrink: 0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text small{
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 2px;
}
.brand-text strong{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: .01em;
}

.primary-nav{
  display:flex;
  align-items:center;
  gap: 30px;
  margin-left: auto;
}
.primary-nav a{
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  transition: color .2s ease, opacity .2s ease;
  position: relative;
}
.primary-nav a::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.primary-nav a:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  backdrop-filter: blur(6px);
}
.nav-toggle span{
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 20px; }
.nav-toggle span:nth-child(3){ top: 26px; }
.site-header.is-stuck .nav-toggle{
  background: var(--moss-bg);
  border-color: rgba(45,90,61,.2);
}
.site-header.is-stuck .nav-toggle span{ background: var(--ink); }

body.nav-open .nav-toggle span:nth-child(1){ top: 20px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3){ top: 20px; transform: rotate(-45deg); }

/* ===================== HERO ===================== */
.hero{
  position: relative;
  min-height: 50vh;
  min-height: 50svh;
  display: flex;
  align-items: flex-start;
  padding: 110px 0 60px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-slider{
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slide{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
}
.hero-slide.is-active{
  opacity: 1;
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom{
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-overlay{
  position:absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(15,25,18,.55) 0%,
    rgba(15,25,18,.28) 35%,
    rgba(15,25,18,.78) 78%,
    rgba(15,25,18,.97) 100%);
}
.hero-side{
  position:absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15,25,18,.7) 0%, rgba(15,25,18,.25) 60%, rgba(15,25,18,.05) 100%);
}

.hero-content{ position: relative; z-index: 2; max-width: 880px; }
.hero h1{
  color: #fff;
  margin-bottom: 16px;
}
.hero h1 em{ color: #cfe5d6; }
.hero-lead{
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.9);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 24px;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-dots{
  position: absolute;
  left: 28px; right: 28px;
  bottom: 38px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hero-dot{
  display:inline-block;
  width: 36px; height: 2px;
  background: rgba(255,255,255,.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width .35s ease, background .25s ease;
}
.hero-dot.is-active{
  width: 56px;
  background: #fff;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 3;
  transition: background .25s ease;
}
.hero-arrow:hover{ background: rgba(255,255,255,.18); }
.hero-arrow--prev{ left: 28px; }
.hero-arrow--next{ right: 28px; }

/* ===================== Service card as full clickable link ===================== */
a.service-card{ display: block; color: inherit; text-decoration: none; }
a.service-card:focus-visible{ outline: 2px solid var(--moss); outline-offset: 4px; }

/* ===================== ABOUT ===================== */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img{
  position: relative;
}
.about-img img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}
.about-img-tag{
  position: absolute;
  right: -40px;
  bottom: -40px;
  background: var(--paper);
  padding: 28px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-tag-num{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--moss);
  font-weight: 500;
}
.about-tag-num small{ font-size: 1.6rem; }
.about-tag-text{
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.35;
}

.about-list{
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.about-list li{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.about-list li:last-child{ border-bottom: 0; }
.about-list li span{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ===================== SERVICES ===================== */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card{
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s ease;
}
.service-card::before{
  content:"";
  position:absolute; inset:0;
  background-position: inherit;
  background-size: cover;
  transition: transform .8s ease, filter .45s ease;
}
.service-card{
  background-color: var(--moss-deep);
}
.service-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,25,18,0) 30%, rgba(15,25,18,.55) 68%, rgba(15,25,18,.95) 100%);
  transition: background .35s ease;
}
.service-body{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}
.service-num{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: .92rem;
  letter-spacing: .04em;
  opacity: .92;
  margin-bottom: 10px;
}
.service-card h3{
  color: #fff;
  margin-bottom: 18px;
}
.service-link{
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: letter-spacing .3s ease, gap .3s ease;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.25);
  width: fit-content;
}
.service-card:hover{ transform: scale(1.02); }
.service-card:hover .service-overlay{
  background: linear-gradient(180deg, rgba(15,25,18,.15) 0%, rgba(15,25,18,.7) 60%, rgba(15,25,18,1) 100%);
}
.service-card:hover .service-link{ letter-spacing: .18em; gap: 12px; }

/* ===================== VALUES ===================== */
.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item{
  padding: 8px 36px;
  border-right: 1px solid var(--line);
}
.value-item:last-child{ border-right: 0; }
.value-item:first-child{ padding-left: 0; }
.value-item:last-child{ padding-right: 0; }
.value-num{
  display:block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--moss);
  margin-bottom: 14px;
  line-height: 1;
}
.value-item p{
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===================== REVIEWS ===================== */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
}
.review{
  margin: 0;
  position: relative;
  padding-top: 18px;
}
.review-quote{
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--moss);
  margin-bottom: 8px;
}
.review blockquote{
  margin: 0 0 24px;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.review figcaption{
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================== Google-style reviews ===================== */
.reviews-google{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gr-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 24px 22px;
  box-shadow: 0 2px 12px rgba(20,30,22,.04);
  display: flex;
  flex-direction: column;
}
.gr-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.gr-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gr-author{ display: flex; flex-direction: column; line-height: 1.2; }
.gr-name{ font-weight: 600; color: var(--ink); font-size: .98rem; }
.gr-meta{ font-size: .78rem; color: var(--muted); margin-top: 2px; }
.gr-stars{
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  color: #f5b400;
}
.gr-stars svg{ width: 16px; height: 16px; }
.gr-time{
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.gr-text{
  font-family: var(--ff-body);
  font-style: normal;
  font-size: .94rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.gr-google-logo{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.gr-google-logo svg{ width: 14px; height: 14px; }

.reviews-more{
  text-align: center;
  margin-top: 56px;
}
.reviews-more a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.reviews-more a:hover{
  background: var(--moss);
  border-color: var(--moss);
  color: #fff;
  transform: translateY(-1px);
}
.reviews-more svg{ width: 16px; height: 16px; }

/* ===================== Hours table (vertical) ===================== */
.hours-table{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  width: 100%;
}
.hours-table li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.hours-table li:last-child{ border-bottom: 0; }
.hours-day{
  font-weight: 500;
  color: var(--ink);
  text-transform: capitalize;
}
.hours-time{
  color: var(--moss);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.hours-time.closed{ color: var(--muted); font-weight: 400; font-style: italic; }
.hours-table li.is-today{
  background: var(--moss-bg);
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.hours-table li.is-today + li{ border-top: 1px solid var(--line); }

/* ===================== Where to find us (map section) ===================== */
.where{
  padding: 100px 0 110px;
  background: var(--paper);
}
.where-head{
  text-align: center;
  margin-bottom: 50px;
}
.where-map-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20,30,22,.08);
  background: var(--cream);
}
.where-map-wrap iframe{
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.where-map-actions{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ===================== Big phone CTA (pomoc-nagla page) ===================== */
.phone-bigbtn-section{
  padding: 0;
  background: var(--paper);
}
.phone-bigbtn-section .container{
  display: flex;
  justify-content: center;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
.phone-bigbtn{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 38px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 16px 48px rgba(45,90,61,.55), 0 0 0 0 rgba(45,90,61,.7);
  animation: phoneBigPulse 2s infinite cubic-bezier(.4,0,.6,1);
  transition: transform .25s ease, background .25s ease;
}
.phone-bigbtn:hover{
  transform: translateY(-2px);
  background: var(--moss-deep);
}
.phone-bigbtn-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  flex-shrink: 0;
}
.phone-bigbtn-icon svg{ width: 22px; height: 22px; }
.phone-bigbtn-text{ display: flex; flex-direction: column; line-height: 1.15; align-items: flex-start; }
.phone-bigbtn-text small{
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .82;
  margin-bottom: 4px;
}
.phone-bigbtn-text strong{ font-weight: 700; font-size: 1.28rem; letter-spacing: .04em; }
@keyframes phoneBigPulse{
  0%   { box-shadow: 0 16px 48px rgba(45,90,61,.55), 0 0 0 0 rgba(45,90,61,.55); }
  70%  { box-shadow: 0 16px 48px rgba(45,90,61,.55), 0 0 0 26px rgba(45,90,61,0); }
  100% { box-shadow: 0 16px 48px rgba(45,90,61,.55), 0 0 0 0 rgba(45,90,61,0); }
}

/* ===================== CTA BAND ===================== */
.cta-band{
  position: relative;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  text-align: center;
}
.cta-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(34,70,48,.88) 0%, rgba(20,40,28,.55) 100%),
    rgba(0,0,0,.35);
}
.cta-band-inner{ max-width: 760px; margin: 0 auto; }
.cta-band h2{ color: #fff; margin-bottom: 18px; }
.cta-band h2 em{ color: #cfe5d6; }
.cta-band p{ font-size: 1.08rem; color: rgba(255,255,255,.88); margin: 0 auto 36px; max-width: 50ch; }
.cta-actions{
  display:flex;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.contact-list{
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.contact-list li{
  display:flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child{ border-bottom: 0; }
.contact-ico{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--moss-bg);
  color: var(--moss);
  flex-shrink: 0;
}
.contact-list small{
  display:block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-list strong{ font-weight: 500; color: var(--ink); font-size: 1.02rem; line-height:1.45; }
.contact-list a strong{ transition: color .2s ease; }
.contact-list a:hover strong{ color: var(--moss); }

.contact-form{
  background: var(--cream);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-row{ margin-bottom: 20px; }
.form-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-grid-2 .form-row{ margin-bottom: 20px; }
.form-row label{
  display:block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input,
.form-row textarea{
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--moss);
  background: #fff;
}
.form-row textarea{ resize: vertical; min-height: 120px; }

.form-check{
  display:flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .86rem;
  color: var(--muted);
  margin: 8px 0 26px;
  cursor: pointer;
  line-height: 1.5;
}
.form-check input{
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--moss);
  width: 16px; height: 16px;
}

.form-consent{
  margin: 14px 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.form-status{
  margin: 12px 0 0;
  font-size: .92rem;
  color: var(--moss);
  min-height: 1.2em;
  text-align: center;
}
.form-status.is-error{ color: #b54040; }

/* ===================== FOOTER ===================== */
.site-footer{
  background: #14191a;
  color: #c5cbc6;
  padding: 84px 0 32px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
}
.footer-brand .brand{ margin-bottom: 18px; color: #fff; }
.footer-brand .brand-mark{ background: var(--moss); }
.footer-tagline{
  font-size: .94rem;
  line-height: 1.7;
  color: #8b948e;
  max-width: 38ch;
}
.footer-col h4{
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li{
  padding: 6px 0;
  font-size: .94rem;
  color: #c5cbc6;
  line-height: 1.55;
}
.footer-col a{ color: #c5cbc6; transition: color .2s ease; }
.footer-col a:hover{ color: #fff; }
.footer-emergency{
  margin-top: 12px !important;
  padding: 8px 14px !important;
  background: rgba(45,90,61,.3);
  border-radius: 8px;
  display: inline-block;
  font-size: .82rem !important;
  color: #cfe5d6 !important;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #6f7873;
  font-size: .82rem;
}
.footer-bottom a{ color: #c5cbc6; }
.footer-bottom a:hover{ color: #fff; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===================== FLOATING CALL CTA (mobile only) ===================== */
.floating-call{
  position: fixed;
  bottom: 24px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--moss);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(45,90,61,.55);
  animation: floatingCallPulse 2.2s infinite cubic-bezier(.4,0,.6,1);
  transition: transform .2s ease, background .2s ease;
}
.floating-call:hover,
.floating-call:active{
  transform: scale(1.08);
  background: var(--moss-deep);
  color: #fff;
}
.floating-call svg{ width: 28px; height: 28px; }
@keyframes floatingCallPulse{
  0%   { box-shadow: 0 8px 24px rgba(45,90,61,.55), 0 0 0 0 rgba(45,90,61,.55); }
  70%  { box-shadow: 0 8px 24px rgba(45,90,61,.55), 0 0 0 18px rgba(45,90,61,0); }
  100% { box-shadow: 0 8px 24px rgba(45,90,61,.55), 0 0 0 0 rgba(45,90,61,0); }
}
@media (max-width: 780px){
  .floating-call{ display: flex; }
}

/* ===================== SUBPAGE (page-header + content) ===================== */
.site-header.dark-nav{
  position: relative;
  background: var(--ink);
  padding: 18px 0;
}
.site-header.dark-nav .brand{ color: #fff; }
.site-header.dark-nav .brand-mark{ background: var(--moss); }
.site-header.dark-nav .primary-nav a{ color: rgba(255,255,255,.9); }
.site-header.dark-nav .phone-cta--header{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.site-header.dark-nav .phone-cta--header .phone-cta-text small{ color: rgba(255,255,255,.72); }
.site-header.dark-nav .nav-toggle{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.site-header.dark-nav .nav-toggle span{ background: #fff; }

.page-header{
  position: relative;
  padding: 120px 0 90px;
  background: var(--ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-header::before{
  content:"";
  position:absolute; inset: 0;
  z-index: -1;
  background: inherit;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.page-header::after{
  content:"";
  position:absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,30,22,.55) 0%, rgba(20,30,22,.85) 100%);
}
.page-header-inner{
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.breadcrumb{
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a{ color: inherit; transition: color .2s ease; }
.breadcrumb a:hover{ color: #fff; }
.breadcrumb-sep{ opacity: .55; }
.page-header h1{
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}
.page-header h1 em{ color: #cfe5d6; }
.page-header-lead{
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  line-height: 1.65;
  margin: 0 0 30px;
}
.page-header .phone-cta{ display: inline-flex; }

/* ----- Service detail content ----- */
.service-detail{ padding: 110px 0 100px; }
.service-detail-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail-text .eyebrow{ margin-bottom: 18px; }
.service-detail-text h2{ margin-bottom: 22px; }
.service-detail-text p{
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-detail-img{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-img img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.service-feats{
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.service-feats li{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-feats li:last-child{ border-bottom: 0; }
.service-feats .feat-num{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--moss);
  line-height: 1;
  margin-top: 2px;
}
.service-feats strong{
  display: block;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.service-feats p{
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.6;
}

/* ----- Process / how it works ----- */
.process{ padding: 110px 0; background: var(--cream); }
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step{
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.process-step .step-num{
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--moss);
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3{
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.process-step p{
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
  margin: 0;
}

/* ----- Related services ----- */
.related{ padding: 100px 0; }
.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card{
  position: relative;
  aspect-ratio: 16/11;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s ease;
}
.related-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,25,18,0) 30%, rgba(15,25,18,.85) 100%);
}
.related-card-body{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.related-card h3{
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.related-card .service-link{ padding-top: 12px; font-size: .72rem; }
.related-card:hover{ transform: scale(1.02); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px){
  .container{ padding: 0 24px; }
  .section{ padding: 90px 0; }
  .about-grid{ gap: 60px; }
  .about-img-tag{ right: -20px; bottom: -28px; padding: 22px 24px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .values-grid{ grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .value-item:nth-child(2){ border-right: 0; }
  .value-item:nth-child(3){ padding-left: 0; }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); gap: 48px 36px; }
  .contact-grid{ gap: 56px; }
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-grid > :nth-child(4){ grid-column: span 3; }

  .service-detail-grid{ gap: 60px; }
  .process-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .related-grid{ grid-template-columns: repeat(2, 1fr); }

  .reviews-google{ grid-template-columns: repeat(2, 1fr); }
  .where-map-wrap iframe{ height: 400px; }
}

@media (max-width: 900px){
  .primary-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100svh;
    width: 100%;
    margin-left: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform .35s ease;
    z-index: 49;
    padding: 80px 28px 28px;
  }
  body.nav-open .primary-nav{ transform: translateY(0); }
  .primary-nav a{
    color: var(--ink);
    font-size: 1.4rem;
    font-family: var(--ff-display);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-toggle{ display: block; }
  .phone-cta--header{ display: none; }
  .section{ padding: 80px 0; }

  .page-header{ padding: 80px 0 70px; }
  .service-detail{ padding: 80px 0; }
  .service-detail-grid{ grid-template-columns: 1fr; gap: 44px; }
  .service-detail-img img{ aspect-ratio: 16/11; }
  .process{ padding: 80px 0; }
  .related{ padding: 70px 0; }
  .where{ padding: 70px 0; }
  .where-map-wrap iframe{ height: 320px; }
  .brand-title{ font-size: .92rem; }
  .brand-address{ font-size: .68rem; letter-spacing: .12em; }
  .brand-block .brand-mark{ width: 42px; height: 42px; }
  .fb-link{ display: none; }
  .phone-bigbtn{ padding: 18px 26px; font-size: 1rem; gap: 12px; }
  .phone-bigbtn-icon{ width: 40px; height: 40px; }
  .phone-bigbtn-text strong{ font-size: 1.12rem; }

  .about-grid{ grid-template-columns: 1fr; gap: 60px; }
  .about-img-tag{ right: 16px; bottom: -32px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > :nth-child(4){ grid-column: span 2; }
}

@media (max-width: 680px){
  .container{ padding: 0 20px; }
  .section{ padding: 64px 0; }
  .section-head{ margin-bottom: 40px; }

  .page-header{ padding: 60px 0 56px; }
  .service-detail{ padding: 60px 0; }
  .process{ padding: 60px 0; }
  .process-grid{ grid-template-columns: 1fr; gap: 14px; }
  .process-step{ padding: 24px 22px; }
  .related{ padding: 56px 0; }
  .related-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 100px 0 70px; min-height: 56vh; min-height: 56svh; align-items: flex-start; }
  .hero h1{ font-size: clamp(2rem, 9.5vw, 2.6rem); }
  .reviews-google{ grid-template-columns: 1fr; gap: 20px; }
  .hero-lead{ font-size: 1rem; }
  .hero-actions{ width: 100%; }
  .hero-actions .btn{ width: 100%; padding: 16px 24px; letter-spacing: .12em; }
  .hero-actions .phone-cta{ width: 100%; justify-content: flex-start; }
  .hero-arrow{ display: none; }
  .hero-dots{ bottom: 26px; }

  .about-img-tag{
    position: static;
    margin: -28px auto 0;
    width: fit-content;
  }
  .about-img img{ aspect-ratio: 16/12; object-position: center center; }

  .services-grid{ grid-template-columns: 1fr; gap: 18px; }
  .service-card{ aspect-ratio: 16/11; }
  .service-body{ padding: 24px; }

  .values-grid{ grid-template-columns: 1fr; gap: 28px; }
  .value-item{ padding: 0; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .value-item:last-child{ border-bottom: 0; padding-bottom: 0; }

  .reviews-grid{ grid-template-columns: 1fr; gap: 40px; }
  .review-quote{ font-size: 3.6rem; }

  .cta-band{ padding: 80px 0; }
  .cta-actions{ flex-direction: column; align-items: stretch; }
  .cta-actions .btn{ width: 100%; }

  .form-grid-2{ grid-template-columns: 1fr; gap: 0; }
  .contact-form{ padding: 28px 22px; }

  .footer-grid{ grid-template-columns: 1fr; gap: 30px; margin-bottom: 36px; }
  .footer-grid > :nth-child(4){ grid-column: span 1; }
  .footer-bottom{ flex-direction: column; gap: 8px; }
}

@media (max-width: 380px){
  .brand-text small{ font-size: .54rem; }
  .brand-text strong{ font-size: 1.04rem; }
  .nav-toggle{ width: 38px; height: 38px; }
}
