/* ============ Cukiernia Online — cukiernia artystyczna, edycja premium ============ */

:root {
  --cream: #fbfeff;
  --cream-2: #eaf6fc;
  --blush: #dcf0fa;
  --blush-2: #bfe4f5;
  --gold: #7ec4e0;
  --gold-light: #b3ddef;
  --choc: #35505f;
  --choc-soft: #6e8fa3;
  --ink: #22323f;
  --white: #ffffff;
  /* "white card" surfaces — separate from --white (which stays literal white
     for text/icons drawn over photos) so cards can flip dark in dark mode. */
  --surface: var(--white);
  --choc-rgb: 53,80,95;
  --cream-rgb: 251,254,255;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-soft: cubic-bezier(.16,.84,.44,1);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; touch-action: pan-y; }

body {
  margin: 0;
  font-family: var(--font-script);
  font-size: 19px;
  line-height: 1.7;
  color: var(--choc);
  background: var(--cream);
}
body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active .btn,
body.custom-cursor-active .burger,
body.custom-cursor-active .filter-btn,
body.custom-cursor-active .lightbox-close,
body.custom-cursor-active .gallery-item {
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}

/* ============ Grain texture overlay ============ */
/* ============ Custom cursor ============ */
.cursor-bag {
  position: fixed;
  top: 0; left: 0;
  width: 38px;
  pointer-events: none;
  z-index: 9500;
  will-change: transform;
  transition: opacity .2s;
}
.cursor-bag img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(46,32,51,.35));
  transform: scale(1) rotate(0deg);
  transition: transform .3s var(--ease-soft);
}
.cursor-bag.hovering img {
  transform: scale(1.22) rotate(-6deg);
}
.cursor-bag.clicking img {
  transform: scale(.88) rotate(4deg);
}
.cursor-bag .cursor-label {
  position: absolute;
  left: 55%;
  top: 100%;
  transform: translateX(-50%) translateY(4px);
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(var(--cream-rgb),.95);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 8px 20px -6px rgba(61,47,66,.35);
  transition: opacity .22s, transform .22s;
}
.cursor-bag.hovering .cursor-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
body.cursor-hidden .cursor-bag { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-bag { display: none; }
  body { cursor: auto; }
}

/* ============ Cake reveal (scroll-driven hero opening) ============ */
/* cake-box opening is a mobile-only flourish — desktop hero has no door
   animation at all, just the plain photo */
.cake-reveal { display: none; }
@media (max-width: 760px) {
  .cake-reveal {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    perspective: 1600px;
    pointer-events: none;
  }
}
.reveal-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(140% 100% at 0% 0%, var(--blush) 0%, var(--blush-2) 55%, var(--gold-light) 100%);
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform .05s linear;
}
.reveal-panel-left { left: 0; transform-origin: left center; border-right: 2px solid rgba(46,32,51,.18); }
.reveal-panel-right { right: 0; transform-origin: right center; border-left: 2px solid rgba(46,32,51,.18); }
.reveal-crumb {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
}
.rc1 { width: 12px; height: 12px; left: 20%; top: 25%; }
.rc2 { width: 8px; height: 8px; left: 55%; top: 60%; }
.rc3 { width: 16px; height: 16px; left: 35%; top: 78%; }
.rc4 { width: 10px; height: 10px; left: 40%; top: 30%; }
.rc5 { width: 14px; height: 14px; left: 65%; top: 68%; }
.rc6 { width: 7px; height: 7px; left: 20%; top: 55%; }

.reveal-seal {
  position: absolute;
  top: 50%; left: 50%;
  width: min(18vw, 120px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 20px rgba(46,32,51,.25));
  will-change: transform, opacity;
  /* the rest of .cake-reveal is decorative (pointer-events:none) — this is
     the one interactive piece, so it opts back in and looks clickable */
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: block;
  transition: filter .25s var(--ease-soft);
}
.reveal-seal svg { width: 100%; height: 100%; display: block; }
.reveal-seal:hover, .reveal-seal:focus-visible {
  filter: drop-shadow(0 10px 26px rgba(46,32,51,.4)) brightness(1.06);
}
.reveal-hint {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .8;
  will-change: opacity;
}
@media (prefers-reduced-motion: reduce) {
  .cake-reveal { display: none; }
}

