:root {
  --ink: #241b16;
  --ink-soft: #51443a;
  --espresso: #171310;
  --brown: #33261e;
  --cream: #f7f0e7;
  --cream-2: #efe3d4;
  --paper: #fffaf3;
  --gold: #c89a62;
  --gold-light: #e4c391;
  --line: rgba(68, 48, 35, .16);
  --white-line: rgba(255,255,255,.18);
  --shadow: 0 30px 80px rgba(48, 32, 21, .13);
  --radius: 24px;
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold-light); color: var(--espresso); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: -100px; z-index: 1000;
  padding: 12px 18px; background: var(--paper); color: var(--ink); border-radius: 10px;
}
.skip-link:focus { top: 20px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }

.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 100; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
  padding: 0 max(28px, calc((100vw - 1280px)/2));
  color: #fff; transition: background .4s ease, height .4s ease, box-shadow .4s ease, color .4s ease;
}
.site-header.is-scrolled {
  height: 68px; color: var(--ink); background: rgba(250, 245, 238, .86);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(63,45,34,.09);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; white-space: nowrap; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 18px; letter-spacing: -.04em;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s ease;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.04); background: rgba(255,255,255,.08); }
.brand-name { font-family: var(--serif); font-size: 16px; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; gap: clamp(16px, 2vw, 32px); }
.site-nav a { position: relative; text-decoration: none; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: currentColor; transition: right .35s cubic-bezier(.2,.8,.2,1);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.button {
  --btn-bg: transparent; --btn-color: inherit; --btn-border: currentColor;
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 52px; padding: 0 24px; border: 1px solid var(--btn-border); border-radius: 2px;
  background: var(--btn-bg); color: var(--btn-color); text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: color .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.button::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(110deg, transparent 5%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-140%); transition: transform .75s cubic-bezier(.2,.8,.2,1);
}
.button::after {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background: rgba(255,255,255,.08); transform: scaleX(0); transform-origin: right;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(15,10,7,.18); }
.button:hover::before { transform: translateX(140%); }
.button:hover::after { transform: scaleX(1); transform-origin: left; }
.button i { font-style: normal; font-size: 16px; transition: transform .35s ease; }
.button:hover i { transform: translate(3px,-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.button-small { min-height: 42px; padding-inline: 19px; }
.button-gold { --btn-bg: var(--gold); --btn-color: #fff; --btn-border: var(--gold); }
.button-ghost { --btn-bg: transparent; --btn-color: #fff; --btn-border: rgba(255,255,255,.55); }
.button-dark { --btn-bg: var(--espresso); --btn-color: #fff; --btn-border: var(--espresso); }
.button-light { --btn-bg: rgba(255,255,255,.92); --btn-color: var(--ink); --btn-border: rgba(255,255,255,.92); }
.button-ghost-dark { --btn-bg: transparent; --btn-color: var(--ink); --btn-border: rgba(36,27,22,.35); }

.hero {
  min-height: 900px; height: max(900px, 100svh); color: #fff; background: var(--espresso);
  position: relative; display: flex; flex-direction: column; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; background-image: url('assets/hero-massage.webp');
  background-size: cover; background-position: 76% 50%; transform: scale(1.035);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(19,15,12,.98) 0%, rgba(24,18,14,.90) 35%, rgba(26,18,13,.4) 62%, rgba(18,13,10,.18) 100%),
    linear-gradient(0deg, rgba(15,11,9,.75) 0%, transparent 42%);
}
.hero-grain { position: absolute; inset: 0; opacity: .11; mix-blend-mode: soft-light; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
@keyframes hero-breathe { to { transform: scale(1.08) translate3d(-.6%, -.4%, 0); } }
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding-top: 90px; }
.hero-copy { max-width: 620px; margin-top: -10px; }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dark { color: #a87543; }
.hero h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.hero h1 { margin: 0; font-size: clamp(68px, 7vw, 112px); line-height: .91; text-wrap: balance; }
.hero-subtitle { margin: 30px 0 12px; font-family: var(--serif); font-size: 23px; }
.hero-description { max-width: 500px; margin: 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-signature {
  position: absolute; right: 0; bottom: 174px; display: flex; flex-direction: column; align-items: flex-end;
  padding-right: 14px; text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.hero-signature span { font-family: var(--serif); font-style: italic; font-size: 27px; }
.hero-signature small { color: rgba(255,255,255,.68); letter-spacing: .08em; }
.hero-stats { position: relative; z-index: 2; border-top: 1px solid var(--white-line); background: rgba(17,13,10,.48); backdrop-filter: blur(8px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 132px; }
.stat { display: flex; align-items: center; gap: 18px; padding: 25px 28px; border-right: 1px solid var(--white-line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat-icon { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid rgba(228,195,145,.55); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); }
.stat div { display: flex; flex-direction: column; }
.stat strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.stat span:last-child { color: rgba(255,255,255,.63); font-size: 12px; line-height: 1.45; }

.about-section { background: var(--paper); overflow: hidden; }
.about-section::after { content: "JE"; position: absolute; right: -25px; bottom: -145px; font: 360px/.8 var(--serif); color: rgba(126,91,62,.035); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: minmax(320px, .85fr) 1.15fr; gap: clamp(60px, 8vw, 130px); align-items: center; }
.portrait-card { margin: 0; position: relative; }
.portrait-card::before { content: ""; position: absolute; inset: -20px 20px 20px -20px; border: 1px solid rgba(168,117,67,.26); border-radius: 220px 220px 8px 8px; pointer-events: none; }
.portrait-card img { aspect-ratio: .78; object-fit: cover; object-position: 50% 42%; border-radius: 220px 220px 8px 8px; box-shadow: var(--shadow); }
.portrait-card figcaption { position: absolute; right: -34px; bottom: 34px; padding: 18px 22px; background: rgba(255,250,243,.88); backdrop-filter: blur(12px); border: 1px solid rgba(80,57,42,.12); box-shadow: 0 20px 45px rgba(37,26,18,.11); }
.portrait-card figcaption span, .portrait-card figcaption small { display: block; }
.portrait-card figcaption span { font-family: var(--serif); font-size: 21px; }
.portrait-card figcaption small { color: #7b6a5d; }
.about-copy h2, .section-heading h2, .service-content h2, .info-panel h2, .contacts-copy h2, .faq-section h2 { margin: 0 0 26px; font-size: clamp(42px, 5vw, 72px); line-height: 1.02; }
.lead { font-family: var(--serif); font-size: clamp(21px, 2.1vw, 29px); line-height: 1.42; color: #443329; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--ink-soft); }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: #7c542f; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translate(4px,-4px); }

.service-section { padding-top: 0; background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.service-card { min-height: 610px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: #eadbca; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-visual { position: relative; min-height: 570px; overflow: hidden; }
.gift-visual {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(145deg, #ead9c6 0%, #cfad8c 55%, #9f7758 100%);
}
.gift-visual::before, .gift-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.gift-visual::before { width: 440px; height: 440px; left: -240px; bottom: -235px; }
.gift-visual::after { width: 350px; height: 350px; right: -175px; top: -170px; }
.gift-stage { position: relative; z-index: 1; height: 100%; min-height: 570px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 38px; padding: 58px 40px 48px; }
.gift-envelope { position: relative; width: min(88%, 420px); aspect-ratio: 1.48; transform: rotate(-4deg); filter: drop-shadow(0 28px 40px rgba(63,40,24,.22)); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .gift-envelope { transform: rotate(-1deg) translateY(-7px); }
.gift-card-art { position: absolute; inset: 8% 4% 6%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; color: #5a3d2c; text-align: center; background: linear-gradient(135deg, #fffaf1, #efe0ce); border: 1px solid rgba(95,61,39,.18); box-shadow: inset 0 0 0 8px rgba(255,255,255,.42); }
.gift-card-art::before { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(166,112,65,.24); pointer-events: none; }
.gift-card-mark { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid #9c714e; border-radius: 50%; font-family: var(--serif); font-size: 18px; }
.gift-card-kicker { color: #9b704c; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.gift-card-art strong { margin: 7px 0 12px; font: 400 clamp(30px, 4vw, 43px)/1 var(--serif); }
.gift-card-art small { color: #8a7464; letter-spacing: .08em; }
.gift-ribbon { position: absolute; z-index: 2; display: block; background: linear-gradient(90deg, #af7b48, #d5ad78 48%, #9e693a); box-shadow: 0 2px 8px rgba(74,45,24,.22); }
.gift-ribbon-horizontal { left: 0; right: 0; top: 46%; height: 30px; }
.gift-ribbon-vertical { top: 0; bottom: 0; left: 48%; width: 30px; }
.gift-bow { position: absolute; z-index: 3; left: 49%; top: 46%; width: 58px; height: 40px; transform: translate(-50%,-50%); }
.gift-bow::before, .gift-bow::after { content: ""; position: absolute; top: 0; width: 34px; height: 34px; border: 10px solid #b17c48; border-radius: 50% 50% 45% 50%; }
.gift-bow::before { right: 50%; transform: rotate(18deg); }
.gift-bow::after { left: 50%; transform: rotate(-18deg); }
.gift-message { width: min(90%, 420px); text-align: left; }
.gift-message .eyebrow { margin-bottom: 8px; }
.gift-message h3 { margin: 0 0 8px; font: 400 clamp(28px, 3vw, 38px)/1.05 var(--serif); }
.gift-message p:not(.eyebrow) { margin: 0 0 18px; color: rgba(58,40,29,.74); font-size: 13px; }
.service-content { padding: clamp(48px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; background: rgba(255,250,243,.83); }
.service-content > p:not(.eyebrow):not(.lead) { color: var(--ink-soft); }
.service-benefits { display: grid; gap: 10px; margin: 22px 0 30px; padding: 0; list-style: none; }
.service-benefits li { position: relative; padding-left: 27px; }
.service-benefits li::before { content: ""; position: absolute; left: 0; top: .58em; width: 12px; height: 12px; border: 1px solid var(--gold); border-radius: 50%; }
.service-benefits li::after { content: ""; position: absolute; left: 4px; top: calc(.58em + 4px); width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.service-meta { display: grid; grid-template-columns: repeat(2, 1fr); border-block: 1px solid var(--line); margin-bottom: 28px; }
.service-meta div { padding: 18px 0; display: flex; flex-direction: column; }
.service-meta div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.service-meta span { color: #806f62; font-size: 12px; }
.service-meta strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.service-content .button { align-self: flex-start; }

.process-section { background: var(--cream); }
.section-heading { max-width: 700px; margin-bottom: 58px; }
.section-heading > p:last-child { color: var(--ink-soft); max-width: 600px; }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-list li { position: relative; padding: 30px 30px 26px; min-height: 240px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list li::after { content: ""; position: absolute; left: 30px; right: 100%; bottom: -1px; height: 2px; background: var(--gold); transition: right .5s ease; }
.process-list li:hover::after { right: 30px; }
.process-list li > span { color: var(--gold); font-family: var(--serif); font-style: italic; }
.process-list h3 { margin: 42px 0 9px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.results-section { background: var(--paper); }
.section-heading-split { max-width: none; display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; }
.section-heading-split > p { margin-bottom: 22px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card { margin: 0; position: relative; }
.compare {
  --position: 50%; position: relative; overflow: hidden; aspect-ratio: 4/5.15;
  background: #d6cabd; border-radius: 3px; cursor: ew-resize; box-shadow: 0 20px 50px rgba(61,42,28,.12);
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; user-select: none; pointer-events: none; }
.compare .after-image { clip-path: inset(0 0 0 var(--position)); }
.compare-divider { position: absolute; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgba(255,255,255,.95); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 18px rgba(0,0,0,.3); }
.compare-handle { position: absolute; top: 50%; left: var(--position); width: 48px; height: 48px; border-radius: 50%; transform: translate(-50%,-50%); background: rgba(255,250,243,.93); color: var(--ink); display: grid; place-items: center; pointer-events: none; box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.compare-handle::before { content: "↔"; font-size: 18px; }
.compare-label { position: absolute; top: 18px; z-index: 2; padding: 6px 10px; background: rgba(23,19,16,.65); color: #fff; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(6px); pointer-events: none; }
.compare-label-before { left: 16px; }
.compare-label-after { right: 16px; }
.compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.result-caption { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 2px 0; }
.result-caption span { font-family: var(--serif); font-size: 21px; }
.result-caption button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 4px 0; color: #765538; cursor: pointer; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.result-note { margin: 28px 0 0; color: #827268; font-size: 12px; }

.suitability-section { background: #e9dccd; }
.suitability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-panel { min-height: 480px; padding: clamp(44px, 6vw, 78px); background: rgba(255,250,243,.8); border: 1px solid rgba(80,55,38,.1); }
.info-panel-dark { color: #fff; background: var(--brown); border-color: transparent; }
.info-panel-dark p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.text-link-light { color: var(--gold-light); }
.check-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 26px 55px 26px 0; position: relative; font-family: var(--serif); font-size: 22px; }
summary::-webkit-details-marker { display: none; }
summary span, summary span::after { position: absolute; right: 4px; top: 50%; width: 18px; height: 1px; background: var(--ink); transition: transform .3s ease; }
summary span::after { content: ""; right: 0; top: 0; transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { margin: -4px 55px 28px 0; color: var(--ink-soft); }

.contacts-section { padding: 110px 0; background: linear-gradient(180deg, #e9dccd 0%, var(--cream) 100%); }
.contacts-card { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); min-height: 500px; overflow: hidden; border-radius: var(--radius); background: var(--espresso); box-shadow: var(--shadow); }
.contacts-copy { min-width: 0; padding: clamp(54px, 5.6vw, 82px); color: #fff; background: radial-gradient(circle at 16% 0%, rgba(200,154,98,.13), transparent 35%), var(--espresso); }
.contacts-copy h2 { max-width: 520px; margin-bottom: 20px; color: #fff; font-size: clamp(48px, 5.2vw, 74px); overflow-wrap: normal; }
.contacts-intro { max-width: 450px; margin: 0; color: rgba(255,255,255,.66); }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin: 34px 0 36px; }
.contact-phone { display: flex; flex-direction: column; color: #fff; text-decoration: none; }
.contact-phone span { color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.contact-phone strong { font: 400 22px/1.25 var(--serif); }
.contact-phone:hover strong { color: var(--gold-light); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 25px; border-top: 1px solid var(--white-line); }
.contact-detail { display: flex; gap: 13px; align-items: flex-start; padding: 15px 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.contact-detail-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(228,195,145,.38); border-radius: 50%; color: var(--gold-light); }
.contact-detail-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-detail div { display: flex; flex-direction: column; }
.contact-detail small { color: rgba(255,255,255,.44); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-detail strong { margin-top: 3px; font: 400 16px/1.35 var(--serif); }
.social-block { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; }
.social-block > span { color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; transition: transform .35s ease, color .35s ease, border-color .35s ease, background .35s ease; }
.social-link:hover { transform: translateY(-4px); color: var(--espresso); border-color: var(--gold-light); background: var(--gold-light); }
.social-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-link [d] { fill: currentColor; stroke: none; }
.social-link .social-dot { fill: currentColor; stroke: none; }
.map-card { min-width: 0; padding: 18px; display: flex; flex-direction: column; background: #f2e8dc; }
.map-card-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 66px; padding: 4px 8px 16px; }
.map-card-head div { display: flex; flex-direction: column; }
.map-card-head span { color: #9b7657; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.map-card-head strong { font: 400 18px/1.25 var(--serif); }
.map-card-head a { flex: 0 0 auto; color: #7a5434; text-decoration: none; border-bottom: 1px solid currentColor; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.map-shell { flex: 1; min-height: 400px; background: #d8cec2; position: relative; overflow: hidden; border-radius: 14px; }
.map-shell iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: sepia(.18) saturate(.72) contrast(.94); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; padding: 34px; background:
  linear-gradient(rgba(248,241,232,.88), rgba(232,218,203,.84)),
  repeating-linear-gradient(25deg, transparent 0 34px, rgba(75,56,42,.08) 34px 36px),
  repeating-linear-gradient(115deg, transparent 0 52px, rgba(75,56,42,.08) 52px 54px);
}
.map-placeholder p { margin: 20px 0 18px; font-family: var(--serif); font-size: 25px; }
.map-placeholder small { max-width: 370px; margin-top: 14px; color: #75675e; }
.map-pin { width: 58px; height: 58px; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-size: 12px; animation: pin-pulse 2.6s ease-in-out infinite; }
@keyframes pin-pulse { 50% { box-shadow: 0 0 0 17px rgba(200,154,98,.13); } }

.site-footer { padding: 30px 0; background: var(--cream); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.4fr; align-items: center; gap: 35px; }
.brand-dark { color: var(--ink); }
.footer-grid > p { color: #75675e; font-size: 12px; text-align: center; }
.footer-grid nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; }
.footer-grid nav a, .footer-button { padding: 0; border: 0; background: transparent; color: #6f6157; text-decoration: none; font-size: 11px; cursor: pointer; }
.footer-grid nav a:hover, .footer-button:hover { color: var(--ink); text-decoration: underline; }
.mobile-booking { display: none; }

.cookie-banner {
  position: fixed; z-index: 120; left: 22px; right: 22px; bottom: 22px; max-width: 1180px; margin-inline: auto;
  padding: 20px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  background: rgba(31,24,19,.96); color: #fff; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 25px 80px rgba(0,0,0,.3); backdrop-filter: blur(14px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.cookie-banner p { margin: 4px 0 0; color: rgba(255,255,255,.65); font-size: 12px; }
.cookie-banner p a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding-inline: 14px; font-size: 9px; }
.button-cookie-primary { --btn-bg: var(--gold); --btn-color:#fff; --btn-border:var(--gold); }
.button-cookie-secondary { --btn-bg: transparent; --btn-color:#fff; --btn-border:rgba(255,255,255,.35); }
.button-cookie-settings { --btn-bg: rgba(255,255,255,.08); --btn-color:#fff; --btn-border:rgba(255,255,255,.18); }

dialog { border: 0; padding: 0; color: var(--ink); }
dialog::backdrop { background: rgba(16,12,9,.76); backdrop-filter: blur(6px); }
.consent-dialog { width: min(620px, calc(100% - 32px)); background: var(--paper); box-shadow: var(--shadow); }
.consent-dialog form { padding: 34px; }
.dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.dialog-head h2 { margin: 0 0 25px; font-size: 38px; }
.icon-button { border: 0; background: transparent; width: 42px; height: 42px; cursor: pointer; font-size: 30px; font-weight: 200; }
.consent-option { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.consent-option p { margin: 4px 0 0; color: var(--ink-soft); font-size: 13px; }
.always-on { color: #846346; font-size: 11px; }
.consent-option input { position: absolute; opacity: 0; }
.switch { width: 46px; height: 25px; border-radius: 20px; background: #c9c0b7; padding: 3px; transition: background .3s ease; }
.switch::before { content: ""; display: block; width: 19px; height: 19px; background: #fff; border-radius: 50%; transition: transform .3s ease; box-shadow: 0 2px 5px rgba(0,0,0,.18); }
.consent-option input:checked + .switch { background: var(--gold); }
.consent-option input:checked + .switch::before { transform: translateX(21px); }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; background: rgba(15,11,9,.98); color: #fff; }
.lightbox-frame { min-height: 100%; display: grid; grid-template-columns: 72px 1fr 72px; align-items: center; position: relative; padding: 30px; }
.lightbox-close { position: fixed; z-index: 3; right: 24px; top: 18px; border: 0; background: transparent; color: #fff; font-size: 40px; font-weight: 200; cursor: pointer; }
.lightbox-arrow { border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.lightbox-content { width: min(1260px, 100%); margin-inline: auto; }
.lightbox-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 18px; }
.lightbox-title-row span, .lightbox-title-row small { color: rgba(255,255,255,.55); }
.lightbox-title-row h2 { margin: 0; font-size: 38px; }
.lightbox-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-height: 78vh; }
.lightbox-images figure { position: relative; margin: 0; min-height: 0; background: #29221d; overflow: auto; }
.lightbox-images img { width: 100%; height: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-images figcaption { position: absolute; left: 12px; top: 12px; padding: 6px 10px; background: rgba(15,11,9,.7); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

.legal-page { background: var(--paper); }
.legal-page .site-header { color: var(--ink); background: rgba(250,245,238,.92); box-shadow: 0 1px 0 var(--line); }
.legal-main { padding: 150px 0 100px; min-height: 80vh; }
.legal-content { max-width: 820px; }
.legal-content h1 { margin: 0 0 20px; font: 400 clamp(46px, 7vw, 82px)/1 var(--serif); }
.legal-content h2 { margin: 48px 0 12px; font-size: 30px; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content .updated { color: #8c7869; font-size: 12px; }
.legal-back { display: inline-flex; margin-top: 45px; }

@media (max-width: 1050px) {
  :root { --header-h: 72px; }
  .site-header { padding-inline: 24px; }
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 10px; }
  .header-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--white-line); }
  .about-grid { gap: 70px; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:nth-child(4) { border-left: 1px solid var(--line); }
  .process-list li:nth-child(n+4) { border-top: 0; }
  .process-list li:nth-child(3) { border-right: 1px solid var(--line); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); margin-inline: auto; }
  .faq-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid nav { justify-content: center; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, 680px); }
  .section { padding: 82px 0; }
  .site-header { grid-template-columns: 1fr auto; height: 70px; }
  .site-header.is-scrolled { height: 62px; }
  .brand-name { font-size: 13px; }
  .brand-mark { width: 38px; height: 38px; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px; padding: 100px 30px; background: rgba(26,20,16,.98); color: #fff; opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity .35s ease, visibility .35s ease, transform .35s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font: 400 32px/1.1 var(--serif); letter-spacing: 0; text-transform: none; }
  .hero { min-height: 840px; height: 100svh; }
  .hero-media { background-position: 70% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(17,13,10,.96), rgba(22,16,12,.72) 58%, rgba(20,14,10,.38)), linear-gradient(0deg, rgba(14,10,8,.88), transparent 55%); }
  .hero-inner { padding-top: 64px; align-items: flex-end; padding-bottom: 205px; }
  .hero-copy { max-width: 580px; }
  .hero h1 { font-size: clamp(58px, 15vw, 88px); }
  .hero-signature { display: none; }
  .hero-stats { position: absolute; bottom: 0; left: 0; right: 0; }
  .stats-grid { min-height: 170px; }
  .stat { padding: 18px 14px; gap: 11px; }
  .stat:first-child { padding-left: 14px; }
  .stat-icon { width: 34px; height: 34px; }
  .stat strong { font-size: 17px; }
  .stat span:last-child { font-size: 10px; }
  .about-grid, .service-card, .suitability-grid, .faq-grid, .contacts-card { grid-template-columns: 1fr; }
  .portrait-card { width: min(90%, 500px); margin-inline: auto; }
  .portrait-card figcaption { right: -10px; }
  .about-copy { margin-top: 10px; }
  .service-visual, .gift-stage { min-height: 460px; }
  .service-content { padding: 48px 30px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:nth-child(n+4) { border: 1px solid var(--line); border-bottom: 0; min-height: auto; }
  .process-list li:last-child { border-bottom: 1px solid var(--line); }
  .process-list h3 { margin-top: 15px; }
  .section-heading-split { grid-template-columns: 1fr; gap: 0; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card:last-child { grid-column: auto; width: auto; }
  .compare { aspect-ratio: 4/5; }
  .contacts-section { padding: 78px 0; }
  .contacts-copy { padding: 58px 36px; }
  .map-card { padding: 14px; }
  .map-shell, .map-shell iframe { min-height: 350px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 14px; left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button:last-child { grid-column: 1/-1; }
  .lightbox-frame { grid-template-columns: 1fr; padding: 55px 12px 18px; }
  .lightbox-arrow { position: fixed; z-index: 4; bottom: 18px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-images { grid-template-columns: 1fr; max-height: calc(100vh - 160px); overflow: auto; }
  .lightbox-images img { max-height: none; height: auto; }
  .lightbox-title-row { align-items: start; }
  .lightbox-title-row small { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 28px); }
  .site-header { padding-inline: 15px; }
  .brand-name { letter-spacing: .09em; }
  .hero { min-height: 820px; }
  .hero-media { background-position: 67% 50%; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,11,9,.97) 0%, rgba(18,13,10,.78) 50%, rgba(19,14,11,.36) 100%), linear-gradient(90deg, rgba(16,12,9,.64), transparent); }
  .hero-inner { align-items: flex-end; padding-bottom: 208px; }
  .hero h1 { font-size: clamp(51px, 17vw, 72px); line-height: .94; }
  .hero-subtitle { margin-top: 20px; font-size: 20px; }
  .hero-description { font-size: 14px; max-width: 390px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 370px); margin-top: 25px; }
  .hero-actions .button { min-height: 48px; }
  .stats-grid { min-height: 190px; }
  .stat { align-items: flex-start; }
  .stat-icon { display: none; }
  .stat strong { font-size: 16px; }
  .section { padding: 70px 0; }
  .about-copy h2, .section-heading h2, .service-content h2, .info-panel h2, .contacts-copy h2, .faq-section h2 { font-size: clamp(38px, 12vw, 54px); }
  .portrait-card::before { inset: -10px 10px 10px -10px; }
  .portrait-card figcaption { bottom: 20px; padding: 12px 15px; }
  .service-card { width: calc(100% - 18px); }
  .service-visual, .gift-stage { min-height: 410px; }
  .gift-stage { padding: 42px 20px 34px; gap: 28px; }
  .gift-envelope { width: min(94%, 360px); }
  .service-meta strong { font-size: 24px; }
  .service-content .button { width: 100%; }
  .process-list li { padding: 24px; }
  .section-heading { margin-bottom: 38px; }
  .info-panel { min-height: auto; padding: 42px 25px; }
  summary { font-size: 19px; }
  .contacts-section { padding: 58px 0; }
  .contacts-card { border-radius: 16px; }
  .contacts-copy { padding: 48px 24px; }
  .contacts-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .contact-actions { align-items: stretch; }
  .contact-actions .button { width: 100%; }
  .contact-details { grid-template-columns: 1fr; }
  .map-card-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .map-shell, .map-shell iframe { min-height: 300px; }
  .site-footer { padding-bottom: 85px; }
  .footer-grid .brand { justify-content: center; }
  .mobile-booking { position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 12px; display: block; transform: translateY(130%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
  .mobile-booking.is-visible { transform: none; }
  .mobile-booking a { display: flex; justify-content: space-between; align-items: center; min-height: 54px; padding: 0 22px; background: var(--gold); color: #fff; text-decoration: none; box-shadow: 0 14px 45px rgba(39,25,16,.3); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .cookie-banner { bottom: 78px; }
  .consent-dialog form { padding: 24px 20px; }
  .dialog-actions { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- v3 refinements: bilingual navigation, editorial hero and contacts --- */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.24);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}
.site-header.is-scrolled .language-switch,
.legal-page .language-switch { border-left-color: var(--line); }
.language-switch .is-active { color: var(--gold-light); }
.site-header.is-scrolled .language-switch .is-active,
.legal-page .language-switch .is-active { color: #966535; }
.site-nav .language-switch a {
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  opacity: .64;
}
.site-nav .language-switch a::after { display: none; }
.site-nav .language-switch a:hover { opacity: 1; }

@media (min-width: 821px) {
  .hero {
    min-height: 760px;
    height: clamp(760px, 100svh, 920px);
  }
  .hero-media {
    inset: 0 0 0 34%;
    background-size: cover;
    background-position: 56% 50%;
    transform: scale(1.012);
    animation: hero-breathe-refined 18s ease-in-out infinite alternate;
  }
  @keyframes hero-breathe-refined {
    to { transform: scale(1.035) translate3d(-.25%, -.15%, 0); }
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #171310 0%, #171310 29%, rgba(23,19,16,.96) 36%, rgba(23,19,16,.68) 52%, rgba(23,19,16,.10) 78%, rgba(23,19,16,.03) 100%),
      linear-gradient(0deg, rgba(15,11,9,.70) 0%, transparent 35%);
  }
  .hero-inner { padding-top: 82px; }
  .hero-copy { max-width: 500px; margin-top: -18px; }
  .hero h1 { font-size: clamp(56px, 5.35vw, 82px); line-height: .96; letter-spacing: -.025em; }
  .hero-subtitle { margin-top: 24px; font-size: 21px; }
  .hero-description { max-width: 455px; font-size: 15px; line-height: 1.65; }
  .hero-actions { margin-top: 30px; }
  .hero-signature { display: none; }
  .stats-grid { min-height: 118px; }
  .stat { padding-top: 22px; padding-bottom: 22px; }
}

.contacts-copy { position: relative; overflow: hidden; }
.contacts-copy::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -205px;
  bottom: -225px;
  border: 1px solid rgba(228,195,145,.12);
  border-radius: 50%;
  pointer-events: none;
}
.contact-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}
.contact-heading-row .eyebrow { margin-bottom: 0; }
.contact-monogram {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228,195,145,.34);
  border-radius: 50%;
  color: var(--gold-light);
  font: 400 20px/1 var(--serif);
  opacity: .9;
}
.contacts-copy h2 {
  max-width: 470px;
  font-size: clamp(45px, 4.5vw, 64px);
  line-height: 1.01;
  letter-spacing: -.025em;
}
.contacts-intro { font-size: 15px; line-height: 1.65; }
.contact-actions { margin-top: 30px; }

@media (max-width: 1150px) and (min-width: 821px) {
  .site-nav { gap: 12px; }
  .site-nav > a { font-size: 9px; }
  .language-switch { padding-left: 9px; gap: 5px; }
  .hero-media { left: 31%; }
}

@media (max-width: 820px) {
  .language-switch {
    margin: 8px 0 0;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: 13px;
  }
  .site-nav .language-switch a { font: 700 13px/1 var(--sans); letter-spacing: .12em; }
  .site-nav .language-switch .is-active { color: var(--gold-light); }
  .hero-media { inset: 0; background-position: 67% 50%; }
  .hero h1 { font-size: clamp(52px, 13.2vw, 76px); line-height: .96; }
  .contacts-copy h2 { max-width: 520px; font-size: clamp(43px, 9.8vw, 58px); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(45px, 13.5vw, 62px); }
  .contact-heading-row { align-items: flex-start; }
  .contact-monogram { width: 46px; height: 46px; font-size: 17px; }
  .contacts-copy h2 { font-size: clamp(40px, 11vw, 49px); line-height: 1.04; }
  .contacts-intro { font-size: 14px; }
}

/* --- v4: mobile-first polish and responsive navigation --- */
@media (max-width: 820px) {
  :root { --header-h: 68px; }
  html { scroll-padding-top: 72px; }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    padding-inline: 18px;
  }
  .site-header .brand,
  .site-header .menu-toggle { position: relative; z-index: 102; }
  .brand { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; font-size: 17px; }
  .brand-name { font-size: 12px; letter-spacing: .105em; }
  .menu-toggle { z-index: 103; }

  .site-nav {
    inset: 0;
    z-index: 100;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: max(104px, calc(env(safe-area-inset-top) + 90px)) 26px 38px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0%, rgba(200,154,98,.15), transparent 34%),
      #171310;
    transform: translateY(-10px);
  }
  .site-nav::before {
    content: "Навигация";
    margin: 0 0 14px;
    color: var(--gold-light);
    font: 600 10px/1 var(--sans);
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  html[lang="lv"] .site-nav::before { content: "Navigācija"; }
  .site-nav > a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 2px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font: 400 clamp(25px, 7.2vw, 34px)/1 var(--serif);
    letter-spacing: -.02em;
  }
  .site-nav > a::after {
    content: "↗";
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    background: none;
    color: rgba(228,195,145,.72);
    font: 400 16px/1 var(--sans);
    transform: none;
  }
  .site-nav .language-switch {
    align-self: flex-start;
    margin-top: 24px;
    padding-top: 20px;
    gap: 10px;
    border-top-color: rgba(255,255,255,.12);
  }

  .hero {
    min-height: 0;
    height: auto;
  }
  .hero-media {
    inset: 0;
    background-position: 70% 50%;
    transform: scale(1.01);
    animation-duration: 20s;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(15,11,9,.98) 0%, rgba(17,12,9,.88) 38%, rgba(18,13,10,.54) 68%, rgba(18,13,10,.35) 100%),
      linear-gradient(90deg, rgba(15,11,9,.78), rgba(15,11,9,.2));
  }
  .hero-inner {
    min-height: 620px;
    align-items: flex-end;
    padding-top: 108px;
    padding-bottom: 38px;
  }
  .hero-copy { max-width: 510px; margin: 0; }
  .hero .eyebrow { margin-bottom: 13px; font-size: 9px; letter-spacing: .18em; }
  .hero h1 {
    max-width: 10ch;
    font-size: clamp(43px, 11.7vw, 61px);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .hero-subtitle { margin: 18px 0 8px; font-size: 19px; }
  .hero-description { max-width: 440px; font-size: 13px; line-height: 1.55; }
  .hero-actions {
    width: 100%;
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 10px;
  }
  .hero-actions .button {
    min-height: 48px;
    padding-inline: 15px;
    gap: 12px;
    font-size: 9px;
    letter-spacing: .08em;
  }
  .hero-stats { position: relative; inset: auto; }
  .stats-grid { min-height: 0; grid-template-columns: repeat(2, 1fr); }
  .stat {
    min-height: 104px;
    padding: 20px 18px;
    align-items: flex-start;
  }
  .stat:first-child { padding-left: 18px; }
  .stat-icon { display: none; }
  .stat strong { font-size: 18px; line-height: 1.1; }
  .stat span:last-child { margin-top: 7px; font-size: 10px; line-height: 1.35; }

  .about-grid { gap: 40px; }
  .portrait-card {
    width: min(72vw, 320px);
    margin-inline: auto;
  }
  .portrait-card img {
    aspect-ratio: 4 / 5;
    max-height: 400px;
    object-position: 50% 38%;
  }
  .portrait-card figcaption {
    right: -14px;
    bottom: 20px;
    padding: 12px 14px;
  }
  .portrait-card figcaption span { font-size: 18px; }
  .about-copy { margin-top: 0; }
  .about-copy h2 { font-size: clamp(39px, 10.5vw, 54px); }

  .results-grid {
    width: min(100%, 440px);
    margin-inline: auto;
    gap: 34px;
  }
  .result-card,
  .result-card:last-child { width: 100%; margin-inline: 0; }
  .compare { aspect-ratio: 4 / 5; }
  .compare img { object-position: center 50%; }
  .result-card:nth-child(2) .compare img,
  .result-card:nth-child(3) .compare img { transform: scale(1.035); }
  .result-caption { padding-top: 14px; }
  .result-caption span { font-size: 20px; }

  .contacts-card { min-height: 0; }
  .contacts-copy { padding: 44px 26px; }
  .contacts-copy h2 { max-width: 10ch; font-size: clamp(40px, 10.5vw, 52px); }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .map-shell,
  .map-shell iframe { min-height: 320px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 30px); }
  .section { padding: 64px 0; }
  .site-header,
  .site-header.is-scrolled { padding-inline: 14px; }
  .brand-name { font-size: 11px; }

  .hero-inner {
    min-height: 590px;
    padding-top: 98px;
    padding-bottom: 30px;
  }
  .hero h1 { font-size: clamp(41px, 12.4vw, 56px); }
  .hero-description { max-width: 35ch; }
  .hero-actions { grid-template-columns: 1fr; gap: 9px; max-width: 360px; }
  .hero-actions .button { min-height: 46px; }
  .hero-actions .button-ghost {
    min-height: 40px;
    border-color: rgba(255,255,255,.34);
  }
  .stats-grid { min-height: 0; }
  .stat { min-height: 96px; padding: 17px 15px; }
  .stat:first-child { padding-left: 15px; }
  .stat strong { font-size: 16px; }

  .portrait-card { width: min(76vw, 285px); }
  .portrait-card img { max-height: 355px; }
  .portrait-card::before { inset: -8px 8px 8px -8px; }
  .portrait-card figcaption { right: -9px; bottom: 16px; }

  .service-visual,
  .gift-stage { min-height: 350px; }
  .gift-stage { padding: 34px 18px 28px; }
  .gift-message h3 { font-size: clamp(34px, 10vw, 46px); }

  .process-list { gap: 10px; }
  .process-list li,
  .process-list li:nth-child(n+4) { border: 1px solid var(--line); }
  .process-list li { padding: 21px; }

  .section-heading-split > p { font-size: 13px; }
  .compare { aspect-ratio: 4 / 4.85; }
  .compare-label { top: 12px; padding: 5px 8px; }
  .compare-label-before { left: 12px; }
  .compare-label-after { right: 12px; }
  .compare-handle { width: 42px; height: 42px; }

  .contacts-copy { padding: 38px 22px; }
  .contacts-copy h2 { font-size: clamp(38px, 10.8vw, 47px); }
  .contact-details { grid-template-columns: 1fr; }
  .social-block { margin-top: 24px; }
  .map-card { padding: 10px; }
  .map-shell,
  .map-shell iframe { min-height: 270px; }
}

@media (max-width: 380px) {
  .brand-name { display: none; }
  .hero-inner { min-height: 560px; }
  .hero-description { display: none; }
  .hero-subtitle { margin-bottom: 0; }
  .hero h1 { font-size: 42px; }
  .stat { min-height: 90px; padding-inline: 12px; }
  .stat:first-child { padding-left: 12px; }
  .stat strong { font-size: 15px; }
}


/* =========================================================
   v5 — final editorial pass: wider hero, language picker,
   uniform stats, refined contacts, and mobile QA
   ========================================================= */

/* Accessible native language picker */
.language-switch { display: none !important; }
.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 76px;
  height: 36px;
  color: inherit;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.language-picker:hover { border-color: rgba(228,195,145,.68); background: rgba(255,255,255,.1); transform: translateY(-1px); }
.language-picker-icon { position: absolute; left: 10px; width: 14px; height: 14px; pointer-events: none; }
.language-picker-icon svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; }
.language-picker-label { display: none; }
.language-picker select {
  width: 100%; height: 100%; margin: 0; padding: 0 29px 0 30px;
  appearance: none; -webkit-appearance: none;
  border: 0; outline: 0; border-radius: inherit;
  background: transparent; color: inherit;
  font: 700 10px/1 var(--sans); letter-spacing: .1em;
  cursor: pointer;
}
.language-picker select option { color: #241b16; background: #fffaf3; }
.language-picker-chevron {
  position: absolute; right: 11px; top: 50%; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-67%) rotate(45deg); pointer-events: none;
}
.site-header.is-scrolled .language-picker,
.legal-page .language-picker { border-color: rgba(68,48,35,.22); background: rgba(255,255,255,.58); }

/* Hero: use a purpose-built wider canvas rather than zooming the source image */
.hero { min-height: 720px; height: clamp(720px, 92svh, 840px); }
.hero-media {
  background-image: url('assets/hero-massage-wide.webp');
  background-position: center center;
  background-size: cover;
  transform: scale(1.002);
  animation: hero-v5-breathe 24s ease-in-out infinite alternate;
}
@keyframes hero-v5-breathe { to { transform: scale(1.014) translate3d(-.08%, -.06%, 0); } }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(20,15,12,.97) 0%, rgba(20,15,12,.94) 26%, rgba(20,15,12,.72) 43%, rgba(20,15,12,.14) 69%, rgba(20,15,12,.06) 100%),
    linear-gradient(0deg, rgba(15,11,9,.72) 0%, rgba(15,11,9,.05) 42%);
}
.hero-inner { padding-top: 78px; }
.hero-copy { max-width: 505px; margin-top: -6px; }
.hero h1 { max-width: 8.2ch; font-size: clamp(54px, 4.65vw, 75px); line-height: .98; letter-spacing: -.028em; }
.hero-subtitle { margin-top: 23px; font-size: 20px; }
.hero-description { max-width: 410px; font-size: 14px; line-height: 1.65; }
.hero-actions { margin-top: 28px; }
.hero-actions .button { min-width: 176px; }
.hero-stats { background: rgba(17,13,10,.66); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.stats-grid { min-height: 106px; }
.stat { gap: 14px; padding: 21px 22px; }
.stat:first-child { padding-left: 22px; }
.stat-icon { width: 34px; height: 34px; font-size: 12px; }
.stat-copy {
  margin: 0;
  color: rgba(255,255,255,.86);
  font: 400 13px/1.42 var(--sans);
  letter-spacing: .005em;
}

/* About: balanced portrait size, especially on mobile */
.portrait-card img { object-position: 50% 44%; }

/* Result cards must remain visually identical */
.result-card:nth-child(2) .compare img,
.result-card:nth-child(3) .compare img { transform: none !important; }
.compare { aspect-ratio: 4 / 5; }

/* Contacts: clearer hierarchy, less copy, more room for Latvian */
.contacts-section { padding: 96px 0; }
.contacts-card { grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); min-height: 470px; }
.contacts-copy { padding: clamp(48px, 4.6vw, 68px); }
.contacts-copy::after { display: none; }
.contact-heading-row { min-height: 18px; margin-bottom: 13px; }
.contact-heading-row .eyebrow { margin: 0; }
.contact-monogram { display: none !important; }
.contacts-copy h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(43px, 3.55vw, 56px);
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}
html[lang="lv"] .contacts-copy h2 { font-size: clamp(40px, 3.25vw, 51px); letter-spacing: -.04em; }
.contacts-intro { max-width: 390px; font-size: 14px; line-height: 1.58; }
.contact-actions { margin: 27px 0 31px; gap: 20px; }
.contact-details { padding-top: 21px; }
.contact-detail { min-height: 82px; }
.map-card { padding: 14px; }
.map-shell, .map-shell iframe { min-height: 350px; }

/* Disable the obstructive floating CTA: the page already has enough booking points */
.mobile-booking { display: none !important; }
.site-footer { padding-bottom: 30px; }

@media (max-width: 1150px) and (min-width: 821px) {
  .hero { min-height: 700px; }
  .hero h1 { font-size: clamp(52px, 5.1vw, 68px); }
  .hero-copy { max-width: 455px; }
  .hero-media { background-position: 52% center; }
  .contacts-card { grid-template-columns: 1fr 1fr; }
  .contacts-copy h2 { font-size: 43px; }
  html[lang="lv"] .contacts-copy h2 { font-size: 39px; }
}

@media (max-width: 820px) {
  /* Elegant right-side drawer rather than an oversized full-screen list */
  .site-nav {
    inset: 0 0 0 auto;
    width: min(88vw, 390px);
    height: 100dvh;
    padding: max(96px, calc(env(safe-area-inset-top) + 82px)) 24px 30px;
    background: radial-gradient(circle at 100% 0%, rgba(200,154,98,.14), transparent 34%), #171310;
    opacity: 1;
    visibility: hidden;
    transform: translateX(104%);
    transition: transform .38s cubic-bezier(.2,.8,.2,1), visibility .38s ease;
    box-shadow: none;
  }
  .site-nav.is-open {
    visibility: visible;
    transform: translateX(0);
    box-shadow: -100vw 0 0 100vw rgba(12,9,7,.58), -28px 0 70px rgba(0,0,0,.25);
  }
  .site-nav::before { margin-bottom: 9px; }
  .site-nav > a {
    min-height: 52px;
    font-size: clamp(23px, 6.4vw, 29px);
  }
  .site-nav .language-picker {
    width: 100%; height: 48px; margin-top: 24px;
    border-color: rgba(255,255,255,.18);
    border-radius: 10px;
  }
  .site-nav .language-picker-label {
    display: block; margin-left: 36px; color: rgba(255,255,255,.56);
    font: 500 11px/1 var(--sans); letter-spacing: .08em;
  }
  .site-nav .language-picker select {
    position: absolute; inset: 0; padding-left: 0; padding-right: 38px;
    color: transparent; text-align: right;
  }
  .site-nav .language-picker select option { color: #241b16; }
  .site-nav .language-picker::after {
    content: attr(data-current-lang);
  }
  .site-nav .language-picker-icon { left: 14px; }
  .site-nav .language-picker-chevron { right: 16px; }
  .site-nav .language-picker select { color: #fff; padding-left: 70%; }

  .hero { min-height: 0; height: auto; }
  .hero-media {
    background-image: url('assets/hero-massage-mobile.webp');
    background-position: center top;
    background-size: cover;
    transform: none;
    animation: none;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(15,11,9,.99) 0%, rgba(15,11,9,.95) 35%, rgba(15,11,9,.63) 58%, rgba(15,11,9,.18) 78%, rgba(15,11,9,.08) 100%),
      linear-gradient(90deg, rgba(15,11,9,.35), rgba(15,11,9,.05));
  }
  .hero-inner {
    min-height: 590px;
    align-items: flex-end;
    padding-top: 92px;
    padding-bottom: 31px;
  }
  .hero-copy { max-width: 470px; }
  .hero h1 { max-width: 9ch; font-size: clamp(43px, 11.6vw, 57px); line-height: .97; }
  .hero-subtitle { margin: 16px 0 7px; font-size: 18px; }
  .hero-description { max-width: 39ch; font-size: 13px; line-height: 1.5; }
  .hero-actions {
    width: min(100%, 370px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
  }
  .hero-actions .button { min-width: 0; min-height: 45px; padding: 0 13px; gap: 11px; font-size: 9px; }
  .hero-stats { background: #171310; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 88px; padding: 17px 15px; border-bottom: 1px solid var(--white-line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .stat:first-child { padding-left: 15px; }
  .stat-icon { display: none; }
  .stat-copy { font-size: 12px; line-height: 1.38; }

  .portrait-card { width: min(62vw, 260px); }
  .portrait-card img { max-height: 325px; aspect-ratio: 4/5; }
  .portrait-card figcaption { display: none; }
  .about-grid { gap: 34px; }

  .contacts-section { padding: 70px 0; }
  .contacts-card { grid-template-columns: 1fr; }
  .contacts-copy { padding: 42px 28px; }
  .contacts-copy h2 { max-width: 12ch; font-size: clamp(38px, 9.5vw, 48px); }
  html[lang="lv"] .contacts-copy h2 { max-width: 13ch; font-size: clamp(35px, 8.7vw, 44px); }
  .contacts-intro { max-width: 32ch; }
  .map-shell, .map-shell iframe { min-height: 290px; }
}

@media (max-width: 560px) {
  .site-header, .site-header.is-scrolled { padding-inline: 15px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 10.5px; }
  .header-cta { display: none; }

  .hero-inner { min-height: 555px; padding-top: 82px; padding-bottom: 25px; }
  .hero h1 { font-size: clamp(41px, 12vw, 52px); }
  .hero .eyebrow { margin-bottom: 10px; }
  .hero-description { font-size: 12.5px; }
  .hero-actions { max-width: none; }
  .hero-actions .button { letter-spacing: .065em; }
  .stats-grid { width: 100%; }
  .stat { min-height: 82px; padding: 14px 13px; }
  .stat:first-child { padding-left: 13px; }
  .stat-copy { font-size: 11.5px; }

  .portrait-card { width: min(60vw, 230px); }
  .portrait-card img { max-height: 288px; }
  .about-copy h2 { font-size: clamp(36px, 9.8vw, 46px); }

  .results-grid { gap: 28px; }
  .compare { aspect-ratio: 4 / 5; }

  .contacts-copy { padding: 36px 22px; }
  .contacts-copy h2 { font-size: clamp(35px, 9.3vw, 43px); line-height: 1.02; }
  html[lang="lv"] .contacts-copy h2 { font-size: clamp(32px, 8.5vw, 39px); }
  .contact-actions { display: grid; align-items: stretch; gap: 17px; }
  .contact-actions .button { width: 100%; }
  .contact-phone { padding-left: 2px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-detail { min-height: 74px; }
  .map-card-head { padding-inline: 5px; }
}

@media (max-width: 370px) {
  .hero-inner { min-height: 530px; }
  .hero h1 { font-size: 40px; }
  .hero-description { display: none; }
  .hero-actions { margin-top: 17px; }
  .stat-copy { font-size: 11px; }
  .contacts-copy h2 { font-size: 34px; }
  html[lang="lv"] .contacts-copy h2 { font-size: 31px; }
}

/* v6: production-grade legal pages and consent clarity */
.legal-content { max-width: 940px; }
.legal-content > h1 { max-width: 11ch; }
.legal-lead {
  max-width: 760px;
  margin: 28px 0 30px;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.45;
}
.legal-callout {
  margin: 30px 0 34px;
  padding: 24px 26px;
  border: 1px solid rgba(174, 125, 75, .3);
  border-left: 4px solid var(--gold);
  background: #f5eadc;
}
.legal-callout strong { display: block; margin-bottom: 5px; font-size: 14px; letter-spacing: .04em; }
.legal-callout p { margin: 0; }
.legal-toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 35px 0 58px;
  border: 1px solid var(--line);
  background: var(--line);
}
.legal-toc a {
  padding: 15px 17px;
  background: var(--paper);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  transition: color .25s ease, background .25s ease;
}
.legal-toc a:hover { color: var(--ink); background: #f7eee3; }
.legal-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: #fffaf5;
}
.legal-card p { margin: 0 0 9px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-list { padding-left: 22px; }
.legal-list li { margin: 9px 0; padding-left: 4px; }
.legal-table-wrap {
  margin: 22px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fffaf5;
  -webkit-overflow-scrolling: touch;
}
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13px; line-height: 1.55; }
.legal-table th, .legal-table td { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th:last-child, .legal-table td:last-child { border-right: 0; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { color: var(--ink); background: #efe1d1; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.legal-table td { color: var(--ink-soft); }
.legal-table code { white-space: nowrap; }
.legal-sources { margin-top: 56px; padding-top: 8px; border-top: 1px solid var(--line); }
.legal-sources h2 { margin-top: 32px; }
.legal-sources a { color: #8d6037; text-underline-offset: 3px; }
.legal-content a:not(.button) { text-underline-offset: 3px; }
.legal-content h2[id] { scroll-margin-top: 92px; }

.cookie-actions .button-cookie-primary,
.cookie-actions .button-cookie-secondary { min-width: 140px; }
.button-cookie-secondary:hover { --btn-bg: rgba(255,255,255,.09); --btn-color:#fff; --btn-border:rgba(255,255,255,.58); }

@media (max-width: 820px) {
  .legal-main { padding: 112px 0 72px; }
  .legal-content h1 { font-size: clamp(42px, 12vw, 62px); }
  .legal-content h2 { margin-top: 40px; font-size: 27px; line-height: 1.2; }
  .legal-toc { grid-template-columns: 1fr 1fr; margin-bottom: 44px; }
  .legal-callout, .legal-card { padding: 20px; }
  .legal-table { min-width: 650px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 16px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { width: 100%; min-width: 0; }
  .cookie-actions .button-cookie-settings { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 480px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-callout { border-left-width: 3px; }
  .legal-content h2 { font-size: 24px; }
  .legal-table { min-width: 610px; font-size: 12px; }
  .legal-table th, .legal-table td { padding: 13px 14px; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-actions .button-cookie-settings { grid-column: auto; grid-row: auto; }
  .consent-dialog form { padding: 24px 20px; }
  .dialog-head h2 { font-size: 30px; }
}

/* v7: full-viewport desktop hero without image distortion or aggressive crop */
@media (min-width: 821px) {
  .hero {
    width: 100%;
    height: 100svh;
    min-height: 720px;
  }

  .hero-media {
    background-color: #120f0c;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: none;
    animation: none;
  }

  .hero-inner {
    min-height: 0;
  }
}

@media (min-width: 821px) and (max-height: 780px) {
  .hero {
    height: auto;
    min-height: 720px;
  }
}
