/* =========================================================
   THISTLE & STONE LANDSCAPE CO. — DESIGN SYSTEM
   Chicago, IL — Design/Build, Maintenance & Snow Management
   Palette: pine ink, Chicago limestone, prairie gold, brick red,
   Lake Michigan steel. Display type: Big Shoulders — the
   Chicago-born condensed face named for Sandburg's "City of
   the Big Shoulders."
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Work+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* ---- Color tokens ---- */
  --ink:            #16302A;   /* deep pine — nav, footer, dark bands */
  --ink-2:          #1E4038;   /* lighter pine for gradients/panels */
  --ink-3:          #0F241F;
  --stone:          #D9D3C4;   /* Chicago limestone */
  --stone-dark:     #C3BBA6;
  --paper:          #F1EEE4;   /* warm limestone paper background */
  --paper-2:        #E7E1CF;
  --white:          #FFFFFF;
  --gold:           #B9862E;   /* prairie / bluestem gold — primary accent */
  --gold-dark:      #93691F;
  --gold-light:     #D9A94F;
  --brick:          #8C3A2B;   /* Chicago common-brick red — CTA/urgency */
  --brick-dark:     #712E22;
  --steel:          #3B5A6B;   /* Lake Michigan steel blue — secondary */
  --steel-light:    #6C8C9B;
  --ivy:            #3F5D45;   /* muted leaf green — supporting accent */
  --text:           #1B241E;
  --text-soft:      #4E594F;
  --line:           #D7CFB9;
  --line-dark:      rgba(241,238,228,0.16);
  --success:        #3F6B4A;
  --shadow-sm:      0 1px 3px rgba(15,36,31,0.10), 0 1px 2px rgba(15,36,31,0.08);
  --shadow-md:      0 10px 28px rgba(15,36,31,0.14);
  --shadow-lg:      0 24px 56px rgba(15,36,31,0.22);
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container: 1220px;

  /* ---- Type ---- */
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* ---- Season tokens (overridden by [data-season]) ---- */
  --season-a: #3F5D45;
  --season-b: #16302A;
  --season-glow: #B9862E;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
