/* Self-hosted fonts — no external requests */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/fraunces-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/fraunces-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-italic-latin.woff2') format('woff2');
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --paper: #f4f2ee;
  --paper-dark: #e8e4dc;
  --ink: #1e2822;
  --ink-light: #4e5a52;
  --accent: #6b8f71;
  --accent-hover: #4d6e53;
  --section-dark: #1e2822;
  --section-tint: #dedad4;
  --highlight: #a07c5a;
  --fog: #c8d4c6;
  --ink-soft: #414c45;       /* primary body copy — one step darker than --ink-light */
  --highlight-deep: #8a6749; /* text-safe warm highlight for copy on light backgrounds */

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-2xl: 5rem;
  --space-section: clamp(3rem, 6vw, 5rem);
  --space-section-x: clamp(2rem, 5vw, 6rem);
  --space-section-compact: clamp(2rem, 4vw, 3.5rem);
  --hero-gap: clamp(2rem, 4vw, 3rem);

  /* Layout */
  --chrome-x: calc(var(--space-lg) / 2);   /* shared nav + footer horizontal padding */
  --content-width: 860px;
  --content-width-narrow: 700px;
  --card-padding: var(--space-md);

  /* Radius */
  --radius: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 40, 34, 0.06), 0 2px 8px rgba(30, 40, 34, 0.04);
  --shadow-md: 0 2px 8px rgba(30, 40, 34, 0.07), 0 8px 24px rgba(30, 40, 34, 0.06);
  --shadow-lg: 0 4px 12px rgba(30, 40, 34, 0.08), 0 12px 36px rgba(30, 40, 34, 0.1);
  --shadow-hover: 0 8px 30px rgba(30, 40, 34, 0.12);

  /* Borders */
  --border-subtle: 1px solid rgba(30, 40, 34, 0.12);
  --border-faint: 1px solid rgba(30, 40, 34, 0.08);
}

html {
  font-size: 19px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--section-dark);
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Top overscroll defense: fixed pseudo-element so rubber-band bounce above nav shows paper bg */
body::before {
  content: '';
  position: fixed;
  top: -10vh;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  background: var(--paper);
  z-index: -1;
  pointer-events: none;
}

/* Bottom overscroll defense: dark fixed pseudo-element so rubber-band bounce below footer shows dark bg */
body::after {
  content: '';
  position: fixed;
  bottom: -10vh;
  left: -10vw;
  width: 120vw;
  height: 50vh;
  background: var(--section-dark);
  z-index: -1;
  pointer-events: none;
}

h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; text-wrap: balance; }
h2 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 1.5rem; text-wrap: balance; }
h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; text-wrap: balance; }
p { margin-bottom: 1rem; color: var(--ink-soft); text-wrap: pretty; }

::selection { background: var(--fog); color: var(--ink); }

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

form { display: grid; gap: 1rem; max-width: 560px; }
label { font-weight: 500; display: block; margin-bottom: 0.25rem; }
input, select, textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(30,40,34,0.2); border-radius: 4px; font-size: 1rem; background: white; }
textarea { min-height: 120px; resize: vertical; }
button[type=submit] { padding: 0.75rem 2rem; background: var(--accent); color: white; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; }
button[type=submit]:hover { background: var(--accent-hover); }

/* ——— NAV ——— */

nav {
  position: fixed;
  top: -10svh;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(10svh + 1rem + env(safe-area-inset-top)) calc(var(--space-lg) / 2) 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 242, 238, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(244, 242, 238, 0.35);
  /* Soft shadow below the bar only — the nav extends 10svh above the
     viewport, so nothing can cast above */
  box-shadow: 0 10px 30px -18px rgba(30, 40, 34, 0.35);
}

