/* Westchester Antiques and Collectibles — main stylesheet
   Palette: warm cream / tan cards / deep chocolate brown
   Type: Playfair Display (display headings) + Inter (everything else)
   Fonts are self-hosted from /fonts/ — no third-party render-blocking requests. */

/* ---------- Fonts (self-hosted, latin + latin-ext) ---------- */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400 800; font-display: swap; src: url(/fonts/playfair-latin-normal.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400 800; font-display: swap; src: url(/fonts/playfair-latin-ext-normal.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 700; font-display: swap; src: url(/fonts/playfair-latin-italic.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 700; font-display: swap; src: url(/fonts/playfair-latin-ext-italic.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap; src: url(/fonts/inter-latin-normal.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap; src: url(/fonts/inter-latin-ext-normal.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/inter-latin-italic.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --cream:     #F4F0E8;
  --paper:     #FBF8F3;
  --sand:      #EDE5DC;
  --card:      #E5DDD1;
  --card-hover:#DFD5C7;
  --badge:     #D8CDBD;
  --white:     #FFFFFF;

  --brown-900: #33200F;
  --brown-800: #472C17;
  --brown-700: #5C3A20;
  --brown-600: #74502F;

  --ink:       #2A2017;
  --body:      #63564A;
  --muted:     #63564A;
  --accent:    #6B4526;
  --line:      #DCD2C4;
  --line-dark: rgba(244, 240, 232, 0.22);

  --radius:    10px;
  --radius-lg: 20px;
  --pill:      999px;
  --shadow-soft: 0 1px 2px rgba(60, 40, 20, 0.04), 0 12px 32px rgba(60, 40, 20, 0.06);

  --font: "Inter", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  color-scheme: light;
}

* { 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: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brown-800); }

:focus-visible { outline: 2px solid var(--brown-700); outline-offset: 3px; border-radius: 3px; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.visually-hidden:focus {
  position: fixed; top: .75rem; left: .75rem; width: auto; height: auto;
  clip: auto; margin: 0; padding: .7rem 1.1rem; background: var(--brown-800);
  color: var(--cream); border-radius: var(--pill); z-index: 200;
}

.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.center { text-align: center; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { color: var(--ink); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

h3 {
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em;
}
h4 { font-size: .95rem; font-weight: 650; letter-spacing: .02em; }

.eyebrow {
  display: block; font-family: var(--font);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brown-600); margin-bottom: .85rem;
}
.section-dark .eyebrow, .panel-dark .eyebrow, .form-section .eyebrow { color: #C9A87C; }

.lede { font-size: 1.1rem; color: var(--body); max-width: 44em; }

.section-head { max-width: 46em; margin-bottom: 2.75rem; }
.section-head p { color: var(--body); margin-top: .85rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font); font-size: .97rem; font-weight: 600; line-height: 1;
  padding: .95rem 1.7rem; border-radius: var(--pill); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--brown-800); color: var(--cream); }
.btn-primary:hover { background: var(--brown-700); color: var(--cream); }

.btn-outline { background: transparent; color: var(--brown-800); border-color: var(--brown-800); }
.btn-outline:hover { background: var(--brown-800); color: var(--cream); }

/* light pill for use on dark brown backgrounds */
.btn-gold, .btn-light { background: var(--cream); color: var(--brown-800); }
.btn-gold:hover, .btn-light:hover { background: var(--white); color: var(--brown-900); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(244,240,232,.55); }
.btn-ghost:hover { background: rgba(244,240,232,.12); color: var(--cream); border-color: var(--cream); }

.btn-lg { font-size: 1.03rem; padding: 1.1rem 2.1rem; }

.link-strong, .row-go {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .92rem; font-weight: 600; color: var(--accent); text-decoration: none;
}
.link-strong:hover, a:hover .row-go { color: var(--brown-800); text-decoration: underline; }

.phone-inline { font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }
.phone-inline:hover { text-decoration: underline; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 232, .92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 68px; }

.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--ink); margin-right: auto;
}
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-text { display: block; line-height: 1.05; }
.brand-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.brand-sub { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brown-600); margin-top: .18rem; }

.site-nav ul { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.site-nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: .4rem 0; border-bottom: 1.5px solid transparent;
}
.site-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brown-800); color: var(--cream);
  font-size: .92rem; font-weight: 600; text-decoration: none;
  padding: .68rem 1.25rem; border-radius: var(--pill); white-space: nowrap;
  transition: background-color .18s ease;
}
.header-phone:hover { background: var(--brown-700); color: var(--cream); }
.header-phone svg { width: 15px; height: 15px; }

