/* yj-demo/src/styles.css
   Purpose: Warstwa wizualna demo YJDecorating — luxury editorial (ivory + forest + brass).
   WHY: pokazujemy klientce poziom "$2M look" na jej realnych zdjęciach i treści. */

:root {
  --ivory: #F5F2EA;
  --alabaster: #FCFBF7;
  --ink: #1B1E18;
  --ink-soft: #4A4E44;
  --forest: #212819;
  --night: #14170F;
  --brass: #8A6D2E;
  --brass-soft: #C4A96C;
  --sage: #8A9480;
  --hair: rgba(27, 30, 24, .12);
  --hair-light: rgba(245, 242, 234, .18);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --ease-lux: cubic-bezier(.22, .8, .26, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ------- grain overlay (atmosfera, bardzo subtelna) ------- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 60;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ------- typografia ------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .005em; }
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .42em; text-transform: uppercase; color: var(--brass);
}
.it { font-style: italic; font-weight: 400; }

/* ------- nav ------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: background .5s var(--ease-lux), padding .5s var(--ease-lux), box-shadow .5s;
  color: var(--ivory);
}
/* nawigacja nad zdjęciem (przed scrollem) — cień dla czytelności */
.nav:not(.scrolled) .logo,
.nav:not(.scrolled) ul a,
.nav:not(.scrolled) .cta-mini { text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.nav.scrolled {
  background: color-mix(in srgb, var(--alabaster) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--ink); padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 var(--hair);
}
.nav .logo { display: flex; align-items: center; text-decoration: none; }
.nav .logo img { height: 104px; width: auto; display: block; }
.nav .logo .logo-for-dark { filter: drop-shadow(0 1px 4px rgba(0,0,0,.45)); }
.nav .logo .logo-for-light { display: none; }
.nav.scrolled .logo .logo-for-dark { display: none; }
.nav.scrolled .logo .logo-for-light { display: block; }
@media (max-width: 560px) {
  .nav .logo img { height: 66px; }
}
/* powiększone logo (92px) wypycha pasek w paśmie ~901–1071px (nav ul znów widoczne).
   Chowamy redundantną pigułkę CTA do 1100px — duże logo zostaje, a CTA jest w hero i w menu. */
/* dłuższa etykieta CTA ("Request a Consultation") zabiera miejsce menu — chowamy pigułkę
   wcześniej (1280px). CTA i tak jest w hero i pozycja Contact zostaje w menu. */
@media (max-width: 1280px) {
  .nav .cta-mini { display: none; }
}
.nav ul { display: flex; gap: clamp(16px, 2.2vw, 34px); list-style: none; }
.nav ul a { text-decoration: none; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; opacity: .9; position: relative; white-space: nowrap; }
.nav ul a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--brass); transition: width .4s var(--ease-lux); }
.nav ul a:hover::after { width: 100%; }
.nav .cta-mini {
  border: 1px solid currentColor; padding: 10px 22px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap;   /* dłuższa etykieta ("Request a Consultation") nie może się łamać w pigułce */
  transition: background .4s, color .4s;
}
/* przy węższym pasku zwężamy tracking zamiast pozwolić na zawijanie */
@media (max-width: 1320px) { .nav .cta-mini { letter-spacing: .14em; padding: 10px 18px; } }
.nav.scrolled .cta-mini:hover, .nav .cta-mini:hover { background: var(--brass); border-color: var(--brass); color: var(--ivory); }
.nav-actions { display: inline-flex; align-items: center; gap: 20px; }
.nav-ico { display: inline-flex; color: inherit; opacity: .85; transition: opacity .3s var(--ease-lux), color .3s var(--ease-lux); }
.nav-ico svg { width: 19px; height: 19px; display: block; }
.nav-ico:hover { opacity: 1; color: var(--brass); }
@media (max-width: 900px) { .nav-actions { margin-left: auto; margin-right: 8px; gap: 22px; } }
.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav ul { display: none; }
  .nav .cta-mini { margin-left: auto; margin-right: 8px; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 9px; background: none; border: 0; cursor: pointer; color: inherit; }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .3s var(--ease-lux), opacity .3s; }
  .nav.open ul {
    display: flex; flex-direction: column; gap: 22px; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: var(--night); padding: 26px clamp(20px, 6vw, 64px) 32px;
    border-top: 1px solid rgba(245, 242, 234, .12);
  }
  .nav.open ul a { color: var(--ivory); opacity: .92; font-size: .82rem; text-shadow: none; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ------- hero ------- */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; color: var(--ivory); }