/* Light tinted backing so dark html bg doesn't bleed through translucent nav during overscroll */
nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 242, 238, 0.45);
  z-index: -1;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.26rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.wordmark .paw {
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.05em;
  margin-left: 0.1em;
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: clamp(0.4rem, 1.5vw, 0.55rem) clamp(0.75rem, 2.5vw, 1.1rem);
  border-radius: 100px;
  font-weight: 500;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

.nav-cta:visited {
  color: #fff;
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.18s ease;
}

.hamburger:hover span {
  background: var(--accent);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

@media (min-width: 1024px) {
  :root { --chrome-x: 1.75rem; }
}

/* ——— FOOTER ——— */

footer {
  padding: var(--space-md) var(--chrome-x);
  background: var(--section-dark);
  color: var(--paper);
  border-top: 1px solid rgba(244, 242, 238, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm) var(--space-lg);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.footer-left .wordmark {
  color: var(--paper);
  font-size: 1.2rem;
}

.footer-copyright {
  font-size: 0.65rem;
  opacity: 0.55;
  font-weight: 300;
  text-align: center;
  margin-left: -1ch;
}

.footer-center {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.footer-cities {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 0.15rem;
}

.footer-contact {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

.footer-tel {
  color: inherit;
  text-decoration: none;
}

.footer-tel:hover {
  color: inherit;
}

@media (max-width: 639px) {
  .footer-inner {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .footer-center {
    display: none;
  }
}

/* Footer overscroll is handled by body::after in base.css — do not add footer::after here */

/* ——— NAV DRAWER (mobile hamburger menu) ——— */

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--paper);
  padding: 5rem var(--space-lg) var(--space-lg);
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  border-bottom: var(--border-faint);
  transition: color 0.18s ease;
}

.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-drawer a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .nav-drawer {
    display: none;
  }
}

.footer-cities a {
  color: inherit;
  text-decoration: none;
}

.footer-cities a:hover {
  text-decoration: underline;
}


/* Blog post content (non-homepage pages) */
.post-content { max-width: 700px; margin: 0 auto; line-height: 1.75; }
.post-content h1, .post-content h2, .post-content h3 { color: var(--ink); margin-top: 2rem; margin-bottom: 0.75rem; }
.post-content p, .post-content li { color: var(--ink-light); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* --- BLOG LISTING --- */
.blog-hero {
  position: relative;
  padding: calc(var(--space-2xl) + 8rem) var(--space-section-x) calc(var(--space-xl) + 5rem);
  background-color: var(--section-dark);
  background-image: url('/assets/images/hero8-2x.jpg');
  background-size: cover;
  background-position: center top;
  color: var(--paper);
  text-align: center;
  box-shadow: 0 4px 16px rgba(30, 40, 34, 0.25);
  z-index: 1;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 20, 0.62);
}
.blog-hero > * {
  position: relative;
  z-index: 1;
}

.blog-hero .section-label {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--fog);
  opacity: 0.85;
  margin-bottom: var(--space-xs);
}

.blog-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.blog-hero p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--paper);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

.blog-listing {
  padding: var(--space-section) var(--space-section-x);
  max-width: 1100px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s cubic-bezier(0.25, 0, 0.15, 1), transform 0.25s cubic-bezier(0.25, 0, 0.15, 1);
  position: relative;
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  background: rgba(30, 40, 34, 0.06);
  border-bottom: var(--border-faint);
  overflow: hidden;
}

.blog-card-image picture {
  display: block;
}

.blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card-body {
  padding: var(--card-padding);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--ink-light);
  font-weight: 400;
}

.blog-card-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(107, 143, 113, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}

.blog-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: var(--space-xs);
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card h2 a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.blog-card-link:hover {
  color: var(--accent-hover);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* --- BLOG POST --- */
.blog-post-hero {
  max-width: 900px;
  margin: 0 auto;
  padding-top: calc(60px + var(--space-md));
}
.blog-hero-image {
  position: relative;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.blog-hero-image picture {
  display: block;
}
.blog-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 901px) {
  .blog-post-hero {
    padding-top: calc(60px + var(--space-xl));
  }
  .blog-hero-image {
    border-radius: var(--radius);
    overflow: hidden;
  }
}

.blog-post-header {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  width: max-content;
  padding: 0.5rem 1.25rem;
  background: rgba(30, 40, 34, 0.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--paper);
  text-align: center;
}
.blog-post-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.post-tag {
  display: inline-block;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(107, 143, 113, 0.45);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  margin-bottom: 0.2rem;
}

.post-date {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  padding: var(--space-md) 0 0;
  max-width: 875px;
  margin: 0 auto;
}

.blog-article {
  max-width: 875px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-section-x) var(--space-lg);
}
.blog-article p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
}
.blog-article h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.blog-article h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.45;
  margin-top: 0.5rem;
}
.blog-article strong {
  color: var(--ink);
}
.blog-article h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.blog-article a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(107, 143, 113, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}
.blog-article a:hover {
  text-decoration-color: var(--accent);
}
.blog-article ul,
.blog-article ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}
.blog-article li {
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(30, 40, 34, 0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(30, 40, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.8rem;
  opacity: 0.5;
  margin: var(--space-lg) 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: var(--border-subtle);
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  width: 100%;
}
.back-link:hover { color: var(--accent-hover); }

.pull-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--highlight-deep);
  border-left: 3px solid var(--highlight);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  margin: var(--space-xl) 0;
  line-height: 1.5;
}