/* ============ Scroll progress ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 999;
  transition: width .1s linear;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s, background .35s;
}
.btn span, .btn svg { position: relative; z-index: 1; }
.btn span { display: inline-block; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  /* fixed dark text — the gold gradient barely shifts in dark mode, unlike
     --ink, which flips to near-white and would vanish on it */
  color: #22323f;
  box-shadow: 0 10px 24px -8px rgba(185,143,201,.55);
}
.btn-gold:hover { box-shadow: 0 16px 30px -8px rgba(185,143,201,.7); }

.btn-outline {
  background: transparent;
  border-color: rgba(var(--choc-rgb),.35);
  color: var(--choc);
}
.btn-outline:hover { border-color: var(--gold); color: var(--ink); background: rgba(185,143,201,.08); }

.btn-small { padding: 10px 22px; font-size: 11px; }
.btn-block { width: 100%; }
.magnetic { will-change: transform; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(var(--cream-rgb), .88);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px -8px rgba(61,47,66,.15);
}
.site-header.scrolled .main-nav a,
.site-header.scrolled .brand-name {
  color: var(--ink);
  text-shadow: none;
}
.site-header.scrolled .burger span {
  background: var(--ink);
  filter: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, var(--blush), var(--blush-2));
  border: 1px solid rgba(185,143,201,.5);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 78%; height: 78%;
  object-fit: contain;
}
.brand-mark-small { font-size: 12px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: color .35s, text-shadow .35s;
}
.main-nav {
  display: flex;
  gap: 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: color .3s, text-shadow .35s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--white);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
  transition: transform .3s, opacity .3s, background .35s;
}

/* ============ Hero ============ */
/* The cake-box opening animation is mobile-only — on desktop the hero is a
   plain, always-visible section (no pin, no scroll-gated reveal). */
.hero-scroll {
  position: relative;
  height: auto;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 760px) {
  /* Hero stays pinned for an extra scroll stretch so the cake box has room
     to fully open before the page moves on to the next section. */
  .hero-scroll { height: 180svh; }
  .hero { position: sticky; top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { height: auto; }
  .hero { position: relative; }
}
.hero-bg {
  position: absolute;
  inset: -30px;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46,32,51,.32) 0%, rgba(46,32,51,.28) 40%, rgba(46,32,51,.62) 100%);
}
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(255,255,255,.35);
}
.hero-swirl {
  position: absolute;
  width: 260px;
  right: 6%;
  top: 16%;
  opacity: .5;
  animation: swirlFloat 12s ease-in-out infinite;
}
@keyframes swirlFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}
.crumb {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: .55;
  filter: blur(.5px);
  animation: crumbFloat linear infinite;
}
.c1 { width: 10px; height: 10px; left: 12%; top: 30%; animation-duration: 9s; }
.c2 { width: 6px; height: 6px; left: 22%; top: 65%; animation-duration: 13s; animation-delay: -3s; }
.c3 { width: 14px; height: 14px; left: 78%; top: 70%; animation-duration: 16s; animation-delay: -6s; }
.c4 { width: 8px; height: 8px; left: 60%; top: 20%; animation-duration: 11s; animation-delay: -1s; }
.c5 { width: 5px; height: 5px; left: 40%; top: 50%; animation-duration: 14s; animation-delay: -8s; }
@keyframes crumbFloat {
  0% { transform: translateY(0) translateX(0); opacity: .2; }
  50% { transform: translateY(-40px) translateX(14px); opacity: .7; }
  100% { transform: translateY(0) translateX(0); opacity: .2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  max-width: 780px;
  will-change: opacity, transform;
}
@media (max-width: 760px) {
  /* hidden by default on mobile — JS fades it in as the cake box opens */
  .hero-content { opacity: 0; transform: translateY(30px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content { opacity: 1; transform: none; }
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  overflow: hidden;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-title {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,.45), 0 1px 4px rgba(0,0,0,.4);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(18px, 2.4vw, 22px);
  color: rgba(255,255,255,.92);
  margin-bottom: 40px;
  overflow: hidden;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  padding-bottom: 10px;
}
.hero-cta.center { margin-top: 36px; }
.hero .btn-outline {
  border-color: rgba(255,255,255,.75);
  color: var(--white);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.hero .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.2);
}

/* Hero text is now revealed as a whole by the scroll-driven cake animation
   (see .hero-content above + renderCakeReveal in main.js), so the individual
   words/lines just sit in their resting position instead of animating in on load. */
.split-in { display: inline-block; }
/* ============ Marquee ============ */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #22323f; /* fixed — see .btn-gold */
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 10px 30px -10px rgba(61,47,66,.3);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  animation: marquee 32s linear infinite;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee-track .dot { opacity: .6; font-size: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section { padding: 130px 0; position: relative; }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.section-title {
  font-size: clamp(32px, 4.4vw, 48px);
  margin-bottom: 20px;
}
.section-sub {
  color: var(--choc-soft);
  font-size: 20px;
  max-width: 560px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* clip-path image reveal */
.clip-reveal {
  overflow: hidden;
  width: 100%; height: 100%;
  clip-path: inset(0 0 0 0);
}
.clip-reveal img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.25);
  transition: transform 1.1s var(--ease-soft);
}
.clip-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: 2;
}
[data-reveal] .clip-reveal { position: relative; }
[data-reveal].in-view .clip-reveal img { transform: scale(1); }
[data-reveal] .clip-reveal img { transform: scale(1.3); }

/* ============ About ============ */
.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-media {
  position: sticky;
  top: 120px;
}
.about-photo-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(61,47,66,.35);
  position: relative;
}
.about-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 10px solid rgba(255,255,255,.6);
  border-radius: 18px;
  pointer-events: none;
  z-index: 3;
}
.about-media:hover .clip-reveal img { transform: scale(1.06) !important; }

