/* ============================================================
   Contentator — "Health & Beauty" render theme
   Luxury spa design system (cream + sage). Brand-adapted.
   ============================================================ */

:root {
  --bg: #efece4;            /* page background, warm cream */
  --bg-alt: #e8e4d8;        /* slightly darker cream */
  --surface: #f6f3eb;       /* card surfaces */
  --ink: #1f1d1a;           /* primary text / dark UI */
  --ink-muted: #4a4640;     /* secondary text */
  --ink-soft: #7a766c;      /* tertiary text */
  --line: #d8d3c4;          /* borders */
  --accent: #5a6b4f;        /* sage green */
  --accent-ink: #2d3825;    /* dark sage for hover */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --reading: 760px;
  --radius: 16px;
  --radius-lg: 24px;
}

  /* Brand overrides (design adaptation): spa template in the site's brand colours/fonts */
  :root {
    --accent: #C9A24B;
    --accent-ink: color-mix(in srgb, #C9A24B 65%, #000);
    --ink: #1A1A1A;
    --ink-muted: color-mix(in srgb, #1A1A1A 78%, var(--bg));
    --ink-soft: color-mix(in srgb, #1A1A1A 55%, var(--bg));
    --bg: #FAFAF8;
    --bg-alt: color-mix(in srgb, #1A1A1A 6%, #FAFAF8);
    --surface: color-mix(in srgb, #ffffff 55%, #FAFAF8);
    --line: color-mix(in srgb, #1A1A1A 13%, #FAFAF8);
    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 13px; font-weight: 400;
  color: var(--ink-muted); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
/* Type scale: cap H1 at 64px (was 88px) and trim H2 to 48px — bigger felt
   shouty next to body copy and gave headings too much screen weight. */
h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-ink); color: var(--surface); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-full, .btn-block { width: 100%; justify-content: center; }

/* ============================================ NAV ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 20px 32px; backdrop-filter: blur(12px); background: color-mix(in srgb, var(--bg) 75%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--line) 40%, transparent); }
.nav-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: center; }
.nav-logo span { color: var(--accent); }
.nav-logo-img { max-height: 96px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links .nav-toggle { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink); transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links .nav-toggle:hover { color: var(--accent); }
.nav-caret { font-size: 10px; opacity: 0.6; }
.nav-dropdown { position: absolute; top: calc(100% + 12px); left: 0; min-width: 220px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 40px color-mix(in srgb, var(--ink) 12%, transparent); padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-item.has-dropdown:hover .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li { margin: 0; }
.nav-dropdown a { display: block; padding: 10px 14px; border-radius: 12px; font-size: 14px; }
.nav-dropdown a:hover { background: var(--bg-alt); }
.nav-cta-wrap { display: flex; align-items: center; gap: 16px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  body.nav-open .nav-links { display: flex; position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--bg); border-bottom: 1px solid var(--line); padding: 20px 32px; box-shadow: 0 16px 40px color-mix(in srgb, var(--ink) 12%, transparent); }
  body.nav-open .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 4px 0 4px 12px; padding: 0 0 0 8px; display: none; }
  body.nav-open .nav-item.open .nav-dropdown { display: block; }
}

/* ============================================ HERO ============================================ */
.hero { position: relative; min-height: 92vh; padding: 180px 32px 100px; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-color: var(--ink); background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--ink) 35%, transparent) 0%, color-mix(in srgb, var(--ink) 60%, transparent) 100%); }
.hero-content { position: relative; z-index: 1; max-width: var(--container); width: 100%; margin: 0 auto; color: var(--surface); }
.hero .eyebrow { color: color-mix(in srgb, var(--surface) 85%, transparent); }
.hero .eyebrow::before { background: var(--surface); }
.hero h1 { color: var(--surface); max-width: 1000px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.hero .btn-primary { background: var(--surface); color: var(--ink); }
.hero .btn-primary:hover { background: var(--accent); color: var(--surface); }
.hero .btn-secondary { color: var(--surface); border-color: var(--surface); }
.hero .btn-secondary:hover { background: var(--surface); color: var(--ink); }

/* ============================================ TRUST MARQUEE ============================================ */
.trust { padding: 64px 0; border-bottom: 1px solid var(--line); }
.trust-label { text-align: center; font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 32px; }
.trust-marquee { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trust-track { display: flex; gap: 80px; align-items: center; animation: hb-scroll 30s linear infinite; width: max-content; }
.trust-logo { font-family: var(--serif); font-size: 28px; color: var(--ink-soft); white-space: nowrap; opacity: 0.7; display: inline-flex; align-items: center; }
.trust-logo img { max-height: 40px; width: auto; opacity: 0.7; }
@keyframes hb-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================ ABOUT (2-col) ============================================ */
.about { padding: 120px 0; }
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 24px; max-width: 580px; }
.about-text .prose { color: var(--ink-muted); font-size: 17px; }
.about-text .prose p { margin-bottom: 20px; max-width: 540px; }
.about-text .prose h3 { color: var(--ink); margin: 24px 0 12px; }
.about-text .prose ul { list-style: none; margin: 16px 0; }
.about-text .prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.about-text .prose ul li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--accent); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.about-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================ SERVICES GRID ============================================ */
.services { padding: 120px 0; background: var(--bg-alt); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 64px; }
.services-head h2 { max-width: 680px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s ease; display: flex; flex-direction: column; gap: 20px; }
.service-card:hover { background: var(--ink); transform: translateY(-4px); }
.service-card:hover .service-icon { background: var(--bg); }
.service-card:hover h4, .service-card:hover p, .service-card:hover .service-link { color: var(--bg); }
.service-icon { width: 56px; height: 56px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.service-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-card h4 { margin-bottom: 4px; }
.service-card p { color: var(--ink-muted); font-size: 15px; line-height: 1.55; flex: 1; }
.service-link { font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.services-cta { display: flex; justify-content: center; margin-top: 48px; }
@media (max-width: 1100px) and (min-width: 901px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .services-head { flex-direction: column; align-items: flex-start; } }

/* ============================================ STATS BAND ============================================ */
.stats-band { padding: 80px 0; background: var(--ink); color: var(--surface); }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
.stat-value { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--surface); display: block; }
.stat-label { color: color-mix(in srgb, var(--surface) 70%, transparent); font-size: 14px; margin-top: 8px; }
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

/* ============================================ TESTIMONIALS / REVIEWS ============================================ */
.testimonials, .reviews { padding: 120px 0; }
.testimonials-head, .reviews-head { text-align: center; margin-bottom: 64px; }
.testimonials-head .eyebrow, .reviews-head .eyebrow { justify-content: center; }
.testimonials-head h2, .reviews-head h2 { max-width: 800px; margin: 0 auto; }
.testimonial-grid, .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card, .review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.stars { display: flex; gap: 4px; align-items: center; color: var(--accent); }
.stars .rating { margin-left: 8px; color: var(--ink-soft); font-size: 14px; }
.testimonial-quote, .review-quote { font-family: var(--serif); font-size: 20px; line-height: 1.45; color: var(--ink); flex: 1; }
.testimonial-author, .review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.author-avatar, .review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-alt); flex-shrink: 0; display: grid; place-items: center; font-family: var(--serif); color: var(--ink-soft); }
.author-name, .review-name { font-size: 15px; font-weight: 500; }
.author-role, .review-meta { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 1100px) and (min-width: 901px) { .testimonial-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .testimonial-grid, .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================ FAQ ACCORDION ============================================ */
.faq { padding: 120px 0; background: var(--bg-alt); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-side .eyebrow { background: var(--surface); padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); }
.faq-side h2 { margin-top: 24px; max-width: 380px; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq-item:first-child { padding-top: 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--ink); }
.faq-toggle { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; font-size: 18px; }
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bg); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--ink-muted); font-size: 16px; }
.faq-a > :last-child { margin-bottom: 0; }
.faq-item.open .faq-a { max-height: 600px; padding-top: 16px; }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================ CTA BLOCK ============================================ */
.cta-block { padding: 120px 32px; text-align: center; background-color: var(--ink); background-size: cover; background-position: center; color: var(--surface); position: relative; }
.cta-block.has-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--ink) 55%, transparent), color-mix(in srgb, var(--ink) 65%, transparent)); }
.cta-block .cta-inner { position: relative; z-index: 1; }
.cta-block .eyebrow { color: color-mix(in srgb, var(--surface) 85%, transparent); justify-content: center; }
.cta-block .eyebrow::before { background: var(--surface); }
.cta-block h2 { color: var(--surface); max-width: 820px; margin: 0 auto 16px; }
.cta-block p { color: color-mix(in srgb, var(--surface) 85%, transparent); max-width: 620px; margin: 0 auto 32px; }
.cta-block-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-block .btn-primary { background: var(--surface); color: var(--ink); }
.cta-block .btn-primary:hover { background: var(--accent); color: var(--surface); }
.cta-block .btn-secondary { color: var(--surface); border-color: var(--surface); }
.cta-block .btn-secondary:hover { background: var(--surface); color: var(--ink); }

