/* ============================================================
   MUDr. Gabriela Konvičková — plastická chirurgie
   Design system: porcelán / písek / zlato, Cormorant + Manrope
   ============================================================ */

:root {
  --porcelain: #F7F3EC;
  --sand: #EDE6D9;
  --sand-deep: #E3D9C8;
  --card: #FFFFFF;
  --ink: #31291F;
  --ink-soft: #5B5143;
  --gold: #A5885A;
  --gold-soft: #C9B189;
  --dark: #2A231B;
  --dark-2: #332B21;
  --line: #DCD2C1;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --maxw: 1200px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 36px; height: 1px; background: var(--gold); flex: none;
}

.lead { font-size: 17.5px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- top bar ---------- */

.topbar {
  background: var(--dark);
  color: #CDC3B4;
  font-size: 12.5px;
  letter-spacing: .06em;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px;
}
.topbar a { color: #E8DFCF; }
.topbar a:hover { color: #fff; }
.topbar .tb-right { display: flex; gap: 22px; align-items: center; }
@media (max-width: 640px) { .topbar .tb-left { display: none; } .topbar .wrap { justify-content: center; } }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mono {
  width: 44px; height: 44px; flex: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 19px; letter-spacing: .04em;
  color: var(--gold);
}
.brand-name { line-height: 1.25; }
.brand-name b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 15.5px; letter-spacing: .01em; white-space: nowrap;
}
.brand-name span {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a, .nav .has-sub > a {
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  padding: 8px 0; position: relative; white-space: nowrap;
}
.nav > a::after, .nav .has-sub > a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav > a:hover::after, .nav > a.active::after,
.nav .has-sub:hover > a::after { width: 100%; }

.has-sub { position: relative; }
.has-sub > a .car { font-size: 9px; color: var(--gold); margin-left: 5px; }
.sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(49, 41, 31, .12);
  padding: 22px 26px;
  display: flex; gap: 34px;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-col { min-width: 190px; }
.sub-col h5 {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.sub-col a {
  display: block; font-size: 13.5px; padding: 5px 0; color: var(--ink-soft);
  transition: color .2s, padding-left .2s;
}
.sub-col a:hover { color: var(--ink); padding-left: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--porcelain); }
.btn.gold { border-color: var(--gold); color: var(--gold); }
.btn.gold:hover { background: var(--gold); color: #fff; }
.btn.solid { background: var(--ink); color: var(--porcelain); }
.btn.solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn.on-dark { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn.on-dark:hover { background: var(--gold-soft); color: var(--dark); }

.nav-cta { flex: none; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; width: 24px; height: 1.6px;
  background: var(--ink); transition: all .3s;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }

@media (max-width: 1080px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--porcelain);
  overflow-y: auto;
  padding: 90px 32px 40px;
}
.mobile-menu.open { display: block; }
.mm-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  width: 44px; height: 44px; font-size: 18px; cursor: pointer; color: var(--ink);
}
.mobile-menu a.mm-link {
  display: block; font-family: var(--serif); font-size: 26px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-group { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 26px 0 6px; font-weight: 700; }
.mobile-menu a.mm-sub { display: block; font-size: 15.5px; padding: 7px 0; color: var(--ink-soft); }
.mobile-menu .btn { margin-top: 30px; width: 100%; }

/* ---------- hero ---------- */

.hero { overflow: hidden; position: relative; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding-top: 70px; padding-bottom: 90px;
  min-height: 78vh;
}
.hero-copy .display {
  font-size: clamp(40px, 5vw, 62px);
  margin-bottom: 8px;
}
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(21px, 2.3vw, 27px);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 26px 0 38px;
  position: relative;
  padding-left: 24px;
}
.hero-quote::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--gold);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-figure { position: relative; justify-self: end; width: min(430px, 100%); }
.hero-figure .arch {
  border-radius: 300px 300px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-figure .arch img { width: 100%; height: 560px; object-fit: cover; object-position: center top; }
.hero-figure::before {
  content: "";
  position: absolute; inset: -22px 22px 22px -22px;
  border: 1px solid var(--gold);
  border-radius: 320px 320px 0 0;
  z-index: 1;
}
.hero-fact {
  position: absolute; z-index: 3;
  left: -70px; bottom: 46px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(49, 41, 31, .12);
  padding: 18px 24px;
  max-width: 240px;
}
.hero-fact b { font-family: var(--serif); font-size: 21px; display: block; }
.hero-fact span { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 50px; min-height: 0; }
  .hero-figure { justify-self: center; margin-top: 10px; }
  .hero-fact { left: -8px; }
  .hero-figure .arch img { height: 480px; }
}

/* ---------- sections ---------- */

.section { padding: 96px 0; }
.section.sand { background: var(--sand); }
.section.dark { background: var(--dark); color: #D9CFC0; }
.section.dark h2, .section.dark h3 { color: #F1EADD; }
.section.tight { padding: 72px 0; }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 18px; }
.sec-head p { color: var(--ink-soft); font-size: 16.5px; }
.section.dark .sec-head p { color: #B4A896; }

/* stats strip */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--porcelain); }
.stats .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 34px 20px; text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat b { font-family: var(--serif); font-weight: 500; font-size: 34px; display: block; color: var(--ink); }
.stat span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 800px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
}

/* about */
.about-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start;
}
.about-figure { position: relative; }
.about-figure img { width: 100%; height: 600px; object-fit: cover; object-position: center 20%; }
.about-figure::after {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold); z-index: -1;
}
.about-copy h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 24px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.about-copy .sig {
  font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--ink);
  margin-top: 28px;
}
.about-more { margin-top: 20px; }
.about-full { display: none; }
.about-full.open { display: block; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-figure img { height: 440px; }
}