.about-badge {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -12px rgba(61,47,66,.28);
  z-index: 4;
}
.about-badge img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.about-badge div { display: flex; flex-direction: column; font-family: var(--font-sans); }
.about-badge strong { font-size: 13px; color: var(--ink); }
.about-badge span { font-size: 12px; color: var(--choc-soft); }

.about-stamp {
  position: absolute;
  top: -30px; left: -30px;
  width: 100px; height: 100px;
  color: var(--gold);
  opacity: .8;
  animation: stampSpin 22s linear infinite;
  z-index: 4;
}
@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-text p { color: var(--choc-soft); font-size: 20px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(var(--choc-rgb),.12);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  display: inline-block;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--choc-soft);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============ Gallery ============ */
.gallery-section { background: var(--cream-2); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 46px 0 10px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(var(--choc-rgb),.25);
  color: var(--choc-soft);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all .35s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #22323f; /* fixed — see .btn-gold */
  border-color: transparent;
}

.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 14px 30px -14px rgba(61,47,66,.25);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery-item.filtered-out {
  opacity: 0;
  transform: scale(.85);
  position: absolute;
  pointer-events: none;
  width: 0; height: 0;
  overflow: hidden;
  margin: 0;
}
.gallery-item.capped { display: none; }
.gallery-item.tall { aspect-ratio: 1/1.35; grid-row: span 1; }
.gallery-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(46,32,51,.85) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 1;
}
.gallery-item figcaption {
  position: absolute;
  left: 18px; bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .clip-reveal img { transform: scale(1.12) !important; }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-more {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
@media (max-width: 480px) {
  .gallery-more { flex-direction: column; align-items: stretch; }
}

/* ============ Order steps ============ */
.order-section { background: var(--surface); }
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.steps-line {
  position: absolute;
  top: -32px;
  left: 0; right: 0;
  width: 100%;
  height: 10px;
  display: none;
}
.steps-line-fill {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset .1s linear;
}
.step {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 40px -18px rgba(61,47,66,.28);
}
.step-num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--blush-2);
  margin-bottom: 18px;
  -webkit-text-stroke: 1.5px var(--gold);
  -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 21px; margin-bottom: 12px; }
.step p { color: var(--choc-soft); font-size: 17px; margin: 0; }

.order-note {
  text-align: center;
  max-width: 640px;
  margin: 56px auto 0;
  font-style: italic;
  color: var(--choc-soft);
  font-size: 19px;
}

/* ============ Care instructions ============ */
.care-section { background: var(--cream-2); }
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 50px auto 0;
}
.care-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 40px -28px rgba(61,47,66,.25);
}
.care-icon { font-size: 34px; display: block; margin-bottom: 14px; }
.care-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--ink);
}
.care-card p { color: var(--choc-soft); font-size: 15px; line-height: 1.5; margin: 0; }

.care-cut {
  max-width: 900px;
  margin: 64px auto 0;
  text-align: center;
}
.care-cut-label {
  font-style: italic;
  color: var(--choc-soft);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 24px;
}
.care-cut-img {
  max-width: 100%;
  width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 45px -22px rgba(61,47,66,.3);
}

.care-thanks {
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
  font-family: var(--font-script);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
}
@media (max-width: 780px) {
  .care-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .care-grid { grid-template-columns: 1fr; }
}