.header-call { display: none; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: .45rem; color: var(--ink); cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(5rem, 13vw, 9.5rem) 0 clamp(4.5rem, 11vw, 8rem);
  text-align: center;
  background: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(244,240,232,.97) 0%, rgba(244,240,232,.93) 42%, rgba(244,240,232,.99) 100%);
}
.hero .container { position: relative; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { display: block; font-style: italic; font-weight: 500; color: var(--accent); }
.hero .lede { margin: 0 auto 2.2rem; max-width: 34em; font-size: 1.08rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero .hero-ctas { justify-content: center; }
.hero-note { margin-top: 1rem; font-size: .82rem; color: var(--brown-600); letter-spacing: .01em; }

.page-hero {
  padding: clamp(3.2rem, 7vw, 5rem) 0 clamp(2.2rem, 5vw, 3.2rem);
  background: var(--cream);
}
.page-hero .lede { margin-top: 1rem; }
.page-hero .hero-ctas { margin-top: 1.8rem; }

/* ---------- Sections ---------- */

.section { padding: clamp(3.75rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--brown-800); color: rgba(244,240,232,.86); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p, .section-dark .lede, .section-dark .section-head p { color: rgba(244,240,232,.82); }
.section-dark a { color: var(--cream); }

/* ---------- Card grids (How We Help / Services) ---------- */

.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--card); border: 1px solid rgba(0,0,0,.045);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: background-color .18s ease, transform .18s ease;
}
a.card:hover { background: var(--card-hover); transform: translateY(-2px); }
.card p { font-size: .95rem; color: var(--body); }
.card .row-go { margin-top: auto; padding-top: .3rem; }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--badge); color: var(--brown-800); flex: none;
}
.card-icon svg { width: 20px; height: 20px; }

/* ---------- Category tiles (What We Buy) ---------- */

.cat-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(4, 1fr); }
.cat-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .85rem; text-align: center;
  background: var(--card); border: 1px solid rgba(0,0,0,.045);
  border-radius: var(--radius); padding: 1.6rem .9rem;
  text-decoration: none; color: var(--ink);
  transition: background-color .18s ease, transform .18s ease;
}
.cat-tile:hover { background: var(--card-hover); color: var(--ink); transform: translateY(-2px); }
.cat-tile span { font-size: .93rem; font-weight: 600; line-height: 1.3; }
.cat-tile .card-icon { width: 42px; height: 42px; }

/* ---------- Steps ---------- */

.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.step {
  background: var(--card); border: 1px solid rgba(0,0,0,.045);
  border-radius: var(--radius); padding: 1.75rem 1.6rem;
}
.step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--brown-700); margin-bottom: 1.4rem;
}
.step-icon svg { width: 24px; height: 24px; }
.step-num {
  display: block; font-family: var(--font);
  font-size: .7rem; font-weight: 650; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brown-600); margin-bottom: .5rem;
}
.step h3 { margin-bottom: .7rem; }
.step p { font-size: .95rem; }

/* ---------- Dark rounded panel (service area) ---------- */

.panel-dark {
  background: var(--brown-800); color: rgba(244,240,232,.85);
  border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}
.panel-dark h2 { color: var(--cream); margin-bottom: 1rem; }
.panel-dark > p { color: rgba(244,240,232,.82); max-width: 34em; margin: 0 auto; }
.panel-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(244,240,232,.12); color: var(--cream); margin-bottom: 1.4rem;
}
.panel-icon svg { width: 21px; height: 21px; }
.panel-note { margin-top: 2rem; font-style: italic; font-size: .93rem; color: rgba(244,240,232,.66); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center;
  padding: .5rem 1.15rem; border-radius: var(--pill);
  border: 1px solid rgba(244,240,232,.28); background: rgba(244,240,232,.05);
  font-size: .88rem; font-weight: 500; color: var(--cream); text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease;
}
a.chip:hover { background: rgba(244,240,232,.16); border-color: rgba(244,240,232,.55); color: var(--cream); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--brown-800); color: var(--cream); padding: clamp(3.25rem, 7vw, 5rem) 0; text-align: center; }
.cta-band h2 { color: var(--cream); margin-bottom: .9rem; }
.cta-band p { color: rgba(244,240,232,.82); max-width: 34em; margin: 0 auto 2rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Contact split ---------- */

.contact-split { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1.25fr 1fr; align-items: start; }
.contact-split h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); margin-bottom: .8rem; }

