
:root{
  --bg:#f6f2ea;
  --card:#ffffff;
  --card2:#fbf8f2;
  --text:#1b1b1b;
  --muted:#5e5a52;
  --line:rgba(20,20,20,.10);
  --accent:#731672;
  --accent-strong:#731672;
  --accent-soft:rgba(222,0,167,.22);
  --accent-mid:rgba(115,22,114,.51);
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:12px;
  --max:1100px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 18px 70px;
}

/* =========================
   FULLBLEED (pełna szerokość)
========================= */
.fullbleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* =========================
   HERO
========================= */
.hero{
  margin-top:16px;
  position:relative;
  overflow:hidden;
  min-height:420px;

  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--shadow);

  background-size:cover;
  background-position:center 60%;
  background-repeat:no-repeat;
}

/* gradient na zdjęciu */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 100%);
  pointer-events:none;
}

/* HERO na samej górze (bez “karty”) */
.hero-top{
  margin-top:0;                 /* kluczowe: zdjęcie od samej góry */
  border-radius:0;
  border-left:0;
  border-right:0;
  box-shadow:none;
  min-height:520px;             /* możesz zmienić np. 480/600 */
}

/* Na mobile trochę niższe */
@media (max-width: 900px){
  .hero-top{ min-height:360px; }
}

/* =========================
   HEADERBAR (menu pod hero)
========================= */
.headerbar{
  background:rgba(246,242,234,.92);
  border-bottom:1px solid var(--line);
}

/* Wewnątrz headerbar trzymamy zawartość w max szerokości */
.headerbar .topbar{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 18px 12px;   /* kontroluje wysokość paska menu */
  border-bottom:0;          /* ważne: usuwa podwójną linię */
}

/* =========================
   TOPBAR (to co w header.html)
========================= */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 0 18px;
  border-bottom:1px solid var(--line);
}

.brand{display:flex; flex-direction:column; gap:4px;}
.brand strong{font-size:14px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted)}
.brand span{font-size:13px; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
}

.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
}

.nav a:hover{background:rgba(255,255,255,.6); color:var(--text)}

.nav .cta{
  background:var(--accent);
  color:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.nav .cta:hover{opacity:.92}

.nav a.active{
  background:rgba(255,255,255,.65);
  color:var(--text);
  border:1px solid var(--line);
}

    .site-header {
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav-container {
  width:min(100%, 1240px);
  margin:auto;
  padding:8px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo a {
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img {
  display:block;
  width:132px;
  height:auto;
  aspect-ratio:1176 / 846;
  max-height:none;
  object-fit:contain;
}

.logo a {
  font-weight:600;
  text-decoration:none;
  color:#222;
}

.nav a {
  margin-left:22px;
  text-decoration:none;
  color:#333;
}

.burger {
  display:none;
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
}

.burger span {
  width:26px;
  height:3px;
  background:#333;
}

/* MOBILE */

@media(max-width:800px){

.nav-container {
  padding:8px 20px;
}

.nav {
  position:absolute;
  top:65px;
  left:0;
  right:0;
  background:white;
  display:none;
  flex-direction:column;
  text-align:center;
  padding:25px 0;
}

.nav a {
  margin:12px 0;
}

.nav.active {
  display:flex;
}

.burger {
  display:flex;
}

}
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
}
/* MOBILE MENU FIX */
@media(max-width:800px){

  .burger{
    display:flex !important;
    z-index:9999;
  }

  .site-header .nav{
    display:none !important;
  }

  .site-header .burger[aria-expanded="true"] + .nav,
  .site-header .nav.active{
    display:flex !important;
  }

}
/* =========================
   FLOWERS OVERLAY
========================= */
.flower-wrap{
  position: relative;
  overflow: hidden; /* żeby kwiatki nie wyjeżdżały poza kartę/sekcję */
}

.flowers{
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: .35;          /* premium subtil */
  width: 420px;          /* możesz zmienić */
  height: auto;
  z-index: 0;
  filter: saturate(1.02);
}

.flowers-bl{ left: -60px; bottom: -70px; }  /* bottom-left */
.flowers-tr{ right: -60px; top: -70px; transform: scaleX(-1); } /* top-right (lustrzane) */

/* Treść sekcji ma być nad kwiatkami */
.flower-wrap > *:not(.flowers){
  position: relative;
  z-index: 1;
}

/* mobile – mniejsze i jeszcze delikatniejsze */
@media (max-width: 800px){
  .flowers{ width: 280px; opacity: .26; }
  .flowers-bl{ left: -80px; bottom: -90px; }
  .flowers-tr{ right: -80px; top: -90px; }
}
/* ===== KWIATKI NA SAMYM DOLE STRONY ===== */

body{
  position:relative;
}

body::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:420px; /* wysokość kwiatków */
  background:url("flowers.png") center bottom / contain no-repeat;
  filter:opacity(40%);
  pointer-events:none;
  opacity:0.9;
}
.flowers{
  opacity:0.4;
  pointer-events:none;
}
.hero-bg {
  animation: slowFloat 25s ease-in-out infinite;
}

@keyframes slowFloat {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
  100% { transform: scale(1) translateY(0); }
}
/* === HERO: subtle floating image (all pages) === */

.hero{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* delikatny ruch */
  animation: slowFloat 40s ease-in-out infinite;
  will-change: transform;
}

/* jeśli chcesz mniej ruchu: zwiększ 40s na 55s */
@keyframes slowFloat{
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.05) translateY(-10px); }
  100% { transform: scale(1) translateY(0); }
}

/* Szacunek dla osób z "reduce motion" */
@media (prefers-reduced-motion: reduce){
  .hero{ animation: none; }
}
/* HERO: tylko górny pasek, nie tło całej strony */
.hero-top{
  height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

/* delikatne przyciemnienie, żeby wyglądało premium */
.hero-top::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15));
}

/* treść ma zawsze własne tło i jest NAD hero */
.wrap{
  position: relative;
  z-index: 2;
  background: var(--bg);
}
/* --- Subtle hero motion (Ken Burns) for .hero-top --- */
.hero-top{
  position: relative;
  overflow: hidden;
  background: none !important; /* tło przejmie pseudo-element */
}

/* obrazek w pseudo-element, żeby dało się go animować */
.hero-top::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  will-change: transform, background-position;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

/* delikatny film/grain/kontrast – opcjonalnie, wygląda premium */
.hero-top::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.05) 35%,
    rgba(0,0,0,.12) 100%
  );
  pointer-events:none;
}

/* animacja: minimalny zoom + minimalny pan */
@keyframes heroKenBurns{
  0%{
    transform: scale(1.02);
    background-position: 50% 45%;
  }
  100%{
    transform: scale(1.07);
    background-position: 52% 55%;
  }
}

/* szanujemy osoby, które nie chcą animacji */
@media (prefers-reduced-motion: reduce){
  .hero-top::before{
    animation: none !important;
    transform: scale(1.03);
    background-position: center;
  }
}
/* Auf einen Blick – opis pod boldem */
.list li span{
  display:block;
  margin-top:4px;
  opacity:.75;
}
/* ====== ANNA REIKI – VOGUE / PREMIUM / SQUARE ====== */
:root{
  --bg: #fbfaf8;
  --paper: #ffffff;
  --rose: #efe2e4;           /* brudny róż */
  --rose2:#ead7da;           /* odcień jaśniejszy */
  --ink: #1b1b1b;
  --muted:#5f5a56;
  --line: rgba(0,0,0,.10);
  --shadow: 0 16px 44px rgba(0,0,0,.10);
  --shadow2: 0 10px 26px rgba(0,0,0,.08);
}

