/* ============================================================
   Massage 4 Beauty — Variant A "Editorial Ivory"
   Plain CSS. No build step required.
   ============================================================ */

:root {
  --ivory:     #F4F1EA;
  --paper:     #FBFAF6;
  --white:     #FFFFFF;
  --sage-tint: #E9EEE3;
  --deep:      #5A7352;
  --deeper:    #39483C;
  --ink:       #272B25;
  --soft:      #6E7468;
  --line:      rgba(39, 43, 37, .14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1320px;
  --pad: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0;
}

/* ---------- Shared buttons ---------- */
.btn-solid {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--deep);
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}
.btn-solid:hover { background: var(--deeper); }

.link-underline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.link-underline:hover { color: var(--deep); border-color: var(--deep); }

/* ---------- Language switch ---------- */
.lang-switch { display: flex; gap: 2px; }
/* buttons on the home page (JS switch), links on the generated pages (navigation) */
.lang-switch button,
.lang-switch a {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--soft);
  background: none;
  border: none;
  padding: 6px 7px;
  cursor: pointer;
  text-underline-offset: 4px;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch button.active,
.lang-switch a.active { color: var(--ink); font-weight: 600; text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad);
  height: 100px;
  background: rgba(244, 241, 234, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { justify-self: start; }
.brand img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 44px;
  justify-self: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--deep); }

.header-right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.v-line { width: 1px; height: 18px; background: var(--line); }
.header-phone { font-size: 14.5px; font-weight: 500; }
.header-phone:hover { color: var(--deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 42%;
  background: var(--ivory);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 90px 110px var(--pad);
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.04;
  margin-top: 28px;
  text-wrap: pretty;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--soft);
  max-width: 460px;
  margin: 30px 0 0;
}
.cta-row { display: flex; align-items: center; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-img { position: relative; min-height: 560px; }
.hero-img img,
.hero-img video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 100px;
  align-items: center;
  background: var(--paper);
  padding: 120px var(--pad);
}
.about-photo { position: relative; margin-left: 18px; }
.about-frame {
  position: absolute;
  top: 22px; left: -18px;
  width: 100%; height: 100%;
  border: 1px solid var(--sage-tint);
  border-color: var(--deep);
  opacity: .5;
}
.about-photo img { position: relative; width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; }
.about-text { max-width: 560px; }
.about-text h2 { font-size: clamp(38px, 3.5vw, 54px); margin-top: 20px; }
.about-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft);
  margin: 22px 0 0;
}
.about-welcome {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--deep);
  margin: 22px 0 0;
}
.about-sig { height: 58px; margin-top: 36px; opacity: .9; }
.caption {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 10px 0 0;
}

/* ============================================================
   PRICE LIST
   ============================================================ */
.prices { background: var(--ivory); padding: 120px var(--pad); }
.prices-head { text-align: center; margin-bottom: 70px; }
.prices-head .eyebrow { margin-bottom: 18px; }
.prices-head h2 { font-size: clamp(40px, 4vw, 58px); }

.prices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }

.group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.group-head span:first-child {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.group-rule { flex: 1; height: 1px; background: var(--ink); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.price-name { font-size: 16.5px; font-weight: 500; color: var(--ink); }
.price-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--soft);
  margin-top: 5px;
  max-width: 430px;
}
.price-meta { text-align: right; flex-shrink: 0; }
.price-val { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--deep); }
.price-min { font-size: 12.5px; color: var(--soft); margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 90px;
  align-items: center;
  background: var(--sage-tint);
  padding: 110px var(--pad);
}
.contact h2 { font-size: clamp(38px, 3.5vw, 54px); margin-top: 20px; }
.contact-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft);
  max-width: 440px;
  margin: 22px 0 8px;
}
.info-block { margin-top: 26px; }
.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0;
}
.info-value { font-size: 19px; color: var(--ink); margin: 6px 0 0; }
a.info-value:hover { color: var(--deep); }

