/* Sanie Beauty – Shared styles for sub-pages
   Mirrors the design of index.html */

:root {
  --dark:  #1e0404;
  --light: #f7f5f1;
  --mid:   #8b2a2a;
  --muted: #c9a0a0;
  --warm:  #f0ece4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, sans-serif;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     .35s;
  --mw:    1140px;
  --px:    clamp(1.5rem,5vw,3rem);
  --py:    clamp(4rem,8vw,7rem);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--light); color: var(--dark); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }

.skip { position: absolute; top: -999px; left: 1rem; background: var(--dark); color: var(--light); padding: .5rem 1.25rem; font-size: .875rem; text-decoration: none; z-index: 9999; border-radius: 0 0 4px 4px; }
.skip:focus { top: 0; }
:focus-visible { outline: 2px solid var(--mid); outline-offset: 3px; }

/* ── Eyebrow ── */
.eyebrow { display: inline-block; font-family: var(--sans); font-size: .65rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; padding: .9rem 2.25rem; border-radius: 100px; border: 1px solid transparent; transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-dark  { background: var(--dark);  color: var(--light); border-color: var(--dark); }
.btn-dark:hover  { background: var(--mid);  border-color: var(--mid); }
.btn-light { background: var(--light); color: var(--dark);  border-color: var(--light); }
.btn-light:hover { background: var(--warm);  border-color: var(--warm); }
.btn-ghost { background: transparent; color: var(--light); border-color: rgba(247,245,241,.38); }
.btn-ghost:hover { border-color: rgba(247,245,241,.72); }
.btn-outline { background: transparent; color: var(--dark); border-color: rgba(30,4,4,.22); }
.btn-outline:hover { border-color: rgba(30,4,4,.65); }

/* ── Nav ── */
.nav-bar { position: fixed; inset: 0 0 auto; z-index: 200; background: rgba(247,245,241,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(30,4,4,.06); transition: box-shadow var(--t) var(--ease); }
.nav-bar.scrolled { box-shadow: 0 2px 20px rgba(30,4,4,.07); }
.nav-inner { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; background: var(--dark); border-radius: 3px; padding: 3px 12px; }
.nav-logo img { display: block; height: 44px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { font-size: .72rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); text-decoration: none; opacity: .75; transition: opacity var(--t) var(--ease); }
.nav-links a:hover, .nav-links a[aria-current] { opacity: 1; }
.nav-cta { font-size: .72rem; padding: .62rem 1.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .4rem; width: 36px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--dark); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t) var(--ease); transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-drawer { display: none; position: fixed; inset: 68px 0 0; background: var(--light); z-index: 190; flex-direction: column; padding: 2.5rem var(--px); overflow-y: auto; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: var(--dark); opacity: .7; padding: 1.2rem 0; border-bottom: 1px solid rgba(30,4,4,.07); }
.nav-drawer a:last-child { border-bottom: none; margin-top: 1.5rem; opacity: 1; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--warm); border-bottom: 1px solid rgba(30,4,4,.07); padding-block: .75rem; }
.breadcrumb-inner { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; font-size: .68rem; letter-spacing: .08em; color: rgba(30,4,4,.55); }
.breadcrumb a { text-decoration: none; color: inherit; transition: color .3s; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb-sep { opacity: .4; }

/* ── Page Hero (dark, no image) ── */
.page-hero { position: relative; overflow: hidden; padding-top: calc(68px + clamp(3rem,6vw,5rem)); padding-bottom: clamp(3rem,6vw,5rem); padding-inline: var(--px); background: var(--dark); text-align: center; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .09; }
.page-hero .ph-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,4,4,.45) 0%, rgba(30,4,4,.92) 100%); }
.page-hero > :not(.ph-bg) { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--muted); margin-bottom: 1.2rem; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem,7vw,6rem); font-weight: 300; line-height: .95; letter-spacing: -.02em; color: var(--light); margin-bottom: 1.25rem; }
.page-hero h1 em { display: block; font-style: italic; color: var(--muted); }
.page-hero .lead { font-size: clamp(.85rem,1.5vw,.95rem); font-weight: 300; color: rgba(247,245,241,.68); max-width: 480px; margin-inline: auto; line-height: 1.9; }
.page-hero .sb-stamp { margin-top: 1.5rem; margin-bottom: 1.25rem; }