/* category cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(49, 41, 31, .1); }
.cat-num {
  font-family: var(--serif); font-size: 15px; color: var(--gold);
  letter-spacing: .1em; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.cat-num::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.cat-card h3 { font-size: 25px; margin-bottom: 14px; }
.cat-card ul { list-style: none; margin-bottom: 22px; flex: 1; }
.cat-card li { padding: 6.5px 0; border-bottom: 1px solid #F0EAE0; font-size: 14px; }
.cat-card li a { color: var(--ink-soft); display: flex; justify-content: space-between; align-items: center; transition: color .2s; }
.cat-card li a::after { content: "→"; font-size: 12px; color: var(--gold); opacity: 0; transition: opacity .2s; }
.cat-card li a:hover { color: var(--ink); }
.cat-card li a:hover::after { opacity: 1; }
.cat-card .more { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.cat-card .more:hover { color: var(--ink); }
@media (max-width: 1080px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } }

/* signature technique band */
.tech-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.tech-band img { width: 100%; height: 480px; object-fit: cover; }
.tech-band h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 20px; }
.tech-band p { margin-bottom: 16px; }
@media (max-width: 900px) { .tech-band .wrap { grid-template-columns: 1fr; gap: 40px; } .tech-band img { height: 360px; } }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card {
  background: var(--card); border: 1px solid var(--line); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.section.dark .rev-card { background: var(--dark-2); border-color: #453B2E; }
.rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; }
.rev-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.section.dark .rev-card p { color: #BDB2A0; }
.rev-card b { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: .02em; color: var(--ink); }
.section.dark .rev-card b { color: #EDE5D6; }
.rev-card span.proc { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

/* gallery */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.gal-filters button {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 10px 20px; cursor: pointer; transition: all .25s;
}
.gal-filters button:hover, .gal-filters button.active { border-color: var(--gold); color: var(--gold); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gal-item { background: var(--card); border: 1px solid var(--line); cursor: zoom-in; }
.gal-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gal-item figcaption {
  padding: 14px 18px; font-size: 13px; letter-spacing: .06em; color: var(--ink-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.gal-item figcaption em { font-style: normal; color: var(--gold); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.gal-item.hidden { display: none; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(42, 35, 27, .94);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 84vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 26px; right: 26px; width: 48px; height: 48px;
  border: 1px solid var(--gold-soft); border-radius: 50%; background: none;
  color: var(--gold-soft); font-size: 18px; cursor: pointer;
}
.lb-cap { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #CFC5B4; font-size: 13.5px; letter-spacing: .1em; }

/* price tables */
.price-block { max-width: 860px; margin: 0 auto 54px; }
.price-block h3 {
  font-size: 15px; font-family: var(--sans); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 18px; margin-bottom: 10px;
}
.price-block h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 13px 4px; border-bottom: 1px solid #EAE2D4; font-size: 15px;
}
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.price-row b { font-family: var(--serif); font-size: 17.5px; font-weight: 600; white-space: nowrap; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

/* certificates strip */
.certs {
  display: grid; grid-auto-flow: column; grid-auto-columns: 180px; gap: 18px;
  overflow-x: auto; padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
}
.certs img {
  height: 240px; width: 100%; object-fit: cover; object-position: top;
  border: 1px solid var(--line); background: #fff;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition: transform .3s;
}
.certs img:hover { transform: translateY(-4px); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card { border: 1px solid var(--line); background: var(--card); padding: 40px; }
.contact-card h3 { font-size: 26px; margin-bottom: 20px; }
.c-row { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid #F0EAE0; align-items: baseline; }
.c-row:last-of-type { border-bottom: none; }
.c-row .lbl { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); min-width: 92px; }
.c-row .val { font-size: 15px; }
.c-row .val a:hover { color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 4px; border-bottom: 1px solid #F0EAE0; font-size: 14.5px; }
.hours-table td:last-child { text-align: right; font-family: var(--serif); font-size: 16.5px; font-weight: 600; }
.map-embed { border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 430px; border: 0; filter: grayscale(.5) sepia(.14); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: var(--dark); color: #D9CFC0; text-align: center; padding: 100px 0; }
.cta-band h2 { color: #F1EADD; font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.cta-band p { color: #B4A896; max-width: 52ch; margin: 0 auto 36px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .phone-big {
  display: inline-block; font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  color: #F1EADD; margin-bottom: 8px; letter-spacing: .03em;
}
.cta-band .phone-big:hover { color: var(--gold-soft); }

/* ---------- footer ---------- */

.site-footer { background: var(--dark); color: #A79B88; border-top: 1px solid #453B2E; padding: 70px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 54px; }
.site-footer h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px;
}
.site-footer a { color: #C3B8A5; display: inline-block; padding: 3.5px 0; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.f-brand .brand-mono { border-color: var(--gold-soft); color: var(--gold-soft); margin-bottom: 16px; }
.f-brand p { max-width: 34ch; font-size: 13.5px; }
.f-social { display: flex; gap: 12px; margin-top: 18px; }
.f-social a {
  width: 40px; height: 40px; border: 1px solid #4A4033; border-radius: 50%;
  display: grid; place-items: center; font-size: 14px; padding: 0;
}
.f-social a:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid #453B2E; padding: 22px 0; font-size: 12.5px; }
.footer-bottom .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- procedure page ---------- */

.proc-hero { background: var(--sand); padding: 70px 0 64px; }
.breadcrumb { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); margin: 0 8px; }
.proc-hero h1 { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 8px; }
.proc-hero .proc-sub { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.2vw, 25px); color: var(--ink-soft); }

.proc-layout {
  display: grid; grid-template-columns: 250px 1fr; gap: 64px;
  padding: 70px 0 90px; align-items: start;
}
.proc-nav { position: sticky; top: 106px; }
.proc-nav h5 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.proc-nav a {
  display: block; font-size: 14px; color: var(--ink-soft);
  padding: 9px 0 9px 16px; border-left: 1px solid var(--line);
  transition: all .2s;
}
.proc-nav a:hover, .proc-nav a.current { color: var(--ink); border-left-color: var(--gold); }
.proc-nav .btn { margin-top: 26px; width: 100%; }
@media (max-width: 900px) { .proc-layout { grid-template-columns: 1fr; gap: 30px; } .proc-nav { position: static; } .proc-nav .btn { width: auto; } }

.proc-body h2 {
  font-size: clamp(26px, 3vw, 36px); margin: 64px 0 22px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.proc-body section:first-child h2 { margin-top: 0; padding-top: 0; border-top: none; }
.proc-body h3 { font-size: 23px; margin: 36px 0 14px; }
.proc-body h3.big { font-size: 28px; margin-top: 46px; }
.proc-body h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 28px 0 10px; }
.proc-body p { color: var(--ink-soft); margin-bottom: 15px; max-width: 72ch; }
.proc-body ul { list-style: none; margin: 6px 0 22px; max-width: 72ch; }
.proc-body ul li {
  position: relative; padding: 7px 0 7px 26px; color: var(--ink-soft);
  border-bottom: 1px solid #EFE9DE; font-size: 15px;
}
.proc-body ul li::before {
  content: ""; position: absolute; left: 2px; top: 16px;
  width: 12px; height: 1px; background: var(--gold);
}
.proc-figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 26px 0; max-width: 760px; }
.proc-figs img { width: 100%; background: #fff; border: 1px solid var(--line); padding: 10px; }

.fact-box {
  background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  padding: 30px 32px; margin: 34px 0;
  max-width: 640px;
}
.fact-box h4 { margin: 0 0 14px; }

.proc-cta {
  margin-top: 70px; padding: 44px; background: var(--sand);
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.proc-cta h3 { font-size: 27px; }
.proc-cta p { margin: 6px 0 0; color: var(--ink-soft); font-size: 14.5px; }

/* reviews page */
.rev-masonry { columns: 3 320px; column-gap: 22px; }
.rev-masonry .rev-card { break-inside: avoid; margin-bottom: 22px; }

/* page hero (simple inner pages) */
.page-hero { background: var(--sand); padding: 76px 0 66px; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 4.6vw, 56px); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }

/* ---------- before/after drag slider ---------- */

.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; max-width: 420px; } }

.ba { text-align: center; }
.ba-frame {
  --pos: 50%;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ba-frame:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.ba-before, .ba-after {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ba-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px; margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .35);
  pointer-events: none;
}
.ba-handle::after {
  content: "◂ ▸";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 12px; letter-spacing: 1px;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}
.ba-tag {
  position: absolute; top: 14px;
  font-family: var(--sans); font-size: 10.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(42, 35, 27, .68);
  color: #F1EADD;
  pointer-events: none;
}
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }
.ba figcaption {
  margin-top: 14px;
  font-size: 13.5px; letter-spacing: .05em; color: var(--ink-soft);
}
.ba figcaption b { font-family: var(--serif); font-weight: 600; font-size: 16.5px; color: var(--ink); display: block; }
.ba-hint {
  text-align: center; margin-top: 34px;
  font-size: 13px; color: var(--ink-soft); letter-spacing: .04em;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

::selection { background: var(--gold); color: #fff; }
