:root {
  --ink: #492f3c;
  --ink-soft: #745966;
  --paper: #fffaf7;
  --white: #fff;
  --rose: #f0b7b2;
  --rose-soft: #f9e2df;
  --peach: #f6d4b9;
  --cream: #fbefd5;
  --lilac: #e7ddf2;
  --mint: #dceee5;
  --berry: #9d526a;
  --berry-dark: #71354a;
  --line: rgba(73, 47, 60, .13);
  --shadow: 0 22px 60px rgba(95, 56, 74, .12);
  --radius: 30px;
  --wrap: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 183, 178, .22), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(231, 221, 242, .34), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--berry-dark);
  border-radius: 12px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.adult-bar { color: #fff; background: var(--ink); font-size: .75rem; }
.adult-bar > div { display: flex; gap: 14px; align-items: center; min-height: 38px; }
.adult-bar strong {
  display: inline-grid;
  place-items: center;
  min-width: 27px;
  height: 27px;
  color: var(--ink);
  background: var(--peach);
  border-radius: 50%;
}
.adult-bar span:last-child { margin-left: auto; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, .94);
  backdrop-filter: blur(16px);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 92px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--rose), var(--peach));
  border: 1px solid rgba(73,47,60,.15);
  border-radius: 18px 18px 18px 7px;
  font: 800 1.12rem/1 Georgia, serif;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(157,82,106,.17);
}
.brand > span:last-child { display: flex; gap: 5px; align-items: baseline; font-size: 1.12rem; letter-spacing: -.02em; }
.brand b { font-size: 1.25rem; }
.brand em { color: var(--berry); font-family: Georgia, serif; font-weight: 700; }
.header-call {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(73,47,60,.12);
  border-radius: 18px;
  text-decoration: none;
}
.header-call span { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.header-call strong { font-size: 1.15rem; }

.main-nav { display: flex; gap: 5px; padding-bottom: 14px; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:first-child, .main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); background: var(--rose-soft); }

.breadcrumbs { display: flex; gap: 9px; align-items: center; padding-top: 20px; color: var(--ink-soft); font-size: .8rem; }
.breadcrumbs a { font-weight: 800; text-decoration: none; }

.eyebrow, .section-head > span, .home-intro > span, .simple-hero > span, .footer-pitch > div > span, .inline-call > div > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--berry);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.07; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 8.4vw, 5.85rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 5.5vw, 3.55rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.3rem, 3.5vw, 1.85rem); }

.home-hero, .page-hero {
  display: grid;
  gap: 30px;
  align-items: center;
  padding-block: 54px 44px;
}
.hero-copy h1 i { color: var(--berry); font-weight: 400; }
.hero-copy > p, .page-hero-copy > p { max-width: 700px; color: var(--ink-soft); font-size: clamp(1rem, 2.2vw, 1.18rem); }
.hero-copy > ul, .page-hero-copy > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 800;
}
.hero-copy > ul li::before, .page-hero-copy > ul li::before { content: "✓"; margin-right: 6px; color: var(--berry); }

.hero-gallery { position: relative; min-height: 430px; }
.hero-gallery figure {
  position: absolute;
  width: 60%;
  margin: 0;
  overflow: hidden;
  border: 9px solid rgba(255,255,255,.9);
  border-radius: 120px 120px 34px 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.hero-gallery figure:nth-child(1) { z-index: 3; left: 0; top: 12%; transform: rotate(-3deg); }
.hero-gallery figure:nth-child(2) { z-index: 2; right: 0; top: 0; transform: rotate(4deg); }
.hero-gallery figure:nth-child(3) { z-index: 4; right: 7%; bottom: -2%; width: 42%; transform: rotate(1deg); }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; }