/* ── Page Hero (with image) ── */
.page-hero-img { position: relative; background: var(--dark); overflow: hidden; padding-top: 68px; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; }
.phi-bg { position: absolute; inset: 0; }
.phi-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .42; }
.phi-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,4,4,.15) 0%, rgba(30,4,4,.72) 100%); }
.phi-content { position: relative; z-index: 1; padding: clamp(2.5rem,5vw,4rem) var(--px); max-width: var(--mw); }
.phi-content .eyebrow { color: var(--muted); margin-bottom: .9rem; }
.phi-content h1 { font-family: var(--serif); font-size: clamp(2.4rem,6vw,5rem); font-weight: 300; line-height: .96; letter-spacing: -.02em; color: var(--light); margin-bottom: 1rem; }
.phi-content h1 em { font-style: italic; color: var(--muted); }
.phi-content .lead { font-size: .9rem; font-weight: 300; color: rgba(247,245,241,.68); max-width: 440px; line-height: 1.9; margin-bottom: 1.75rem; }

/* ── Sections ── */
.section { padding-block: var(--py); }
.section-wrap { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); }
.section--warm  { background: var(--warm); }
.section--dark  { background: var(--dark); }
.section--light { background: var(--light); }

/* ── Two-column layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.two-col--center { align-items: center; }
.col-img { overflow: hidden; }
.col-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.col-img--portrait { aspect-ratio: 3/4; }
.col-img--landscape { aspect-ratio: 4/3; }

/* ── Section headings ── */
.s-label { margin-bottom: 1rem; }
.s-label--mid { color: var(--mid); }
.s-label--muted { color: var(--muted); }
.s-h2 { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 300; line-height: 1.08; color: var(--dark); margin-bottom: 1.5rem; }
.s-h2 em { font-style: italic; color: var(--mid); }
.s-h2--light { color: var(--light); }
.s-h2--light em { color: var(--muted); }
.s-body { font-size: .88rem; font-weight: 300; color: rgba(30,4,4,.72); line-height: 1.9; }
.s-body--light { color: rgba(247,245,241,.68); }
.s-body p + p { margin-top: .85rem; }
.s-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-top: 2rem; margin-bottom: .5rem; }
.s-body--light h3 { color: var(--light); }
.s-body ul, .s-body ol { padding-left: 1.25rem; margin-top: .5rem; margin-bottom: .5rem; }
.s-body li { margin-bottom: .3rem; }

/* ── Divider list ── */
.d-list { border-top: 1px solid rgba(30,4,4,.09); margin-top: 2rem; }
.d-item { display: grid; grid-template-columns: clamp(160px,28%,220px) 1fr; gap: .5rem 1.5rem; align-items: baseline; padding-block: 1.1rem; border-bottom: 1px solid rgba(30,4,4,.09); }
.d-item--dark { border-color: rgba(247,245,241,.07); }
.d-key { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--dark); }
.d-key--light { color: var(--light); }
.d-val { font-size: .8rem; font-weight: 300; color: rgba(30,4,4,.65); line-height: 1.7; }
.d-val--light { color: rgba(247,245,241,.58); }

/* ── Price list ── */
.price-list { border-top: 1px solid rgba(30,4,4,.09); margin-top: 2rem; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: .5rem 2rem; align-items: baseline; padding-block: 1.4rem; border-bottom: 1px solid rgba(30,4,4,.09); }
.price-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--dark); }
.price-name small { display: block; font-family: var(--sans); font-size: .74rem; font-weight: 300; color: rgba(30,4,4,.52); margin-top: .18rem; }
.price-num { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; color: var(--dark); white-space: nowrap; }
.price-num sup { font-size: .52em; vertical-align: super; font-weight: 300; }
.price-ask { font-family: var(--serif); font-size: .92rem; font-style: italic; color: rgba(30,4,4,.52); }
.price-note { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(30,4,4,.06); font-size: .76rem; font-weight: 300; color: rgba(30,4,4,.52); line-height: 1.8; }

/* ── Benefit cards ── */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.benefit-card { background: var(--light); padding: 1.75rem; border: 1px solid rgba(30,4,4,.07); }
.benefit-card--dark { background: rgba(247,245,241,.05); border-color: rgba(247,245,241,.08); }
.benefit-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: .45rem; }
.benefit-card--dark h3 { color: var(--light); }
.benefit-card p { font-size: .8rem; font-weight: 300; color: rgba(30,4,4,.68); line-height: 1.8; }
.benefit-card--dark p { color: rgba(247,245,241,.58); }