body{
  background: var(--bg);
}

.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.space-xl{ padding: clamp(26px, 5vw, 70px) 0; }

.muted{ color: var(--muted); }

.section-head h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: .01em;
  margin: 0 0 10px;
}
.section-head p{ margin: 0; }

/* SIGNATURE STRIP */
.sig-strip{
  background: var(--rose);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 5vw, 60px) 0;
}

.sig-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(16px, 4vw, 44px);
  align-items: center;
}

.sig-sign{
  width: min(420px, 90%);
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.sig-sub{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.sig-cta{ display:flex; gap:12px; flex-wrap: wrap; }

.sig-photo{
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  overflow: hidden; /* ostre rogi */
}

.sig-photo img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* BUTTONS (square, Vogue) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border: 1px solid rgba(0,0,0,.22);
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.btn-primary{
  border-color: rgba(185,122,136,.75);
  background: rgba(255,255,255,.35);
}
.btn-primary:hover{
  background: rgba(185,122,136,.20);
}
.btn-ghost{
  background: transparent;
}

/* SPLIT BLOCKS (Twoje: raz lewo/prawo, mniejsze ~30%) */
.split{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(14px, 3.6vw, 32px);
  align-items: center;

  /* “oddech” + elegancki pas jak na screenie */
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  padding: clamp(16px, 3.4vw, 30px);
  box-shadow: var(--shadow2);
  margin: 0 0 clamp(18px, 3.8vw, 34px);
}
.split-reverse{ grid-template-columns: 1.08fr .92fr; }
.split-reverse .media{ order: 2; }
.split-reverse .card{ order: 1; }

.media{
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  overflow: hidden;
}
.media img{
  width: 100%;
  height: 100%;
  display:block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card{
  background: var(--rose);
  border: 1px solid var(--line);
  padding: clamp(16px, 3vw, 26px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.eyebrow{
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.card h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.15;
}
.card p{
  margin: 0 0 16px;
  color: #3b3430;
  line-height: 1.7;
  max-width: 60ch;
}

/* TILES */
.tiles{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 22px);
  margin-top: clamp(16px, 3vw, 22px);
}

.tile{
  display:block;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.tile-media{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.tile-media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.tile-body{
  padding: 16px 18px 18px;
  background: var(--rose2);
}
.tile-title{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 6px;
}
.tile-text{
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* SEO */
.seo{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  padding: clamp(16px, 3.4vw, 28px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.seo h2{
  margin-top: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
}
.seo-links a{ color: var(--ink); }

/* REVEAL ANIMATIONS (subtelnie, premium) */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px){
  .sig-grid{ grid-template-columns: 1fr; }
  .tiles{ grid-template-columns: 1fr; }
  .split, .split-reverse{ grid-template-columns: 1fr; }
  .split-reverse .media, .split-reverse .card{ order: initial; }
}
/* =========================
   ANNA REIKI – PREMIUM UI
   ========================= */

:root{
  --anna-bg: #fbfaf8;         /* jasne tło */
  --anna-rose: #efe2e4;       /* brudny róż (karty/pas) */
  --anna-rose-2: #e7d4d8;     /* trochę głębszy */
  --anna-text: #221f1d;
  --anna-muted: rgba(34,31,29,.72);
  --anna-line: rgba(34,31,29,.16);
  --anna-shadow: 0 18px 45px rgba(0,0,0,.10);
  --anna-shadow-soft: 0 12px 30px rgba(0,0,0,.08);
}

/* „reveal” – powolne pojawianie */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero-anna{
  background: var(--anna-rose);
  padding: clamp(50px, 6vw, 90px) 0;
  border-top: 1px solid rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hero-anna__inner{
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

.hero-anna__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
}

.hero-anna__sig{
  height: clamp(44px, 5vw, 72px);
  width: auto;
  display:block;
  filter: contrast(1.05);
  opacity:.92;
}

.hero-anna__profile{
  width: clamp(72px, 7vw, 110px);
  height: clamp(72px, 7vw, 110px);
  border: 1px solid var(--anna-line);
  background: rgba(255,255,255,.65);
  box-shadow: var(--anna-shadow-soft);
  overflow:hidden; /* kwadrat */
}
.hero-anna__profile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-anna__text{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--anna-shadow);
  padding: clamp(20px, 3vw, 34px);
}

.hero-anna__eyebrow{
  margin:0 0 10px 0;
  letter-spacing:.28em;
  font-size: 11px;
  color: var(--anna-muted);
  text-transform: uppercase;
}

.hero-anna__title{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  color: var(--anna-text);
}

.hero-anna__lead{
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--anna-muted);
  max-width: 70ch;
}

.hero-anna__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Buttons: kwadrat, Vogue border, soft hover */
.btn-anna{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border: 1px solid rgba(34,31,29,.35);
  color: var(--anna-text);
  background: transparent;
  text-decoration:none;
  font-weight: 600;
  letter-spacing:.02em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
}
.btn-anna:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.55);
}
.btn-anna--ghost{
  border-color: rgba(34,31,29,.22);
  box-shadow: none;
}

/* TILES */
.tiles-anna{
  background: var(--anna-bg);
  padding: clamp(36px, 5vw, 70px) 0;
}
.tiles-anna__inner{
  width: min(1120px, 92vw);
  margin: 0 auto;
  display:grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.tile-anna{
  display:block;
  text-decoration:none;
  color: var(--anna-text);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--anna-shadow-soft);
  background: #fff;
  overflow:hidden; /* kwadrat */
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile-anna:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

.tile-anna__media{
  aspect-ratio: 4 / 3;
  background: var(--anna-rose);
}
.tile-anna__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.02);
}

.tile-anna__body{
  padding: 14px 14px 16px;
  background: rgba(239,226,228,.65);
  border-top: 1px solid rgba(0,0,0,.06);
}

.tile-anna__kicker{
  letter-spacing:.26em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--anna-muted);
  margin-bottom: 8px;
}

.tile-anna__title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.tile-anna__hint{
  font-size: 13px;
  color: rgba(34,31,29,.78);
  display:inline-block;
  border-bottom: 1px solid rgba(34,31,29,.22);
  padding-bottom: 2px;
}

/* Responsive */
@media (max-width: 980px){
  .tiles-anna__inner{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .hero-anna__top{ align-items:flex-start; }
  .tiles-anna__inner{ grid-template-columns: 1fr; }
  .hero-anna__text{ background: rgba(255,255,255,.62); }
}
.site-header-overlay{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}
.page-home main{
  padding-top: 64px;
}
/* === cleanup hero: remove mini label + tiny preview === */

/* mini podpis */
.hero-anna__eyebrow {
  display: none !important;
}

/* mała miniaturka zdjęcia */
.hero-anna__profile {
  display: none !important;
}
/* remove signature image in hero */
.hero-anna__sig {
  display: none !important;
}
/* tighten space between top hero and next section */
.sig-strip {
  padding-bottom: 40px !important;
}

.hero-anna {
  margin-top: 0 !important;
}
/* zmniejszamy odstęp między górnym podpisem a hero */

.sig-strip {
  padding-bottom: 40px !important;
}

.hero-anna {
  margin-top: 0 !important;
  padding-top: 40px !important;
}
/* PRO shadow pod zdjęciami w kafelkach */

.split .media img,
.sig-photo img {
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
  border-radius: 6px;
}
.split {
  max-width: 900px;
  margin: 0 auto 90px;
}
section.container.space-xl {
  padding-top: 60px;
  padding-bottom: 60px;
}
.card,
.split,
.media img {
  border-radius: 0 !important;
}
.split {
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  background: #f3e7e7;
}
.media img {
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
/* TEST-ANNA-20260206 */
.split {
  background: #f3e6e6;
  box-shadow: 0 25px 60px rgba(0,0,0,.07);
}

.space-xl {
  padding-top: 90px;
}


/* FULL WIDTH PINK BAND */

.fullbleed.pink-band{
  padding:55px 0 !important;  /* było 80px */
  margin:0;
}

/* container inside pink band */
.fullbleed.pink-band .container{
  max-width:1100px;
  margin:0 auto;
}

/* fix top gap from previous section */
section + .fullbleed.pink-band{
  margin-top:40px;
}
/* card only inside pink band (Über mich) */
.fullbleed.pink-band .card{
  border:1px solid #fff;
  background:rgba(255,255,255,0.55);
}
.fullbleed.pink-band .media img{
  border:2px solid #fff !important;
  background:#fff;
}
/* ===== ÜBER MICH – FIX: różowy pasek full width + biały frame zdjęcia + bezpieczny odstęp ===== */

body[data-page="ueber-mich"] section.fullbleed.pink-band{
  background:#f3e6e6 !important;   /* różowy pasek przez całą szerokość */
  padding:90px 0 !important;
  margin:0 !important;
}

body[data-page="ueber-mich"] .space-xl{
 body[data-page="ueeber-mich"] .space-xl{
  padding-top: 78px !important;
  padding-bottom: 45px !important;
}

}

/* ZABIJAMY różowe tło na kafelku, bo pasek ma być różowy, a kafelek czysty */
body[data-page="ueber-mich"] .fullbleed.pink-band .split{
  background:transparent !important;
  box-shadow:none !important;
}

/* BIAŁA RAMKA / KADR dla zdjęcia */
body[data-page="ueber-mich"] .fullbleed.pink-band .media{
  background:#fff !important;
  padding:14px !important;
  border-radius:22px !important;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

body[data-page="ueber-mich"] .fullbleed.pink-band .media img{
  display:block;
  width:100%;
  height:auto;
  border:0 !important;             /* żadnej różowej ramki na img */
  border-radius:18px !important;
}

/* Kafelek z tekstem – jasny, elegancki, bez różowych obwódek */
body[data-page="ueber-mich"] .fullbleed.pink-band .card{
  border:1px solid #fff !important;
  background:rgba(255,255,255,.82) !important;
}
body.page-about main{
  padding-top: 90px;
}
/* mobile spacing between buttons */
@media (max-width: 768px){
  .sig-cta a,
  .hero-anna__cta a{
    margin-bottom:12px;
  }
}
/* Über mich – odstęp między przyciskami na mobile */
@media (max-width: 768px){
  .ctaRow{
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
  }
  .ctaRow .btn{
    width:100%;
    text-align:center;
  }
}
@media (max-width:768px){
  .ctaRow{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
}
body.page-worum main{
  padding-top: 120px; /* regulujesz tu wysokość */
}

/* ===== FULLBLEED PINK BAND (ONE SOURCE OF TRUTH) ===== */
.fullbleed-pink-band{
  width:100%;
  background:#f3e6e8;
  margin:0;
  padding:160px 0;
  margin-top:-300px;
}


/* żeby container nie robił dodatkowej „grubości” */
.fullbleed-pink-band .container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.section-head {
  margin-bottom: clamp(24px, 6vw, 48px);
}
/* === FORCE FIX: Titel nie chowa się pod headerem === */
body.page-angebot main {
  padding-top: 120px !important;
}

/* === FORCE FIX: różowy pas widoczny i z oddechem === */
body.page-angebot .pink-band {
  background: #f3e3e6 !important;
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  margin-top: 40px !important;
}
/* === Angebot: H1 nie może wchodzić pod header === */
body[data-page="angebot"] main{
  padding-top: 140px !important;
}

/* === Angebot: różowy pas MUSI być widoczny === */
body[data-page="angebot"] .pink-band,
body[data-page="angebot"] .fullbleed-pink-band{
  background:#f3e6e8 !important;
  padding: 80px 0 !important;
  margin-top: 40px !important;
}
/* === Angebot: pink band o kontrolowanej grubości === */
body[data-page="angebot"] .pink-band {
  position: relative;
  background: transparent !important;
}

/* wizualny pas */
body[data-page="angebot"] .pink-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(220px, 32vw, 360px); /* TU kontrolujesz grubość */
  background: #f3e3e6;
  z-index: 0;
}

/* content ma być nad pasem */
body[data-page="angebot"] .pink-band > * {
  position: relative;
  z-index: 1;
}
body[data-page="angebot"] .pink-band { position:relative; background:transparent !important; }
body[data-page="angebot"] .pink-band::before { content:""; position:absolute; top:0; left:0; width:100%; height:clamp(220px,32vw,360px); background:#f3e3e6; z-index:0; }
body[data-page="angebot"] .pink-band > * { position:relative; z-index:1; }
/* Angebot – podciągamy treść bliżej nagłówka */
body[data-page="angebot"] .pink-band .container{
  padding-top: 18px !important;
}

/* jeśli nadal jest za nisko – dodatkowo */
body[data-page="angebot"] .pink-band{
  margin-top: -40px;
}
/* === ANGEBOT: tylko kosmetyka odstępów (bez ruszania HTML) === */

/* 1) Zmniejsz gigantyczną pustą przestrzeń nad różową sekcją */
main {
  padding-top: 0 !important;
}

/* 2) Jeśli nagłówek "Angebot" siedzi w jakimś hero – zbij marginesy h1/p */
h1 { margin-bottom: 14px !important; }
h1 + p { margin-top: 0 !important; }

/* 3) Różowa sekcja: mniej powietrza u góry (żeby karta była wyżej) */
section[style*="#f6e2ea"],
section[style*="#f6e4e8"] {
  padding-top: 70px !important;
}

/* 4) Karta: żeby nie miała dodatkowego odsunięcia od góry */
section[style*="#f6e2ea"] > *:first-child,
section[style*="#f6e4e8"] > *:first-child {
  margin-top: 0 !important;
}
/* === GLOBAL: spójny fullbleed/hero (bez ryzyka) === */
.fullbleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.hero{
  background-size:cover;
  background-position:center 35%;
  background-repeat:no-repeat;
}
/* =========================================================
   FIX: H1 on "Über mich" + "Worum" hidden under sticky header
   (page-specific, zero global hammers)
========================================================= */

/* 1) Anchor safety (jeśli kiedyś linkujesz do #sekcji) */
body.page-about h1,
body.page-about h2,
body.page-worum h1,
body.page-worum h2{
  scroll-margin-top: 120px;
}

/* 2) Add top offset ONLY on these pages */
body.page-about main,
body.page-worum main{
  padding-top: 120px;
}

/* 3) If the title still sits too high, give the first page header a bit of air */
body.page-about main > *:first-child,
body.page-worum main > *:first-child{
  margin-top: 10px;
}
/* =========================================================
   FIX: titles hidden under sticky header
   Reliable: based on data-page (works even if class differs)
========================================================= */

/* Über mich */
body[data-page="ueber-mich"] main{
  padding-top: 180px !important;
}
body[data-page="ueber-mich"] h1{
  margin-top: 24px !important;
}
body[data-page="ueber-mich"] h1,
body[data-page="ueber-mich"] h2{
  scroll-margin-top: 180px;
}


body[data-page="worum"] h1,
body[data-page="worum"] h2{
  scroll-margin-top: 180px;
}
/* =========================================================
   REAL FIX: page title hidden under sticky header
   Targets the actual title block, not main
========================================================= */

/* Worum – spokojny oddech u góry (jak Angebot) */
body[data-page="worum"] main{
  padding-top: 140px !important;
}

/* Kontakt – ten sam oddech */
body[data-page="kontakt"] main{
  padding-top: 220px !important;

}
/* ÜBER MICH – zmniejsz różowy pas (fullbleed pink-band) */
body[data-page="ueber-mich"] section.fullbleed.pink-band{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body[data-page="ueber-mich"] section.fullbleed.pink-band .container.space-xl{
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
/* ===============================
   KONTAKT – zmniejszenie różowego pasa
   =============================== */

body[data-page="kontakt"] section.fullbleed.pink-band {
  padding: 0 !important;
}

body[data-page="kontakt"] section.fullbleed.pink-band .container.space-xl {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Mobile */
@media (max-width: 768px) {
  body[data-page="kontakt"] section.fullbleed.pink-band .container.space-xl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.admin-login {
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
}

.admin-login:hover {
  opacity: 0.6;
}




/* Mini CMS admin mode */
.cms-adminbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(70, 42, 50, .14);
  border-radius: 999px;
  background: rgba(255, 252, 248, .92);
  box-shadow: 0 18px 46px rgba(72, 40, 48, .18);
  backdrop-filter: blur(14px);
}
.cms-adminbar__status {
  padding: 0 8px 0 10px;
  color: rgba(42, 31, 35, .62);
  font-size: 12px;
  white-space: nowrap;
}
.cms-adminbar button {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  background: #2a1f23;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
body.cms-editing [data-cms-image]:active {
  cursor: grabbing;
}
.cms-adminbar button[disabled] { cursor: wait; opacity: .55; }
.cms-adminbar__logout { background: transparent !important; color: rgba(42, 31, 35, .70) !important; }
.cms-login {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 36px));
  border: 1px solid rgba(115, 22, 114, .18);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(43, 30, 43, .08);
  backdrop-filter: blur(14px);
}
.cms-login__toggle {
  display: none;
}
.cms-login__body {
  display: grid;
  gap: 8px;
}
.cms-login strong {
  color: var(--accent-strong);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
}
.cms-login__form {
  display: grid;
  gap: 8px;
}
.cms-login input,
.cms-login button {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}
.cms-login input {
  border: 1px solid rgba(115, 22, 114, .15);
  padding: 0 10px;
  background: rgba(255,255,255,.86);
}
.cms-login button {
  border: 1px solid rgba(115, 22, 114, .18);
  background: rgba(115, 22, 114, .08);
  color: var(--accent-strong);
  font-weight: 700;
  cursor: pointer;
}
body.cms-editing [data-cms] {
  position: relative;
  outline: 1px dashed rgba(176, 74, 106, .42);
  outline-offset: 5px;
  border-radius: 8px;
  cursor: text;
}
body.cms-editing [data-cms]:focus {
  outline: 2px solid rgba(176, 74, 106, .62);
  box-shadow: 0 0 0 8px rgba(176, 74, 106, .10);
}
body.cms-editing [data-cms-image] {
  position: relative;
  outline: 1px dashed rgba(176, 74, 106, .42);
  outline-offset: 5px;
  cursor: pointer;
}
body.cms-editing [data-cms-image]::after {
  content: "Bild ändern · ziehen";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(43, 30, 43, .12);
}

/* Gallery placeholder for the future image world */
.gallery-hero{
  padding:clamp(112px, 12vw, 156px) 0 clamp(76px, 8vw, 104px);
  background:
    radial-gradient(circle at 12% 38%, rgba(222,0,167,.16), transparent 34%),
    radial-gradient(circle at 68% 12%, rgba(115,22,114,.09), transparent 28%),
    linear-gradient(112deg, rgba(222,0,167,.13) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.92) 58%, rgba(246,242,234,.96) 100%);
  border-bottom:1px solid var(--line);
}

.gallery-hero h1{
  max-width:760px;
  margin:12px 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size:clamp(48px, 7vw, 92px);
  line-height:1;
  font-weight:400;
  color:var(--accent-strong);
}

.gallery-hero .muted{
  max-width:680px;
  font-size:18px;
  line-height:1.65;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.gallery-tile{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  padding:22px;
  border:1px solid rgba(115,22,114,.16);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(222,0,167,.09)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.10) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.08);
}

.gallery-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(222,0,167,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.74));
  opacity:.88;
  pointer-events:none;
}

.gallery-tile[data-image-url]:not([data-image-url=""]){
  background-size:cover;
  background-position:center;
}

.gallery-tile[data-image-url]:not([data-image-url=""])::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(35,23,35,.46)),
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.20), transparent 34%);
}

.gallery-tile > div{
  position:relative;
  z-index:1;
}

.gallery-tile[data-image-url]:not([data-image-url=""]) h2,
.gallery-tile[data-image-url]:not([data-image-url=""]) p,
.gallery-tile[data-image-url]:not([data-image-url=""]) span{
  color:#fff;
  text-shadow:0 10px 26px rgba(0,0,0,.24);
}

body:not(.cms-editing) .gallery-tile[data-image-url]:not([data-image-url=""])::before{
  opacity:0;
}

body:not(.cms-editing) .gallery-tile[data-image-url]:not([data-image-url=""]) > div{
  opacity:0;
  pointer-events:none;
}

.gallery-tile--large{
  grid-column:span 2;
  grid-row:span 2;
  min-height:536px;
}

.gallery-tile--wide{
  grid-column:span 2;
}

.gallery-tile span{
  display:block;
  margin-bottom:12px;
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.gallery-tile h2{
  margin:0 0 8px;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:28px;
  font-weight:400;
  color:var(--accent-strong);
}

.gallery-tile p{
  max-width:360px;
  margin:0;
  color:var(--muted);
}

@media (max-width:900px){
  .gallery-grid{ grid-template-columns:1fr 1fr; }
  .gallery-tile--large,
  .gallery-tile--wide{ grid-column:span 2; }
}

@media (max-width:620px){
  .gallery-hero{
    padding:92px 0 68px;
  }
  .gallery-hero h1{
    font-size:clamp(42px, 15vw, 64px);
    line-height:1.04;
  }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-tile,
  .gallery-tile--large,
  .gallery-tile--wide{
    grid-column:span 1;
    min-height:240px;
  }
}

/* Old Reiki floral decoration is disabled for the webdesign brand. */
.flower-wrap,
.flowers,
body::after{
  display:none !important;
  content:none !important;
  background:none !important;
}

/* Temporary home hero: use the digital atelier banner instead of the old Reiki image strip. */
.page-home .sig-strip{
  background:
    radial-gradient(circle at 11% 40%, rgba(222,0,167,.075), transparent 31%),
    linear-gradient(112deg, rgba(222,0,167,.055) 0%, rgba(255,255,255,.90) 34%, rgba(255,255,255,.96) 62%, rgba(246,242,234,.82) 100%);
}

.page-home .sig-grid{
  grid-template-columns:1fr;
}

.page-home .sig-brand{
  align-items:center;
  text-align:center;
}

.page-home .sig-brand::before{
  content:"";
  display:block;
  width:min(100%, 1120px);
  aspect-ratio:10 / 3;
  margin:0 auto 24px;
  background:
    radial-gradient(circle at 7% 43%, rgba(222,0,167,.04), transparent 30%),
    linear-gradient(112deg, rgba(222,0,167,.025) 0%, rgba(255,255,255,0) 36%, rgba(246,242,234,.10) 100%),
    url("hero-digital-atelier-banner-v3.png") center / contain no-repeat;
}

.page-home .sig-sign,
.page-home .sig-photo,
.page-home .sig-sub,
.page-home .sig-cta{
  display:none !important;
}

.home-hero,
.offer-hero,
.strategy-hero,
.contact-hero{
  position:relative;
  overflow:hidden;
}

.home-hero{
  background:
    radial-gradient(circle at 11% 40%, rgba(222,0,167,.075), transparent 31%),
    linear-gradient(112deg, rgba(222,0,167,.055) 0%, rgba(255,255,255,.90) 34%, rgba(255,255,255,.96) 62%, rgba(246,242,234,.82) 100%);
  border-bottom:1px solid var(--line);
}

.hero-waves{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  pointer-events:none;
  opacity:.95;
  mix-blend-mode:multiply;
}

.home-hero__brand{
  position:relative;
  z-index:3;
  width:min(100%, 1120px);
  aspect-ratio:10 / 3;
  margin:0 auto;
  background-color:rgba(255,255,255,.74);
  background:
    radial-gradient(circle at 7% 43%, rgba(222,0,167,.04), transparent 30%),
    linear-gradient(112deg, rgba(222,0,167,.025) 0%, rgba(255,255,255,0) 36%, rgba(246,242,234,.10) 100%),
    url("hero-digital-atelier-banner-v3.png") center / contain no-repeat;
}

.page-webdesign .home-hero__brand{
  width:100%;
  max-width:none;
  height:300px;
  aspect-ratio:auto;
  margin:0;
  background:
    radial-gradient(circle at 11% 42%, rgba(222,0,167,.055), transparent 31%),
    linear-gradient(112deg, rgba(222,0,167,.035) 0%, rgba(255,255,255,.18) 36%, rgba(246,242,234,.12) 100%),
    url("hero-digital-atelier-banner-v3.png") center / 1000px 300px no-repeat;
}

.page-webdesign main{
  padding-top:0 !important;
}

.page-webdesign .site-header-overlay{
  position:sticky;
}

.home-hero__content{
  position:relative;
  z-index:4;
  padding:54px 18px 74px;
  text-align:center;
}

.home-hero h1{
  max-width:980px;
  margin:10px auto 16px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(44px, 6vw, 86px);
  font-weight:400;
  line-height:1;
}

.home-hero__lead{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:20px;
}

.home-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.home-intro,
.home-process{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:start;
  padding-top:92px;
  padding-bottom:92px;
}

.home-intro h2,
.home-process h2,
.brand-coherence h2,
.home-services h2,
.home-gallery-teaser h2,
.home-final-cta h2{
  margin:8px 0 14px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:400;
  line-height:1.05;
}

.home-intro__copy p,
.process-copy p,
.home-gallery-teaser p,
.coherence-panel p{
  color:var(--muted);
  font-size:18px;
}

.brand-coherence{
  padding:86px 0;
  background:
    linear-gradient(112deg, rgba(222,0,167,.06), rgba(255,255,255,.86) 46%, rgba(246,242,234,.76)),
    radial-gradient(circle at 15% 40%, rgba(222,0,167,.08), transparent 30%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.coherence-panel{
  max-width:940px;
}

.home-services{
  padding:92px 0;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.service-card{
  min-height:360px;
  padding:0;
  display:grid;
  grid-template-rows:155px 1fr;
  overflow:hidden;
  border:1px solid rgba(115,22,114,.14);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(222,0,167,.055)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.07);
}

.service-card__media{
  position:relative;
  min-height:155px;
  background:
    radial-gradient(circle at 18% 26%, rgba(222,0,167,.11), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(115,22,114,.08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,245,253,.72)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.075) 0 1px, transparent 1px 18px);
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(115,22,114,.11);
}

.service-card__media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.58)),
    radial-gradient(circle at 85% 85%, rgba(200,155,200,.14), transparent 34%);
  pointer-events:none;
}