/* --- POST FOOTER: SERVICE CTA + RELATED POSTS --- */
.post-cta {
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  padding: 0 var(--space-section-x);
}
.post-cta-inner {
  background: #fff;
  border: var(--border-faint);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  text-align: center;
}
.post-cta-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}
.post-cta-inner p {
  color: var(--ink-light);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto var(--space-md);
}
.post-cta-inner a:not(.btn-primary) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-cta-inner a:not(.btn-primary):hover { color: var(--accent-hover); }

.related-posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-section-x) var(--space-section);
}
.related-posts .section-label {
  text-align: center;
  margin-bottom: var(--space-md);
}
.related-grid .blog-card h2 {
  font-size: 1.05rem;
}

/* --- INLINE POST IMAGES --- */
.post-figure {
  margin: var(--space-xl) 0;
}
.post-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.post-figure figcaption {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: var(--space-xs);
  line-height: 1.45;
}
.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ============================================================
   Blog Component Library
   Extracted from reference/blog/*.html — all colors use tokens
   ============================================================ */

/* --- location-card --- */

.location-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.location-card-image {
  width: 100%;
  background: rgba(30, 40, 34, 0.06);
  border-bottom: var(--border-faint);
  overflow: hidden;
}

.location-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.location-card-body {
  padding: var(--card-padding);
}

.location-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  margin-top: 0;
}

.location-address {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}

.location-card-body p,
.location-card-prose p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.location-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(107, 143, 113, 0.1);
  color: var(--accent);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.25, 0, 0.15, 1), color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  min-height: 44px;
}

.directions-btn:hover {
  background: var(--accent);
  color: #fff;
}

.directions-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- product-card --- */

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.product-card-image {
  width: 100%;
  background: rgba(30, 40, 34, 0.06);
  border-bottom: var(--border-faint);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card-body {
  padding: var(--card-padding);
}

.product-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.product-card-body p,
.product-card-prose p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.product-callout {
  background: rgba(107, 143, 113, 0.08);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-sm);
}

.product-callout-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.product-callout p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .product-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }

  .product-card-image {
    aspect-ratio: auto;
    border-bottom: none;
    border-right: var(--border-faint);
  }
}

/* --- recipe-card --- */

.recipe-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: var(--space-xl) 0;
}

.recipe-card-image {
  width: 100%;
  background: rgba(30, 40, 34, 0.06);
  border-bottom: var(--border-faint);
  overflow: hidden;
}

.recipe-card-image picture {
  display: block;
  width: 100%;
}

.recipe-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.recipe-card-body {
  padding: var(--card-padding);
}

.recipe-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.recipe-meta {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}

.recipe-meta span {
  margin: 0 0.3rem;
}

.recipe-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-md);
}

.recipe-card-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.recipe-card-body ul li {
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: var(--border-faint);
  padding-left: 1rem;
  position: relative;
}

.recipe-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.recipe-card-body ol {
  padding-left: 1.2rem;
  margin-bottom: var(--space-md);
}

.recipe-card-body ol li {
  font-size: 0.9rem;
  padding: 0.35rem 0;
  line-height: 1.55;
}