/* ── Step list ── */
.step-list { border-top: 1px solid rgba(247,245,241,.08); margin-top: 2rem; }
.step { display: grid; grid-template-columns: 2.5rem 1fr; gap: .5rem; align-items: baseline; padding-block: 1.25rem; border-bottom: 1px solid rgba(247,245,241,.08); }
.step-n { font-family: var(--serif); font-size: .72rem; color: rgba(247,245,241,.35); padding-top: .15rem; }
.step h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--light); margin-bottom: .25rem; }
.step p  { font-size: .76rem; font-weight: 300; color: rgba(247,245,241,.6); line-height: 1.75; }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(30,4,4,.09); padding-block: 1.5rem; }
.faq-item:first-child { border-top: 1px solid rgba(30,4,4,.09); }
.faq-q { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; color: var(--dark); margin-bottom: .45rem; }
.faq-a { font-size: .84rem; font-weight: 300; color: rgba(30,4,4,.68); line-height: 1.85; }

/* ── CTA band ── */
.cta-band { padding-block: var(--py); background: var(--dark); text-align: center; }
.cta-band .eyebrow { color: var(--muted); margin-bottom: 1rem; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.6rem); font-weight: 300; line-height: 1.05; color: var(--light); margin-bottom: 1rem; }
.cta-band h2 em { font-style: italic; color: var(--muted); }
.cta-band p { font-size: .87rem; font-weight: 300; color: rgba(247,245,241,.65); margin-bottom: 2rem; max-width: 380px; margin-inline: auto; line-height: 1.85; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Related links bar ── */
.rel-bar { background: var(--warm); border-top: 1px solid rgba(30,4,4,.07); padding-block: 1.25rem; }
.rel-bar-inner { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.rel-bar-label { font-size: .6rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(30,4,4,.45); flex-shrink: 0; }
.rel-bar a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: var(--dark); opacity: .6; transition: opacity .3s; }
.rel-bar a:hover { opacity: 1; }

/* ── Article styles ── */
.article-meta { font-size: .72rem; letter-spacing: .1em; color: rgba(30,4,4,.48); border-bottom: 1px solid rgba(30,4,4,.08); padding-bottom: 1rem; margin-bottom: 2rem; }
.article-body { max-width: 720px; }
.article-body h2 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 300; line-height: 1.15; color: var(--dark); margin-top: 2.5rem; margin-bottom: .75rem; }
.article-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-top: 1.75rem; margin-bottom: .5rem; }
.article-body p { font-size: .9rem; font-weight: 300; color: rgba(30,4,4,.72); line-height: 1.9; margin-bottom: .9rem; }
.article-body ul, .article-body ol { padding-left: 1.25rem; margin-bottom: .9rem; }
.article-body li { font-size: .88rem; font-weight: 300; color: rgba(30,4,4,.72); line-height: 1.8; margin-bottom: .3rem; }

/* ── Contact form (mirrors index.html cf-panel) ── */
.cf-panel { background: var(--dark); padding: clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.5rem); }
.cf-panel h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 300; color: var(--light); margin-bottom: .4rem; }
.cf-panel > p { font-size: .82rem; font-weight: 300; color: rgba(247,245,241,.6); line-height: 1.7; margin-bottom: 1.75rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,245,241,.55); margin-bottom: .4rem; }
.fg input, .fg textarea, .fg select { width: 100%; background: rgba(247,245,241,.055); border: 1px solid rgba(247,245,241,.1); padding: .8rem 1rem; font-family: var(--sans); font-size: .87rem; font-weight: 300; color: var(--light); border-radius: 1px; transition: border-color var(--t) var(--ease); outline: none; appearance: none; -webkit-appearance: none; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(247,245,241,.22); }
.fg select option { background: var(--dark); color: var(--light); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(247,245,241,.32); }
.fg textarea { min-height: 90px; resize: vertical; }
.cf-submit { width: 100%; margin-top: .5rem; background: var(--light); color: var(--dark); border: none; border-radius: 100px; padding: .95rem 2rem; font-family: var(--sans); font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: background var(--t) var(--ease), transform var(--t) var(--ease); }
.cf-submit:hover { background: var(--warm); transform: translateY(-1px); }

/* ── Contact info ── */
.ci-list { display: flex; flex-direction: column; gap: 1.75rem; }
.ci { display: flex; flex-direction: column; gap: .2rem; }
.ci-lbl { font-size: .6rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(30,4,4,.52); }
.ci-val { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--dark); text-decoration: none; line-height: 1.5; }
a.ci-val:hover { color: var(--mid); }