html, body{ max-width:100%; overflow-x:hidden; }
body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; font-size:1rem; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:800; line-height:0.98; color: var(--ink); letter-spacing: 0.002em; text-transform: none; }
svg{ display:block; flex-shrink:0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link{
  position:absolute; left:-999px; top:0; background: var(--ink); color: var(--white);
  padding: 12px 20px; z-index:999; border-radius:0 0 8px 0; font-weight:700;
}
.skip-link:focus{ left:0; }

/* ---------- Layout helpers ---------- */
.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
.container-narrow{ max-width: 780px; margin:0 auto; padding:0 24px; }
section{ position:relative; }
.section-pad{ padding: 100px 0; }
@media (max-width: 768px){ .section-pad{ padding: 64px 0; } }
@media (max-width: 480px){ .section-pad{ padding: 48px 0; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size:0.76rem; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase; color: var(--gold-dark);
  margin-bottom: 16px;
}
.eyebrow::before{ content:''; width:26px; height:2px; background: var(--gold); flex-shrink:0; }
.eyebrow.on-dark{ color: var(--gold-light); }

.section-head{ max-width: 660px; margin-bottom: 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head h2{ font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom:14px; text-transform:uppercase; }
.section-head p{ color: var(--text-soft); font-size:1.1rem; font-family: var(--font-body); font-weight:400; }
@media (max-width: 480px){
  .section-head{ margin-bottom:36px; }
  .section-head p{ font-size:1rem; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding: 15px 28px; border-radius: var(--radius-sm); font-weight:700;
  font-size:0.96rem; border:2px solid transparent; font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn-primary{ background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-urgent{ background: var(--brick); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-urgent:hover{ background: var(--brick-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ background:transparent; border-color: currentColor; color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-outline.on-dark{ color: var(--white); }
.btn-outline.on-dark:hover{ background: var(--white); color: var(--ink); }
.btn-ghost{ background:transparent; color: var(--gold-dark); padding:10px 4px; }
.btn-ghost:hover{ color: var(--gold); text-decoration:underline; }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; }
@media (max-width: 480px){
  .btn{ padding:14px 22px; font-size:0.92rem; width:100%; }
  .hero-actions .btn, .page-hero .hero-actions .btn{ width:100%; }
}

/* ---------- Top bar ---------- */
.topbar{ background: var(--ink-3); color: var(--stone); font-size:0.84rem; }
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding: 9px 24px; flex-wrap:wrap; gap:8px; }
.topbar-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; row-gap:6px; }
.topbar-left span{ display:inline-flex; align-items:center; gap:7px; }
.topbar a{ color: var(--white); font-weight:600; }
.topbar-left svg{ width:14px; height:14px; color: var(--gold-light); flex-shrink:0; }
.topbar-social{ display:flex; gap:14px; flex-shrink:0; }
.topbar-social a{ color: var(--stone); transition: color .15s; }
.topbar-social a:hover{ color: var(--gold-light); }
.topbar-social svg{ width:15px; height:15px; }
@media (max-width: 720px){
  .topbar .container{ justify-content:center; text-align:center; }
  .topbar-left{ justify-content:center; gap:14px; }
  .topbar-social{ display:none; }
}
@media (max-width: 480px){
  .topbar{ font-size:0.76rem; }
  .topbar-left{ gap:10px 14px; }
  .topbar-left span:nth-child(3){ display:none; } /* hide the 24/7 dispatch line on tiny screens, still on interior pages via CTA */
}

/* ---------- Header / Nav ---------- */
.site-header{ background: var(--paper); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:500; }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.brand-mark{ width:46px; height:46px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1; min-width:0; }
.brand-text strong{ font-family: var(--font-display); font-size:1.5rem; letter-spacing:0.01em; text-transform:uppercase; font-weight:800; white-space:nowrap; }
.brand-text span{ font-family: var(--font-mono); font-size:0.65rem; letter-spacing:0.09em; color: var(--gold-dark); text-transform:uppercase; white-space:nowrap; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav > ul{ display:flex; align-items:center; gap:2px; }
.main-nav a.nav-link{ display:block; padding:10px 14px; font-weight:600; font-size:0.95rem; color: var(--ink); border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.main-nav a.nav-link:hover{ color: var(--gold-dark); background: var(--paper-2); }
.main-nav a.nav-link.current{ color: var(--gold-dark); }

.has-dropdown{ position:relative; }
.has-dropdown > button.nav-link{ display:flex; align-items:center; gap:5px; background:none; border:none; color: var(--ink); padding:10px 14px; font-weight:600; font-size:0.95rem; border-radius: var(--radius-sm); font-family:inherit; }
.has-dropdown > button.nav-link:hover{ color: var(--gold-dark); background: var(--paper-2); }
.has-dropdown > button svg{ width:14px; height:14px; transition: transform .18s; flex-shrink:0; }
.has-dropdown[data-open="true"] > button svg{ transform: rotate(180deg); }
.dropdown-panel{
  position:absolute; top:calc(100% + 8px); left:0; background: var(--white); border:1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding:10px; min-width:300px;
  display:grid; gap:2px; opacity:0; visibility:hidden; transform:translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.has-dropdown[data-open="true"] .dropdown-panel{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-panel a{ display:flex; align-items:center; gap:12px; padding:10px 12px; border-radius: var(--radius-sm); color: var(--ink); font-weight:600; font-size:0.92rem; }
.dropdown-panel a:hover{ background: var(--paper-2); color: var(--gold-dark); }
.dropdown-panel a svg{ width:18px; height:18px; color: var(--gold); flex-shrink:0; }

.header-cta{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-phone{ display:flex; flex-direction:column; align-items:flex-end; }
.header-phone small{ font-size:0.7rem; color: var(--text-soft); text-transform:uppercase; letter-spacing:0.06em; }
.header-phone a{ font-family: var(--font-mono); font-weight:600; font-size:1.02rem; color: var(--ink); }
.nav-toggle{ display:none; background:none; border:1px solid var(--line); border-radius: var(--radius-sm); padding:9px; flex-shrink:0; }
.nav-toggle svg{ width:22px; height:22px; }

@media (max-width: 980px){
  .main-nav{ position:fixed; inset:0 0 0 auto; width:min(360px,88vw); background: var(--paper); flex-direction:column; align-items:stretch; padding:90px 24px 24px; transform:translateX(100%); transition: transform .25s ease; z-index:600; overflow-y:auto; box-shadow: var(--shadow-lg); }
  .main-nav[data-mobile-open="true"]{ transform:translateX(0); }
  .main-nav > ul{ flex-direction:column; align-items:stretch; gap:2px; width:100%; }
  .main-nav a.nav-link, .has-dropdown > button.nav-link{ padding:14px 10px; font-size:1.05rem; width:100%; justify-content:space-between; }
  .has-dropdown{ width:100%; }
  .dropdown-panel{ position:static; box-shadow:none; border:none; opacity:1; visibility:visible; transform:none; display:none; padding-left:10px; min-width:0; width:100%; }
  .has-dropdown[data-open="true"] .dropdown-panel{ display:grid; }
  .dropdown-panel a{ white-space:normal; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
  .nav-scrim{ display:none; position:fixed; inset:0; background: rgba(15,36,31,0.5); z-index:550; }
  .nav-scrim[data-show="true"]{ display:block; }
  .header-phone small{ display:none; }
}
@media (max-width: 560px){
  .brand-text strong{ font-size:1.15rem; }
  .brand-text span{ font-size:0.6rem; }
  .brand-mark{ width:38px; height:38px; }
  .header-cta .btn-primary span{ display:none; }
  .header-cta .btn-primary{ padding:12px; }
  .header-cta{ gap:10px; }
  .main-nav{ width:min(320px,86vw); padding:84px 20px 20px; }
}
@media (max-width: 380px){
  .brand-text span{ display:none; }
}

/* ---------- Seasonal hero (signature element) ---------- */
.hero{
  position:relative; overflow:hidden; color: var(--white);
  background: linear-gradient(150deg, var(--season-a) 0%, var(--season-b) 62%);
  transition: background 0.6s ease;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M0 340 L40 300 L70 330 L110 260 L150 300 L190 240 L230 290 L270 250 L310 300 L340 270 L400 320 L400 400 L0 400 Z' fill='%23000' fill-opacity='0.14'/%3E%3C/svg%3E");
  background-size: 900px 340px; background-repeat: repeat-x; background-position: bottom;
  opacity:0.5; pointer-events:none;
}
.season-toggle{ display:flex; flex-wrap:wrap; gap:4px; background: rgba(255,255,255,0.1); border:1px solid var(--line-dark); padding:5px; border-radius:100px; margin-bottom:28px; position:relative; z-index:2; max-width:100%; }
.season-btn{ background:none; border:none; color: rgba(241,238,228,0.75); font-family: var(--font-mono); font-size:0.76rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; padding:9px 16px; border-radius:100px; display:flex; align-items:center; justify-content:center; gap:6px; transition: color .15s, background .15s; flex:1 1 auto; white-space:nowrap; }
.season-btn svg{ width:14px; height:14px; flex-shrink:0; }
.season-btn:hover{ color: var(--white); }
.season-btn[aria-pressed="true"]{ background: var(--white); color: var(--ink); }
.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center; padding:52px 0 100px; }
@media (max-width: 980px){ .hero-grid{ grid-template-columns:1fr; padding:36px 0 48px; } }
.hero-badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.hero-badge{ display:inline-flex; align-items:center; gap:7px; font-family: var(--font-mono); font-size:0.72rem; letter-spacing:0.04em; text-transform:uppercase; background: rgba(255,255,255,0.1); border:1px solid var(--line-dark); padding:7px 12px; border-radius:100px; }
.hero-badge svg{ width:13px; height:13px; color: var(--gold-light); flex-shrink:0; }
.hero h1{ color: var(--white); font-size: clamp(2.6rem, 5.4vw, 4.6rem); text-transform:uppercase; margin-bottom:20px; max-width: 640px; }
.hero p.lede{ font-size:1.16rem; color: rgba(241,238,228,0.86); max-width:520px; margin-bottom:30px; font-weight:400; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
.hero-chip-row{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-chip{ display:flex; align-items:center; gap:10px; background: rgba(255,255,255,0.08); border:1px solid var(--line-dark); border-radius: var(--radius-md); padding:12px 16px; font-size:0.86rem; font-weight:600; }
.hero-chip svg{ width:18px; height:18px; color: var(--gold-light); flex-shrink:0; }

.hero-art{ position:relative; z-index:2; }
.hero-art .art-card{ background: var(--paper); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); border:6px solid rgba(255,255,255,0.1); }
.hero-art img{ width:100%; height:440px; object-fit:cover; }
.hero-art .float-card{ position:absolute; background: var(--white); color: var(--ink); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding:16px 18px; display:flex; align-items:center; gap:12px; max-width:250px; }
.hero-art .float-1{ bottom:-24px; left:-24px; }
.hero-art .float-2{ top:-20px; right:-16px; }
.float-card .icon-wrap{ background: var(--paper-2); border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.float-card .icon-wrap svg{ width:22px; height:22px; color: var(--gold-dark); }
.float-card strong{ display:block; font-size:0.95rem; font-family: var(--font-body); font-weight:700; }
.float-card span{ font-size:0.78rem; color: var(--text-soft); }
@media (max-width: 640px){ .hero-art .float-card{ display:none; } }
@media (max-width: 640px){ .hero-art img{ height:300px; border-radius: var(--radius-md); } }
@media (max-width: 480px){
  .season-toggle{ width:100%; justify-content:space-between; }
  .season-btn{ padding:9px 6px; font-size:0.66rem; gap:4px; }
  .season-btn svg{ width:12px; height:12px; }
  .hero-grid{ padding:28px 0 40px; gap:32px; }
  .hero p.lede{ font-size:1.02rem; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }
}

/* ---------- Urgent strip ---------- */
.urgent-strip{ background: var(--brick); color: var(--white); }
.urgent-strip .container{ display:flex; align-items:center; justify-content:center; gap:14px; padding:12px 24px; flex-wrap:wrap; text-align:center; font-size:0.92rem; }
.urgent-strip strong{ font-weight:800; }
.urgent-strip a.link-inline{ text-decoration:underline; font-weight:700; color: var(--white); }
@media (max-width: 480px){
  .urgent-strip .container{ font-size:0.84rem; padding:12px 20px; }
}

/* ---------- Trust bar ---------- */
.trust-bar{ background: var(--white); border-bottom:1px solid var(--line); padding:26px 0; }
.trust-bar .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.trust-item{ display:flex; align-items:center; gap:10px; color: var(--text-soft); font-weight:600; font-size:0.9rem; }
.trust-item svg{ width:20px; height:20px; color: var(--gold-dark); flex-shrink:0; }
@media (max-width: 640px){
  .trust-bar .container{ justify-content:flex-start; gap:16px 22px; }
  .trust-item{ font-size:0.84rem; }
}

/* ---------- Service cards ---------- */
.service-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media (max-width: 980px){ .service-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .service-grid{ grid-template-columns:1fr; gap:18px; } }
.service-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding:30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display:flex; flex-direction:column; height:100%; }
.service-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); border-color:transparent; }
.service-card .icon-badge{ width:54px; height:54px; border-radius: var(--radius-md); background: var(--paper-2); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.service-card .icon-badge svg{ width:27px; height:27px; color: var(--gold-dark); }
.service-card h3{ font-size:1.3rem; margin-bottom:10px; text-transform:uppercase; }
.service-card p{ color: var(--text-soft); font-size:0.95rem; margin-bottom:18px; flex-grow:1; }
.service-card .card-link{ display:inline-flex; align-items:center; gap:6px; font-weight:700; color: var(--gold-dark); font-size:0.9rem; }
.service-card .card-link svg{ width:16px; height:16px; transition: transform .15s; flex-shrink:0; }
.service-card:hover .card-link svg{ transform: translateX(4px); }
@media (max-width: 480px){
  .service-card{ padding:26px 22px; }
}

/* ---------- Process ---------- */
.process-list{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
@media (max-width: 980px){ .process-list{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .process-list{ grid-template-columns:1fr; gap:28px; } }
.process-item{ position:relative; padding-top:8px; }
.process-num{ font-family: var(--font-display); font-weight:800; font-size:1.5rem; color: var(--ink); background: var(--gold); width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.process-item h3{ font-size:1.15rem; margin-bottom:8px; text-transform:uppercase; }
.process-item p{ color: var(--text-soft); font-size:0.94rem; }

/* ---------- Dark band ---------- */
.band-dark{ background: var(--ink); color: var(--white); }
.band-dark .section-head h2{ color: var(--white); }
.band-dark .section-head p{ color: var(--stone); }

/* ---------- Stats ---------- */
.stats-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width: 768px){ .stats-strip{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px){ .stats-strip{ grid-template-columns: repeat(2,1fr); gap:12px; } }
.stat-item{ text-align:center; padding:20px; }
.stat-item strong{ display:block; font-family: var(--font-display); font-size:3rem; color: var(--gold-light); line-height:1; }
.stat-item span{ font-size:0.86rem; color: var(--stone); }
@media (max-width: 420px){
  .stat-item{ padding:12px 8px; }
  .stat-item strong{ font-size:2.2rem; }
  .stat-item span{ font-size:0.76rem; }
}

/* ---------- Testimonials ---------- */
.review-track-wrap{ position:relative; overflow:hidden; }
.review-track{ display:flex; gap:22px; transition: transform 0.45s ease; }
.review-card{ background: rgba(255,255,255,0.05); border:1px solid var(--line-dark); border-radius: var(--radius-lg); padding:28px; display:flex; flex-direction:column; gap:16px; flex: 0 0 calc(33.333% - 15px); }
@media (max-width: 980px){ .review-card{ flex-basis: calc(50% - 11px); } }
@media (max-width: 640px){ .review-card{ flex-basis:100%; padding:22px; } }
.stars{ display:flex; gap:3px; }
.stars svg{ width:16px; height:16px; color: var(--gold-light); }
.review-card p.quote{ color: var(--paper); font-size:0.98rem; line-height:1.65; }
.review-who{ display:flex; align-items:center; gap:12px; margin-top:auto; padding-top:10px; }
.review-avatar{ width:40px; height:40px; border-radius:50%; background: var(--gold); color: var(--ink); font-family: var(--font-display); font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.review-who strong{ font-size:0.9rem; display:block; }
.review-who span{ font-size:0.78rem; color: var(--stone); }
.review-controls{ display:flex; justify-content:center; gap:12px; margin-top:30px; }
.review-controls button{ width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,0.08); border:1px solid var(--line-dark); color: var(--white); display:flex; align-items:center; justify-content:center; transition: background .15s; flex-shrink:0; }
.review-controls button:hover{ background: var(--gold); color: var(--ink); }
.review-controls svg{ width:18px; height:18px; }

/* ---------- Gallery / Portfolio ---------- */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px; }
.filter-btn{ background: var(--white); border:1px solid var(--line); padding:9px 18px; border-radius:100px; font-weight:600; font-size:0.88rem; color: var(--text-soft); transition: all .15s; }
.filter-btn:hover{ border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active{ background: var(--ink); border-color: var(--ink); color: var(--white); }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns:1fr; gap:14px; } }
.gallery-item{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio:4/3; cursor:zoom-in; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item .gallery-overlay{ position:absolute; inset:0; background: linear-gradient(0deg, rgba(15,36,31,0.82) 0%, rgba(15,36,31,0) 55%); display:flex; flex-direction:column; justify-content:flex-end; padding:16px; opacity:0; transition: opacity .25s; }
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-overlay strong{ color: var(--white); font-family: var(--font-display); font-size:1.15rem; text-transform:uppercase; }
.gallery-overlay span{ color: var(--stone); font-size:0.8rem; font-family: var(--font-mono); }
.gallery-item .gallery-tag{ position:absolute; left:10px; top:10px; background: rgba(15,36,31,0.85); color: var(--white); font-size:0.68rem; font-weight:700; padding:5px 10px; border-radius:100px; font-family: var(--font-mono); letter-spacing:0.03em; text-transform:uppercase; }

.lightbox{ position:fixed; inset:0; background: rgba(15,36,31,0.94); z-index:1000; display:none; align-items:center; justify-content:center; padding:40px; flex-direction:column; gap:16px; }
.lightbox[data-open="true"]{ display:flex; }
.lightbox img{ max-width:92vw; max-height:78vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox figcaption{ color: var(--stone); font-family: var(--font-mono); font-size:0.85rem; text-align:center; }
.lightbox-close{ position:absolute; top:24px; right:24px; background: var(--white); border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; }
.lightbox-close svg{ width:20px; height:20px; }
@media (max-width: 480px){
  .lightbox{ padding:20px; }
  .lightbox-close{ top:14px; right:14px; width:38px; height:38px; }
}

/* ---------- CTA band ---------- */
.cta-band{ background: linear-gradient(120deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--ink); border-radius: var(--radius-lg); padding:56px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2{ color: var(--ink); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom:8px; text-transform:uppercase; }
.cta-band p{ color: rgba(22,48,42,0.82); }
.cta-band .btn-outline{ color: var(--ink); border-color: rgba(22,48,42,0.5); }
.cta-band .btn-outline:hover{ background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 640px){ .cta-band{ padding:34px 26px; } }
@media (max-width: 480px){
  .cta-band{ padding:28px 22px; flex-direction:column; align-items:flex-start; }
  .cta-band .btn-outline{ width:100%; text-align:center; justify-content:center; }
}

/* ---------- Instant estimate calculator (signature widget) ---------- */
.estimator{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow:hidden; display:grid; grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 860px){ .estimator{ grid-template-columns:1fr; } }
.estimator-form{ padding:36px; }
.estimator-form h3{ font-size:1.5rem; margin-bottom:6px; text-transform:uppercase; }
.estimator-form > p{ color: var(--text-soft); font-size:0.92rem; margin-bottom:24px; }
.estimator-field{ margin-bottom:20px; }
.estimator-field label{ display:block; font-weight:700; font-size:0.85rem; margin-bottom:9px; }
.chip-select{ display:flex; gap:8px; flex-wrap:wrap; }
.chip-option{ background: var(--paper); border:1.5px solid var(--line); padding:9px 15px; border-radius:100px; font-size:0.85rem; font-weight:600; color: var(--text-soft); transition: all .15s; }
.chip-option[aria-pressed="true"]{ background: var(--ink); border-color: var(--ink); color: var(--white); }
input[type="range"].size-range{ width:100%; accent-color: var(--gold-dark); }
.range-value{ font-family: var(--font-mono); font-weight:600; color: var(--gold-dark); font-size:0.9rem; margin-top:6px; }
.estimator-result{ background: var(--ink); color: var(--white); padding:36px; display:flex; flex-direction:column; justify-content:center; }
.estimator-result span.label{ font-family: var(--font-mono); font-size:0.74rem; text-transform:uppercase; letter-spacing:0.1em; color: var(--stone); }
.estimator-result strong.range{ display:block; font-family: var(--font-display); font-size:2.6rem; color: var(--gold-light); margin:10px 0 6px; line-height:1; word-break:break-word; }
.estimator-result p{ color: var(--stone); font-size:0.86rem; margin-bottom:22px; }
@media (max-width: 480px){
  .estimator-form, .estimator-result{ padding:26px 22px; }
  .estimator-result strong.range{ font-size:2.1rem; }
}

/* ---------- Forms ---------- */
.form-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding:34px; box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width: 560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:700; font-size:0.86rem; margin-bottom:7px; }
.field .req{ color: var(--brick); }
.field input, .field textarea, .field select{ width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); transition: border-color .15s, background .15s; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--gold); background: var(--white); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }
.field small.hint{ display:block; margin-top:6px; color: var(--text-soft); font-size:0.8rem; }
.field-error{ color: var(--brick); font-size:0.8rem; margin-top:6px; display:none; }
.field.invalid input, .field.invalid textarea, .field.invalid select{ border-color: var(--brick); }
.field.invalid .field-error{ display:block; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; margin-bottom:20px; }
.checkbox-row input{ width:auto; margin-top:4px; flex-shrink:0; }
.checkbox-row label{ font-weight:500; font-size:0.87rem; color: var(--text-soft); }
.form-status{ margin-top:16px; padding:14px 16px; border-radius: var(--radius-sm); font-size:0.9rem; font-weight:600; display:none; }
.form-status.show{ display:block; }
.form-status.ok{ background:#E4EDE3; color: var(--success); }
.form-status.err{ background:#F5E4DF; color: var(--brick-dark); }
@media (max-width: 480px){
  .form-card{ padding:24px 20px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:18px 22px; background:none; border:none; text-align:left; font-family: var(--font-display); font-weight:700; font-size:1.12rem; color: var(--ink); text-transform:uppercase; }
.faq-q svg{ width:20px; height:20px; color: var(--gold-dark); flex-shrink:0; transition: transform .2s; }
.faq-item[data-open="true"] .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-item[data-open="true"] .faq-a{ max-height:400px; }
.faq-a-inner{ padding:0 22px 20px; color: var(--text-soft); font-size:0.96rem; }
@media (max-width: 480px){
  .faq-q{ padding:15px 16px; font-size:1rem; gap:10px; }
  .faq-a-inner{ padding:0 16px 16px; }
}

/* ---------- Sidebar (service pages) ---------- */
.service-layout{ display:grid; grid-template-columns: 2.1fr 1fr; gap:56px; align-items:start; }
@media (max-width: 900px){ .service-layout{ grid-template-columns:1fr; gap:36px; } }
.service-sidebar{ position:sticky; top:96px; display:flex; flex-direction:column; gap:20px; }
@media (max-width: 900px){ .service-sidebar{ position:static; } }
.sidebar-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding:24px; }
.sidebar-card h4{ font-size:1.05rem; margin-bottom:14px; text-transform:uppercase; }
.sidebar-list a{ display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-weight:600; font-size:0.92rem; color: var(--ink); }
.sidebar-list a:last-child{ border-bottom:none; }
.sidebar-list a:hover{ color: var(--gold-dark); }
.sidebar-list a.current{ color: var(--gold-dark); }
.sidebar-urgent{ background: var(--ink); color: var(--white); text-align:center; }
.sidebar-urgent p{ color: var(--stone); font-size:0.85rem; margin:8px 0 14px; }
.sidebar-urgent .phone-big{ font-family: var(--font-mono); font-size:1.3rem; font-weight:700; color: var(--gold-light); display:block; margin-bottom:14px; word-break:break-word; }

/* ---------- Contact page layout ---------- */
.contact-layout{ display:grid; grid-template-columns: 1.6fr 1fr; gap:40px; align-items:start; }
@media (max-width: 900px){ .contact-layout{ grid-template-columns:1fr; gap:32px; } }
.contact-sidebar{ display:flex; flex-direction:column; gap:20px; }
.contact-sidebar .sidebar-card ul.footer-contact li{ color: var(--text); }
.contact-sidebar .sidebar-card ul.footer-contact svg{ color: var(--gold-dark); }
.hours-list{ display:flex; flex-direction:column; gap:9px; }
.hours-list li{ display:flex; align-items:center; justify-content:space-between; font-size:0.9rem; color: var(--text-soft); padding-bottom:9px; border-bottom:1px solid var(--line); }
.hours-list li:last-child{ border-bottom:none; padding-bottom:0; }
.hours-list li span:last-child{ font-family: var(--font-mono); color: var(--ink); font-weight:600; }

.prose h2{ font-size:1.7rem; margin:42px 0 14px; text-transform:uppercase; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size:1.25rem; margin:26px 0 10px; text-transform:uppercase; }
.prose p{ margin-bottom:16px; color: var(--text); }
.prose ul{ margin:0 0 20px 0; display:flex; flex-direction:column; gap:10px; }
.prose ul li{ display:flex; align-items:flex-start; gap:10px; color: var(--text); }
.prose ul li svg{ width:18px; height:18px; color: var(--gold-dark); flex-shrink:0; margin-top:3px; }
.prose img{ border-radius: var(--radius-md); margin:24px 0; box-shadow: var(--shadow-sm); width:100%; height:auto; }
.table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; margin:20px 0 28px; border-radius: var(--radius-sm); }
.pricing-table{ width:100%; min-width:480px; border-collapse:collapse; font-size:0.94rem; margin:0; }
.pricing-table th, .pricing-table td{ text-align:left; padding:12px 14px; border-bottom:1px solid var(--line); white-space:nowrap; }
.pricing-table th{ background: var(--paper-2); font-family: var(--font-display); text-transform:uppercase; }
.pricing-table td:last-child, .pricing-table th:last-child{ text-align:right; font-family: var(--font-mono); font-weight:600; }
@media (max-width: 480px){
  .prose h2{ font-size:1.4rem; margin:32px 0 12px; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{ padding:18px 0; font-size:0.85rem; color: var(--text-soft); background: var(--paper-2); border-bottom:1px solid var(--line); overflow-x:auto; white-space:nowrap; }
.breadcrumb a{ color: var(--text-soft); font-weight:600; }
.breadcrumb a:hover{ color: var(--gold-dark); }
.breadcrumb span.sep{ margin:0 8px; color: var(--stone-dark); }
.breadcrumb span.current{ color: var(--ink); font-weight:600; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ background: linear-gradient(150deg, var(--ink-2) 0%, var(--ink-3) 100%); color: var(--white); padding:56px 0 64px; position:relative; overflow:hidden; }
.page-hero::before{ content:''; position:absolute; inset:0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M0 340 L40 300 L70 330 L110 260 L150 300 L190 240 L230 290 L270 250 L310 300 L340 270 L400 320 L400 400 L0 400 Z' fill='%23000' fill-opacity='0.16'/%3E%3C/svg%3E"); background-size:900px 340px; background-repeat:repeat-x; background-position:bottom; opacity:0.5; }
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width:760px; text-transform:uppercase; }
.page-hero p{ color: var(--stone); font-size:1.08rem; max-width:640px; margin-top:14px; }
.page-hero .hero-actions{ margin-top:26px; margin-bottom:0; }
@media (max-width: 640px){
  .page-hero{ padding:40px 0 44px; }
  .page-hero p{ font-size:0.98rem; }
}

/* ---------- Area / map ---------- */
.area-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
@media (max-width: 900px){ .area-grid{ grid-template-columns:1fr; gap:28px; } }
.area-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; margin-top:20px; }
@media (max-width: 400px){ .area-list{ grid-template-columns:1fr; gap:10px; } }
.area-list li{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:0.94rem; }
.area-list li svg{ width:16px; height:16px; color: var(--gold-dark); flex-shrink:0; }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:380px; border:0; display:block; }
@media (max-width: 640px){ .map-frame iframe{ height:280px; } }

/* ---------- Team ---------- */
.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
@media (max-width: 900px){ .team-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .team-grid{ grid-template-columns:1fr; gap:16px; } }
.team-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; text-align:center; }
.team-card img{ width:100%; height:230px; object-fit:cover; }
.team-card .team-info{ padding:18px; }
.team-card h3{ font-size:1.05rem; margin-bottom:4px; text-transform:uppercase; }
.team-card span.role{ color: var(--gold-dark); font-weight:600; font-size:0.82rem; font-family: var(--font-mono); }

/* ---------- Values ---------- */
.value-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
@media (max-width: 900px){ .value-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .value-grid{ grid-template-columns:1fr; gap:16px; } }
.value-card .icon-badge{ width:52px; height:52px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.value-card .icon-badge svg{ width:26px; height:26px; color: var(--gold-light); }
.value-card h3{ color: var(--white); font-size:1.05rem; margin-bottom:8px; text-transform:uppercase; }
.value-card p{ color: var(--stone); font-size:0.9rem; }

/* ---------- Timeline ---------- */
.timeline{ display:flex; flex-direction:column; gap:0; border-left:2px solid var(--line); margin-left:10px; }
.timeline-item{ position:relative; padding:0 0 34px 30px; }
.timeline-item::before{ content:''; position:absolute; left:-7px; top:2px; width:12px; height:12px; border-radius:50%; background: var(--gold); border:3px solid var(--paper); }
.timeline-item .yr{ font-family: var(--font-mono); font-weight:700; color: var(--gold-dark); font-size:0.85rem; }
.timeline-item h3{ font-size:1.15rem; margin:6px 0; text-transform:uppercase; }
.timeline-item p{ color: var(--text-soft); font-size:0.92rem; }
@media (max-width: 480px){
  .timeline{ margin-left:4px; }
  .timeline-item{ padding:0 0 26px 22px; }
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink-3); color: var(--stone); }
.footer-top{ padding:72px 0 48px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
@media (max-width: 900px){ .footer-top{ grid-template-columns:1fr 1fr; gap:32px 24px; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns:1fr; padding:48px 0 32px; gap:32px; } }
.footer-brand p{ margin:16px 0 20px; font-size:0.92rem; max-width:320px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.07); display:flex; align-items:center; justify-content:center; transition: background .15s; flex-shrink:0; }
.footer-social a:hover{ background: var(--gold); }
.footer-social svg{ width:17px; height:17px; color: var(--white); }
.footer-col h4{ color: var(--white); font-size:0.98rem; margin-bottom:18px; text-transform:uppercase; font-family: var(--font-display); }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:0.9rem; transition: color .15s; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:0.9rem; margin-bottom:14px; }
.footer-contact svg{ width:17px; height:17px; color: var(--gold-light); flex-shrink:0; margin-top:2px; }
.footer-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }
.footer-badges span{ font-family: var(--font-mono); font-size:0.68rem; border:1px solid var(--line-dark); padding:5px 9px; border-radius:5px; }
.footer-bottom{ border-top:1px solid var(--line-dark); padding:22px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.84rem; }
.footer-bottom a{ font-weight:600; color: var(--gold-light); }
.footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.footer-credit{ font-size:0.82rem; color: var(--stone); }
.footer-credit a{ color: var(--gold-light); font-weight:700; }
.footer-credit svg{ width:12px; height:12px; color: var(--brick); display:inline; vertical-align:-1px; }
@media (max-width: 560px){
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:14px; }
}

/* ---------- Misc ---------- */
.badge-pill{ display:inline-flex; align-items:center; gap:6px; background: var(--paper-2); color: var(--gold-dark); font-family: var(--font-mono); font-size:0.72rem; font-weight:600; padding:5px 11px; border-radius:100px; text-transform:uppercase; letter-spacing:0.04em; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width: 900px){ .two-col{ grid-template-columns:1fr; gap:32px; } }
.two-col img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width:100%; height:440px; object-fit:cover; }
@media (max-width: 640px){ .two-col img{ height:280px; border-radius: var(--radius-md); } }
.check-list{ display:flex; flex-direction:column; gap:12px; margin:22px 0; }
.check-list li{ display:flex; align-items:center; gap:10px; font-weight:600; }
.check-list li svg{ width:20px; height:20px; color: var(--ivy); flex-shrink:0; }

.back-to-top{ position:fixed; bottom:26px; right:26px; width:48px; height:48px; border-radius:50%; background: var(--ink); color: var(--white); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md); opacity:0; visibility:hidden; transition: opacity .2s, visibility .2s, transform .15s; z-index:400; }
.back-to-top.show{ opacity:1; visibility:visible; }
.back-to-top:hover{ transform: translateY(-3px); background: var(--gold-dark); }
.back-to-top svg{ width:20px; height:20px; }
@media (max-width: 720px){ .back-to-top{ bottom:74px; right:16px; width:42px; height:42px; } }

.sticky-call-mobile{ display:none; }
@media (max-width: 720px){
  .sticky-call-mobile{ display:flex; position:fixed; bottom:0; left:0; right:0; z-index:450; gap:0; box-shadow: 0 -6px 20px rgba(15,36,31,0.2); }
  .sticky-call-mobile a{ flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:15px 10px; font-weight:700; font-size:0.92rem; }
  .sticky-call-mobile a.call{ background: var(--brick); color: var(--white); }
  .sticky-call-mobile a.book{ background: var(--gold); color: var(--ink); }
  .sticky-call-mobile svg{ width:18px; height:18px; flex-shrink:0; }
  body{ padding-bottom:58px; }
}
@media (max-width: 360px){
  .sticky-call-mobile a{ font-size:0.8rem; padding:14px 6px; gap:5px; }
  .sticky-call-mobile svg{ width:16px; height:16px; }
}

.animate-in{ opacity:0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.animate-in.in-view{ opacity:1; transform: translateY(0); }

.not-found{ text-align:center; padding:120px 24px; }
.not-found h1{ font-size:6rem; color: var(--gold); }
.not-found p{ color: var(--text-soft); font-size:1.1rem; margin:14px 0 28px; }

/* ---------- Small-viewport container tightening ---------- */
@media (max-width: 480px){
  .container, .container-narrow{ padding:0 18px; }
}
@media (max-width: 360px){
  .container, .container-narrow{ padding:0 16px; }
}