/* pełnoekranowy pokaz slajdów jej zdjęć — zdjęcie na cały ekran = bohater */
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s var(--ease-lux); will-change: opacity; }
.hero-slide.is-active { opacity: 1; animation: heroZoom 9s var(--ease-lux) both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
/* delikatny gradient TYLKO u dołu — hasło/CTA czytelne, a zdjęcie zostaje jasne i doceniane */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* lekki scrim TYLKO pod nawigacją (góra) i pod hasłem (dół) — środek zdjęcia zostaje jasny */
  background: linear-gradient(to bottom, rgba(15,18,11,.34) 0%, rgba(15,18,11,.05) 13%, transparent 30%, transparent 56%, rgba(15,18,11,.15) 77%, rgba(15,18,11,.6) 100%); }
.hero-tag { position: absolute; left: 0; right: 0; bottom: 8vh; z-index: 2; text-align: center; padding: 0 24px; }
.hero-tag p { font-family: var(--serif); font-style: italic; font-weight: 400; color: #fff; font-size: clamp(1.7rem, 1.1rem + 2.4vw, 3.1rem); margin-bottom: 26px; text-shadow: 0 2px 26px rgba(0,0,0,.55); }
.btn {
  display: inline-block; text-decoration: none; font-size: .76rem; letter-spacing: .28em; text-transform: uppercase;
  padding: 17px 40px; border-radius: 999px; transition: all .45s var(--ease-lux); border: 1px solid transparent;
}
.btn-solid { background: var(--brass); color: var(--ivory); }
.btn-solid:hover { background: var(--brass-soft); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(20,23,15,.35); }
.btn-ghost { border-color: rgba(245,242,234,.55); color: var(--ivory); }
.btn-ghost:hover { background: rgba(245,242,234,.12); border-color: var(--ivory); }
.hero-scroll { position: absolute; z-index: 2; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; opacity: .75; }
.hero-scroll::after { content: ""; display: block; width: 1px; height: 46px; background: linear-gradient(var(--ivory), transparent); margin: 10px auto 0; animation: drip 2.2s infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ------- award strip ------- */
.awards { background: var(--alabaster); border-bottom: 1px solid var(--hair); padding: 34px 0; overflow: hidden; }
.awards-track { display: flex; gap: clamp(40px, 7vw, 100px); align-items: center; width: max-content; animation: marquee 36s linear infinite; padding-left: 40px; }
.awards:hover .awards-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.award-item { display: flex; align-items: center; gap: 14px; white-space: nowrap; color: var(--ink-soft); }
.award-item img { height: 54px; width: auto; filter: grayscale(.35); opacity: .85; transition: .4s; }
.award-item:hover img { filter: none; opacity: 1; }
.award-item span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }

/* ------- sekcje wspólne ------- */
.section { padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 80px); position: relative; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 1.5rem + 2.8vw, 3.6rem); margin-top: 18px; text-wrap: balance; }
.section-head p { color: var(--ink-soft); margin-top: 18px; max-width: 560px; margin-inline: auto; }

/* reveal on scroll — tylko gdy JS aktywny (progressive enhancement: bez JS treść widoczna) */
html.js .rv { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux); }
html.js .rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .12s; } .rv-d2 { transition-delay: .24s; } .rv-d3 { transition-delay: .36s; }