/* --- photo-grid --- */

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.photo-item {
  display: flex;
  flex-direction: column;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(30, 40, 34, 0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(30, 40, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.75rem;
  opacity: 0.5;
}

.photo-caption {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: var(--space-xs);
  line-height: 1.45;
  font-style: italic;
}

@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* --- intro-text --- */

.intro-text {
  max-width: var(--content-width-narrow);
}

.blog-article .intro-text {
  max-width: var(--content-width-narrow);
}

/* --- timeline --- */

.timeline {
  position: relative;
  margin: var(--space-xl) 0;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--fog);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.15rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-marker::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
}

.timeline-age {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.timeline-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.timeline-item p,
.timeline-content p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- tip-card --- */

.tip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.tip-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  padding: var(--card-padding);
}

.tip-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.tip-card p,
.tip-card-prose p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .tip-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- callout (warning + info) --- */

.callout-warning,
.callout-info {
  border-radius: 0 8px 8px 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.callout-warning {
  background: rgba(160, 124, 90, 0.08);
  border-left: 4px solid var(--highlight);
}

.callout-info {
  background: rgba(107, 143, 113, 0.08);
  border-left: 4px solid var(--accent);
}

.callout-warning h3,
.callout-warning > p:first-child strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--highlight);
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.callout-info h3,
.callout-info > p:first-child strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.callout-warning p,
.callout-info p,
.callout-prose p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.callout-warning p:last-child,
.callout-info p:last-child,
.callout-prose p:last-child {
  margin-bottom: 0;
}

/* --- restaurant-card --- */

.restaurant-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.restaurant-card-image {
  width: 100%;
  background: rgba(30, 40, 34, 0.06);
  border-bottom: var(--border-faint);
  overflow: hidden;
}

.restaurant-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.restaurant-card-body {
  padding: var(--card-padding);
}

.restaurant-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
  margin-top: 0;
}

.restaurant-neighborhood {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}

.restaurant-card-body p,
.restaurant-card-prose p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.pet-policy {
  font-size: 0.8rem;
  background: rgba(160, 124, 90, 0.1);
  color: var(--highlight);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  display: inline-block;
  font-weight: 500;
}

/* --- checklist --- */

.checklist {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.checklist li {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: var(--border-faint);
  align-items: flex-start;
}

.checklist li:first-child {
  border-top: var(--border-faint);
}

.checklist-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(107, 143, 113, 0.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.checklist-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.checklist-content p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 0;
  line-height: 1.55;
}

/* --- pull-quote --- */

.pull-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--highlight-deep);
  border-left: 3px solid var(--highlight);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  margin: var(--space-xl) 0;
  line-height: 1.5;
}

/* --- comparison-table --- */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-lg) 0;
  border: var(--border-faint);
  border-radius: var(--radius);
  background: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.88rem;
}

.comparison-table thead th {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 2px solid rgba(30, 40, 34, 0.15);
}

.comparison-table thead th:first-child {
  color: var(--accent);
}

.comparison-table thead th:last-child {
  color: var(--highlight);
}

.comparison-table tbody td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: var(--border-faint);
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- city landing pages --- */

.city-hero {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--space-2xl) + var(--space-lg)) var(--space-section-x) var(--space-lg);
  text-align: center;
}

.city-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.city-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}

.city-services {
  background: var(--section-light);
}

.city-book-inline {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: var(--ink-light);
}

.city-local {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-section) var(--space-section-x);
}

.city-local h2 {
  margin-bottom: var(--space-sm);
}

.city-local-intro {
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}

.city-parks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.city-parks-list li {
  padding: var(--space-sm) var(--space-md);
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  line-height: 1.5;
}

.city-cta-section {
  background: var(--section-dark);
  color: var(--paper);
  text-align: center;
  padding: var(--space-section) var(--space-section-x);
}

.city-cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
  color: var(--paper);
}