.contact-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.contact-row-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); color: var(--brown-800); flex: none;
}
.contact-row-icon svg { width: 19px; height: 19px; }
.contact-row-label { display: block; font-size: .85rem; font-weight: 600; color: var(--body); }
.contact-row-value { display: block; font-size: 1.05rem; font-weight: 650; color: var(--ink); text-decoration: none; }
a.contact-row-value:hover { color: var(--accent); }

/* ---------- Lead form ---------- */

.form-section { background: var(--paper); padding: clamp(3.5rem, 8vw, 6rem) 0; }
.form-section .section-head h2, .form-section .section-head p { color: inherit; }

.lead-form { max-width: 640px; }
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.lead-form label { display: block; font-size: .87rem; font-weight: 600; color: var(--ink); }
.lead-form label.full, .form-grid .full { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea {
  width: 100%; margin-top: .45rem;
  font-family: var(--font); font-size: .97rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: .8rem .95rem; font-weight: 400;
}
.lead-form textarea { min-height: 118px; resize: vertical; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #7D7266; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--brown-700); box-shadow: 0 0 0 3px rgba(92,58,32,.12); }
.lead-form input[type="file"] { padding: .6rem; background: var(--cream); }
.file-hint { display: block; margin-top: .4rem; font-size: .82rem; font-weight: 400; color: var(--body); }
.lead-form .btn { margin-top: 1.6rem; width: 100%; }
.reassure { margin-top: 1.3rem; font-size: .92rem; color: var(--body); }
.micro { margin-top: .75rem; font-size: .8rem; color: var(--brown-600); text-align: center; }
.hp { position: absolute; left: -5000px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .75rem; }
.faq-list details {
  background: var(--card); border: 1px solid rgba(0,0,0,.045);
  border-radius: var(--radius); padding: 0 1.4rem;
}
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; font-family: var(--font); font-size: 1.4rem;
  font-weight: 300; line-height: 1; color: var(--brown-600); transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div, .faq-list details > p { padding-bottom: 1.3rem; font-size: .97rem; color: var(--body); }
.faq-list details > div > p + p { margin-top: .8rem; }

/* ---------- Prose (guides, about, privacy) ---------- */

.prose { max-width: 44em; }
/* When .prose sits on the .container itself, keep the container's width so the text
   lines up with the page hero above it, and hold the reading measure on the children. */
.container.prose { max-width: 1120px; }
.container.prose > * { max-width: 44em; }
.prose h2 { margin: 2.6rem 0 1rem; }
.prose h3 { margin: 2rem 0 .7rem; font-size: 1.15rem; }
.prose p { margin-bottom: 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.3rem 1.3rem; }
.prose li { margin-bottom: .55rem; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose > :first-child { margin-top: 0; }

/* ---------- Legacy component styles (kept for inner pages) ---------- */

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; font-size: .92rem; font-weight: 600; color: var(--ink); }
.trust-item svg { width: 24px; height: 24px; color: var(--brown-600); }

.feature-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr 1fr; align-items: center; }
.feature-copy p { margin-top: 1rem; }
.art-frame { border-radius: var(--radius-lg); overflow: hidden; }
.art-frame img, .art-frame svg { border-radius: var(--radius-lg); }

.buy-list { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.buy-entry { display: block; text-decoration: none; color: inherit; background: var(--card); border: 1px solid rgba(0,0,0,.045); border-radius: var(--radius); padding: 1.6rem 1.5rem; transition: background-color .18s ease, transform .18s ease; }
.buy-entry:hover { background: var(--card-hover); transform: translateY(-2px); }
.buy-entry svg { width: 100%; max-width: 120px; color: var(--brown-600); margin-bottom: 1rem; }
.buy-entry h3 { margin-bottom: .4rem; }
.buy-entry p { font-size: .93rem; color: var(--body); }

.buy-cat { background: var(--card); border: 1px solid rgba(0,0,0,.045); border-radius: var(--radius); padding: 1.75rem 1.6rem; margin-bottom: 1.25rem; scroll-margin-top: 90px; }
.buy-cat h3 { margin-bottom: .6rem; }
.buy-cat .examples { margin-top: .9rem; font-size: .93rem; color: var(--body); }
.buy-cat .examples strong { color: var(--ink); }

.col-list { columns: 2; column-gap: 2.5rem; margin: 0 0 0 1.1rem; }
.col-list li { margin-bottom: .5rem; break-inside: avoid; }

.note-plain { font-size: .95rem; color: var(--body); max-width: 52em; }

.featured-svc { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; background: var(--card); border: 1px solid rgba(0,0,0,.045); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); text-decoration: none; color: inherit; margin-bottom: 1.5rem; transition: background-color .18s ease; }
.featured-svc:hover { background: var(--card-hover); }
.featured-svc h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.featured-svc p { color: var(--body); margin-bottom: 1rem; }
.fs-art svg { width: 100%; }
.fs-copy { display: block; }

.svc-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
.svc-item { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--card); border: 1px solid rgba(0,0,0,.045); border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: inherit; transition: background-color .18s ease, transform .18s ease; }
.svc-item:hover { background: var(--card-hover); transform: translateY(-2px); }
.svc-item > svg { width: 26px; height: 26px; flex: none; color: var(--brown-600); margin-top: .2rem; }
.svc-item h3 { margin-bottom: .35rem; }
.svc-item p { font-size: .93rem; color: var(--body); margin-bottom: .6rem; }