.service-card__media[data-image-url]:not([data-image-url=""]){
  background-size:cover;
  background-position:center;
}

.service-card__media[data-image-url]:not([data-image-url=""])::before{
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(35,23,35,.20));
}

.service-card__body{
  padding:24px;
}

.service-card span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
}

.service-card h3{
  margin:34px 0 10px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:30px;
  font-weight:400;
}

.service-card p,
.process-list span{
  color:var(--muted);
}

.process-list{
  display:grid;
  gap:12px;
}

.process-list div{
  padding:20px;
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:#fff;
}

.process-list strong,
.process-list span{
  display:block;
}

.process-list strong{
  margin-bottom:6px;
  color:var(--accent-strong);
}

.home-gallery-teaser{
  padding:86px 0;
  background:#fff;
}

.gallery-teaser__inner{
  max-width:880px;
  padding:44px;
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.075), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,242,234,.72));
}

.home-final-cta{
  padding-top:86px;
  padding-bottom:110px;
  text-align:center;
}

.home-final-cta h2{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

/* Final home hero banner rendering: use the real image so it cannot crop. */
.page-webdesign .home-hero{
  overflow:hidden;
}

.page-webdesign .home-hero__brand{
  position:relative;
  height:auto !important;
  min-height:0 !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  background:
    radial-gradient(circle at 11% 42%, rgba(222,0,167,.055), transparent 31%),
    linear-gradient(112deg, rgba(222,0,167,.035) 0%, rgba(255,255,255,.18) 36%, rgba(246,242,234,.12) 100%) !important;
}

.page-webdesign .home-hero__brand::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 42%, rgba(222,0,167,.10), transparent 30%),
    linear-gradient(112deg, rgba(222,0,167,.055), rgba(255,255,255,0) 40%, rgba(246,242,234,.10));
}