/* ------- story (o nas) ------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 90px); align-items: start; max-width: 1240px; margin: 0 auto; }
.story-img { position: relative; }
.story-img::before { content: ""; position: absolute; inset: 26px -26px -26px 26px; border: 1px solid var(--brass); z-index: -1; }
.story-img img { aspect-ratio: 4 / 5.2; object-fit: cover; }
/* Legacy — zdjęcia mistrzyni przy pracy (jej życzenie: te kadry na stronie Legacy, nie w scrollu) */
.legacy-photos { display: grid; gap: 14px; align-self: start; }
.legacy-photos img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 2px; box-shadow: 0 14px 40px rgba(20,23,15,.14); }
.story h2 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem); margin: 16px 0 22px; }
.story p { color: var(--ink-soft); margin-bottom: 16px; max-width: 54ch; }
.story blockquote { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--ink); border-left: 1px solid var(--brass); padding-left: 22px; margin: 28px 0; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .story-img::before { inset: 20px 20px -18px -18px; } }
.signature { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.sig-name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 2.4rem; line-height: .9; color: var(--brass); }
.sig-role { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

/* ------- why couples choose ------- */
.why { background: var(--alabaster); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
.why-card { padding: 30px 26px; background: #fff; border: 1px solid var(--hair); border-radius: 12px;
  position: relative; box-shadow: 0 1px 2px rgba(27,30,24,.04), 0 10px 30px rgba(27,30,24,.06); display: flex; flex-direction: column; }
.why-card::before { content: "\201C"; position: absolute; top: 6px; right: 18px; font-family: var(--serif); font-size: 3.4rem; color: var(--brass); opacity: .28; line-height: 1; }
.why-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin-bottom: 12px; }
.why-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.why-card span { margin-top: 16px; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ------- usługi ------- */
.services { background: var(--forest); color: var(--ivory); }
.services .section-head p { color: rgba(245,242,234,.72); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1280px; margin: 0 auto; }
.svc {
  position: relative; overflow: hidden; aspect-ratio: 3 / 4.1; border-radius: 2px;
  text-decoration: none; color: var(--ivory); isolation: isolate;
  transform-style: preserve-3d; perspective: 700px;
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux), filter 1.1s; z-index: -1; }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(20,23,15,.05) 30%, rgba(20,23,15,.72) 96%); z-index: -1; transition: background .6s; }
.svc:hover img { transform: scale(1.07); }
.svc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px; }
.svc-num { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--brass-soft); }
.svc h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem); margin: 6px 0 8px; font-weight: 500; }
.svc p { font-size: .82rem; line-height: 1.5; opacity: 0; max-height: 0; transition: all .6s var(--ease-lux); color: rgba(245,242,234,.85); }
.svc:hover p { opacity: 1; max-height: 90px; }
.svc-link { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-soft); display: inline-block; margin-top: 12px; }
@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } .svc { aspect-ratio: 4/3.4; } }

/* ------- portfolio / real weddings ------- */
.folio-wrap { max-width: 1340px; margin: 0 auto; }
.folio { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.folio-card { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; transform-style: preserve-3d; }
.folio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-lux); }
.folio-card:hover img { transform: scale(1.06); }
.folio-card .cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(20,23,15,.72));
  color: var(--ivory); display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  opacity: 0; transform: translateY(12px); transition: all .55s var(--ease-lux);
}
.folio-card:hover .cap { opacity: 1; transform: none; }
.folio-card .cap b { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; letter-spacing: .06em; }
.folio-card .cap span { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass-soft); }
.f-a { grid-column: span 5; aspect-ratio: 4/5; }
.f-b { grid-column: span 7; aspect-ratio: 16/10.5; }
.f-c { grid-column: span 4; aspect-ratio: 4/5; }
.f-d { grid-column: span 4; aspect-ratio: 4/5; }
.f-e { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 860px) { .f-a, .f-b, .f-c, .f-d, .f-e { grid-column: span 12; aspect-ratio: 4/3; } }
img.zoom { cursor: zoom-in; }
.folio-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
.folio-thumbs .folio-card { aspect-ratio: 1 / 1; }
@media (max-width: 860px) { .folio-thumbs { grid-template-columns: repeat(2, 1fr); } }

/* ------- lightbox ------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,14,9,.94);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s var(--ease-lux); }
.lightbox.open { display: flex; opacity: 1; }
.lb-img { max-width: 90vw; max-height: 86vh; width: auto; height: auto; border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6); animation: lbin .4s var(--ease-lux); }
@keyframes lbin { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lb-btn { position: absolute; background: none; border: 0; color: var(--ivory); cursor: pointer;
  font-family: var(--serif); line-height: 1; opacity: .8; transition: opacity .25s, transform .25s; }
.lb-btn:hover { opacity: 1; }
.lb-close { top: 22px; right: 30px; font-size: 2.6rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 4rem; padding: 0 24px; }
.lb-prev { left: 8px; } .lb-next { right: 8px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-4px); }
.lb-next:hover { transform: translateY(-50%) translateX(4px); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--ivory); opacity: .6; font-size: .72rem; letter-spacing: .24em; font-variant-numeric: tabular-nums; }
.lb-btn:focus-visible, .zoom:focus-visible { outline: 2px solid var(--brass-soft); outline-offset: 3px; }
@media (max-width: 640px) { .lb-prev, .lb-next { font-size: 2.6rem; padding: 0 12px; } .lb-close { font-size: 2.2rem; top: 14px; right: 18px; } }

/* marquee par */
.couples { overflow: hidden; padding: 46px 0 8px; }
.couples-track { display: flex; gap: 56px; width: max-content; animation: marquee 44s linear infinite; }
.couples-track span { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 1rem + 1.8vw, 2.2rem); color: #6c6e64; white-space: nowrap; }
.couples-track em { font-style: normal; color: var(--brass); padding: 0 8px; }

