:root {
  --bg: #f4f0ea;
  --paper: #faf7f2;
  --ink: #201d19;
  --muted: #716960;
  --line: rgba(32, 29, 25, 0.18);
  --accent: #9b6250;
  --accent-dark: #713d2e;
  --inverse: #f8f5ef;
  --footer-ink: #f8f5ef;
  --footer-ink-soft: rgba(248, 245, 239, 0.62);
  --footer-button-ink: #201d19;
  --container: min(1240px, calc(100vw - 80px));
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

html[data-theme="night"] {
  color-scheme: dark;
  --bg: #1d1a17;
  --paper: #27221e;
  --ink: #f3eee7;
  --muted: #c5bcb1;
  --line: rgba(243, 238, 231, 0.2);
  --accent: #d0a28f;
  --accent-dark: #ecc4af;
  --inverse: #1d1a17;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@keyframes home-hero-photo-fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes home-hero-photo-mobile-settle {
  0% {
    opacity: 1;
  }

  100% {
    opacity: .42;
  }
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(rgba(244, 240, 234, .82), rgba(244, 240, 234, .9)),
    url("/Vizual/pozadi.jpeg") center / cover fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
html[data-theme="night"] body {
  background:
    linear-gradient(rgba(29, 26, 23, .88), rgba(29, 26, 23, .94)),
    url("/Vizual/pozadi.jpeg") center / cover fixed;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, .button { font: inherit; }
button { color: inherit; }

.container { width: var(--container); margin-inline: auto; }
.page-shell { position: relative; overflow: clip; }
.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; }

body[data-page="home"] .page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url("/Vizual/pozadi.jpeg") center / cover fixed;
  pointer-events: none;
  animation: home-hero-photo-fade 10s cubic-bezier(.22, .61, .36, 1) .18s forwards;
}

body[data-page="home"] .page-shell > * {
  position: relative;
  z-index: 1;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(13px);
}
.site-header::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--line); opacity: .62; }
.nav-bar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: block; width: 132px; flex: 0 0 auto; }
.brand img, .footer-brand img { width: 100%; height: auto; }
html[data-theme="night"] .brand img { filter: brightness(0) invert(1); }
.nav-toggle { display: none; }
.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.nav-links > a:not(.button) {
  position: relative;
  padding: .35rem 0;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links > a:not(.button)::after, .text-link::after, .footer-links a::after, .footer-legal::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.nav-links > a:not(.button):hover, .nav-links > a:not(.button).is-active { color: var(--ink); }
.nav-links > a:not(.button):hover::after, .nav-links > a:not(.button).is-active::after, .text-link:hover::after, .footer-links a:hover::after, .footer-legal:hover::after { transform: scaleX(1); transform-origin: left; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: .7rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--inverse); }
.button-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-secondary, .button-ghost { background: transparent; color: var(--ink); }
.button-secondary:hover, .button-ghost:hover { background: var(--ink); color: var(--inverse); }
.nav-cta { min-height: 40px; padding: .58rem .9rem; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  min-height: 40px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
}
.language-switcher__language { display: inline-block; }
.language-switcher__language.is-current { color: var(--ink); }
.language-switcher__separator { color: var(--ink); font-size: 1rem; font-weight: 300; }
.language-switcher__language.is-unavailable { cursor: not-allowed; opacity: .56; }
.cta-row, .contact-actions, .footer-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.text-link { position: relative; display: inline-block; padding-bottom: .18rem; color: var(--accent-dark); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

section { padding: clamp(5.5rem, 10vw, 10rem) 0; }
.eyebrow, .section-kicker {
  display: flex; align-items: center; gap: .7rem;
  margin: 0;
  color: var(--accent-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; line-height: .99; }
.lead, .page-hero p, .intro-copy, .contact-note, .privacy-page p, .privacy-page li { color: var(--muted); }

.hero { padding: clamp(2rem, 4vw, 4.5rem) 0 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; gap: clamp(2rem, 6vw, 7rem); }
.hero-copy { position: relative; z-index: 2; display: grid; gap: clamp(3rem, 6vw, 4.75rem); }
.hero h1 { max-width: none; margin: 0; font-size: clamp(4rem, 7.25vw, 7.85rem); }
.hero-copy p { max-width: 31rem; margin: 0; font-size: 1.08rem; }
.hero-panel { position: relative; overflow: hidden; }
.hero-panel.tall { height: 100%; min-height: min(69vw, 760px); }
.hero-panel.tall::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--bg) 22%, transparent), transparent 35%), linear-gradient(0deg, rgba(244, 240, 234, .15), transparent 40%); pointer-events: none; }
.hero-panel.tall img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; opacity: .86; filter: saturate(.9) contrast(.98); }
.hero-panel.short, .media-stack { display: none; }