/* ============ Opinions ============ */
.opinions-section { background: var(--cream-2); }
.opinions-carousel { display: flex; align-items: center; gap: 14px; margin-top: 50px; }
.opinions-viewport { flex: 1; min-width: 0; }
.opinions-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.opinions-track::-webkit-scrollbar { display: none; }
.opinion-card {
  scroll-snap-align: start;
  flex: 0 0 calc(100% - 8px);
}
@media (min-width: 640px) {
  .opinion-card { flex: 0 0 calc(50% - 15px); }
}
@media (min-width: 1000px) {
  .opinion-card { flex: 0 0 calc(25% - 18px); }
}
.carousel-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(var(--choc-rgb),.18);
  background: var(--surface);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, color .25s, transform .25s;
}
.carousel-arrow:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }
.carousel-arrow:active:not(:disabled) { transform: scale(.94); }
.carousel-arrow:disabled { opacity: .3; cursor: default; }
.opinion-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 40px 34px 34px;
  text-align: center;
  box-shadow: 0 24px 50px -20px rgba(61,47,66,.22);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .5s var(--ease);
}
.opinion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -20px rgba(61,47,66,.3);
}
.opinion-avatar {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, var(--blush), var(--blush-2));
  border: 1px solid rgba(185,143,201,.5);
  color: var(--gold);
}
.opinion-avatar-pair { width: auto; padding: 0 8px; gap: -6px; background: none; border: none; }
.opinion-avatar-pair svg { margin: 0 -4px; background: radial-gradient(circle at 30% 30%, var(--blush), var(--blush-2)); border: 1px solid rgba(185,143,201,.5); border-radius: 50%; padding: 4px; box-sizing: content-box; }
.quote-mark { width: 32px; color: var(--gold-light); margin: 0 auto 18px; }
.opinion-card p { font-size: 16px; color: var(--choc-soft); margin: 0 0 20px; line-height: 1.6; }
.opinion-author { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.opinion-cta-card {
  background: linear-gradient(155deg, var(--blush), var(--cream-2));
  border-radius: 22px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.opinion-cta-card h3 { font-size: 19px; }

/* ============ Announcements / aktualności ============ */
.announcements-section { background: var(--cream-2); }
.announcements-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.announcement-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 20px 40px -28px rgba(61,47,66,.25);
  position: relative;
}
.announcement-card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px;
  width: 40px; height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.announcement-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink);
}
.announcement-card p { color: var(--choc-soft); font-size: 16px; line-height: 1.55; margin: 0; }

/* ============ FAQ ============ */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(61,47,66,.25);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--gold);
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer p { margin: 0; padding: 0 26px 24px; color: var(--choc-soft); font-size: 16px; line-height: 1.65; }
.faq-empty { text-align: center; color: var(--choc-soft); margin-top: 50px; }

/* ============ Contact ============ */
.contact-section { background: var(--surface); overflow: hidden; }
.contact-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 22vw, 340px);
  color: var(--cream-2);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-info p { color: var(--choc-soft); font-size: 20px; max-width: 460px; }
.contact-list { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li a, .contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-list li a { transition: transform .3s var(--ease); }
.contact-list li a:hover { transform: translateX(6px); color: var(--gold); }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.contact-list li a:hover .contact-icon { background: var(--blush); }
.contact-list strong { display: block; font-family: var(--font-sans); font-size: 14px; color: var(--ink); }
.contact-list span { font-family: var(--font-script); font-size: 17px; color: var(--choc-soft); }

.map-card {
  margin-top: 34px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(61,47,66,.3);
  border: 6px solid var(--surface);
  aspect-ratio: 16/11;
}
.map-card iframe, .map-card #serviceMap { width: 100%; height: 100%; border: 0; display: block; background: var(--cream-2); }
.map-card .leaflet-popup-content-wrapper, .map-card .leaflet-popup-tip { background: var(--cream); color: var(--ink); }
.map-card .leaflet-popup-content { font-family: var(--font-sans); font-size: 13px; margin: 10px 14px; }
.map-caption {
  margin-top: 12px;
  font-style: italic;
  color: var(--choc-soft);
  text-align: center;
}

.contact-cta-card {
  background: linear-gradient(155deg, var(--blush), var(--cream-2));
  border-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(185,143,201,.35), transparent 70%);
  top: -60px; right: -60px;
  border-radius: 50%;
  animation: blobMove 9s ease-in-out infinite;
}
@keyframes blobMove {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.15); }
}
.contact-cta-card h3 { font-size: 26px; margin-bottom: 14px; }
.contact-cta-card p { color: var(--choc-soft); font-size: 18px; margin-bottom: 30px; position: relative; }