.rows { display: grid; gap: 1rem; }
.row { display: block; background: var(--card); border: 1px solid rgba(0,0,0,.045); border-radius: var(--radius); padding: 1.4rem 1.5rem; text-decoration: none; color: inherit; transition: background-color .18s ease, transform .18s ease; }
.row:hover { background: var(--card-hover); transform: translateY(-2px); }
.row h3 { margin-bottom: .4rem; }
.row p { font-size: .94rem; color: var(--body); margin-bottom: .6rem; }

.stat-split { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: auto 1fr; align-items: start; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 5.5rem); font-weight: 700; line-height: 1; color: var(--accent); }
.stat-label { display: block; margin-top: .5rem; font-size: .9rem; color: var(--body); max-width: 9em; }

.filter-wrap { position: relative; max-width: 460px; margin-bottom: 2rem; }
.filter-wrap svg { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); color: var(--brown-600); }
.filter-input { width: 100%; font-family: var(--font); font-size: .97rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--pill); padding: .8rem 1.1rem .8rem 2.8rem; }
.filter-input:focus { outline: none; border-color: var(--brown-700); box-shadow: 0 0 0 3px rgba(92,58,32,.12); }
.filter-empty { display: none; color: var(--body); font-style: italic; }
.filter-empty.visible { display: block; margin-bottom: 1.5rem; }

/* ---------- Scroll reveal (class is applied by main.js, never in markup) ---------- */

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
}

/* ---------- Breadcrumbs ---------- */

.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: .85rem 1.5rem; max-width: 1120px; margin: 0 auto; font-size: .83rem; color: var(--body); }
.breadcrumbs li::after { content: "/"; margin-left: .5rem; color: var(--line); }
.breadcrumbs li:last-child::after { content: none; }
.breadcrumbs a { color: var(--body); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- Footer ---------- */

.site-footer { background: var(--brown-900); color: rgba(244,240,232,.72); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: .7rem; }
.footer-brand p { max-width: 30em; margin-bottom: 1rem; }
.footer-phone { display: inline-block; font-weight: 600; color: var(--cream); text-decoration: none; }
.footer-phone:hover { text-decoration: underline; }
.site-footer h4 { color: var(--cream); margin-bottom: .9rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(244,240,232,.72); text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .82rem; color: rgba(244,240,232,.62); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }

/* ---------- Sticky mobile contact bar ---------- */

.sticky-bar { display: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .featured-svc { grid-template-columns: 1fr; }
  .fs-art { display: none; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  body.nav-open .site-nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: .75rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-soft);
  }
  body.nav-open .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  body.nav-open .site-nav li { border-bottom: 1px solid var(--line); }
  body.nav-open .site-nav li:last-child { border-bottom: 0; }
  body.nav-open .site-nav a { display: block; padding: .85rem 0; border-bottom: none; }
  .header-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .header-call {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--brown-800); color: var(--cream); font-size: .88rem; font-weight: 600;
    text-decoration: none; padding: .6rem 1.1rem; border-radius: var(--pill);
  }
  .feature-grid, .steps, .buy-list, .svc-grid, .stat-split { grid-template-columns: 1fr; }
  .col-list { columns: 1; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  body { padding-bottom: 62px; }
  .sticky-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.3fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--brown-800); border-top: 1px solid rgba(244,240,232,.15);
  }
  .sticky-bar a {
    padding: 1rem .5rem; text-align: center; font-size: .9rem; font-weight: 600;
    color: var(--cream); text-decoration: none; border-right: 1px solid rgba(244,240,232,.15);
  }
  .sticky-bar a:last-child { border-right: 0; }
  .sticky-bar .bar-cta { background: var(--cream); color: var(--brown-800); }
}

@media (max-width: 600px) {
  .card-grid, .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .brand-name { font-size: 1rem; }
}

@media print {
  .site-header, .sticky-bar, .cta-band, .site-footer, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
