/* ============================================================
   DEKORATOR — STYLES
   Loro Piana inspired · EB Garamond · White + warm cream
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-cream: #FBF8F1;
  --bg-cream-soft: #F7F2E8;
  --bg-dark: #1F1A15;

  /* Text */
  --ink: #1F1A15;
  --ink-soft: #4A4036;
  --ink-muted: #8B8278;
  --ink-light: #B8B0A4;
  --ink-on-dark: #FBF8F1;
  --ink-on-dark-soft: rgba(251, 248, 241, 0.7);

  /* Accents */
  --burgundy: #6B1F1A;
  --burgundy-dark: #4D1612;
  --whatsapp: #4A6B52;
  --whatsapp-dark: #3A5841;
  --gold: #A8843D;
  --gold-soft: rgba(168, 132, 61, 0.1);

  /* Borders */
  --hairline: rgba(31, 26, 21, 0.08);
  --hairline-strong: rgba(31, 26, 21, 0.18);

  /* Type */
  --serif: 'EB Garamond', 'Times New Roman', serif;
  --serif-display: 'Cormorant Garamond', 'EB Garamond', 'Times New Roman', serif;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);

  /* Radius */
  --radius-cta: 12px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPOGRAPHY ============ */
h1 {
  font-family: var(--serif-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-style: italic;
}
h1 em { font-style: italic; color: var(--burgundy); font-weight: 600; }
h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.875rem); }
h4 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
em { font-style: italic; color: var(--burgundy); font-weight: 600; }

p { margin-bottom: 1rem; font-weight: 500; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.serif-italic {
  font-style: italic;
  font-weight: 500;
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  transition: background 0.3s var(--ease);
  margin-bottom: 0;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 2.125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--burgundy);
}
.nav-cta {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  background: var(--burgundy);
  color: var(--ink-on-dark) !important;
  padding: 1rem 2rem;
  border-radius: var(--radius-cta);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(107, 31, 26, 0.15);
}
.nav-cta:hover { background: var(--burgundy-dark); color: var(--ink-on-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(107, 31, 26, 0.3); }
.menu-btn { display: none; padding: 0.5rem; }
.menu-btn svg { width: 26px; height: 26px; stroke: var(--ink); }

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    border-bottom: 0.5px solid var(--hairline);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .nav-cta { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }
}

/* ============ HERO (split with image) ============ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(560px, 72vh, 720px);
}
.hero-left {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-meta-line { width: 32px; height: 1px; background: var(--gold); }
.hero-meta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-headline h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 520px;
  font-weight: 500;
}
.hero-desc {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-image {
  background-color: var(--bg-cream-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 320px;
}
/* Placeholder pattern when image not yet set */
.hero-image.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(168, 132, 61, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(107, 31, 26, 0.04) 0%, transparent 50%);
}
.hero-image.placeholder::after {
  content: 'Miejsce na zdjęcie hero';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { order: -1; min-height: 300px; }
  .hero-left { padding: 2.5rem 1.5rem 3rem; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-cta);
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }

.btn-primary { background: var(--burgundy); color: var(--ink-on-dark); }
.btn-primary:hover { background: var(--burgundy-dark); color: var(--ink-on-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(107, 31, 26, 0.3); }
.btn-primary:hover svg { transform: translateX(2px); }

.btn-wa { background: var(--whatsapp); color: #FFFFFF; }
.btn-wa:hover { background: var(--whatsapp-dark); color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(74, 107, 82, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ink-on-dark); transform: translateY(-2px); }

/* ============ HERO STRIP ============ */
.hero-strip {
  background: var(--bg-cream);
  padding: 1.5rem var(--gutter);
  border-bottom: 0.5px solid var(--hairline);
}
.hero-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 3rem;
  flex-wrap: wrap;
}
.hero-strip span {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-style: italic;
}
.hero-strip span:not(:first-child)::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 1.5rem;
}
@media (max-width: 720px) {
  .hero-strip span:not(:first-child)::before { display: none; }
  .hero-strip-inner { gap: 0.5rem 1.5rem; }
}

/* ============ SECTION HEADER ============ */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 760px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .eyebrow { display: block; margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: 1.25rem; }
.sec-head p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 500;
}
.sec-head.center p { margin-left: auto; margin-right: auto; }
.sec-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
  border: none;
}
.sec-head.center .sec-divider { margin-left: auto; margin-right: auto; }