.call-actions { display: grid; gap: 10px; margin-top: 25px; }
.call-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px 18px;
  border: 1px solid rgba(73,47,60,.13);
  border-radius: 22px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(93,48,65,.1);
}
.call-mobile { background: linear-gradient(135deg, var(--mint), #cce9dc); }
.call-landline { background: linear-gradient(135deg, var(--peach), #f8dfc8); }
.call-button span { width: 100%; color: #000; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.call-button strong { margin-right: 8px; font-size: 1.25rem; }
.call-button small { color: var(--ink-soft); font-weight: 800; }

.trust-row { display: grid; gap: 10px; padding-block: 12px 58px; }
.trust-row div {
  padding: 20px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.trust-row strong { display: block; color: var(--berry); font-family: Georgia, serif; font-size: 1.15rem; }
.trust-row span { color: var(--ink-soft); font-size: .78rem; }

.home-intro {
  display: grid;
  gap: 12px;
  padding: 36px 24px;
  background: linear-gradient(130deg, var(--rose-soft), var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.home-intro h2 { max-width: 760px; }
.home-intro p { max-width: 760px; margin: 0; color: var(--ink-soft); }

.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p { color: var(--ink-soft); }
.topics, .directory, .process, .faq, .rates { padding-block: 74px; }

.topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.topic-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 34px rgba(79,48,62,.08); }
.topic-card a { display: block; height: 100%; text-decoration: none; }
.topic-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.topic-card span, .topic-card h3, .topic-card em { display: block; margin-inline: 16px; }
.topic-card span { margin-top: 16px; color: var(--berry); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.topic-card h3 { margin-top: 7px; margin-bottom: 12px; font-size: 1.22rem; }
.topic-card em { margin-bottom: 17px; color: var(--berry); font-size: .76rem; font-style: normal; font-weight: 900; }

.category-grid { display: grid; gap: 14px; }
.category-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(79,48,62,.07); scroll-margin-top: 22px; }
.shade-1 { background: var(--rose-soft); }
.shade-2 { background: var(--cream); }
.shade-3 { background: var(--lilac); }
.shade-4 { background: var(--mint); }
.category-card > div > span { color: var(--berry); font: 700 .9rem/1 Georgia, serif; }
.category-card h3 { margin: 10px 0 7px; }
.category-card p { margin-bottom: 18px; color: var(--ink-soft); }
.category-card summary {
  cursor: pointer;
  width: fit-content;
  padding: 9px 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}
.category-links { display: grid; gap: 7px; margin-top: 18px; }
.category-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(73,47,60,.12);
  color: var(--ink-soft);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}
.category-links i { color: var(--berry); font-style: normal; }

.process { padding-inline: max(16px, calc((100% - 1180px) / 2)); background: var(--ink); color: #fff; }
.process .section-head > span { color: var(--peach); }
.process ol { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.process li { padding: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; }
.process li b { color: var(--rose); font-family: Georgia, serif; }
.process li h3 { margin: 13px 0 8px; }
.process li p { margin: 0; color: rgba(255,255,255,.72); }
.centered-call { max-width: 660px; margin: 28px auto 0; }

.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); }
.page-hero figure { position: relative; margin: 0; padding: 10px; background: linear-gradient(145deg, var(--rose-soft), var(--lilac)); border-radius: 110px 110px 34px 34px; box-shadow: var(--shadow); }
.page-hero figure > span { position: absolute; z-index: 2; left: 22px; top: 22px; max-width: calc(100% - 44px); padding: 7px 11px; color: var(--ink); background: rgba(255,250,247,.86); border-radius: 999px; font-size: .66rem; font-weight: 900; }
.page-hero figure img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 100px 100px 27px 27px; }
.page-hero figcaption { padding: 12px 8px 4px; color: var(--ink-soft); font-size: .78rem; text-align: center; }

.answer-card { display: grid; gap: 12px; padding: 25px; background: var(--mint); border: 1px solid var(--line); border-radius: 25px; }
.answer-card > span { color: var(--berry); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.answer-card p { margin: 0; }

.story { display: grid; gap: 18px; padding-block: 60px; }
.story-panel { display: grid; gap: 15px; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); }
.story-panel > span { color: var(--berry); font: 700 1rem/1 Georgia, serif; }
.story-panel h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); }
.story-panel p { color: var(--ink-soft); }
.story-panel p:last-child { margin-bottom: 0; }
.story-rose { background: var(--rose-soft); }
.story-cream { background: var(--cream); }
.story-lilac { background: var(--lilac); }

.related-inline { padding: 28px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.related-inline h2 { font-size: 1.75rem; }
.related-inline > div { display: grid; gap: 8px; }
.related-inline a { display: flex; flex-direction: column; padding: 13px 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 15px; font-weight: 800; text-decoration: none; }
.related-inline i { color: var(--berry); font-size: .72rem; font-style: normal; }

.inline-call { display: grid; gap: 16px; align-items: center; padding-block: 45px; }
.inline-call h2 { margin-bottom: 0; }
.compact { margin: 0; }

.faq-list { display: grid; gap: 10px; }
.faq details { padding: 18px 20px; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 18px; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq details p { margin: 14px 0 0; color: var(--ink-soft); }

.rates { padding-top: 40px; }
.rate-grid { display: grid; gap: 11px; }
.rate-grid article { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; align-items: center; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.rate-grid b { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; background: var(--rose-soft); border-radius: 14px; }
.rate-grid span { color: var(--ink-soft); font-size: .74rem; }
.rate-grid a { font-size: 1.15rem; font-weight: 900; text-decoration: none; }
.rate-grid strong { grid-column: 1 / -1; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--berry); }

.simple-hero { padding-block: 65px 40px; text-align: center; }
.simple-hero p { max-width: 650px; margin-inline: auto; color: var(--ink-soft); }
.simple-hero .call-actions { max-width: 680px; margin-inline: auto; }
.sitemap-directory { display: grid; gap: 16px; padding-bottom: 50px; }
.sitemap-directory section { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.sitemap-directory h2 { font-size: 1.8rem; }
.sitemap-directory p { color: var(--ink-soft); }
.sitemap-directory section > div { display: grid; gap: 6px; }
.sitemap-directory section a { padding-block: 8px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-weight: 700; text-decoration: none; }

.site-footer { margin-top: 50px; color: #fff; background: var(--ink); }
.footer-pitch { display: grid; gap: 20px; align-items: center; padding-block: 58px 36px; }
.footer-pitch h2 { margin-bottom: 0; }
.footer-pitch > div > span { color: var(--peach); }
.site-footer .rates { padding-block: 30px; }
.site-footer .section-head > span, .site-footer .rate-grid strong { color: var(--peach); }
.site-footer .section-head p { color: rgba(255,255,255,.68); }
.site-footer .rate-grid article { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.site-footer .rate-grid b { color: var(--ink); background: var(--peach); }
.site-footer .rate-grid span { color: rgba(255,255,255,.65); }
.site-footer .rate-grid strong { border-color: rgba(255,255,255,.12); }
.footer-legal { padding-block: 30px 110px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: .72rem; }
.footer-legal a { color: #fff; font-weight: 800; }
.mobile-sticky-call {
  position: fixed;
  z-index: 50;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 10px 16px;
  color: #000;
  background: linear-gradient(135deg, #cce9dc, var(--mint));
  border: 1px solid rgba(73,47,60,.18);
  border-radius: 19px;
  box-shadow: 0 14px 38px rgba(44,34,39,.25);
  text-align: center;
  text-decoration: none;
}
.mobile-sticky-call span { font-size: .68rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.mobile-sticky-call strong { font-size: 1.1rem; }
.mobile-sticky-call small { font-weight: 800; }

@media (min-width: 620px) {
  :root { --wrap: min(1180px, calc(100% - 56px)); }
  .call-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .inline-call { grid-template-columns: 1fr minmax(390px, .9fr); }
  .answer-card { grid-template-columns: 150px 1fr; }
  .sitemap-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 880px) {
  .home-hero, .page-hero { grid-template-columns: minmax(0, 1.04fr) minmax(360px, .78fr); gap: 56px; padding-block: 76px 68px; }
  .hero-gallery { min-height: 590px; }
  .call-actions { max-width: 680px; }
  .trust-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-intro { grid-template-columns: 180px 1fr; padding: 48px; }
  .topic-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .category-card { padding: 31px; }
  .story-panel { grid-template-columns: 65px 1fr; padding: 42px; }
  .story-panel > span { padding-top: 8px; }
  .related-inline { padding: 38px 42px; }
  .related-inline > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-pitch { grid-template-columns: 1fr minmax(430px, .9fr); }
  .footer-pitch .call-actions { margin: 0; }
  .mobile-sticky-call { display: none; }
  .footer-legal { padding-bottom: 34px; }
}

@media (min-width: 1160px) {
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sitemap-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 619px) {
  .adult-bar span:nth-child(2) { display: none; }
  .adult-bar span:last-child { margin-left: 0; font-size: .67rem; }
  .header-row { min-height: 76px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 15px 15px 15px 6px; }
  .brand > span:last-child { display: block; line-height: 1.05; }
  .brand b, .brand em { display: block; font-size: 1rem; }
  .header-call { padding: 8px 10px; border-radius: 14px; }
  .header-call span { display: none; }
  .header-call strong { font-size: .95rem; }
  .home-hero, .page-hero { padding-top: 42px; }
  .hero-gallery { min-height: 390px; }
  .hero-gallery { overflow: hidden; border-radius: 36px; }
  .hero-gallery figure { border-width: 6px; }
  .topics, .directory, .process, .faq, .rates { padding-block: 56px; }
  .page-hero figure { max-width: 440px; margin-inline: auto; }
  .topic-card h3 { font-size: 1.05rem; }
  .footer-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