.city-cta-section p {
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* --- contact page --- */
.contact-page {
  max-width: var(--content-width-narrow);
  margin: 0 auto;
  padding: calc(var(--space-2xl) + var(--space-lg)) var(--space-section-x) var(--space-section);
}

.contact-page h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-page .contact-intro {
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.contact-page .intake-form {
  max-width: 520px;
  margin: 0 auto;
}

/* ——— MUSIC BUTTON ——— */

.music-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: var(--border-subtle);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.music-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.music-btn:hover {
  background: var(--paper-dark);
  box-shadow: var(--shadow-hover);
}

.music-btn.playing {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(107, 143, 113, 0.35);
  animation: music-dance 1s ease-in-out infinite;
}

.music-btn.playing:hover {
  background: var(--accent-hover);
}

.music-btn.playing::before {
  animation: pulse-ring 3s ease-out infinite;
  border: 2px solid var(--accent);
}

@keyframes music-dance {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(var(--bounce-a, -5px)) rotate(var(--twist-a, 4deg)); }
  50%  { transform: translateY(var(--bounce-b, 1px)) rotate(var(--twist-b, -2deg)); }
  75%  { transform: translateY(var(--bounce-c, -4px)) rotate(var(--twist-c, 3deg)); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ——— SCROLL REVEAL ———
   Fade-in disabled: content must be visible without scrolling/JS.
   main.js still toggles .visible — these rules keep both states identical. */

.reveal,
.reveal.visible,
.reveal-child,
.reveal-child.visible {
  opacity: 1;
  transform: none;
}

/* ——— HERO ENTRANCE ——— */

.hero-text {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-entrance 0.9s cubic-bezier(0.25, 0, 0.15, 1) 0.15s forwards;
}

@keyframes hero-entrance {
  to { opacity: 1; transform: translateY(0); }
}

/* ——— HERO ——— */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(4rem + var(--space-lg)) var(--space-lg) 0;
  background: var(--section-dark) radial-gradient(120% 90% at 50% 0%, #273229 0%, var(--section-dark) 72%);
  color: var(--paper);
  box-shadow: 0 4px 16px rgba(30, 40, 34, 0.25);
  position: relative;
  z-index: 1;
}

.hero-text {
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 3.3rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 960px;
  margin: 0 auto var(--space-sm);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(0.85rem, 2.7vw, 1.55rem);
  color: rgba(214, 223, 212, 0.85);
  max-width: 960px;
  margin: 0 auto 0;
  font-weight: 400;
  line-height: 1.55;
}

/* ——— SHARED BUTTON ——— */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: background 0.18s cubic-bezier(0.25, 0, 0.15, 1), transform 0.18s cubic-bezier(0.25, 0, 0.15, 1), box-shadow 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:visited,
.nav-cta:visited {
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Hero image carousel — crossfade */
.hero-carousel {
  width: 100vw;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 732px) {
  .hero {
    padding-bottom: var(--space-lg);
  }
  .hero-carousel {
    width: 100%;
    max-width: 832px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }
}

/* The eager hero img is wrapped in <picture> for WebP, so target by class
   rather than :first-child (the <source> would break :first-child matching) */
.hero-carousel .hero-img {
  position: relative;
}

.hero-carousel img:not(.hero-img) {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-carousel img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-carousel img.active {
  opacity: 1;
}

/* ——— SERVICES ——— */

.services {
  padding: var(--space-section) var(--space-section-x);
  background: var(--paper);
}

.section-label {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-hover);
  margin-bottom: var(--space-xs);
  text-align: center;
}

.services h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.service-item {
  padding: var(--space-md) 0;
  border-top: var(--border-subtle);
  transition: transform 0.25s cubic-bezier(0.25, 0, 0.15, 1);
}

@media (min-width: 640px) {
  .service-item:hover {
    transform: translateY(-2px);
  }
}

.service-item:last-child {
  border-bottom: var(--border-subtle);
}

.service-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* menu-style dotted leader between service name and price */
.service-item-top::after {
  content: '';
  order: 2;
  flex: 1 1 1.5rem;
  min-width: 1.5rem;
  border-bottom: 2px dotted rgba(30, 40, 34, 0.22);
  transform: translateY(-0.3em);
  align-self: flex-end;
}

.service-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  letter-spacing: -0.01em;
  order: 1;
}

.service-item .price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--accent-hover);
  text-decoration: none;
  order: 3;
}

.service-item .price-cta {
  color: var(--accent);
  cursor: pointer;
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.service-item .price-cta:hover {
  color: var(--accent-hover);
}

.service-item p {
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.6;
  max-width: 52ch;
}

.service-item a {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1), opacity 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.service-item a::after {
  content: ' \2192';
}

.service-item a:hover {
  color: var(--accent-hover);
  opacity: 1;
}

.addons-line {
  max-width: var(--content-width);
  width: fit-content;
  margin: var(--space-md) auto 0;
  padding: 0.55rem 1.25rem;
  background: rgba(107, 143, 113, 0.09);
  border-radius: 100px;
  font-size: clamp(0.85rem, 1.5vw, 0.92rem);
  color: var(--ink-light);
  font-weight: 400;
  text-align: center;
}

.addons-line strong {
  font-weight: 500;
  color: var(--ink);
}

/* ——— HOW IT WORKS ——— */

.how-it-works {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--paper-dark);
  position: relative;
  overflow: hidden;
}

/* faint paw watermark, top-right */
.how-it-works::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  right: -2rem;
  width: 240px;
  height: 240px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e2822'%3E%3Cpath d='M12 21.35c-1.1 0-2.1-.45-3.15-1.35C7.55 18.85 6 17.1 6 15c0-1.5.75-2.7 2.25-3.45.6-.3 1.2-.45 1.75-.55.55-.1 1.15-.15 2-.15s1.45.05 2 .15c.55.1 1.15.25 1.75.55C17.25 12.3 18 13.5 18 15c0 2.1-1.55 3.85-2.85 5-.95.85-2.05 1.35-3.15 1.35zM8.5 10c-1.38 0-2.5-1.34-2.5-3s1.12-3 2.5-3S11 5.34 11 7s-1.12 3-2.5 3zm7 0C16.88 10 18 8.66 18 7s-1.12-3-2.5-3S13 5.34 13 7s1.12 3 2.5 3zM5 13.5c-1.1 0-2-1.12-2-2.5S3.9 8.5 5 8.5s2 1.12 2 2.5S6.1 13.5 5 13.5zm14 0c-1.1 0-2-1.12-2-2.5s.9-2.5 2-2.5 2 1.12 2 2.5-.9 2.5-2 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.05;
  transform: rotate(-14deg);
  pointer-events: none;
}