.form-card {
  background: var(--white);
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(39, 43, 37, .18);
  padding: 15px 16px;
  width: 100%;
  outline: none;
  resize: none;
}
.field:focus { border-color: var(--deep); }
.field::placeholder { color: #9AA093; }
select.field {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  height: 54px;
  line-height: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23272B25' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-card .btn-solid { margin-top: 6px; }
.form-thanks {
  font-size: 15px;
  color: var(--deep);
  text-align: center;
  margin: 4px 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--deeper);
  padding: 56px var(--pad);
  flex-wrap: wrap;
}
.footer-brand img { height: 44px; filter: invert(1); opacity: .95; }
.footer-copy { font-size: 13px; font-weight: 300; color: rgba(255, 255, 255, .55); margin: 14px 0 0; }
.footer-right { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.footer-right a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.footer-right a:hover { color: #fff; }
.footer-lang button { color: rgba(255, 255, 255, .65); }
.footer-lang button.active { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--deeper);
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
}
.cookie-banner[hidden] { display: none; }
.cookie-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-link:hover { color: #fff; }
.cookie-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.cookie-btn--accept { background: var(--deep); color: #fff; }
.cookie-btn--accept:hover { background: #6a8a60; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.25); }
.cookie-btn--decline:hover { color: #fff; border-color: rgba(255,255,255,.6); }
.cookie-settings-btn {
  font-family: inherit;
  font-size: 15px;
  color: var(--deep);
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0;
  cursor: pointer;
}
.cookie-settings-btn:hover { color: var(--ink); }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-page { background: var(--paper); padding: 100px var(--pad); }
.privacy-wrap { max-width: 760px; margin: 0 auto; }
.privacy-wrap h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 20px 0 36px;
}
.privacy-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--deep);
  margin: -20px 0 40px;
}
.privacy-wrap h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 44px 0 14px;
}
.privacy-wrap p,
.privacy-wrap li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--soft);
  margin: 0 0 14px;
}
.privacy-wrap ul { padding-left: 22px; margin: 0 0 14px; }
.privacy-wrap li { margin: 0 0 6px; }
.privacy-wrap strong { color: var(--ink); font-weight: 500; }
.privacy-effective { font-size: 13px; letter-spacing: 0.08em; color: var(--soft); margin: -24px 0 32px; }
.privacy-wrap h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); margin: 32px 0 12px; }
.privacy-dl { display: grid; grid-template-columns: minmax(120px, 170px) 1fr; gap: 6px 24px; margin: 0 0 14px; }
.privacy-dl dt { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--deep); padding-top: 6px; }
.privacy-dl dd { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--soft); }
.privacy-contact a { color: var(--deep); border-bottom: 1px solid currentColor; }
@media (max-width: 600px) {
  .privacy-dl { grid-template-columns: 1fr; gap: 0; }
  .privacy-dl dt { padding-top: 14px; }
}

@media (max-width: 1080px) {
  :root { --pad: 40px; }
  .main-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 80px var(--pad); }
  .hero-img { min-height: 420px; }
  .about { grid-template-columns: 1fr; gap: 56px; }
  .about-photo { max-width: 420px; }
  .prices-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-actions { justify-content: flex-end; }
}

@media (max-width: 560px) {
  :root { --pad: 22px; }
  .header-phone, .v-line { display: none; }
  .hero-text { padding: 56px var(--pad); }
  .form-card { padding: 32px 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ============================================================
   SERVICE PAGE  (/masaze/*)
   ============================================================ */
.service-page { background: var(--paper); padding: 90px var(--pad) 110px; }
.service-wrap { max-width: 800px; margin: 0 auto; }

.breadcrumb {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--deep); }
.breadcrumb span[aria-current] { color: var(--ink); }

.service-wrap h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
  margin: 16px 0 0;
}
.service-lead {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.55;
  color: var(--soft);
  margin: 22px 0 0;
}
.service-wrap h2 {
  font-size: clamp(27px, 2.6vw, 36px);
  margin: 62px 0 18px;
}
.service-wrap h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 34px 0 14px;
}
.service-wrap p,
.service-wrap li { font-size: 16px; line-height: 1.75; color: var(--soft); }
.service-wrap p { margin: 0 0 16px; }
.service-wrap strong { color: var(--ink); font-weight: 500; }