.page-webdesign .home-hero__brand img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}

@media (max-width:900px){
  .home-intro,
  .home-process,
  .service-grid{
    grid-template-columns:1fr;
  }
  .service-grid{
    gap:18px;
  }
  .service-card{
    min-height:0;
    grid-template-rows:clamp(190px, 48vw, 260px) auto;
  }
  .service-card__body{
    padding:22px;
  }
  .service-card h3{
    margin-top:26px;
    font-size:clamp(27px, 8vw, 36px);
    line-height:1.02;
  }
  .home-hero__content{
    padding-top:38px;
  }
}
@media (max-width: 720px) {
  .cms-login {
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }
  .cms-login__toggle {
    display: block;
    width: 58px;
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(115, 22, 114, .18);
    background: rgba(255, 255, 255, .94);
    color: var(--accent-strong);
    box-shadow: 0 14px 34px rgba(43, 30, 43, .10);
  }
  .cms-login__body {
    display: none;
    width: min(280px, calc(100vw - 20px));
    margin-top: 8px;
    padding: 12px;
    border: 1px solid rgba(115, 22, 114, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 14px 34px rgba(43, 30, 43, .10);
    backdrop-filter: blur(14px);
  }
  .cms-login.is-open .cms-login__body {
    display: grid;
  }
  .cms-adminbar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
    border-radius: 18px;
    flex-wrap: wrap;
    padding: 6px;
    gap: 5px;
  }
  .cms-adminbar button {
    padding: 8px 10px;
    font-size: 12px;
  }
  .cms-adminbar__status { width: 100%; text-align: center; }
}