/* ── Legal / Impressum ── */
.legal-section { padding-block: var(--py); background: var(--warm); }
.legal-body { max-width: 680px; }
.legal-body h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--dark); margin-top: 2rem; margin-bottom: .6rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body address { font-size: .85rem; font-weight: 300; color: rgba(30,4,4,.68); line-height: 1.9; margin-bottom: .6rem; font-style: normal; }
.legal-body a { color: var(--mid); }

/* ── Footer ── */
footer { background: var(--dark); border-top: 1px solid rgba(247,245,241,.06); padding-block: 2.5rem; }
.footer-inner { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.f-logo { display: flex; align-items: center; }
.f-copy { font-size: .7rem; font-weight: 300; color: rgba(247,245,241,.52); text-align: center; }
.f-legal { display: flex; gap: 1.5rem; list-style: none; }
.f-legal a { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: rgba(247,245,241,.52); transition: color .3s; }
.f-legal a:hover { color: rgba(247,245,241,.85); }

/* ── Service Board (Editorial-Preisübersicht, drei Panels) ── */
.service-board { display: grid; grid-template-columns: 38fr 11fr 51fr; }

.sb-left { position: relative; background: #160202; overflow: hidden; padding: clamp(3rem,5vw,5rem) clamp(2rem,3.5vw,3.5rem); display: flex; flex-direction: column; }
.sb-left-bg { position: absolute; inset: 0; }
.sb-left-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .14; }
.sb-left-content { position: relative; z-index: 1; flex: 1; }
.sb-h1 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; color: var(--light); line-height: .95; letter-spacing: -.02em; margin-bottom: .75rem; }
.sb-h1 em { font-style: italic; color: var(--muted); display: block; }
.sb-tagline { font-family: var(--serif); font-size: clamp(.85rem,1.4vw,1rem); font-weight: 300; font-style: italic; color: rgba(247,245,241,.42); line-height: 1.5; margin-bottom: 2.5rem; }
.sb-service-list { border-top: 1px solid rgba(247,245,241,.1); }
.sb-service { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-block: 1.1rem; border-bottom: 1px solid rgba(247,245,241,.07); }
.sb-service-info { flex: 1; min-width: 0; }
.sb-service-name { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; color: var(--light); display: block; line-height: 1.3; text-decoration: none; }
.sb-service-name:hover { color: var(--muted); transition: color .25s; }
.sb-service-desc { font-size: .68rem; font-weight: 300; color: rgba(247,245,241,.4); margin-top: .2rem; line-height: 1.6; display: block; letter-spacing: .02em; }
.sb-service-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 300; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.sb-service-price sup { font-size: .52em; vertical-align: super; }
.sb-service-price--ask { font-family: var(--serif); font-size: .8rem; font-style: italic; color: rgba(247,245,241,.3); flex-shrink: 0; white-space: nowrap; }
.sb-left-cta { position: relative; z-index: 1; margin-top: 2.5rem; }

.sb-center { background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 3rem 0; border-left: 1px solid rgba(247,245,241,.04); border-right: 1px solid rgba(247,245,241,.04); }
.sb-center-brand { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-family: var(--serif); font-size: .7rem; font-weight: 300; letter-spacing: .35em; color: rgba(247,245,241,.42); text-transform: uppercase; }
.sb-center-ring { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(247,245,241,.1); flex-shrink: 0; position: relative; }
.sb-center-ring::after { content: ''; position: absolute; inset: 50% 50% auto auto; transform: translate(50%,-50%); width: 6px; height: 6px; border-radius: 50%; background: rgba(247,245,241,.14); }
.sb-center-loc { writing-mode: vertical-rl; text-orientation: mixed; font-size: .48rem; font-weight: 500; letter-spacing: .28em; color: rgba(247,245,241,.22); text-transform: uppercase; }