/* ------- slow cinematic reel (jej prawdziwe zdjęcia, wolny auto-scroll) ------- */
.reel { overflow: hidden; margin-top: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reel-track { display: flex; gap: 18px; width: max-content; animation: marquee 66s linear infinite; will-change: transform; }
.reel:hover .reel-track, .reel:focus-within .reel-track { animation-play-state: paused; }
.reel-card { position: relative; flex: 0 0 auto; height: clamp(340px, 56vh, 560px); border-radius: 2px; overflow: hidden; box-shadow: 0 18px 50px rgba(20,23,15,.16); }
.reel-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 15px; font-family: var(--serif); font-weight: 500; font-size: 1.05rem; letter-spacing: .05em; color: #fff; background: linear-gradient(transparent, rgba(20,23,15,.78)); opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease-lux), transform .5s var(--ease-lux); pointer-events: none; }
.reel-card:hover .reel-cap, .reel:focus-within .reel-card .reel-cap { opacity: 1; transform: none; }
@media (hover: none) { .reel-cap { opacity: 1; transform: none; } }
.reel-card img { height: 100%; width: auto; display: block; object-fit: cover; cursor: pointer; transition: transform 1.3s var(--ease-lux); }
.reel-card img.zoom:hover { transform: scale(1.05); }
@media (max-width: 560px) { .reel-card { height: 60vh; } .reel-track { gap: 12px; } }

/* ------- film (facade YouTube) ------- */
.film-section { background: var(--night); }
.film-section .section-head h2 { color: var(--ivory); }
.film-section .eyebrow { color: var(--brass-soft); }
.film { position: relative; max-width: 1080px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 4px;
  overflow: hidden; cursor: pointer; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.film-poster { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-lux), filter .6s; }
.film::after { content: ""; position: absolute; inset: 0; background: rgba(15,18,11,.3); transition: background .5s; }
.film:hover .film-poster { transform: scale(1.03); }
.film:hover::after { background: rgba(15,18,11,.45); }
.film-play { position: absolute; inset: 0; margin: auto; width: 90px; height: 90px; border-radius: 50%; z-index: 2;
  background: rgba(245,242,234,.94); color: var(--night); display: grid; place-items: center; padding-left: 5px;
  transition: transform .4s var(--ease-lux), background .4s; box-shadow: 0 12px 44px rgba(0,0,0,.45); }
.film:hover .film-play { transform: scale(1.08); background: var(--brass-soft); }
.film:focus-visible { outline: 2px solid var(--brass-soft); outline-offset: 4px; }
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ------- opinie ------- */
.reviews { background: var(--night); color: var(--ivory); text-align: center; overflow: hidden; }
.reviews .eyebrow { color: var(--brass-soft); }
.reviews .stars { color: var(--brass-soft); letter-spacing: .35em; font-size: .95rem; }
.review-quote { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2.3rem); line-height: 1.35; max-width: 880px; margin: 30px auto 24px; text-wrap: balance; min-height: 5.4em; }
.review-author { font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-soft); }
.review-author .review-src { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .3s var(--ease-lux); }
.review-author .review-src:hover { color: var(--brass); }
.review-dots { display: flex; gap: 12px; justify-content: center; margin-top: 36px; }
.review-dots button { width: 34px; height: 2px; border: 0; background: var(--hair-light); cursor: pointer; transition: background .4s; }
.review-dots button.on { background: var(--brass); }
.review-meta { margin-top: 46px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,242,234,.72); }
.review-meta a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(245,242,234,.35); padding-bottom: 1px; transition: border-color .3s, color .3s; }
.review-meta a:hover { color: #fff; border-color: var(--brass-soft); }

/* ------- proces ------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); max-width: 1140px; margin: 0 auto; }
.step { text-align: center; padding: 0 8px; }
.step .n { font-family: var(--serif); font-style: italic; font-size: 3.4rem; color: var(--brass); line-height: 1; }
.step h3 { font-size: 1.35rem; margin: 14px 0 10px; }
.step p { color: var(--ink-soft); font-size: .92rem; max-width: 34ch; margin: 0 auto; }
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; } }

/* ------- formularz ------- */
.inquire { background: var(--alabaster); border-top: 1px solid var(--hair); }
.inquire-wrap { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.inquire-side h2 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3rem); margin: 16px 0 20px; }
.inquire-side p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 26px; }
.inquire-side .contact-line { font-size: .95rem; margin: 8px 0; color: var(--ink); }
.inquire-side .contact-line a { text-decoration: none; border-bottom: 1px solid var(--brass); }
form.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld.full { grid-column: 1 / -1; }
.fld label { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); }
.fld input, .fld select, .fld textarea {
  font-family: var(--sans); font-size: .95rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--hair);
  padding: 10px 2px; outline: none; transition: border-color .4s; border-radius: 0; appearance: none; -webkit-appearance: none;
}
.fld select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A78A4E' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--brass); }
.fld textarea { resize: vertical; min-height: 84px; }
form.lead .btn { grid-column: 1 / -1; justify-self: start; border: 0; cursor: pointer; font-family: var(--sans); }
.form-note { grid-column: 1 / -1; font-size: .78rem; color: var(--ink-soft); }
@media (max-width: 900px) { .inquire-wrap { grid-template-columns: 1fr; } form.lead { grid-template-columns: 1fr; } }