/* ============ ABOUT ============ */
.about {
  background: var(--bg);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-side { position: sticky; top: 100px; }
.about-side .eyebrow { display: block; margin-bottom: 1rem; }
.about-side h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.about-side .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-top: 1.5rem;
  font-weight: 500;
}
.about-meta {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 500;
}
.about-body {
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 500;
}
.about-body p { margin-bottom: 1.5rem; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-side { position: static; }
}

/* ============ OFFER (split lists) ============ */
.offer {
  background: var(--bg-cream);
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.offer-col h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline-strong);
  position: relative;
  font-weight: 600;
}
.offer-col h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--burgundy);
}
.offer-list {
  list-style: none;
}
.offer-list li {
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--hairline);
  font-size: 18px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.5rem;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
  font-weight: 500;
  line-height: 1.5;
}
.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.offer-list li:hover { color: var(--ink); padding-left: 1.85rem; }
.offer-list li:hover::before { width: 14px; background: var(--burgundy); }
.offer-list li:last-child { border-bottom: none; }
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ CTA BAR ============ */
.cta-bar {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--bg);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--burgundy);
}
.cta-bar-text {
  flex: 1 1 320px;
  min-width: 280px;
}
.cta-bar-text h4 {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cta-bar-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}
.cta-bar-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cta-bar { flex-direction: column; align-items: stretch; }
  .cta-bar-buttons .btn { flex: 1; }
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--burgundy-dark);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.gallery .sec-head { color: var(--ink-on-dark); padding: 0 var(--gutter); }
.gallery .sec-head h2 { color: var(--ink-on-dark); }
.gallery .sec-head p { color: var(--ink-on-dark-soft); }
.gallery .sec-head .eyebrow { color: var(--gold); }
.gallery .sec-divider { background: var(--gold); }

.marquee-wrap { width: 100%; overflow: hidden; padding: 1.5rem 0; }
.marquee {
  display: flex;
  gap: 1.25rem;
  width: fit-content;
  animation: marquee 50s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  width: clamp(240px, 28vw, 360px);
  height: clamp(180px, 22vw, 280px);
  background: var(--bg-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 16px;
  text-align: center;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
  font-weight: 500;
}
.marquee-item:hover { transform: scale(1.02); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.625rem)); }
}
.gallery:hover .marquee { animation-play-state: paused; }