.sb-right { position: relative; background: var(--warm); overflow: hidden; padding: clamp(3rem,5vw,5rem) clamp(2rem,3.5vw,3.5rem); display: flex; flex-direction: column; }
.sb-right-bg { position: absolute; inset: 0; }
.sb-right-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .07; }
.sb-right-content { position: relative; z-index: 1; flex: 1; }
.sb-stamp { margin-bottom: 2rem; }
.sb-stamp-line1 { display: block; font-family: var(--sans); font-size: clamp(.48rem,.75vw,.62rem); font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: rgba(30,4,4,.42); line-height: 1.8; }
.sb-stamp-struck { font-family: var(--sans); font-size: clamp(.48rem,.75vw,.62rem); font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: rgba(30,4,4,.28); text-decoration: line-through; }
.sb-stamp-highlight { font-family: var(--sans); font-size: clamp(.48rem,.75vw,.62rem); font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--mid); }
.sb-stamp--light .sb-stamp-line1 { color: rgba(247,245,241,.38); }
.sb-stamp--light .sb-stamp-struck { color: rgba(247,245,241,.22); }
.sb-stamp--light .sb-stamp-highlight { color: var(--muted); }
.sb-right-h2 { font-family: var(--serif); font-size: clamp(1.7rem,2.8vw,2.6rem); font-weight: 300; color: var(--dark); line-height: 1.1; margin-bottom: 1rem; }
.sb-right-h2 em { font-style: italic; color: var(--mid); }
.sb-right-desc { font-size: .8rem; font-weight: 300; color: rgba(30,4,4,.62); line-height: 1.85; margin-bottom: 1.75rem; }
.sb-steps { border-top: 1px solid rgba(30,4,4,.08); }
.sb-step { display: flex; gap: .85rem; align-items: baseline; padding-block: .82rem; border-bottom: 1px solid rgba(30,4,4,.06); }
.sb-step-n { font-family: var(--serif); font-size: .65rem; color: rgba(30,4,4,.28); flex-shrink: 0; width: 1.6rem; }
.sb-step-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--dark); }
.sb-right-cta { position: relative; z-index: 1; margin-top: 2.25rem; display: flex; gap: .75rem; flex-wrap: wrap; }

.promo-badge { display: inline-block; font-family: var(--sans); font-size: .48rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--light); background: var(--mid); padding: .28rem .85rem; border-radius: 100px; margin-bottom: 1.5rem; }
.sb-right .sb-service-list { border-top-color: rgba(30,4,4,.09); }
.sb-right .sb-service { border-bottom-color: rgba(30,4,4,.06); }
.sb-right .sb-service-name { color: var(--dark); }
.sb-right a.sb-service-name:hover { color: var(--mid); }
.sb-right .sb-service-desc { color: rgba(30,4,4,.5); }
.sb-right .sb-service-price { color: var(--mid); }
.sb-right .sb-service-price--ask { color: rgba(30,4,4,.38); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .col-img--portrait, .col-img--landscape { max-height: 360px; overflow: hidden; }
  .d-item { grid-template-columns: 1fr; gap: .15rem; }
}
@media (max-width: 900px) {
  .service-board { grid-template-columns: 1fr; }
  .sb-center { flex-direction: row; min-height: 56px; padding: 1rem clamp(2rem,3.5vw,3.5rem); border-left: none; border-right: none; border-top: 1px solid rgba(247,245,241,.06); border-bottom: 1px solid rgba(247,245,241,.06); gap: 1.25rem; }
  .sb-center-brand { writing-mode: horizontal-tb; transform: none; }
  .sb-center-ring { width: 32px; height: 32px; }
  .sb-center-loc { writing-mode: horizontal-tb; }
  .sb-h1 { font-size: clamp(2.2rem,8vw,3.2rem); }
}
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .price-row { grid-template-columns: 1fr; gap: .2rem; }
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp Float ── */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 300; display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; background: #25d366; color: #fff; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .05em; padding: .7rem 1.25rem .7rem .85rem; border-radius: 100px; box-shadow: 0 4px 24px rgba(0,0,0,.18); transition: transform .25s var(--ease), box-shadow .25s var(--ease); white-space: nowrap; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.24); color: #fff; }
@media (max-width: 600px) { .wa-float { padding: .7rem; border-radius: 50%; } .wa-float .wa-label { display: none; } }

/* ── Form validation ── */
.fg[data-err] input, .fg[data-err] textarea, .fg[data-err] select { border-color: rgba(220,80,80,.55); }
.fg[data-err]::after { content: attr(data-err); display: block; font-size: .6rem; color: rgba(220,80,80,.75); margin-top: .3rem; font-weight: 400; letter-spacing: .06em; }
.cf-hint { font-size: .62rem; color: rgba(247,245,241,.3); text-align: center; margin-top: .65rem; line-height: 1.6; }