.how-it-works > * {
  position: relative;
}

.how-it-works h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 580px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--accent-hover);
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(107, 143, 113, 0.16);
}

.step-num.visible {
  opacity: 1;
}

.step-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.step-text p {
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  color: var(--ink-soft);
  font-weight: 400;
}

/* ——— SERVICE AREA ——— */

.area {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--section-tint) radial-gradient(75% 110% at 10% 0%, rgba(107, 143, 113, 0.09), transparent 60%);
  color: var(--ink);
  overflow: hidden;
}

.area-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

.area-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.15;
}

.area-cities {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  opacity: 0.75;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.area-check-btn {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(30, 40, 34, 0.08);
  border: 1px solid rgba(30, 40, 34, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  cursor: pointer;
  margin-top: var(--space-sm);
  transition: background 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  min-height: 0;
}

.area-check-btn:hover {
  background: rgba(30, 40, 34, 0.14);
}

@media (max-width: 639px) {
  .service-map,
  .visit-image-placeholder,
  .blog-image-placeholder {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}

.service-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-transform: uppercase;
  isolation: isolate;
}

/* ——— RECENT VISITS ——— */

.visits {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--paper-dark);
}

.visits-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

.visits-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.15;
}

.visit-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.ig-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.ig-carousel-card {
  aspect-ratio: 1;
  background: #fff;
  border: var(--border-faint);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink-light);
  transition: box-shadow 0.25s cubic-bezier(0.25, 0, 0.15, 1), transform 0.25s cubic-bezier(0.25, 0, 0.15, 1), background 0.18s ease;
}

/* gentle scatter — cards straighten on hover */
.ig-carousel-card:nth-child(odd) {
  transform: rotate(-1.6deg);
}

.ig-carousel-card:nth-child(even) {
  transform: rotate(1.4deg);
}

