@charset "UTF-8";
:root {
  --site-primary: #7a4d81;
  --site-primary-light: #af91ab;
  --site-primary-dark: #512f4e;
  --site-secondary: #914e4a;
  --site-accent: #007bbe;
  --site-background: #ffeffb;
  --site-surface: #fff4fc;
  --site-text: #1c091d;
  --site-muted: #6d5a6a;
  --bs-body-bg: #ffeffb;
  --bs-body-color: #1c091d;
  --bs-body-font-family: 'Mulish', sans-serif;
  --bs-link-color: #7a4d81;
  --bs-link-hover-color: #512f4e;
  --type-h1: clamp(2.4rem, 5vw, 3.4rem);
  --type-h2: clamp(1.9rem, 4vw, 2.2rem);
  --type-h3: 1.5rem;
  --type-body: 1.125rem;
  --type-small: .95rem;
  --type-eyebrow: .78rem;
  --section-space: clamp(5rem, 8vw, 7rem);
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--bs-body-bg); color: var(--bs-body-color); font-family: var(--bs-body-font-family); font-size: var(--type-body); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Marcellus', serif; color: var(--site-text); text-wrap: balance; line-height: 1.12; font-weight: 400; }
h1 { font-size: var(--type-h1); }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); }
p, li { text-wrap: pretty; }
a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }
img { max-width: 100%; }
.btn { border-radius: 0; padding: .78rem 1.2rem; font-weight: 700; box-shadow: none; letter-spacing: .035em; transition: color .2s ease, background-color .2s ease, border-color .2s ease; border-width: 1.5px; }
.btn-primary { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background-color: var(--site-primary-dark); border-color: var(--site-primary-dark); color: #fff; }
.btn-outline-primary { color: var(--site-primary); border-color: var(--site-primary); background-color: transparent; }
.btn-outline-primary:hover, .btn-outline-primary:focus { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }
.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }
.card { border-radius: 10px; box-shadow: 0 1px 2px rgba(0,0,0,.05); border: 0; background: var(--site-surface); }
.form-control, .form-select { border-radius: 5px; border-color: rgba(81,47,78,.28); background-color: var(--site-surface); padding: .8rem .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--site-primary); box-shadow: 0 0 0 .2rem rgba(122,77,129,.12); background-color: #fff; }
.form-check-input:checked { background-color: var(--site-primary); border-color: var(--site-primary); }
.eyebrow { margin-bottom: var(--space-2); color: var(--site-primary-dark); font-size: var(--type-eyebrow); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.initial { display: inline-block; margin-right: .03em; color: var(--site-primary); font-size: 1.38em; line-height: .72; }
.measure { max-width: 68ch; }
.section-copy { max-width: 62ch; margin-inline: auto; }
.section-pad { padding-block: var(--section-space); }
.wide-wrap { width: min(1280px, calc(100% - 2rem)); margin-inline: auto; }
.narrow-wrap { width: min(880px, calc(100% - 2rem)); margin-inline: auto; }
.site-nav { min-height: 92px; padding-block: 1rem; background: rgba(255,239,251,.97); transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease; z-index: 1030; }
.site-nav.is-scrolled { min-height: 66px; padding-block: .35rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.navbar-brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--site-text); font-family: 'Marcellus', serif; font-size: 1.08rem; letter-spacing: .025em; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; border-radius: 8px; transition: width .25s ease, height .25s ease; }
.is-scrolled .brand-logo { width: 36px; height: 36px; }
.nav-link { color: var(--site-text); font-size: .92rem; font-weight: 700; letter-spacing: .06em; }
.nav-link:hover, .nav-link:focus { color: var(--site-primary); }
.navbar-toggler { border-color: rgba(81,47,78,.25); border-radius: 0; }
.hero-band { background: var(--site-background); padding-block: clamp(4rem,7vw,6.5rem); }
.hero-grid { align-items: center; }
.hero-copy { padding-right: clamp(0rem,3vw,3rem); }
.hero-lead { max-width: 55ch; color: var(--site-muted); }
.hero-image { width: 100%; min-height: 520px; object-fit: cover; border-radius: 8px 0 0 8px; }
.highlight-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid rgba(81,47,78,.2); }
.highlight-strip span { padding: .35rem 1rem; color: var(--site-text); font-size: var(--type-small); letter-spacing: .045em; text-align: center; }
.highlight-strip span + span { border-left: 1px solid rgba(81,47,78,.2); }
.soft-wash { background: color-mix(in srgb, var(--site-primary-light) 18%, var(--site-background)); }
.edge-grid-right, .edge-grid-left { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr); align-items: stretch; }
.edge-copy-left { width: min(790px,100%); margin-left: auto; padding: var(--section-space) clamp(1rem,5vw,5rem) var(--section-space) 1rem; }
.edge-copy-right { width: min(790px,100%); margin-right: auto; padding: var(--section-space) 1rem var(--section-space) clamp(1rem,5vw,5rem); }
.edge-visual { min-height: 100%; }
.edge-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; border-radius: 0; }
.service-record { display: grid; grid-template-columns: minmax(190px,.8fr) minmax(0,1.2fr); padding-block: 1.25rem; border-top: 1px solid rgba(81,47,78,.2); }
.service-record:last-of-type { border-bottom: 1px solid rgba(81,47,78,.2); }
.service-name { font-family: 'Marcellus', serif; padding-right: var(--space-3); }
.service-detail { color: var(--site-muted); }
.price { color: var(--site-text); font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.icon-line { width: 28px; height: 28px; margin-bottom: var(--space-2); color: var(--site-primary); fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.zones-band { position: relative; z-index: 2; background: var(--site-surface); padding-bottom: var(--section-space); }
.overlap-up { position: relative; top: -48px; margin-bottom: -48px; }
.zone-panel { padding: clamp(2rem,4vw,4rem); }
.zone-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1.5rem; padding: 0; margin: var(--space-3) 0; list-style: none; font-family: 'Marcellus',serif; font-size: 1.35rem; }
.zone-image { width: 100%; height: 100%; min-height: 430px; object-fit: cover; border-radius: 8px; }
.about-band { background: var(--site-background); }
.about-image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 8px; }
.data-list { padding: 0; list-style: none; color: var(--site-muted); font-size: var(--type-small); }
.data-list li { margin-bottom: .45rem; }
.request-visual { display: flex; align-items: center; justify-content: center; min-height: 100%; padding: clamp(3rem,7vw,7rem) clamp(1rem,5vw,5rem); background: color-mix(in srgb, var(--site-primary-light) 28%, var(--site-background)); color: var(--site-text); text-align: center; }
.request-visual h2, .request-visual a { color: var(--site-text); }
.call-number { display: block; margin: 1rem 0 1.5rem; color: var(--site-text); font-family: 'Marcellus',serif; font-size: clamp(1.8rem,4vw,3rem); font-variant-numeric: tabular-nums; text-decoration: none; }
.request-form { max-width: 720px; }
.form-status { display: none; margin-top: 1rem; padding: 1rem; background: var(--site-surface); color: var(--site-primary-dark); }
.form-status.is-visible { display: block; }
.prefooter-band { background: var(--site-background); }
.prefooter-mark { display: flex; align-items: center; justify-content: center; min-height: 420px; background: var(--site-surface); }
.prefooter-mark img { width: min(230px,60%); border-radius: 8px; }
.prefooter-copy { padding: var(--section-space) clamp(1rem,5vw,5rem); }
.contact-area { padding: 3.5rem 1rem; background: var(--site-background); text-align: center; }
.contact-area address { margin: 0; font-style: normal; color: var(--site-muted); }
.site-footer { padding: 1.6rem 0 1rem; background: var(--site-background); border-top: 1px solid rgba(81,47,78,.18); font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: start; gap: 1.5rem; }
.footer-grid address { margin: .3rem 0 0; font-style: normal; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .4rem 1rem; }
.footer-bottom { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(81,47,78,.12); text-align: center; }
.cookie-banner { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 1090; display: none; max-width: 760px; margin-inline: auto; padding: 1rem; background: var(--site-surface); border: 1px solid rgba(81,47,78,.2); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0; font-size: var(--type-small); }
.page-header { padding: clamp(4rem,7vw,6rem) 0 2rem; text-align: center; }
.content-section { padding-block: clamp(3rem,6vw,5rem); }
.price-card { height: 100%; padding: 2rem; }
.price-card .price { display: block; margin-top: 1rem; font-size: 1.35rem; }
.plain-list { max-width: 680px; margin-inline: auto; }
.legal-main { width: min(820px,calc(100% - 2rem)); margin-inline: auto; padding-block: var(--section-space); }
.legal-main h2 { margin-top: 3rem; }
.legal-main h3 { margin-top: 2rem; }
.not-found { min-height: 62vh; display: grid; place-items: center; padding: var(--section-space) 1rem; text-align: center; }
@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0; }
  .hero-copy { padding-right: 0; margin-bottom: 2rem; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-image { min-height: 400px; border-radius: 8px; }
  .edge-grid-right, .edge-grid-left { grid-template-columns: 1fr; }
  .edge-copy-left, .edge-copy-right { width: min(100% - 2rem,780px); margin-inline: auto; padding-inline: 0; }
  .edge-visual { order: 2; }
  .edge-visual img { min-height: 420px; }
  .request-visual { order: 1; min-height: 380px; }
  .request-content { order: 2; }
  .prefooter-mark { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 767.98px) {
  .site-nav { min-height: 72px; }
  .brand-logo { width: 38px; height: 38px; }
  .highlight-strip { grid-template-columns: 1fr 1fr; }
  .highlight-strip span:nth-child(3) { border-left: 0; }
  .highlight-strip span:nth-child(n+3) { border-top: 1px solid rgba(81,47,78,.2); }
  .service-record { grid-template-columns: 1fr; }
  .service-name { margin-bottom: .4rem; }
  .overlap-up { top: -32px; margin-bottom: -32px; }
  .zone-panel { padding-inline: 1rem; }
  .cookie-banner .d-flex { align-items: stretch !important; flex-direction: column; }
}
@media (max-width: 420px) {
  .navbar-brand span { max-width: 185px; white-space: normal; line-height: 1.1; }
  .highlight-strip { grid-template-columns: 1fr; }
  .highlight-strip span + span { border-left: 0; border-top: 1px solid rgba(81,47,78,.2); }
}
