:root {
  --ink: #272329;
  --muted: #6f666d;
  --wine: #6e2945;
  --wine-dark: #4b1830;
  --rose: #c77b8e;
  --rose-soft: #f1dce1;
  --ivory: #fbf8f3;
  --sand: #ede5da;
  --white: #fff;
  --green: #205f50;
  --shadow: 0 22px 60px rgba(59, 35, 45, .12);
  --radius: 1.5rem;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid #d09bad; outline-offset: 4px; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 100; padding: .7rem 1rem; background: var(--white); transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 780px); margin-inline: auto; }
.eyebrow { margin: 0 0 .65rem; color: var(--wine); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.serif { font-family: Georgia, "Times New Roman", serif; }
.muted { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(110,41,69,.1); background: rgba(251,248,243,.95); backdrop-filter: blur(14px); }
.nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { text-decoration: none; font: 700 1.35rem/1 Georgia, serif; letter-spacing: -.02em; }
.brand span { color: var(--wine); }
.desktop-nav { display: flex; align-items: center; gap: 1.35rem; }
.desktop-nav a { text-decoration: none; font-size: .9rem; font-weight: 650; }
.desktop-nav a:hover { color: var(--wine); }
.nav-cta, .button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: .55rem; border: 0; border-radius: 999px; padding: .7rem 1.25rem; color: var(--white); background: var(--wine); text-decoration: none; font-weight: 750; transition: transform .2s, background .2s; }
.nav-cta:hover, .button:hover { background: var(--wine-dark); transform: translateY(-1px); }
.button.light { color: var(--wine-dark); background: var(--white); }
.button.outline { color: var(--wine-dark); border: 1px solid rgba(110,41,69,.3); background: transparent; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid rgba(110,41,69,.15); border-radius: 50%; color: var(--ink); background: transparent; }
.mobile-nav { display: none; padding: 0 1rem 1rem; }
.mobile-nav a { display: block; padding: .75rem; border-top: 1px solid rgba(110,41,69,.1); text-decoration: none; font-weight: 700; }

.hero { position: relative; min-height: 680px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: #2d1722; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(29,13,21,.88) 0%, rgba(45,22,34,.58) 50%, rgba(45,22,34,.15) 85%), url("../images/hero.webp") center/cover; }
.hero-inner { position: relative; z-index: 1; padding: 8rem 0 6rem; }
.hero .eyebrow { color: #f1c9d3; }
.hero h1, .page-hero h1 { max-width: 860px; margin: 0; font: 500 clamp(2.7rem, 7vw, 5.8rem)/.98 Georgia, serif; letter-spacing: -.045em; }
.hero h1 em { color: #efc6d0; font-weight: 400; }
.hero-lead { max-width: 650px; margin: 1.7rem 0 0; color: #f7edf0; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.trust-strip { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.18); background: rgba(25,12,18,.45); }
.trust-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding: 1rem 0; list-style: none; font-size: .86rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section.soft { background: #f3ece4; }
.section.dark { color: var(--white); background: var(--wine-dark); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2, .content h2 { margin: 0; font: 500 clamp(2rem, 5vw, 3.7rem)/1.05 Georgia, serif; letter-spacing: -.035em; }
.section-heading p { max-width: 560px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.service-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid rgba(110,41,69,.1); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(59,35,45,.05); text-decoration: none; }
.service-card img { aspect-ratio: 4/3; object-fit: cover; transition: transform .45s; }
.service-card:hover img { transform: scale(1.025); }
.service-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.45rem; }
.service-card h3 { margin: 0; font: 600 1.55rem/1.15 Georgia, serif; }
.service-card p { margin: .7rem 0 1.2rem; color: var(--muted); }
.card-link { margin-top: auto; color: var(--wine); font-size: .8rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.concern { padding: 1.4rem; border-top: 1px solid rgba(110,41,69,.16); }
.concern span { display: inline-grid; width: 2rem; height: 2rem; place-items: center; margin-bottom: .9rem; border-radius: 50%; color: var(--white); background: var(--wine); font-size: .8rem; font-weight: 800; }
.concern h3 { margin: 0 0 .4rem; font: 600 1.25rem Georgia, serif; }
.concern p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(2rem, 7vw, 6rem); }
.split-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-image img { aspect-ratio: 4/5; object-fit: cover; }
.check-list { display: grid; gap: .9rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .75rem; }
.check-list li::before { content: "✓"; display: grid; width: 1.55rem; height: 1.55rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: .75rem; font-weight: 900; }
.quote { margin: 2rem 0 0; padding: 1.2rem 1.4rem; border-left: 3px solid var(--rose); background: rgba(255,255,255,.55); }
.location-card { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); overflow: hidden; border: 1px solid rgba(110,41,69,.1); border-radius: 2rem; background: var(--white); box-shadow: var(--shadow); }
.location-photo { min-height: 560px; }
.location-photo img { width: 100%; height: 100%; object-fit: cover; }
.location-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.location-info h2 { margin: 0; font: 500 clamp(2rem, 4vw, 3.25rem)/1.05 Georgia, serif; letter-spacing: -.035em; }
.info-list { display: grid; gap: 1.15rem; margin: 2rem 0; padding: 0; list-style: none; }
.info-list li { display: grid; grid-template-columns: 1.7rem minmax(0, 1fr); align-items: start; gap: .8rem; }
.info-list li::before { content: "✓"; display: grid; width: 1.55rem; height: 1.55rem; place-items: center; margin-top: .1rem; border-radius: 50%; color: var(--white); background: var(--green); font-size: .75rem; font-weight: 900; }
.info-list strong { display: block; margin-bottom: .12rem; }

.page-hero { padding: clamp(4.5rem, 10vw, 8rem) 0 4.5rem; background: radial-gradient(circle at 85% 15%, #efd4da, transparent 32%), #f3ece4; }
.page-hero h1 { max-width: 980px; color: var(--wine-dark); font-size: clamp(2.6rem, 6vw, 5rem); }
.page-hero .lead { max-width: 760px; margin: 1.4rem 0 0; color: #50484e; font-size: 1.16rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.7rem; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--wine); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: clamp(2rem, 7vw, 6rem); }
.content { max-width: 760px; }
.content h2 { margin-top: 3.2rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.content h3 { margin: 2rem 0 .5rem; font: 600 1.35rem Georgia, serif; }
.content p { margin: .8rem 0; }
.content ul, .content ol { padding-left: 1.25rem; }
.content li + li { margin-top: .5rem; }
.content .answer { margin: 0 0 2rem; padding: 1.4rem 1.5rem; border-radius: 1rem; background: #f3ece4; font-size: 1.08rem; }
.source-link { margin: -1rem 0 2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--rose); background: rgba(241,220,225,.42); }
.source-link a { color: var(--wine); font-weight: 750; }
.content img { margin: 2rem 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 2rem 0; }
.fact { padding: 1.1rem; border: 1px solid rgba(110,41,69,.13); border-radius: 1rem; background: var(--white); }
.fact strong { display: block; color: var(--wine); font: 600 1.05rem Georgia, serif; }
.sidebar { position: sticky; top: 104px; padding: 1.4rem; border-radius: 1.2rem; color: var(--white); background: var(--wine-dark); box-shadow: var(--shadow); }
.sidebar h2 { margin: 0; font: 600 1.5rem Georgia, serif; }
.sidebar p { color: #eadce1; }
.sidebar .button { width: 100%; color: var(--wine-dark); background: var(--white); }
.sidebar small { display: block; margin-top: 1rem; color: #d9c3cb; }
.notice { margin: 2rem 0; padding: 1rem 1.2rem; border-radius: 1rem; color: #514338; background: #f1e6d8; }
.faq { margin-top: 2rem; }
.faq details { border-top: 1px solid rgba(110,41,69,.18); }
.faq details:last-child { border-bottom: 1px solid rgba(110,41,69,.18); }
.faq summary { cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; font-weight: 750; }
.faq details p { padding: 0 0 1rem; color: var(--muted); }

.cta-band { padding: clamp(3rem, 7vw, 5.5rem); border-radius: 2rem; color: var(--white); background: linear-gradient(125deg, var(--wine-dark), #8b3b58); box-shadow: var(--shadow); }
.cta-band h2 { max-width: 760px; margin: 0; font: 500 clamp(2.1rem, 5vw, 4rem)/1.05 Georgia, serif; }
.cta-band p { max-width: 680px; color: #f0dfe5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.site-footer { padding: 4rem 0 5.5rem; color: #eee3e7; background: #24141c; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.site-footer h2 { color: var(--white); font: 600 1.2rem Georgia, serif; }
.site-footer a { color: #eee3e7; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: .55rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: #cbbbc1; font-size: .8rem; }
.mobile-call { display: none; }

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .mobile-nav[data-open="true"] { display: block; }
  .trust-strip ul { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-card { grid-template-columns: 1fr; }
  .location-photo { min-height: 380px; }
}

@media (max-width: 620px) {
  .wrap, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .hero { min-height: 720px; }
  .hero-inner { padding: 7rem 0 4rem; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .hero-actions .button { width: 100%; }
  .trust-strip ul, .grid-3, .grid-2, .fact-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .mobile-call { position: fixed; right: .8rem; bottom: .8rem; z-index: 45; display: inline-flex; box-shadow: 0 12px 30px rgba(75,24,48,.35); }
  .site-footer { padding-bottom: 7rem; }
  .location-photo { min-height: 280px; }
  .location-info { padding: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media print {
  .site-header, .mobile-call, .site-footer, .sidebar { display: none; }
  body { background: white; }
  .section { padding: 2rem 0; }
}