.ig-carousel-card:hover {
  background: var(--fog);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.ig-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(30, 40, 34, 0.3);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.ig-card-placeholder svg {
  width: 22px;
  height: 22px;
  opacity: 0.25;
  fill: currentColor;
}

.visit-caption {
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.visit-ig-link {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.visit-ig-link:hover {
  color: var(--accent-hover);
}

.visit-ig-link .ig-inline {
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
  margin-right: 0.3em;
}

@media (min-width: 640px) {
  .visits-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
  }
}

/* ——— TESTIMONIALS ——— */

.testimonials {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--section-tint) radial-gradient(70% 100% at 50% 100%, rgba(160, 124, 90, 0.08), transparent 65%);
}

.testimonials h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-md);
}

.testimonial-carousel {
  max-width: var(--content-width-narrow);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* oversized decorative quote mark shared by all slides */
.testimonial-carousel::before {
  content: '\201C';
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  height: 0.55em;
  color: var(--accent);
  opacity: 0.4;
}

.testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial-carousel blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-sm);
}

.testimonial-attr {
  font-size: 0.88rem;
  color: var(--ink-light);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.testimonial-attr strong {
  color: var(--ink);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.2;
  cursor: pointer;
  padding: 0;
  border: none;
  transition: opacity 0.2s ease;
}

.testimonial-dots span.active {
  opacity: 0.5;
}

/* ——— BLOG TEASER ——— */

.blog-teaser {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--paper-dark);
}

.blog-teaser-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.blog-teaser .section-label {
  text-align: left;
}

.blog-teaser .blog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  text-decoration: none;
  color: inherit;
}

.blog-teaser .blog-card:hover h3 {
  color: var(--accent);
}

@media (min-width: 640px) {
  .blog-teaser .blog-card {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--card-padding);
  }
  .blog-teaser .blog-text {
    padding: 0;
  }
  .blog-image-placeholder {
    aspect-ratio: 4 / 3;
  }
}

.blog-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.blog-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--card-padding);
}

.blog-teaser h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}

.blog-teaser p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--space-sm);
}

.blog-teaser a.read-more {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.18s cubic-bezier(0.25, 0, 0.15, 1), opacity 0.18s cubic-bezier(0.25, 0, 0.15, 1);
}

.blog-teaser a.read-more::after {
  content: ' \2192';
}

.blog-teaser a.read-more:hover {
  color: var(--accent-hover);
  opacity: 1;
}

/* ——— FINAL CTA ——— */

.final-cta {
  padding: var(--space-section-compact) var(--space-section-x);
  background: var(--section-dark) radial-gradient(110% 120% at 50% 0%, #273229 0%, var(--section-dark) 70%);
  color: var(--paper);
  text-align: center;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-xs);
}

.final-cta p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--fog);
  font-weight: 400;
  margin-bottom: var(--space-lg);
}

/* ——— INTAKE FORM MODAL ——— */

.intake-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 40, 34, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.intake-overlay.open {
  display: flex;
}

.intake-modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(30, 40, 34, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.intake-overlay.open .intake-modal {
  opacity: 1;
  transform: translateY(0);
}

.intake-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-lg) 0;
}

.intake-modal-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.intake-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink-light);
  padding: var(--space-xs);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.18s ease;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.intake-close:hover {
  color: var(--ink);
}

.intake-form {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.intake-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="date"],
.intake-form textarea {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  min-height: 44px;
  transition: border-color 0.18s ease;
  outline: none;
}

.intake-form input[type="text"]:focus,
.intake-form input[type="email"]:focus,
.intake-form input[type="tel"]:focus,
.intake-form input[type="date"]:focus,
.intake-form textarea:focus {
  border-color: var(--accent);
}

.intake-form textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.5;
}

.intake-field {
  margin-bottom: var(--space-md);
}

.intake-address-row-2 {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  margin-top: var(--space-xs);
}

.intake-city {
  flex: 2;
  min-width: 0;
}

.intake-state {
  flex: 0 0 3.5rem;
}

.intake-zip {
  flex: 0 0 4.5rem;
}

.intake-radio-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.intake-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 0;
}

.intake-radio-group input[type="radio"] {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin: 0;
}

.intake-other-input {
  margin-top: var(--space-xs);
}