/* Final override: full-width brand banner without a hard pink block. */
body.page-webdesign .home-hero{
  background:
    linear-gradient(112deg, rgba(222,0,167,.035) 0%, rgba(255,255,255,.96) 28%, rgba(255,255,255,.98) 64%, rgba(246,242,234,.78) 100%) !important;
}

body.page-webdesign .home-hero__brand{
  display:block !important;
  position:relative !important;
  width:100vw !important;
  max-width:none !important;
  height:280px !important;
  min-height:280px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  overflow:hidden !important;
  background:transparent !important;
}

body.page-webdesign .home-hero__brand img{
  display:block !important;
  width:min(100%, 980px) !important;
  max-width:none !important;
  height:auto !important;
  object-fit:contain !important;
  object-position:center !important;
  margin:0 auto !important;
}

body.page-webdesign .home-hero__brand::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  pointer-events:none !important;
  background:
    radial-gradient(circle at 9% 43%, rgba(222,0,167,.055), transparent 27%),
    linear-gradient(112deg, rgba(222,0,167,.025) 0%, rgba(255,255,255,0) 38%, rgba(246,242,234,.08) 100%) !important;
}

/* Webdesign offer page */
body.page-webdesign-offer main{
  padding-top:0 !important;
}

body.page-webdesign-offer .site-header-overlay{
  position:sticky;
}