/* ============================================ BLOG TEASER + INDEX ============================================ */
.blog { padding: 120px 0; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 64px; }
.blog-head h2 { max-width: 680px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.blog-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.blog-card { display: flex; flex-direction: column; gap: 20px; }
.blog-image-wrap { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.blog-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-image { transform: scale(1.04); }
.blog-tag { position: absolute; top: 16px; left: 16px; background: color-mix(in srgb, var(--ink) 85%, transparent); color: var(--bg); backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 999px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card h4 { font-size: 22px; line-height: 1.25; transition: color 0.2s; }
.blog-card:hover h4 { color: var(--accent); }
.blog-card p { color: var(--ink-muted); font-size: 15px; }
.blog-meta { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 13px; }
.blog-meta-text { display: flex; flex-direction: column; line-height: 1.3; }
.blog-meta-name { color: var(--ink); font-weight: 500; font-size: 14px; }
@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid, .blog-grid.cols-3 { grid-template-columns: 1fr; } .blog-head { flex-direction: column; align-items: flex-start; } }

/* ============================================ PAGE / SERVICE HEADERS ============================================ */
.page-header { padding: 180px 0 60px; }
.page-header.center { text-align: center; }
.page-header.center .eyebrow { justify-content: center; }
.page-header.center h1 { margin-left: auto; margin-right: auto; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }
.page-header h1 { max-width: 900px; margin-bottom: 24px; }
.page-header .lead { font-size: 18px; color: var(--ink-muted); max-width: 680px; margin-bottom: 32px; }
.header-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.local-trust-row { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.trust-stat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.trust-stat strong { font-weight: 500; font-family: var(--serif); font-size: 18px; }
.trust-divider { width: 1px; height: 18px; background: var(--line); }

/* ============================================ HERO IMAGE (service/post) ============================================ */
.service-hero-img, .post-hero { max-width: 1400px; margin: 0 auto 80px; padding: 0 32px; }
.service-hero-img img, .post-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); }

/* ============================================ NAP STRIP ============================================ */
.nap-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; margin-bottom: 60px; }
.nap-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 32px; align-items: center; }
.nap-item { display: flex; gap: 12px; align-items: flex-start; }
.nap-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.nap-icon svg { width: 18px; height: 18px; }
.nap-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 2px; }
.nap-value { font-size: 14px; color: var(--ink); }
.nap-value:hover { color: var(--accent); }
.nap-value.status { color: var(--accent); font-weight: 500; }
@media (max-width: 900px) { .nap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .nap-grid { grid-template-columns: 1fr; } }