.intake-day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.intake-day-chip {
  display: none;
}

.intake-day-chip + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-light);
  background: rgba(30, 40, 34, 0.05);
  border: 1px solid rgba(30, 40, 34, 0.14);
  border-radius: 100px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  min-height: 36px;
  user-select: none;
  -webkit-user-select: none;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
}

.intake-day-chip:checked + label {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.intake-day-chip + label:hover {
  background: rgba(30, 40, 34, 0.1);
}

.intake-day-chip:checked + label:hover {
  background: var(--accent-hover);
}

.intake-form select {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  min-height: 44px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234e5a52' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.intake-form select:focus {
  border-color: var(--accent);
}

.intake-submit {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  padding: 0.85rem var(--space-lg);
  cursor: pointer;
  min-height: 48px;
  transition: background 0.18s cubic-bezier(0.25, 0, 0.15, 1);
  margin-top: var(--space-xs);
}

.intake-submit:hover {
  background: var(--accent-hover);
}

.intake-thank-you {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.intake-thank-you h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.intake-thank-you p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.intake-thank-you button {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  min-height: 44px;
}

.intake-thank-you button:hover {
  color: var(--ink);
}

.intake-optional {
  font-weight: 400;
  color: var(--ink-light);
  font-style: italic;
}

.intake-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.intake-date-row > div {
  display: flex;
  flex-direction: column;
}

.intake-honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  pointer-events: none;
}

.intake-form-error {
  background: rgba(160, 124, 90, 0.08);
  border-left: 3px solid var(--highlight);
  border-radius: 0 4px 4px 0;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--ink-light);
}

.intake-form-error p {
  margin: 0.2rem 0;
}

.intake-confirmation-id {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin: 0.4rem 0;
  word-break: break-all;
}

.intake-noscript {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}

@media (max-width: 560px) {
  .intake-overlay {
    padding: 0;
    align-items: stretch;
  }

  .intake-modal {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100svh;
    border-radius: 0;
    height: 100%;
  }
}

/* ——— HOMEPAGE RESPONSIVE ——— */

@media (max-width: 639px) {
  .hero h1 {
    letter-spacing: -0.025em;
  }
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-xl);
    position: relative;
  }

  .service-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(30, 40, 34, 0.08);
  }

  .service-item {
    border-top: none;
    padding: var(--space-md) 0;
  }

  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-bottom: var(--border-subtle);
  }

  .service-item:nth-child(3),
  .service-item:nth-child(4) {
    border-bottom: none;
  }

  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-top: var(--border-subtle);
  }

  .area-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: var(--space-lg);
    max-width: 780px;
  }

  .step {
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
    position: relative;
  }

  /* dotted connector between step badges */
  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    left: calc(2.4rem + var(--space-sm));
    right: calc(-1 * var(--space-lg) + var(--space-xs));
    border-top: 2px dotted rgba(107, 143, 113, 0.4);
  }
}

/* ——— FAQ ——— */

.faq {
  padding: var(--space-section) var(--space-section-x);
  background: var(--paper);
}

.faq-inner {
  max-width: var(--content-width-narrow);
  margin: 0 auto;
}

.faq h2 {
  margin-bottom: var(--space-lg);
}

.faq-item {
  border-bottom: 1px solid var(--paper-dark);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: var(--space-sm) 2rem var(--space-sm) 0;
  position: relative;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s cubic-bezier(0.25, 0, 0.15, 1);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover,
.faq-item[open] summary {
  color: var(--accent-hover);
}

.faq-item p {
  padding: 0 0 var(--space-sm);
  color: var(--ink-soft);
}

.area-cities a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(30, 40, 34, 0.25);
  text-underline-offset: 3px;
}

.area-cities a:hover {
  text-decoration-color: currentColor;
}

/* Leaflet city labels on the service-area map */
.map-city-label {
  background: var(--paper);
  border: var(--border-faint);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 2px 8px;
}
.map-city-label::before {
  display: none;
}

.faq-more {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--ink-light);
  text-align: center;
  line-height: 1.6;
}
.faq-more a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-more a:hover { color: var(--accent-hover); }