.offer-hero{
  padding:96px 0 88px;
  background:
    radial-gradient(circle at 10% 42%, rgba(222,0,167,.08), transparent 30%),
    linear-gradient(112deg, rgba(222,0,167,.045), rgba(255,255,255,.94) 38%, rgba(246,242,234,.82));
  border-bottom:1px solid var(--line);
}

.offer-hero h1{
  max-width:1040px;
  margin:10px 0 18px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(44px, 6.4vw, 92px);
  font-weight:400;
  line-height:1;
}

.offer-hero p{
  max-width:760px;
  color:var(--muted);
  font-size:20px;
}

.offer-intro,
.offer-process{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  padding-top:92px;
  padding-bottom:92px;
}

.offer-intro h2,
.offer-band h2,
.offer-method h2,
.offer-process h2,
.offer-final h2{
  margin:8px 0 14px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:400;
  line-height:1.05;
}

.offer-intro p,
.method-card p,
.offer-final p{
  color:var(--muted);
  font-size:18px;
}

.offer-band{
  padding:92px 0;
  background:
    linear-gradient(112deg, rgba(222,0,167,.055), rgba(255,255,255,.9) 48%, rgba(246,242,234,.76)),
    radial-gradient(circle at 16% 36%, rgba(222,0,167,.07), transparent 30%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.offer-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.offer-grid article{
  min-height:310px;
  padding:24px;
  border:1px solid rgba(115,22,114,.14);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,0,167,.055)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.07);
}

.offer-grid span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
}

.offer-grid h3{
  margin:58px 0 10px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:28px;
  font-weight:400;
  line-height:1.1;
}

.offer-grid p{
  color:var(--muted);
}

.method-card{
  max-width:940px;
  padding:44px;
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.075), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,242,234,.72));
}

.offer-final{
  padding:96px 0 112px;
  text-align:center;
  background:#fff;
}

.offer-final p{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:980px){
  .offer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:760px){
  .offer-intro,
  .offer-process,
  .offer-grid{
    grid-template-columns:1fr;
  }
}

/* Final offer page skin: match the gallery/home visual language. */
body.page-webdesign-offer .offer-hero{
  padding:92px 0 70px !important;
  background:
    radial-gradient(circle at 12% 38%, rgba(222,0,167,.16), transparent 34%),
    radial-gradient(circle at 68% 12%, rgba(115,22,114,.09), transparent 28%),
    linear-gradient(112deg, rgba(222,0,167,.13) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.92) 58%, rgba(246,242,234,.96) 100%) !important;
  border-bottom:1px solid var(--line) !important;
}

body.page-webdesign-offer .offer-hero h1{
  max-width:980px !important;
  color:var(--accent-strong) !important;
  font-family:Georgia, 'Times New Roman', serif !important;
  font-size:clamp(44px, 6vw, 86px) !important;
  font-weight:400 !important;
  line-height:1.02 !important;
}

body.page-webdesign-offer .offer-hero p{
  max-width:760px !important;
  color:var(--muted) !important;
  font-size:20px !important;
}

body.page-webdesign-offer .offer-intro,
body.page-webdesign-offer .offer-process{
  display:grid !important;
  grid-template-columns:.9fr 1.1fr !important;
  gap:54px !important;
  padding-top:92px !important;
  padding-bottom:92px !important;
}

body.page-webdesign-offer .offer-band{
  padding:92px 0 !important;
  background:
    linear-gradient(112deg, rgba(222,0,167,.055), rgba(255,255,255,.9) 48%, rgba(246,242,234,.76)),
    radial-gradient(circle at 16% 36%, rgba(222,0,167,.07), transparent 30%) !important;
  border-top:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
}

body.page-webdesign-offer .offer-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:16px !important;
}

body.page-webdesign-offer .offer-grid article{
  min-height:310px !important;
  padding:24px !important;
  border:1px solid rgba(115,22,114,.14) !important;
  border-radius:8px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,0,167,.055)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px) !important;
  box-shadow:0 18px 46px rgba(43,30,43,.07) !important;
}

body.page-webdesign-offer .offer-grid h3,
body.page-webdesign-offer .offer-intro h2,
body.page-webdesign-offer .offer-band h2,
body.page-webdesign-offer .offer-method h2,
body.page-webdesign-offer .offer-process h2,
body.page-webdesign-offer .offer-final h2{
  color:var(--accent-strong) !important;
  font-family:Georgia, 'Times New Roman', serif !important;
  font-weight:400 !important;
}

body.page-webdesign-offer .offer-grid h3{
  margin:58px 0 10px !important;
  font-size:28px !important;
  line-height:1.1 !important;
}