.section-heading { display: grid; gap: 1.1rem; max-width: 650px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.3rem); }
.section-heading p { max-width: 35rem; margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.services-card { position: relative; min-height: 270px; padding: 1.5rem clamp(1rem, 3vw, 2.5rem) 1.25rem 0; border-right: 1px solid var(--line); }
.services-card:not(:first-child) { padding-left: clamp(1rem, 3vw, 2.5rem); }
.services-card:last-child { border-right: 0; padding-right: 0; }
.services-card::before { content: "0" counter(service); counter-increment: service; display: block; margin-bottom: clamp(2.5rem, 6vw, 5rem); color: var(--accent); font-family: var(--serif); font-size: 1.3rem; }
.services-grid { counter-reset: service; }
.services-card h3 { margin: 0 0 .75rem; font-size: clamp(1.8rem, 2.4vw, 2.55rem); }
.services-card p { max-width: 18rem; margin: 0; color: var(--muted); }
.section-actions { margin-top: 2.5rem; }

.split-grid, .story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 8vw, 10rem); align-items: center; }
.story-card { max-width: 37rem; }
.story-card h2, .contact-card h2 { margin: 1rem 0 1.5rem; font-size: clamp(2.6rem, 4.3vw, 4.6rem); }
.story-card p { max-width: 34rem; color: var(--muted); }
.story-image { position: relative; min-height: 620px; overflow: hidden; }
.story-image::after, .interior-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg), transparent 40%, color-mix(in srgb, var(--bg) 58%, transparent)); opacity: .74; pointer-events: none; }
.story-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; opacity: .5; filter: saturate(.72); }