/* ---------- hero banner (1920x800 WebP; dashed canvas until one exists) ---------- */
.service-hero { margin: 26px 0 34px; }
/* each banner keeps its own proportions — the designed cards are 2.4:1, a
   photograph is usually 16:9 — so the width/height attributes drive the box
   and nothing gets cropped */
.service-hero img { width: 100%; height: auto; }

/* A supplied banner is a designed title card, so it breaks out of the 800px
   text column — squeezed into it, its own typography renders far too small. */
.service-hero--card {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100vw - 2 * var(--pad)));
  margin: 10px 0 44px;
}
.service-hero--card img {
  display: block;
  border: 1px solid var(--line);
}
.photo-canvas {
  aspect-ratio: 12 / 5;
  background: var(--sage-tint);
  border: 1px dashed rgba(90, 115, 82, .45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-canvas-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  opacity: .75;
}
.service-hero figcaption {
  font-size: 13px;
  color: var(--soft);
  margin-top: 12px;
  font-style: italic;
}

/* ---------- fact strip ---------- */
.service-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 46px;
  margin: 40px 0 8px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-fact { display: flex; flex-direction: column; gap: 5px; }
.service-fact-k {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}
.service-fact-v { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.service-fact-cta { margin-left: auto; padding: 15px 30px; }

/* ---------- steps ---------- */
.service-steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.service-steps li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 24px;
  counter-increment: step;
}
.service-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--deep);
  font-family: var(--serif);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-steps strong { display: block; color: var(--ink); margin-bottom: 3px; }

/* ---------- benefit / contraindication lists ---------- */
.service-benefits { margin: 0 0 16px; padding: 0; list-style: none; }
.service-benefits li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.service-benefits li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--deep);
  opacity: .55;
}
.service-benefits--warn li::before { border-radius: 0; background: #B0705A; opacity: .7; }
.service-note { font-size: 15px; font-style: italic; }

/* ---------- price row ---------- */
.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.service-faq { border-top: 1px solid var(--line); }
.service-faq details { border-bottom: 1px solid var(--line); }
.service-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-size: 16.5px;
  color: var(--ink);
}
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  font-size: 21px;
  color: var(--deep);
  line-height: 1;
}
.service-faq details[open] summary::after { content: "–"; }
.service-faq details p { margin: 0 0 20px; padding-right: 34px; }

/* ---------- closing CTA ---------- */
.service-cta {
  background: var(--sage-tint);
  padding: 46px 44px;
  margin-top: 66px;
}
.service-cta h2 { margin-top: 0; }
.service-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 8px; }
.service-cta-phone { font-family: var(--serif); font-size: 22px; color: var(--deep); }
.service-cta-phone:hover { color: var(--deeper); }

/* ---------- related ---------- */
.service-related-h { font-size: 22px !important; margin-bottom: 14px !important; }
.service-related { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px 12px; }
.service-related a {
  display: inline-block;
  font-size: 14px;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
}
.service-related a:hover { background: var(--sage-tint); border-color: transparent; }

@media (max-width: 860px) {
  .service-page { padding: 60px 24px 80px; }
  .service-facts { gap: 22px 32px; }
  .service-fact-cta { margin-left: 0; width: 100%; text-align: center; }
  .service-cta { padding: 34px 26px; }
}

/* ============================================================
   SERVICES HUB  (/sluzby)
   ============================================================ */
.hub-wrap { max-width: 1100px; margin: 0 auto; }
.hub-wrap h1 { font-size: clamp(38px, 4.4vw, 58px); line-height: 1.08; margin: 16px 0 0; }
.hub-wrap h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 64px 0 26px;
}
.hub-wrap .service-lead { max-width: 720px; }

.svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.svc-card { display: flex; }
.svc-card > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 26px 24px;
  transition: border-color .2s, transform .2s;
}
.svc-card > a:hover { border-color: var(--deep); transform: translateY(-2px); }
.svc-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.svc-card-meta {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0 0 14px;
}
.svc-card-text {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--soft);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
}
.svc-card > a:hover .svc-card-more { color: var(--deeper); }

/* link from the home-page price list into the hub */
.prices-hub-link { margin: 16px 0 0; font-size: 14.5px; }
.prices-hub-link a { color: var(--deep); border-bottom: 1px solid currentColor; }
.prices-hub-link a:hover { color: var(--deeper); }

@media (max-width: 860px) {
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .hub-wrap h2 { margin: 46px 0 20px; }
}

@media (max-width: 860px) {
  /* --pad is 24px here, so keep the banner inside the same gutter */
  .service-hero--card { width: calc(100vw - 48px); margin: 6px 0 30px; }
}

/* ============================================================
   GIFT VOUCHER CARD  (built in markup, so it is translatable,
   sharp at any size and always in step with the price list)
   ============================================================ */
.voucher-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1200 / 600;   /* width kept, height cut by a third */
  width: 100%;
  max-width: 1200px;          /* renders at 1200 x 600 where there is room */
  container-type: inline-size;
  padding: clamp(22px, 6.4cqw, 78px);
  border-radius: 14px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(120% 140% at 8% 0%, #2A322A 0%, rgba(42,50,42,0) 58%),
    linear-gradient(122deg, #26302A 0%, #35452F 52%, #3E5138 100%);
}
/* a soft sheen so the flat green does not read as a plain block */
.voucher-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 55% at 88% 92%, rgba(233, 238, 227, .10), transparent 70%);
  pointer-events: none;
}
.voucher-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.voucher-brand {
  font-family: var(--serif);
  font-size: clamp(16px, 3.5cqw, 44px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F6F3EC;
}
.voucher-label {
  font-size: clamp(9.5px, 1.15cqw, 15px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, .62);
  text-align: right;
}
.voucher-body { margin-top: auto; }
.voucher-eyebrow {
  font-size: clamp(9.5px, 1.15cqw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, .58);
  margin: 0 0 14px;
}
.voucher-h {
  font-family: var(--serif);
  font-weight: 400;
  /* deliberately restrained; the airy leading is what gives the card its calm */
  font-size: clamp(18px, 3.1cqw, 38px);
  line-height: 1.55;
  letter-spacing: 0.005em;
  margin: 0;
  color: rgba(244, 241, 234, .88);
}
/* the break is authored per language, so each line is its own block */
.voucher-h span { display: block; }

/* ---------- homepage band ---------- */
.voucher-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
  background: var(--paper);
  padding: clamp(80px, 9vw, 120px) var(--pad);
}
.voucher-band-text { max-width: 520px; align-self: center; }
/* the card matches the height of the column beside it rather than
   deriving its own from the 2:1 ratio */
.voucher-band-card { display: flex; }
.voucher-band-card .voucher-card { aspect-ratio: auto; height: 100%; min-height: 320px; }
.voucher-band-text h2 { font-size: clamp(34px, 3.4vw, 52px); margin-top: 18px; }
.voucher-band-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft);
  margin: 22px 0 0;
}
.voucher-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; flex-wrap: wrap; }

/* the card as a service-page hero */
.service-hero .voucher-card { border-radius: 12px; margin: 0 auto; }

@media (max-width: 860px) {
  .voucher-band { grid-template-columns: 1fr; padding: 64px 24px; gap: 34px; }
  .voucher-band-text { max-width: none; }
  .voucher-card { max-width: none; aspect-ratio: 4 / 3; }
  .voucher-band-card .voucher-card { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
  .voucher-h { max-width: none; }
}

/* ---------- order link on each price row ---------- */
.price-order {
  display: inline-block;
  margin-top: 9px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.price-order:hover,
.price-order:focus-visible { color: var(--deeper); border-bottom-color: currentColor; }
/* the row itself hints that it is actionable */
.price-row:hover .price-order { border-bottom-color: currentColor; }