body.page-webdesign-offer .method-card{
  max-width:940px !important;
  padding:44px !important;
  border:1px solid rgba(115,22,114,.13) !important;
  border-radius:8px !important;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.075), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,242,234,.72)) !important;
}

@media (max-width:980px){
  body.page-webdesign-offer .offer-grid{
    grid-template-columns:1fr 1fr !important;
  }
}

@media (max-width:760px){
  body.page-webdesign-offer .offer-intro,
  body.page-webdesign-offer .offer-process,
  body.page-webdesign-offer .offer-grid{
    grid-template-columns:1fr !important;
  }
}

/* Strategy page */
body.page-strategie main{
  padding-top:0 !important;
}

body.page-strategie .site-header-overlay{
  position:sticky;
}

.strategy-hero{
  padding:132px 0 92px;
  background:
    radial-gradient(circle at 12% 38%, rgba(222,0,167,.15), transparent 34%),
    radial-gradient(circle at 72% 10%, rgba(115,22,114,.08), transparent 28%),
    linear-gradient(112deg, rgba(222,0,167,.12) 0%, rgba(255,255,255,.84) 36%, rgba(255,255,255,.94) 62%, rgba(246,242,234,.94) 100%);
  border-bottom:1px solid var(--line);
}

.strategy-hero h1{
  max-width:1060px;
  margin:10px 0 18px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(44px, 6.2vw, 88px);
  font-weight:400;
  line-height:1;
}

.strategy-hero p{
  max-width:780px;
  color:var(--muted);
  font-size:20px;
}

.strategy-intro{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  padding-top:92px;
  padding-bottom:92px;
}

.strategy-intro h2,
.strategy-band h2,
.strategy-map h2,
.strategy-steps h2,
.strategy-final h2{
  margin:8px 0 14px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:400;
  line-height:1.05;
}

.strategy-intro p,
.map-panel p,
.strategy-final p{
  color:var(--muted);
  font-size:18px;
}

.strategy-band{
  padding:92px 0;
  background:
    linear-gradient(112deg, rgba(222,0,167,.055), rgba(255,255,255,.9) 48%, rgba(246,242,234,.76)),
    radial-gradient(circle at 16% 36%, rgba(222,0,167,.07), transparent 30%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.strategy-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.strategy-grid article{
  min-height:300px;
  padding:24px;
  border:1px solid rgba(115,22,114,.14);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,0,167,.055)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.07);
}

.strategy-grid span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
}

.strategy-grid h3{
  margin:58px 0 10px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:28px;
  font-weight:400;
  line-height:1.1;
}

.strategy-grid p{
  color:var(--muted);
}

.strategy-map,
.strategy-steps{
  padding-top:92px;
  padding-bottom:92px;
}

.map-panel{
  max-width:940px;
  padding:44px;
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.075), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,242,234,.72));
}

.strategy-final{
  padding:96px 0 112px;
  text-align:center;
  background:#fff;
}

.strategy-final p{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

.faq-section{
  padding-top:92px;
  padding-bottom:110px;
}

.faq-list{
  display:grid;
  gap:12px;
  max-width:920px;
}

.faq-list details{
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  padding:18px 20px;
  background:#fff;
  box-shadow:0 14px 34px rgba(43,30,43,.05);
}

.faq-list summary{
  cursor:pointer;
  color:var(--accent-strong);
  font-weight:700;
  list-style:none;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list p{
  margin:12px 0 0;
  color:var(--muted);
}

@media (max-width:980px){
  .strategy-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:760px){
  .strategy-intro,
  .strategy-grid{
    grid-template-columns:1fr;
  }
}

/* About page */
body.page-about-webdesign main{
  padding-top:0 !important;
}

body.page-about-webdesign .site-header-overlay{
  position:sticky;
}

.about-hero{
  padding:132px 0 92px;
  background:
    radial-gradient(circle at 12% 38%, rgba(222,0,167,.15), transparent 34%),
    radial-gradient(circle at 72% 10%, rgba(115,22,114,.08), transparent 28%),
    linear-gradient(112deg, rgba(222,0,167,.12) 0%, rgba(255,255,255,.84) 36%, rgba(255,255,255,.94) 62%, rgba(246,242,234,.94) 100%);
  border-bottom:1px solid var(--line);
}

.about-hero h1{
  max-width:1060px;
  margin:10px 0 18px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(44px, 6.2vw, 88px);
  font-weight:400;
  line-height:1;
}

.about-hero p{
  max-width:780px;
  color:var(--muted);
  font-size:20px;
}

.about-intro{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:54px;
  align-items:center;
  padding-top:92px;
  padding-bottom:92px;
}

.about-photo-placeholder{
  min-height:520px;
  display:flex;
  align-items:flex-end;
  padding:28px;
  border:1px solid rgba(115,22,114,.14);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,0,167,.075)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.07);
}

.about-photo-placeholder span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.about-photo-placeholder p{
  max-width:320px;
  margin:10px 0 0;
  color:var(--muted);
}

.about-copy h2,
.about-band h2,
.about-manifest h2,
.about-final h2{
  margin:8px 0 14px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:400;
  line-height:1.05;
}

.about-copy p,
.manifest-panel p{
  color:var(--muted);
  font-size:18px;
}

.about-band{
  padding:92px 0;
  background:
    linear-gradient(112deg, rgba(222,0,167,.055), rgba(255,255,255,.9) 48%, rgba(246,242,234,.76)),
    radial-gradient(circle at 16% 36%, rgba(222,0,167,.07), transparent 30%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.about-grid article{
  min-height:300px;
  padding:24px;
  border:1px solid rgba(115,22,114,.14);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,0,167,.055)),
    repeating-linear-gradient(90deg, rgba(115,22,114,.08) 0 1px, transparent 1px 18px);
  box-shadow:0 18px 46px rgba(43,30,43,.07);
}

.about-grid span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.18em;
}

.about-grid h3{
  margin:58px 0 10px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:28px;
  font-weight:400;
  line-height:1.1;
}

.about-grid p{
  color:var(--muted);
}

.about-experience,
.about-manifest{
  padding-top:92px;
  padding-bottom:92px;
}

.experience-panel,
.manifest-panel{
  max-width:940px;
  padding:44px;
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.075), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,242,234,.72));
}

.about-final{
  padding:96px 0 112px;
  text-align:center;
  background:#fff;
}

.about-final h2{
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:980px){
  .about-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:760px){
  .about-intro,
  .about-grid{
    grid-template-columns:1fr;
  }
  .about-photo-placeholder{
    min-height:320px;
  }
}

/* Final CMS and about-page polish */
.about-experience .experience-panel{
  max-width:940px;
  padding:56px 64px 60px;
  background:
    radial-gradient(circle at 9% 14%, rgba(222,0,167,.09), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(246,242,234,.7));
}

.about-experience .eyebrow{
  display:block;
  margin:0 0 14px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:rgba(42,31,35,.58);
  font-size:12px;
  letter-spacing:.22em;
}

.about-experience h2{
  max-width:820px;
  margin:0 0 24px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:400;
  line-height:1.05;
}

.about-experience p{
  max-width:850px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.about-photo-placeholder,
.gallery-tile{
  position:relative;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.about-photo-placeholder[data-image-url]:not([data-image-url=""])::before,
.gallery-tile[data-image-url]:not([data-image-url=""])::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(34,22,34,.55));
}