.page-hero { position: relative; padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(2rem, 4vw, 4rem); }
.page-hero .container { position: relative; z-index: 1; display: grid; gap: 1.15rem; max-width: min(1240px, calc(100vw - 80px)); }
.page-hero h1, .privacy-page h1 { max-width: 12ch; margin: 0; font-size: clamp(3.7rem, 7vw, 7rem); }
.page-hero p { max-width: 42rem; margin: 0; font-size: 1.1rem; }
body[data-page="about"] .page-hero::before, body[data-page="pricing"] .page-hero::before, body[data-page="contact"] .page-hero::before { content: ""; position: absolute; z-index: 0; inset: 0 0 auto auto; width: min(54vw, 760px); height: 100%; background: center / cover no-repeat; opacity: .19; filter: saturate(.65); mask-image: linear-gradient(90deg, transparent, #000 34%, #000); }
body[data-page="about"] .page-hero::before { background-image: none; }
body[data-page="pricing"] .page-hero::before { background-image: url("/Vizual/Salon_Zyla_5.jpg"); }
body[data-page="contact"] .page-hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(.75rem, 1.8vw, 1.5rem); }
body[data-page="contact"] .page-hero::before { background-image: none; }
body[data-page="contact"] .page-hero + section { padding-top: clamp(2rem, 4vw, 3.5rem); }
body[data-page="contact"] main > section:last-of-type { padding-bottom: clamp(2rem, 4vw, 3rem); }
body[data-page="contact"] .footer { margin-top: clamp(1rem, 2.5vw, 2rem); }
body[data-page="privacy"] .page-hero + section { padding-top: clamp(0.75rem, 1.5vw, 1.25rem); }
body[data-page="pricing"] .split-grid { grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 8rem); align-items: start; }
body[data-page="pricing"] .story-image { min-height: 34rem; }
body[data-page="pricing"] .story-image img { min-height: 34rem; }
body[data-page="pricing"] .story-card { max-width: none; }
.price-list { margin: 2.2rem 0; border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.price-service { font-family: var(--serif); font-size: clamp(1.08rem, 1.6vw, 1.55rem); line-height: 1.1; }
.price-value { color: var(--accent-dark); font-size: clamp(.98rem, 1.2vw, 1.15rem); font-weight: 700; letter-spacing: .05em; text-align: right; white-space: nowrap; }
.price-notes { display: grid; gap: .35rem; margin: -.75rem 0 2rem; }
.price-notes p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact-grid { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr); gap: clamp(3rem, 8vw, 10rem); align-items: start; }
.contact-card + .contact-card { margin-top: clamp(3.5rem, 7vw, 7rem); padding-top: clamp(2.5rem, 5vw, 5rem); border-top: 1px solid var(--line); }
.contact-card h2 { max-width: 8ch; }
.contact-list { display: grid; gap: 1.2rem; margin: 2.4rem 0; }
.contact-meta { margin: 0; }
.contact-meta strong { display: block; margin-bottom: .15rem; color: var(--muted); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-meta a { color: var(--ink); font-family: var(--serif); font-size: 1.55rem; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.map-card { display: grid; gap: 1.25rem; }
.map-shell { min-height: 570px; overflow: hidden; border: 1px solid var(--line); }
.map-frame { width: 100%; min-height: 570px; border: 0; }
.map-placeholder { position: relative; display: grid; min-height: 570px; place-items: center; overflow: hidden; background: #e8dfd4; }
.map-illustration { background: repeating-linear-gradient(0deg, transparent 0 68px, rgba(32,29,25,.07) 68px 69px), repeating-linear-gradient(90deg, transparent 0 68px, rgba(32,29,25,.07) 68px 69px), #e9e0d5; }
.map-street, .map-block, .map-route { position: absolute; }
.map-street { background: rgba(250,247,242,.92); }
.map-street-horizontal { left: 0; right: -10%; top: 45%; height: 60px; transform: rotate(-8deg); }
.map-street-vertical { top: -5%; bottom: -5%; right: 28%; width: 54px; transform: rotate(18deg); }
.map-street-diagonal { width: 80%; height: 45px; left: -18%; top: 22%; transform: rotate(34deg); }
.map-block { border: 1px solid rgba(32,29,25,.12); background: rgba(168, 147, 127, .26); }
.map-block-one { top: 15%; left: 8%; width: 29%; height: 20%; }
.map-block-two { bottom: 16%; left: 13%; width: 23%; height: 26%; }
.map-block-three { bottom: 14%; right: 9%; width: 24%; height: 20%; }
.map-route { top: 31%; left: 35%; width: 31%; height: 30%; border: 2px dashed var(--accent); border-color: var(--accent) transparent transparent; border-radius: 50%; transform: rotate(24deg); }
.map-overlay { position: absolute; z-index: 1; left: 1.4rem; bottom: 1.4rem; display: grid; gap: .25rem; padding: 1.1rem 1.2rem; background: var(--paper); border-left: 2px solid var(--accent); }
.map-overlay strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.map-overlay span:last-child { color: var(--muted); }
.map-pin { position: relative; width: 13px; height: 13px; margin-bottom: .3rem; background: var(--accent-dark); border-radius: 50%; }

.footer { margin-top: clamp(3rem, 8vw, 8rem); padding: clamp(3rem, 6vw, 6rem) 0 1.6rem; background: linear-gradient(rgba(32, 29, 25, .9), rgba(32, 29, 25, .96)), url("/Vizual/pozadi.jpeg") center / cover fixed; color: var(--footer-ink); }
.footer-card { display: grid; gap: clamp(3rem, 7vw, 7rem); }
.footer-top, .footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: start; }
.footer-base { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem 1.5rem; align-items: center; }
.footer-brand { display: block; width: 158px; filter: brightness(0) invert(1); }
.footer .button { border-color: var(--footer-ink); color: var(--footer-ink); }
.footer .button-primary { background: var(--footer-ink); color: var(--footer-button-ink); }
.footer .button-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--footer-ink); }
.footer .button-secondary:hover { background: var(--footer-ink); color: var(--footer-button-ink); }
.footer-meta { display: grid; grid-template-columns: repeat(3, minmax(9rem, 1fr)); gap: 1.5rem clamp(2rem, 6vw, 6rem); }
.footer-meta p, .footer-meta strong { margin: 0; }
.footer-meta strong, .footer-links-panel > strong { display: block; margin-bottom: .45rem; color: var(--footer-ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-meta-label, .footer-meta-value { color: inherit; text-decoration: none; }
.footer-meta-label { display: block; width: fit-content; }
.footer-meta-value { display: inline-block; width: fit-content; color: var(--footer-ink); }
.footer-meta-label:hover strong, .footer-meta-label:focus-visible strong, .footer-meta-value:hover, .footer-meta-value:focus-visible { color: #ffffff; }
.footer-links { display: grid; gap: .25rem; }
.footer-links a, .footer-legal { position: relative; width: fit-content; color: var(--footer-ink); text-decoration: none; }
.footer-base { padding-top: 1.5rem; border-top: 1px solid rgba(248,245,239,.22); color: var(--footer-ink-soft); font-size: .78rem; }
.footer-base small { font-size: inherit; }
.footer-legal { justify-self: end; }
.footer-theme-toggle-wrap { justify-self: end; }
.footer-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 42px;
  padding: .45rem 0;
  border: 0;
  background: transparent;
  color: var(--footer-ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-theme-toggle:hover,
.footer-theme-toggle:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
}
.footer-theme-toggle__indicator {
  position: relative;
  width: 38px;
  height: 20px;
  border: 1px solid currentColor;
  background: rgba(248,245,239,.12);
  flex: 0 0 auto;
}
.footer-theme-toggle__indicator::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: currentColor;
  transition: transform 180ms ease;
}
html[data-theme="night"] .footer-theme-toggle__indicator::after {
  transform: translateX(18px);
}

.cookie-banner { position: fixed; z-index: 80; left: 50%; bottom: 1rem; width: min(1120px, calc(100vw - 2rem)); display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; padding: 1rem 1.25rem; color: var(--ink); background: color-mix(in srgb, var(--paper) 96%, transparent); border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(0,0,0,.15); transform: translateX(-50%); backdrop-filter: blur(10px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__copy { display: grid; gap: .35rem; min-width: 0; flex: 1 1 auto; }
.cookie-banner strong, .cookie-banner p { margin: 0; }
.cookie-banner strong { line-height: 1.2; }
.cookie-banner p { color: var(--muted); font-size: .86rem; }
.cookie-banner .cta-row { align-items: center; justify-content: flex-end; flex: 0 0 auto; flex-wrap: nowrap; }
.cookie-banner .button { white-space: nowrap; }
.scroll-top-button { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 40; width: 42px; height: 42px; border: 1px solid var(--ink); background: var(--ink); color: var(--inverse); opacity: 0; visibility: hidden; cursor: pointer; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
.scroll-top-button.is-visible { opacity: 1; visibility: visible; }
.scroll-top-button:hover { transform: translateY(-2px); }
body.has-cookie-banner .scroll-top-button { bottom: 9rem; }

.privacy-page { max-width: 900px; }
.privacy-page h1 { margin-bottom: 2rem; }
.privacy-page h2, .privacy-page h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.03em; }
.privacy-page h2 { margin-top: 3.8rem; font-size: clamp(2rem, 3vw, 3rem); }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 3rem 0; padding: 2rem 0; border-block: 1px solid var(--line); }
.privacy-panel h3 { margin-top: 0; font-size: 1.7rem; }
.privacy-list { padding-left: 1.25rem; }

@media (min-width: 901px) {
  body[data-page="contact"] .contact-grid { align-items: stretch; }
  body[data-page="contact"] .map-card { grid-template-rows: auto 1fr; align-self: stretch; }
  body[data-page="contact"] .map-shell { height: 100%; min-height: 0; }
  body[data-page="contact"] .map-frame { height: 100%; min-height: 0; }
}

@media (max-width: 900px) {
  :root { --container: min(100vw - 40px, 1240px); }
  body[data-page="home"] .page-shell > .site-header { z-index: 31; }
  .nav-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
  .nav-toggle span[aria-hidden], .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 22px; height: 1px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
  .nav-toggle span[aria-hidden] { margin: 6px 0; }
  .site-header.is-menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  .site-header.is-menu-open .nav-toggle span[aria-hidden] { opacity: 0; }
  .site-header.is-menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: absolute; top: calc(100% - 1px); left: 0; right: 0; display: none; padding: 1.4rem var(--container); background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-header.is-menu-open .nav-links { display: grid; justify-items: start; gap: 1rem; }
  .nav-links .nav-cta { margin-top: .35rem; }
  .nav-links .language-switcher { margin-top: .1rem; }
  .hero-grid, .split-grid, .story-grid, .contact-grid, body[data-page="pricing"] .split-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .story-image, .story-image img { min-height: 480px; }
  .services-card { min-height: 220px; }
  .footer-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  :root { --container: min(100vw - 32px, 1240px); }
  body[data-page="home"] .page-shell::before {
    background-position: 52% center;
    background-attachment: scroll;
    animation: home-hero-photo-mobile-settle 10s cubic-bezier(.22, .61, .36, 1) .18s forwards;
  }
  .nav-bar { min-height: 72px; }
  .brand { width: 110px; }
  .nav-links { padding: 1.4rem 1rem; }
  section { padding: 4.5rem 0; }
  .hero { padding-top: 1rem; }
  .hero h1 { font-size: clamp(3.55rem, 16vw, 5rem); }
  .hero-copy p { color: var(--ink); font-size: 1rem; text-shadow: 0 1px 14px rgba(250, 247, 242, .78); }
  .services-grid { grid-template-columns: 1fr; }
  .services-card, .services-card:not(:first-child), .services-card:last-child { min-height: auto; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .services-card::before { margin-bottom: 1.75rem; }
  .story-image, .story-image img { min-height: 400px; }
  .page-hero h1, .privacy-page h1 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  body[data-page="about"] .page-hero::before, body[data-page="pricing"] .page-hero::before, body[data-page="contact"] .page-hero::before { width: 75vw; opacity: .13; }
  .price-row { gap: .6rem; padding: 1rem 0; }
  .price-service { font-size: 1rem; }
  .price-value { font-size: .92rem; }
  .price-notes p { font-size: .82rem; }
  .map-shell, .map-placeholder, .map-frame { min-height: 430px; }
  .footer { margin-top: 2rem; }
  .footer-top, .footer-bottom, .footer-base { grid-template-columns: 1fr; }
  .footer-actions, .footer-theme-toggle-wrap, .footer-legal { justify-self: start; }
  .footer-meta, .privacy-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; width: auto; flex-direction: column; align-items: stretch; padding: 1rem; transform: none; }
  .cookie-banner .cta-row { justify-content: stretch; }
  .cookie-banner .button { width: 100%; }
  body.has-cookie-banner .scroll-top-button { bottom: 13.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .page-shell::before { animation: none; opacity: 0; visibility: hidden; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
