@charset "UTF-8";
:root {
  --site-primary: #7d5278;
  --site-primary-light: #a17c9a;
  --site-primary-dark: #4c2c4c;
  --site-secondary: #a96050;
  --site-accent: #007eba;
  --site-background: #fedcf2;
  --site-surface: #f6f3f6;
  --site-text: #200a1c;
  --site-muted: #696469;
  --bs-body-bg: #fedcf2;
  --bs-body-color: #200a1c;
  --bs-body-font-family: 'Manrope', sans-serif;
  --bs-link-color: #7d5278;
  --bs-link-hover-color: #4c2c4c;
  --fs-h1: clamp(2.4rem, 5vw, 3.4rem);
  --fs-h2: clamp(1.9rem, 3.5vw, 2.2rem);
  --fs-h3: 1.5rem;
  --fs-body: 1.125rem;
  --fs-small: .95rem;
  --fs-eyebrow: .78rem;
  --section-pad: clamp(5rem, 8vw, 7rem);
  --section-tight: clamp(3rem, 5vw, 4.2rem);
  --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(--fs-body); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', serif; font-weight: 750; letter-spacing: -.035em; color: var(--site-text); text-wrap: balance; }
h1 { font-size: var(--fs-h1); line-height: 1.08; }
h2 { font-size: var(--fs-h2); line-height: 1.16; }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p, li { text-wrap: pretty; }
a { color: var(--site-primary); transition: color .18s ease; }
a:hover { color: var(--site-primary-dark); }
img { max-width: 100%; display: block; }
.btn { border-radius: 9999px; padding: .78rem 1.35rem; font-weight: 700; box-shadow: none; letter-spacing: -.01em; transition: transform .18s ease, background-color .18s ease, border-color .18s ease; border-width: 1px; }
.btn:hover { transform: scale(1.02); }
.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: 1px solid rgba(76,44,76,.12); background: rgba(255,255,255,.62); }
.form-control, .form-select { border-radius: 6px; border-color: rgba(76,44,76,.28); padding: .78rem .9rem; background-color: #fff; color: var(--site-text); }
.form-control:focus, .form-select:focus { border-color: var(--site-primary); box-shadow: 0 0 0 .2rem rgba(125,82,120,.14); }
.form-check-input:checked { background-color: var(--site-primary); border-color: var(--site-primary); }
.site-nav { background: var(--site-background); padding: .65rem 0; }
.site-nav .navbar-brand { color: var(--site-text); font-weight: 800; font-size: 1rem; letter-spacing: -.025em; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.site-nav .nav-link { color: var(--site-text); font-size: var(--fs-small); font-weight: 650; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: var(--site-primary); }
.navbar-toggler { border: 0; box-shadow: none !important; }
.container-wide { width: min(1280px, calc(100% - 3rem)); margin-inline: auto; }
.container-service { width: min(1140px, calc(100% - 3rem)); margin-inline: auto; }
.section-pad { padding-block: var(--section-pad); }
.section-tight { padding-block: var(--section-tight); }
.bg-site { background: var(--site-background); }
.bg-surface { background: var(--site-surface); }
.bg-wash { background: #ebcde3; }
.kicker { display: flex; align-items: center; gap: .65rem; margin: 0 0 var(--space-2); font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--site-muted); }
.kicker::before { content: ""; width: 1.8rem; height: 2px; background: var(--site-accent); flex: 0 0 auto; }
.lead-copy { max-width: 64ch; font-size: 1.2rem; color: var(--site-muted); }
.hero { background: var(--site-background); }
.hero-grid { display: grid; grid-template-columns: 55% 45%; align-items: stretch; min-height: 620px; }
.hero-copy { padding: clamp(4rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100% - 1280px) / 2)); display: flex; flex-direction: column; justify-content: center; }
.hero-copy p { max-width: 58ch; color: var(--site-muted); }
.hero-visual { min-width: 0; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px 0 0 8px; }
.highlight-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(76,44,76,.16); }
.highlight-strip span { padding: 1.1rem 1.5rem; font-size: var(--fs-small); font-weight: 750; text-align: center; border-right: 1px solid rgba(76,44,76,.14); }
.offset-grid { display: grid; grid-template-columns: minmax(0, 70%) minmax(0, 30%); }
.offset-main { padding: 0 clamp(2rem, 6vw, 6rem) 0 max(1.5rem, calc((100% - 1280px) / 2)); }
.offset-aside { border-left: 1px solid rgba(76,44,76,.22); padding: 1rem max(1.5rem, calc((100% - 1280px) / 2)) 1rem clamp(2rem, 4vw, 4rem); display: flex; align-items: center; font-weight: 750; }
.service-list { margin-top: var(--space-4); }
.service-card { padding: 1.5rem; height: 100%; }
.service-number, .step-number { font-variant-numeric: tabular-nums; font-size: var(--fs-small); color: var(--site-accent); font-weight: 800; }
.service-card p { color: var(--site-muted); font-size: 1rem; margin-bottom: 0; }
.price { font-size: 1.25rem; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--site-primary-dark); }
.process-grid { display: grid; grid-template-columns: 38% 62%; }
.process-heading { padding-right: clamp(2rem, 6vw, 6rem); }
.process-heading-inner { position: sticky; top: 6rem; }
.process-content { border-left: 1px solid rgba(76,44,76,.18); padding-left: clamp(2rem, 5vw, 5rem); }
.process-step { padding: 0 0 var(--space-5); margin-bottom: var(--space-5); border-bottom: 1px solid rgba(76,44,76,.15); }
.process-step:last-child { margin: 0; padding-bottom: 0; border: 0; }
.rounded-media { border-radius: 8px; width: 100%; object-fit: cover; }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); }
.contact-list { list-style: none; padding: 0; margin: var(--space-3) 0 0; }
.contact-list li { margin-bottom: .7rem; }
.contact-list a { color: var(--site-text); }
.contact-area { background: var(--site-background); padding-block: var(--section-pad); }
.map-wrap { border-radius: 10px; overflow: hidden; min-height: 100%; }
.map-wrap iframe { width: 100%; min-height: 520px; height: 100%; border: 0; display: block; }
.form-label { font-size: var(--fs-small); font-weight: 750; }
.form-note { color: var(--site-muted); font-size: var(--fs-small); }
.site-footer { background: var(--site-text); color: var(--site-background); padding: 1.5rem 0 1rem; font-size: .84rem; }
.site-footer strong, .site-footer a { color: var(--site-background); }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 2rem; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: .35rem 1rem; justify-content: flex-end; }
.footer-bottom { border-top: 1px solid rgba(254,220,242,.2); margin-top: 1rem; padding-top: .7rem; text-align: center; }
.cookie-banner { position: fixed; z-index: 1080; left: 1rem; right: 1rem; bottom: 1rem; background: var(--site-surface); color: var(--site-text); border: 1px solid rgba(76,44,76,.16); border-radius: 10px; box-shadow: 0 8px 30px rgba(32,10,28,.14); padding: 1rem; }
.cookie-banner[hidden] { display: none; }
.cookie-inner { width: min(1140px, 100%); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-inner p { margin: 0; font-size: .9rem; }
.legal-main, .content-main { background: var(--site-surface); }
.page-header { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--site-background); }
.legal-wrap { width: min(820px, calc(100% - 3rem)); margin-inline: auto; padding-block: var(--section-pad); }
.legal-wrap h2 { margin-top: 2.7rem; }
.legal-wrap h3 { margin-top: 2rem; }
.price-table { --bs-table-bg: transparent; vertical-align: middle; }
.price-table th { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--site-muted); }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 4rem 1.5rem; }
.not-found-inner { max-width: 660px; }
@media (max-width: 991.98px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-inline: 1.5rem; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { border-radius: 8px 0 0 8px; }
  .highlight-strip { grid-template-columns: repeat(2, 1fr); }
  .offset-grid, .process-grid { grid-template-columns: 1fr; }
  .offset-main { padding-inline: 1.5rem; }
  .offset-aside { border-left: 0; border-top: 1px solid rgba(76,44,76,.22); margin-top: 2rem; padding: 2rem 1.5rem 0; }
  .process-heading { padding-right: 0; margin-bottom: 3rem; }
  .process-heading-inner { position: static; }
  .process-content { border-left: 0; padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 575.98px) {
  .container-wide, .container-service, .legal-wrap { width: min(100% - 2rem, 1280px); }
  .highlight-strip { grid-template-columns: 1fr; }
  .highlight-strip span { border-right: 0; border-bottom: 1px solid rgba(76,44,76,.14); }
  .hero-visual { min-height: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 1rem; }
  .footer-links { grid-column: auto; }
  .cookie-inner { align-items: flex-start; flex-direction: column; }
  .cookie-inner .d-flex { width: 100%; }
}