.about-photo-placeholder[data-image-url]:not([data-image-url=""]) > div,
.gallery-tile[data-image-url]:not([data-image-url=""]) > div{
  position:relative;
  z-index:1;
}

.about-photo-placeholder[data-image-url]:not([data-image-url=""]) > div{
  display:none;
}

.gallery-tile[data-image-url]:not([data-image-url=""]) h2,
.gallery-tile[data-image-url]:not([data-image-url=""]) p,
.gallery-tile[data-image-url]:not([data-image-url=""]) span{
  color:#fff;
}

/* Contact page */
body.page-contact-webdesign main{
  padding-top:0 !important;
}

body.page-contact-webdesign .site-header-overlay{
  position:sticky;
}

.contact-hero{
  padding:116px 0 88px;
  background:
    radial-gradient(circle at 12% 38%, rgba(222,0,167,.14), transparent 34%),
    radial-gradient(circle at 72% 10%, rgba(115,22,114,.07), transparent 28%),
    linear-gradient(112deg, rgba(222,0,167,.11) 0%, rgba(255,255,255,.86) 36%, rgba(255,255,255,.94) 62%, rgba(246,242,234,.94) 100%);
  border-bottom:1px solid var(--line);
}

.contact-hero h1{
  max-width:960px;
  margin:10px 0 18px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(44px, 6vw, 84px);
  font-weight:400;
  line-height:1;
}

.contact-hero p{
  max-width:760px;
  color:var(--muted);
  font-size:20px;
}

.contact-layout{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
  align-items:start;
  padding-top:92px;
  padding-bottom:112px;
}

.contact-panel,
.contact-card{
  border:1px solid rgba(115,22,114,.13);
  border-radius:8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(222,0,167,.065), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(246,242,234,.68));
  box-shadow:0 18px 46px rgba(43,30,43,.06);
}

.contact-panel{
  padding:44px;
}

.contact-panel h2,
.contact-card h2{
  margin:8px 0 14px;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(30px, 3.4vw, 48px);
  font-weight:400;
  line-height:1.05;
}

.contact-panel p,
.contact-card p{
  color:var(--muted);
  font-size:18px;
}

.contact-panel form{
  display:grid;
  gap:16px;
  margin-top:28px;
}

.contact-panel .hp{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.contact-hero__inner{
  max-width:960px;
}

.contact-hero__mark{
  display:none !important;
}

.contact-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contact-panel label{
  display:grid;
  gap:8px;
  color:rgba(42,31,35,.72);
  font-size:14px;
}

.contact-panel input,
.contact-panel textarea{
  width:100%;
  border:1px solid rgba(115,22,114,.15);
  border-radius:8px;
  padding:14px 15px;
  background:#fff;
  color:var(--ink);
  font:inherit;
  outline:none;
}

.contact-panel textarea{
  min-height:180px;
  resize:vertical;
}

.contact-panel input:focus,
.contact-panel textarea:focus{
  border-color:rgba(115,22,114,.42);
  box-shadow:0 0 0 5px rgba(222,0,167,.08);
}

.contact-note{
  margin:0;
  font-size:14px !important;
}

.contact-side{
  display:grid;
  gap:16px;
}

.contact-card{
  padding:30px;
}

.contact-card h2{
  font-size:32px;
}

.contact-link{
  display:inline-block;
  color:var(--accent-strong);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:34px;
  line-height:1.1;
  text-decoration:none;
}

.contact-link:hover{
  color:var(--accent);
}

.contact-email{
  color:var(--accent-strong);
  overflow-wrap:anywhere;
  text-decoration:none;
}

.contact-email:hover{
  color:var(--accent);
}

@media (max-width:900px){
  .contact-layout,
  .contact-row{
    grid-template-columns:1fr;
  }
}

/* Mobile atelier polish: stable shared header, lighter heroes, premium menu. */
.site-header .nav-container{
  min-height:72px;
}

.site-header .logo{
  display:block;
  flex:0 0 auto;
}

.site-header .logo img{
  width:132px;
}

@media (min-width:801px){
  .site-header .nav-container{
    gap:32px;
  }

  .site-header .nav{
    display:flex !important;
    margin-left:auto;
  }
}

@media (max-width:800px){
  .site-header .nav-container{
    min-height:72px;
    padding:8px 18px 8px 20px;
  }

  .site-header .logo img{
    width:118px;
  }

  .site-header .burger{
    width:48px;
    height:48px;
    margin-left:auto;
    margin-right:2px;
    align-items:center;
    justify-content:center;
    gap:5px;
    border-radius:999px;
    transition:background-color .18s ease, transform .18s ease;
    touch-action:manipulation;
  }

  .site-header .burger:active{
    background:rgba(115,22,114,.08);
    transform:scale(.98);
  }

  .site-header .burger span{
    width:24px;
    height:2px;
    border-radius:999px;
    background:#2a1f23;
  }

  .site-header .nav{
    top:72px;
    left:12px;
    right:12px;
    padding:16px 0;
    border:1px solid rgba(115,22,114,.10);
    border-radius:0 0 8px 8px;
    box-shadow:0 18px 38px rgba(42,31,35,.10);
    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }

  .site-header .burger[aria-expanded="true"] + .nav,
  .site-header .nav.active{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  .site-header .nav a{
    margin:6px 0;
    padding:10px 18px;
    font-size:15px;
  }
}

@media (max-width:768px){
  .home-hero__content{
    padding:30px 18px 48px;
  }

  body.page-webdesign .home-hero__brand{
    height:188px !important;
    min-height:188px !important;
  }

  .offer-hero,
  body.page-webdesign-offer .offer-hero,
  .strategy-hero,
  .about-hero,
  .contact-hero{
    padding:62px 0 54px !important;
  }

  .gallery-hero{
    padding:70px 0 54px !important;
  }

  .home-hero h1,
  .offer-hero h1,
  body.page-webdesign-offer .offer-hero h1,
  .strategy-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .gallery-hero h1{
    font-size:clamp(38px, 11.8vw, 58px) !important;
    line-height:1.07 !important;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
  }

  .home-hero__lead,
  .offer-hero p,
  body.page-webdesign-offer .offer-hero p,
  .strategy-hero p,
  .about-hero p,
  .contact-hero p,
  .gallery-hero .muted{
    font-size:17px !important;
    line-height:1.58 !important;
  }

  .home-actions{
    gap:12px;
    margin-top:22px;
  }

  .btn,
  button.btn{
    width:100%;
    max-width:320px;
    min-height:48px;
    padding:14px 20px;
    transition:transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  }

  .btn:active,
  button.btn:active{
    transform:translateY(1px) scale(.99);
    box-shadow:0 6px 14px rgba(42,31,35,.08);
  }
}

@media (max-width:420px){
  .home-hero h1,
  .offer-hero h1,
  body.page-webdesign-offer .offer-hero h1,
  .strategy-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .gallery-hero h1{
    font-size:clamp(34px, 10.8vw, 46px) !important;
  }

  .offer-hero,
  body.page-webdesign-offer .offer-hero,
  .strategy-hero,
  .about-hero,
  .contact-hero,
  .gallery-hero{
    padding-top:50px !important;
  }
}