/* ============================================ SERVICE MAIN (2-col + sticky sidebar) ============================================ */
.service-main { padding: 0 0 120px; }
.service-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start; }
.service-content h3 { margin: 48px 0 16px; }
.service-content > h3:first-child, .service-content > .prose:first-child h3:first-child { margin-top: 0; }
.service-content p { font-size: 17px; line-height: 1.75; color: var(--ink-muted); margin-bottom: 16px; }
.service-content .prose h2 { font-size: clamp(22px, 2.5vw, 30px); margin: 48px 0 16px; }
.service-content ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.service-content ul li { position: relative; padding-left: 32px; margin-bottom: 12px; font-size: 16px; color: var(--ink-muted); }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--accent); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.service-content .inline-image { margin: 32px 0; }
.service-content .inline-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); }
.service-content .prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 32px; }
.step { display: flex; gap: 20px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step-number { flex-shrink: 0; width: 44px; height: 44px; background: var(--ink); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; }
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: 15px; margin: 0; color: var(--ink-muted); }

/* Pricing / booking sidebar */
.pricing-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 100px; }
.pricing-eyebrow { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-title { font-family: var(--serif); font-size: 32px; line-height: 1.1; color: var(--ink); margin-bottom: 8px; }
.pricing-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.pricing-divider { height: 1px; background: var(--line); margin: 24px 0; }
.pricing-includes-title { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.pricing-includes { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-includes li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-muted); padding: 8px 0; }
.pricing-includes li::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; background: var(--accent); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.pricing-includes li a { color: inherit; }
.pricing-call { text-align: center; margin-top: 16px; font-size: 13px; color: var(--ink-soft); }
.pricing-call a { color: var(--ink); font-weight: 500; }
.pricing-call a:hover { color: var(--accent); }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; gap: 40px; } .pricing-card { position: static; } }