/* ------- footer ------- */
footer { background: var(--night); color: rgba(245,242,234,.75); padding: 64px clamp(20px, 6vw, 80px) 34px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1340px; margin: 0 auto 46px; }
.foot-logo { height: 66px; width: auto; }
.foot-col h3 { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 14px; font-weight: 400; }
.foot-col a, .foot-col span { display: block; font-size: .88rem; text-decoration: none; margin: 7px 0; opacity: .85; }
.foot-col a:hover { color: var(--brass-soft); }
.foot-base { max-width: 1340px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--hair-light); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .72rem; letter-spacing: .12em; opacity: .75; }

/* demo ribbon */
.demo-ribbon {
  position: fixed; bottom: 18px; right: 18px; z-index: 70;
  background: rgba(20,23,15,.85); color: var(--ivory); backdrop-filter: blur(8px);
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(245,242,234,.2);
}
.demo-ribbon b { color: var(--brass-soft); font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .awards-track, .couples-track, .reel-track { animation: none !important; }
  .reel { overflow-x: auto; }
  html.js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto !important; }
}

/* PRESS / RECOGNITION */
/* honeypot — poza ekranem, niewidoczny dla ludzi i czytników, widoczny dla botów */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------- real weddings — indeks 12 wesel; klik w okładkę = galeria pary w lightboxie ------- */
.wed-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px);
  max-width: 1280px; margin: 0 auto; }
.wed-card { text-align: center; }
.wed-cover { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; cursor: zoom-in; border-radius: 2px;
  transition: transform .6s var(--ease-lux), box-shadow .6s var(--ease-lux); }
.wed-card:hover .wed-cover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(20,23,15,.22); }
.wed-card h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--forest); margin-top: 14px; }
.wed-count { display: block; margin-top: 5px; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 1000px) { .wed-index { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .wed-index { grid-template-columns: repeat(2, 1fr); } .wed-card h3 { font-size: 1rem; } }

.press-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1200px; margin: 0 auto; }
.press-item { display: flex; flex-direction: column; align-items: center; gap: 9px; text-decoration: none;
  border: 1px solid rgba(33,40,25,.14); border-radius: 2px; padding: 14px 14px 20px; flex: 1 1 200px; max-width: 218px;
  background: #fff; transition: border-color .5s var(--ease-lux), transform .5s var(--ease-lux); }
.press-item .press-img { width: 100%; height: 150px; object-fit: cover; border-radius: 2px; margin-bottom: 4px; }
.press-item:hover { border-color: var(--brass); transform: translateY(-4px); }
.press-item .pub { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--forest); line-height: 1.1; text-align: center; }
.press-item .lnk { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 560px) { .press-item { flex-basis: 100%; max-width: 100%; padding: 22px 24px; } }

/* consultation-form link inside process step */
.step p a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }
.step p a:hover { color: var(--brass); }

/* inspiration photo upload (inquiry form) */
.fld input[type="file"] { font-family: var(--sans); font-size: .82rem; color: var(--ink-soft); padding: 9px 12px; }
.fld input[type="file"]::file-selector-button { font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); background: transparent; border: 1px solid var(--brass); border-radius: 2px; padding: 7px 14px; margin-right: 12px; cursor: pointer; transition: background .3s var(--ease-lux), color .3s var(--ease-lux); }
.fld input[type="file"]::file-selector-button:hover { background: var(--brass); color: #fff; }

/* touch devices (no hover): reveal hover-gated copy so nothing hides on mobile */
@media (hover: none) {
  .svc p { opacity: 1; max-height: 200px; }
  .folio-card .cap { opacity: 1; transform: none; }
}