/* ============ Footer ============ */
/* Deliberately a fixed dark band regardless of site theme (like the photo
   hero) — --ink itself flips to near-white in dark mode for text-on-surface
   contrast, which would make a var(--ink) background go white-on-white here. */
.site-footer {
  background: #22323f;
  color: rgba(255,255,255,.75);
  padding: 60px 0 34px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo-card {
  /* fixed light card against the always-dark footer band, see .site-footer */
  background: #fbfeff;
  border-radius: 20px;
  padding: 16px 30px;
  display: inline-flex;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.35);
}
.footer-logo-card img { width: 170px; height: auto; }
.footer-social { display: flex; gap: 26px; margin-top: 6px; font-family: var(--font-sans); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; margin: -10px 0; transition: color .3s; }
.footer-social a:hover { color: var(--gold-light); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; }
.footer-copy a { color: rgba(255,255,255,.55); text-decoration: underline; transition: color .2s; }
.footer-copy a:hover { color: var(--gold-light); }
.icon-social { flex-shrink: 0; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,18,29,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(900px, 90vw);
  max-height: 86vh;
  border-radius: 12px;
  transform: scale(.92);
  transition: transform .4s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  opacity: .8;
  transition: opacity .3s, transform .3s;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============ Responsive ============ */
@media (min-width: 981px) {
  .steps-line { display: block; }
}

@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { max-width: 420px; margin: 0 auto; position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .section { padding: 90px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item.tall { aspect-ratio: 1/1; }
  .steps { grid-template-columns: 1fr; }
  .opinion-card { padding: 32px 24px; }
  .opinions-carousel { gap: 0; }
  .carousel-arrow { display: none; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 20px; }
  .contact-cta-card { padding: 40px 26px; }
  .about-badge { position: relative; margin-top: -40px; margin-left: 20px; width: fit-content; }
  .about-stamp { display: none; }
  .marquee-track { font-size: 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: stretch; }
}

/* Mobile nav drawer */
.main-nav.open {
  display: flex;
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 80vw);
  background: var(--cream);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  font-size: 18px;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
  z-index: 300;
  animation: drawerIn .4s var(--ease) forwards;
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.nav-close {
  display: none;
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border: none;
  background: none;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.main-nav.open a { color: var(--ink); text-shadow: none; }
.main-nav.open .nav-close { display: block; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .split-in { transform: none !important; opacity: 1 !important; }
}

/* ============ Non-hero interior pages (e.g. order form) ============ */
/* header text defaults to white for the photo hero on the homepage — pages
   without a hero need it dark from the first frame, before any scroll */
.page-order .site-header:not(.scrolled) .brand-name,
.page-order .site-header:not(.scrolled) .main-nav a {
  color: var(--ink);
  text-shadow: none;
}
.order-page-section { padding-top: 170px; }
.order-page-container { max-width: 760px; }

/* ============ Order form ============ */
.order-form { margin-top: 50px; display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--choc);
}
.form-group label .hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--choc-soft);
}
.order-form input[type=text],
.order-form input[type=tel],
.order-form input[type=email],
.order-form input[type=date],
.order-form select,
.order-form textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(var(--choc-rgb),.18);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.order-form textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,143,201,.2);
}
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--choc-rgb),.18);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--choc);
  transition: border-color .25s, background .25s;
}
.radio-option input { accent-color: var(--gold); }
.radio-option:has(input:checked) { border-color: var(--gold); background: rgba(185,143,201,.1); }
.checkbox-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(var(--choc-rgb),.18);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--choc);
  transition: border-color .25s, background .25s;
}
.checkbox-option input { accent-color: var(--gold); }
.checkbox-option:has(input:checked) { border-color: var(--gold); background: rgba(185,143,201,.1); }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--choc);
}
.consent-row input { accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; }
.consent-row a { color: var(--gold); text-decoration: underline; }
.form-msg { text-align: center; font-family: var(--font-sans); font-size: 14px; min-height: 20px; margin: 4px 0 0; }
.form-note {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--choc-soft);
  margin: 10px 0 0;
  line-height: 1.5;
}
.form-note-strong {
  font-style: normal;
  text-align: center;
  background: rgba(185,143,201,.08);
  border: 1px solid rgba(185,143,201,.25);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 8px;
}
.form-note-warn { color: #b5432f; font-style: normal; font-weight: 600; }
.form-msg.ok { color: #4a7c4e; }
.form-msg.err { color: #b5432f; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .order-page-section { padding-top: 140px; }
}