/* ============================================ LOCATION / MAP BLOCK ============================================ */
.location-block { background: var(--bg-alt); padding: 120px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-info h2 { margin-bottom: 24px; }
.location-info p { font-size: 17px; color: var(--ink-muted); margin-bottom: 24px; line-height: 1.75; }
.neighborhoods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.neighborhood-tag { background: var(--surface); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-size: 13px; color: var(--ink-muted); }
.map-wrap { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--accent), var(--accent-ink)); border: 1px solid var(--line); position: relative; display: grid; place-items: center; }
.map-wrap .map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(color-mix(in srgb, #fff 12%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, #fff 12%, transparent) 1px, transparent 1px); background-size: 36px 36px; }
.map-pin { position: relative; background: var(--ink); color: var(--bg); padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.map-pin::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid var(--ink); }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================ RELATED LINKS MODULE ============================================ */
.related-mod { padding: 100px 0; }
.related-head { margin-bottom: 48px; text-align: center; }
.related-head .eyebrow { justify-content: center; }
.related-head h2 { font-size: clamp(28px, 3vw, 40px); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.related-col h4 { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.related-col ul { list-style: none; padding: 0; }
.related-col li { margin-bottom: 4px; }
.related-col a { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 15px; color: var(--ink); transition: color 0.2s; }
.related-col a:hover { color: var(--accent); }
.related-col .arr { color: var(--ink-soft); }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================ CONTACT ============================================ */
.contact-section { padding: 60px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px; }
.contact-form-card h2 { font-size: 32px; margin-bottom: 8px; }
.contact-form-card .lead { color: var(--ink-muted); margin-bottom: 32px; font-size: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.form-group label .req { color: var(--accent); }
.form-input, .form-textarea, .form-select { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 15px; color: var(--ink); transition: border-color 0.2s, background 0.2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-textarea { resize: vertical; min-height: 140px; font-family: var(--sans); }
.form-status { font-size: 14px; color: var(--ink-soft); margin-top: 12px; min-height: 1.2em; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.contact-info-value { font-size: 17px; color: var(--ink); }
.contact-info-value:hover { color: var(--accent); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .contact-form-card { padding: 32px 24px; } .form-row { grid-template-columns: 1fr; } }

/* ============================================ TEAM ============================================ */
.team-section { padding: 60px 0 120px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { display: flex; flex-direction: column; gap: 16px; }
.team-photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 22px; }
.team-role { color: var(--accent); font-size: 14px; margin-top: -8px; }
.team-bio { color: var(--ink-muted); font-size: 15px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================ ARTICLE (blog post) ============================================ */
.post-header { padding: 180px 32px 60px; text-align: center; }
.post-header .breadcrumb { margin-bottom: 24px; }
.post-header h1 { max-width: 900px; margin: 0 auto 32px; }
.post-meta { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--ink-soft); font-size: 14px; }
.post-meta .post-tag { background: var(--ink); color: var(--bg); padding: 6px 14px; border-radius: 999px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.post-meta-divider { width: 1px; height: 24px; background: var(--line); }
.article { padding: 0 0 120px; }
.article-body { max-width: var(--reading); margin: 0 auto; padding: 0 32px; }
.article-body h2 { font-size: 34px; margin: 48px 0 20px; line-height: 1.2; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 26px; margin: 36px 0 16px; }
.article-body p { font-size: 18px; line-height: 1.8; color: var(--ink-muted); margin-bottom: 24px; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 24px; color: var(--ink-muted); font-size: 18px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-related { max-width: var(--reading); margin: 0 auto; padding: 48px 32px 0; border-top: 1px solid var(--line); margin-top: 16px; }
.article-related h2 { font-size: 28px; margin-bottom: 20px; }
.article-related ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.article-related a { color: var(--ink); font-weight: 500; display: inline-flex; gap: 8px; }
.article-related a:hover { color: var(--accent); }

/* ============================================ FOOTER ============================================ */
.footer { background: var(--ink); color: #c9c4b6; padding: 80px 32px 32px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(216,211,196,0.15); }
.footer-brand .nav-logo { font-size: 32px; color: var(--surface); }
.footer-brand .nav-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 280px; color: #9e9988; }
.footer-col h5 { font-family: var(--sans); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--surface); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #9e9988; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--surface); }
.footer-col p { color: #9e9988; font-size: 14px; margin-bottom: 8px; }
.footer-col .label { font-size: 12px; color: #6f6b5f; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 16px; margin-bottom: 4px; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #6f6b5f; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; padding: 0; margin: 0; }
.footer-legal a { color: #6f6b5f; transition: color 0.2s; }
.footer-legal a:hover { color: var(--ink); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================ LEAD MODAL ============================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: color-mix(in srgb, var(--ink) 55%, transparent); display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay[hidden] { display: none; }
.modal-dialog { position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; background: var(--bg); border-radius: var(--radius-lg); box-shadow: 0 24px 60px color-mix(in srgb, var(--ink) 30%, transparent); padding: 40px; }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 28px; line-height: 1; color: var(--ink-soft); }
.modal-close:hover { color: var(--ink); }
.modal-title { font-size: 30px; margin-bottom: 8px; padding-right: 24px; }
.modal-sub { color: var(--ink-muted); font-size: 15px; margin-bottom: 24px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-thanks { text-align: center; padding: 16px 0; }
.lead-thanks-title { font-family: var(--serif); font-size: 28px; color: var(--accent); margin-bottom: 8px; }

/* ============================================ A11Y ============================================ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