/* ============ VALUES ============ */
.values { background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 0.5px solid var(--hairline);
  border-left: 0.5px solid var(--hairline);
}
.value-cell {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  background: var(--bg);
  transition: background 0.3s var(--ease);
  position: relative;
}
.value-cell:hover { background: var(--bg-cream); }
.value-cell::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease);
}
.value-cell:hover::before { width: 32px; }
.value-cell h3 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.value-cell p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT ============ */
.contact { background: var(--bg-cream); border-top: 0.5px solid var(--hairline); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--hairline-strong);
  font-weight: 600;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--hairline);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  stroke: var(--burgundy);
  flex-shrink: 0;
}
.contact-row-text { flex: 1; }
.contact-row-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.contact-row-value {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.contact-row-value a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.contact-row-value a:hover { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.contact-buttons { margin-top: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--hairline-strong);
  height: 100%;
  min-height: 420px;
  background: var(--bg);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
}

/* ============ SUBPAGE HERO ============ */
.sub-hero {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.crumbs {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}
.crumbs a { color: var(--ink-muted); transition: color 0.2s var(--ease); }
.crumbs a:hover { color: var(--burgundy); }
.crumbs span { margin: 0 0.5rem; color: var(--ink-light); }
.sub-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.sub-hero p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2rem;
  font-weight: 500;
}
.cta-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============ CATEGORY CARDS (subpage) ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.cat-card {
  background: var(--bg-cream);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  border-radius: 12px;
  border: 0.5px solid var(--hairline);
}
.cat-card:hover { background: var(--bg-cream-soft); transform: translateY(-2px); }
.cat-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  position: relative;
}
.cat-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.cat-card:hover h4::after { width: 48px; background: var(--burgundy); }
.cat-card ul { list-style: none; }
.cat-card li {
  font-size: 17px;
  padding: 0.55rem 0;
  color: var(--ink-soft);
  border-bottom: 0.5px solid var(--hairline);
  line-height: 1.55;
  font-weight: 500;
}
.cat-card li:last-child { border-bottom: none; }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============ HOW IT WORKS ============ */
.process {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}
.process-step {
  position: relative;
  padding-top: 2rem;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--burgundy);
}
.process-step h4 {
  font-size: 1.625rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.process-step .step-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.process-step p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--burgundy-dark);
  color: var(--ink-on-dark);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--ink-on-dark);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer p {
  font-size: 16px;
  color: var(--ink-on-dark-soft);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 500;
}
.footer h5 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; font-size: 16px; font-weight: 500; }
.footer a { color: var(--ink-on-dark-soft); transition: color 0.25s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(251, 248, 241, 0.1);
  font-size: 14px;
  color: rgba(251, 248, 241, 0.5);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ STICKY MOBILE CALL ============ */
.fab {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--burgundy);
  color: var(--ink-on-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(107, 31, 26, 0.4);
  z-index: 90;
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: scale(1.05); color: var(--ink-on-dark); }
.fab svg { width: 24px; height: 24px; stroke: currentColor; }
@media (max-width: 768px) { .fab { display: flex; } }

/* ============ FADE-IN ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeIn 0.8s var(--ease-out) forwards;
  }
  .fade-in-1 { animation-delay: 0.1s; }
  .fade-in-2 { animation-delay: 0.2s; }
  .fade-in-3 { animation-delay: 0.3s; }
  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ============ RESPONSIVE FIXES ============ */
@media (max-width: 480px) {
  body { font-size: 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-strip { flex-direction: column; }
  .cta-strip .btn { width: 100%; }
}

/* ============ SUB-HERO SPLIT (subpages with image) ============ */
.sub-hero-split {
  background: var(--bg);
  border-bottom: 0.5px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(440px, 60vh, 580px);
}
.sub-hero-split-left {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 3.5rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-hero-split-image {
  background-color: var(--bg-cream-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 280px;
}
.sub-hero-split-image.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(168, 132, 61, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(107, 31, 26, 0.04) 0%, transparent 50%);
}
.sub-hero-split-image.placeholder::after {
  content: 'Miejsce na zdjęcie';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-muted);
  font-weight: 500;
}
@media (max-width: 900px) {
  .sub-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .sub-hero-split-image { order: -1; min-height: 280px; }
  .sub-hero-split-left { padding: 2rem 1.5rem 2.5rem; }
}

/* ============ 1:1 SCROLLING GALLERY ============ */
.scroll-1-1 {
  background: var(--bg);
  padding: clamp(3rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.scroll-1-1 .sec-head { padding: 0 var(--gutter); }
.scroll-1-1-wrap { width: 100%; overflow: hidden; padding: 1rem 0; }
.scroll-1-1-track {
  display: flex;
  gap: 1rem;
  width: fit-content;
  animation: scroll11 45s linear infinite;
}
.scroll-1-1-item {
  flex-shrink: 0;
  width: clamp(220px, 24vw, 300px);
  height: clamp(220px, 24vw, 300px);
  aspect-ratio: 1 / 1;
  background: var(--bg-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 16px;
  text-align: center;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.scroll-1-1-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(168, 132, 61, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(107, 31, 26, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.scroll-1-1-item:hover { transform: scale(1.02); }
@keyframes scroll11 {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.5rem)); }
}
.scroll-1-1:hover .scroll-1-1-track { animation-play-state: paused; }

/* ============ MOBILE FIXES — IMPORTANT ============ */
@media (max-width: 768px) {
  .sub-hero h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .sub-hero p { font-size: 17px; }
  .cat-card { padding: 1.5rem 1.25rem; }
  .cat-card h4 { font-size: 1.375rem; }
  .cat-card li { font-size: 16px; padding: 0.5rem 0; }
  .cta-bar { padding: 1.75rem 1.5rem; gap: 1.5rem; }
  .cta-bar-text h4 { font-size: 1.375rem; }
  .cta-bar-text p { font-size: 16px; }
  .cta-bar-buttons { width: 100%; }
  .cta-bar-buttons .btn { flex: 1 1 calc(50% - 0.25rem); min-width: 0; padding: 0.85rem 0.75rem; font-size: 15px; }
  .offer-list li { font-size: 17px; }
  .sec-head h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .sec-head p { font-size: 17px; }
  section { padding: clamp(3rem, 7vw, 4rem) 0; }
}

@media (max-width: 480px) {
  .cta-bar { padding: 1.5rem 1.25rem; }
  .cta-bar-buttons { flex-direction: column; }
  .cta-bar-buttons .btn { flex: 1 1 100%; width: 100%; }
  .offer-col h3 { font-size: 1.5rem; }
  .cat-card h4 { font-size: 1.25rem; }
  .crumbs { font-size: 14px; margin-bottom: 1.25rem; }
  .sub-hero h1 br { display: none; }
}
