/* Shared styling for all SEO sub-pages (service + location pages).
   Matches the index.html rose/cream palette exactly. */

:root {
  --bg:         #fbf5ef;
  --bg-2:       #f4e6dc;
  --surface:    #ffffff;
  --surface-2:  #fbf0e8;
  --line:       rgba(92, 42, 58, 0.10);
  --cream:      #fdf8f3;
  --muted:      #8a6770;
  --ink:        #3d1f24;
  --ink-2:      #2a1318;
  --gold:       #c95867;
  --gold-2:     #a83f4f;
  --gold-3:     #e89aa6;
  --gold-soft:  rgba(201, 88, 103, 0.14);
  --font-display: "Cinzel", "Cormorant", serif;
  --font-serif:   "Cormorant", "Playfair Display", Georgia, serif;
  --font-sans:    "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #fff; }

.container { width: 100%; max-width: 1240px; padding: 0 24px; margin: 0 auto; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-3) 0%, var(--gold) 30%, #fde2e7 45%, var(--gold) 60%, var(--gold-2) 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 9s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .gold-text { animation: none; } }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Header */
header.site {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(251,245,239,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .18em;
  color: var(--ink);
}
.brand .mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-3), var(--gold) 65%, var(--gold-2) 100%);
  box-shadow: 0 4px 12px -4px rgba(201,88,103,.4);
  color: #fff;
}
.brand .mark svg { width: 16px; height: 16px; }
.brand .name { display: inline-flex; flex-direction: column; line-height: 1; }
.brand .name strong { font-weight: 600; letter-spacing: .22em; }
.brand .name span {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: .32em;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(92, 42, 58, 0.16);
  background: var(--surface);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.back-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-soft);
}
.back-link svg { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.back-link:hover svg { transform: translateX(-3px); }

/* Page hero */
.page-hero {
  padding: 130px 0 60px;
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,88,103,.10), transparent 60%),
    var(--bg);
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,88,103,.32), transparent);
}
.page-hero .breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.page-hero .breadcrumb a { color: var(--muted); transition: color .2s ease; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { color: rgba(92, 42, 58, 0.25); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.page-hero p.lead {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}
.page-hero .cta-row {
  margin-top: 30px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 60%, var(--gold-2));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(201,88,103,.45), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(201,88,103,.55); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid rgba(92, 42, 58, 0.16);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

/* Body content sections */
.prose-section {
  background: var(--surface);
  padding: 80px 0 80px;
}
.prose-section + .prose-section { background: var(--bg-2); }
.prose-grid {
  max-width: 880px;
  margin: 0 auto;
}
.prose-grid h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  color: var(--ink);
}
.prose-grid h2 + p {
  margin-top: 0;
}
.prose-grid p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink);
  margin: 0 0 14px;
}
.prose-grid p a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,88,103,.35);
  transition: color .2s ease, border-color .2s ease;
}
.prose-grid p a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.prose-grid ul {
  list-style: none;
  margin: 14px 0 22px;
  padding: 0;
}
.prose-grid ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}
.prose-grid ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 1px;
  background: var(--gold);
}

/* Feature cards row (used inside prose) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 12px;
}
.feature-card {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1px solid rgba(92,42,58,.08);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  border-color: rgba(201,88,103,.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -25px rgba(92,42,58,.25);
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.15;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* FAQ */
.faq-section {
  background: var(--surface);
  padding: 80px 0 100px;
}
.faq-section .section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}
.faq-section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 14px 0 14px;
  color: var(--ink);
  line-height: 1.1;
}
.faq-section .lead { color: var(--muted); font-size: 16px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid rgba(92,42,58,.08);
  border-radius: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item[open] {
  background: var(--surface);
  border-color: rgba(201,88,103,.32);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 16px 0 0;
}

/* Related */
.related-section {
  background: var(--bg);
  padding: 70px 0 90px;
  border-top: 1px solid var(--line);
}
.related-section .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.related-section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  margin: 12px 0 0;
  color: var(--ink);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: block;
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(92,42,58,.10);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.related-card:hover {
  border-color: rgba(201,88,103,.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -25px rgba(92,42,58,.25);
}
.related-card .label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.related-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
}
.related-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Final CTA band */
.final-cta {
  background: var(--bg-2);
  padding: 90px 0 110px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  margin: 14px 0 10px;
  color: var(--ink);
}
.final-cta p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 16px;
}
.final-cta .cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.foot p, .foot a {
  color: var(--muted);
  font-size: 13px;
}
.foot .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.foot .legal-links a {
  position: relative;
  transition: color .25s ease;
}
.foot .legal-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.foot .legal-links a:hover { color: var(--gold); }
.foot .legal-links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 50px; }
  .prose-section { padding: 60px 0; }
  .faq-section { padding: 60px 0 80px; }
  .final-cta { padding: 70px 0 90px; }
}
