/* ════════════════════════════════════════
   UTILS
════════════════════════════════════════ */
.wrap   { width: var(--w); margin-inline: auto; }
.sec    { padding-block: var(--gap); position: relative; }
.lbl    { font-family: var(--sans); font-size: .58rem; font-weight: 600;
          letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.lead   { font-size: clamp(.9rem,2.5vw,1.05rem); line-height: 1.85; color: var(--tx-sub); }
.sep    { width:100%; height:1px; background: linear-gradient(90deg,transparent,var(--b-mid) 30%,var(--b-mid) 70%,transparent); }
.acc    { width: 40px; height: 1.5px; background: linear-gradient(90deg,var(--gold),var(--gold-hi)); }

.skip {
  position: absolute; top: -100%; left: 1rem;
  padding: .45rem 1rem; background: var(--gold); color: var(--void);
  font-weight: 700; font-size: .78rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 9999;
  transition: top .15s;
}
.skip:focus { top: 0; }

/* ════════════════════════════════════════
   CURSOR — OFF on touch + screens < 1024px
════════════════════════════════════════ */
.cur-c { display: none; }

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  body { cursor: none; }
  .cur-c {
    display: block;
    position: fixed; pointer-events: none; z-index: 9999;
    width: 5px; height: 5px;
    background: var(--gold);
    opacity: .65;
    transform: translate(-50%,-50%) rotate(45deg);
    transition: width var(--tf) var(--ease),
                height var(--tf) var(--ease),
                opacity var(--tf) var(--ease),
                background var(--tf) var(--ease);
    will-change: left, top;
  }
  body.ch .cur-c { width: 7px; height: 7px; opacity: .9; background: var(--gold-hi); }
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: padding var(--tm) var(--ease),
              background var(--tm) var(--ease),
              border-color var(--tm) var(--ease);
}
.nav.stuck {
  padding: .75rem 0;
  background: rgba(3,3,5,.93);
  border-bottom-color: var(--b);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}
.nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
  min-width: 0;
}
.logo-name {
  font-family: var(--serif);
  font-size: clamp(.88rem,2vw,1.05rem);
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--tx);
  white-space: nowrap;
}
.logo-name em { color: var(--gold); font-style: normal; }
.logo-role {
  font-family: var(--sans);
  font-size: .48rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-top: .08rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem,2.5vw,2rem);
}
.nav-a {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tx-sub);
  position: relative;
  transition: color var(--tf) var(--ease);
  white-space: nowrap;
}
.nav-a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--tm) var(--ease);
}
.nav-a:hover, .nav-a[aria-current] { color: var(--gold); }
.nav-a:hover::after, .nav-a[aria-current]::after { width: 100%; }

/* Nav controls */
.nav-ctrl { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* Lock */
.nav-lock {
  width: 30px; height: 30px;
  border: 1px solid var(--b-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-mute);
  transition: all var(--tf) var(--ease);
}
.nav-lock:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); }
.nav-lock svg { width: 12px; height: 12px; }

/* Lang dropdown */
.lang-wrap { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem;
  border: 1px solid var(--b-mid); border-radius: var(--r-pill);
  font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tx-sub);
  transition: all var(--tf) var(--ease);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); }
.lang-btn svg { width: 9px; height: 9px; }
.lang-drop {
  position: absolute; top: calc(100% + .45rem); right: 0;
  background: var(--card); border: 1px solid var(--b-mid); border-radius: var(--r-md);
  overflow: hidden; min-width: 88px;
  box-shadow: var(--sh-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: all var(--tm) var(--ease);
}
.lang-drop.open { opacity: 1; pointer-events: all; transform: none; }
.lang-opt {
  display: block; width: 100%; padding: .5rem .85rem;
  font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tx-sub); text-align: left;
  transition: all var(--tf) var(--ease);
}
.lang-opt:hover, .lang-opt.active { color: var(--gold); background: var(--ggl); }

/* A11y */
.a11y-wrap { position: relative; }
.a11y-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--b-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-mute);
  transition: all var(--tf) var(--ease);
}
.a11y-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); }
.a11y-btn svg { width: 13px; height: 13px; }
.a11y-panel {
  position: absolute; top: calc(100% + .45rem); right: 0;
  width: 200px; background: var(--card);
  border: 1px solid var(--b-mid); border-radius: var(--r-lg);
  padding: .95rem; box-shadow: var(--sh-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(-4px) scale(.97);
  transform-origin: top right;
  transition: all var(--tm) var(--ease);
}
.a11y-panel.open { opacity: 1; pointer-events: all; transform: none; }
.a11y-hd { font-size: .54rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; font-weight: 600; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; padding: .38rem 0; border-bottom: 1px solid var(--b); font-size: .72rem; color: var(--tx-sub); }
.a11y-row:last-child { border-bottom: none; }
.tog { width: 28px; height: 16px; border-radius: 8px; background: var(--raised); position: relative; transition: background var(--tf); flex-shrink: 0; }
.tog.on { background: var(--gold); }
.tog::after { content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; background: #fff; border-radius: 50%; transition: transform var(--tf); }
.tog.on::after { transform: translateX(12px); }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 4.5px; padding: 5px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--tx); border-radius: 2px; transition: all var(--tf) var(--ease); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ─── MOBILE NAV ─── */
@media (max-width: 860px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(280px, 80vw);
    background: var(--ink);
    border-left: 1px solid var(--b);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem 2rem;
    transform: translateX(110%);
    transition: transform var(--tm) var(--out);
    z-index: 199;
  }
  .nav-links.open { transform: none; }
  .nav-a { font-size: .82rem; }
}
@media (max-width: 360px) {
  .a11y-btn { display: none; }
  .lang-btn span:not(.lang-label) { display: none; }
}

/* ════════════════════════════════════════
   HERO — MOBILE FIRST
════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  /* Mobile: generous top for nav + breathing room */
  padding-top: clamp(5.5rem, 15vw, 9.5rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}

/* Backgrounds */
.hbg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hbg-base {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 15%,
    var(--ink) 0%, var(--void) 55%);
}
.hbg-wine {
  position: absolute;
  width: clamp(240px,60vw,680px);
  height: clamp(240px,60vw,680px);
  top: -15%; right: -15%;
  background: radial-gradient(circle, rgba(62,13,30,.22) 0%, transparent 65%);
  animation: gp 12s ease-in-out infinite;
}
.hbg-wine2 {
  position: absolute;
  width: clamp(180px,40vw,420px);
  height: clamp(180px,40vw,420px);
  bottom: 0; left: -12%;
  background: radial-gradient(circle, rgba(62,13,30,.12) 0%, transparent 65%);
  animation: gp 15s ease-in-out 4s infinite;
}
.hbg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(160,120,48,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,120,48,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, black 0%, transparent 70%);
}
.hbg-bar {
  position: absolute; top: 20%; bottom: 20%; left: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--wine-hi) 35%, var(--wine-hi) 65%, transparent);
  opacity: .45;
}
.hbg-noise {
  position: absolute; inset: 0; opacity: .014;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}
@keyframes gp { 0%,100%{opacity:.8;transform:scale(1)} 50%{opacity:1;transform:scale(1.06)} }

.hero-c { position: relative; z-index: 1; }

/* overline */
.h-ov {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: clamp(1.2rem,3vw,1.8rem);
  opacity: 0; animation: fup .85s var(--out) .1s forwards;
}
.h-ov-line { width: 24px; height: 1px; background: var(--wine-txt); flex-shrink: 0; }
.h-ov .lbl { color: var(--tx-mute); letter-spacing: .2em; font-size: .56rem; }

/* Name — SAME size, same weight */
.h-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 9rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.025em;
  color: var(--tx);
  display: block;
  word-break: keep-all;
  white-space: nowrap;
  max-width: 100%;
  opacity: 0; animation: fup 1s var(--out) .28s forwards;
}
/* Small phones: allow natural wrap, reduce to fit viewport */
@media (max-width: 480px) {
  .h-name {
    white-space: normal;
    /* "Karol" and "Spychalski" wrap naturally — same size */
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: .95;
    letter-spacing: -.02em;
  }
}

/* Separator */
.h-sep {
  display: flex; align-items: center; gap: .9rem;
  margin: clamp(1.5rem, 4vw, 2.2rem) 0;
  opacity: 0; animation: fup .75s var(--out) .46s forwards;
}
.h-sep-line {
  width: clamp(60px,12vw,140px); height: 1px;
  background: linear-gradient(90deg,var(--wine-mid),transparent);
}
.h-sep-gem {
  width: 4px; height: 4px;
  background: var(--wine-pale); transform: rotate(45deg); flex-shrink: 0;
}

/* Disciplines */
.h-disc {
  display: flex; align-items: center; gap: clamp(.55rem,2vw,1.1rem);
  flex-wrap: wrap;
  opacity: 0; animation: fup .75s var(--out) .6s forwards;
}
.disc { font-size: clamp(.58rem,1.4vw,.68rem); letter-spacing: .18em; text-transform: uppercase; color: var(--tx-sub); }
.disc-dot { width: 2px; height: 2px; background: var(--gold-dim); border-radius: 50%; flex-shrink: 0; }

/* Tagline */
.h-tag {
  font-family: var(--serif);
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  font-weight: 300; font-style: italic;
  color: var(--tx-wine);
  line-height: 1.65;
  max-width: 440px;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  opacity: 0; animation: fup .75s var(--out) .75s forwards;
}

/* Don't chase line */
.h-chase {
  font-family: var(--sans);
  font-size: clamp(.7rem,1.6vw,.82rem);
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--tx-mute);
  margin-top: .9rem;
  opacity: 0; animation: fup .75s var(--out) .88s forwards;
}

/* CTA */
.h-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  opacity: 0; animation: fup .75s var(--out) 1s forwards;
}

/* Scroll cue */
.h-scroll {
  position: absolute; bottom: clamp(1.2rem,3vw,2rem); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  opacity: 0; animation: fi 1s var(--out) 1.7s forwards;
}
.h-scroll span { font-size: .5rem; letter-spacing: .28em; text-transform: uppercase; color: var(--tx-mute); }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom,var(--gold),transparent); animation: sp 2.5s ease-in-out infinite; }
@keyframes sp   { 0%,100%{opacity:.15;transform:scaleY(.6);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

@keyframes fup  { from{opacity:0;transform:translateY(1.8rem)} to{opacity:1;transform:none} }
@keyframes fi   { from{opacity:0} to{opacity:1} }

/* hide scroll cue on small */
@media (max-width: 500px) { .h-scroll { display: none; } }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 44px;
  padding: .85rem clamp(2.2rem,1.5rem+3vw,3rem);
  border-radius: var(--r-pill);
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1;
  transition: all var(--tm) var(--ease);
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}
.btn svg { width: 9px; height: 9px; flex-shrink: 0; opacity: .6; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hi) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--void);
  padding-left: 10px;
  padding-right: 10px;
}
.btn-gold:hover { background-position: 100% 0; box-shadow: var(--sh-g); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--b-mid); color: var(--tx-sub);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); transform: translateY(-1px); }

.btn-wine {
  background: var(--wine-mid); color: var(--tx); border: 1px solid var(--bw);
}
.btn-wine:hover { background: var(--wine-hi); box-shadow: var(--sh-w); transform: translateY(-1px); }

/* ════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════ */
.sh { margin-bottom: clamp(2rem,4.5vw,3.2rem); }
.sh .lbl { display: block; margin-bottom: .8rem; }
.sh h2 { font-size: clamp(1.7rem,4.5vw,2.8rem); letter-spacing: -.02em; margin-top: .35rem; }
.sh .acc { margin-top: 1.1rem; }

/* ════════════════════════════════════════
   DOMAIN TILES — MOBILE FIRST
════════════════════════════════════════ */
/* Mobile: 1 column */
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
/* Tablet+ : 2 columns */
@media (min-width: 640px) {
  .tiles-grid { grid-template-columns: repeat(2,1fr); }
}

.tile {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--card) 0%, var(--ink) 100%);
  border: 1px solid var(--b);
  /* subtle wine left border — wyczuwalne, nie widoczne */
  border-left: 1.5px solid rgba(184,77,104,.14);
  border-radius: var(--r-xl);
  padding: clamp(1.4rem,3.5vw,2.2rem);
  min-height: clamp(180px,28vw,280px);
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform var(--tm) var(--ease), border-color var(--tm) var(--ease), box-shadow var(--tm) var(--ease), border-left-color var(--tm) var(--ease);
  cursor: none;
  text-decoration: none; color: inherit;
}
.tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--t-acc,var(--gold)) 40%, var(--t-acc,var(--gold)) 60%, transparent);
  opacity: 0; transition: opacity var(--tm);
}
.tile::after {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--t-glow,var(--ggl)), transparent 65%);
  opacity: 0; transition: opacity var(--tm);
}
@media (hover: hover) {
  .tile:hover {
    transform: translateY(-5px);
    border-color: var(--b-hi);
    border-left-color: rgba(184,77,104,.45);
    box-shadow: var(--sh-lg), inset 3px 0 20px rgba(62,13,30,.2);
  }
  .tile:hover::before, .tile:hover::after { opacity: 1; }
}

.tile-p { --t-acc:var(--gold);     --t-glow:var(--ggl2); }
.tile-s { --t-acc:var(--wine-txt); --t-glow:var(--wgl); }
.tile-c { --t-acc:var(--gold-hi);  --t-glow:var(--ggl); }
.tile-b { --t-acc:var(--wine-txt); --t-glow:var(--wgl); }

.tile-ico {
  width: 42px; height: 42px;
  border-radius: var(--r-md); border: 1px solid var(--b-mid);
  background: var(--ggl); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  transition: all var(--tm) var(--ease);
}
.tile-ico svg { width: 18px; height: 18px; }

.tile-n {
  position: absolute; bottom: 1rem; right: 1.3rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: rgba(160,120,48,.04); line-height: 1; user-select: none;
}
.tile-lbl  { font-size: .54rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tile-h    { font-family: var(--serif); font-size: clamp(1.25rem,2.8vw,1.7rem); font-weight: 700; line-height: 1.1; margin-top: auto; }
.tile-txt  { font-size: .82rem; line-height: 1.75; color: var(--tx-sub); }
.tile-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); transition: gap var(--tf);
  margin-top: .2rem;
}
.tile:hover .tile-link { gap: .7rem; }
.tile-link svg { width: 11px; height: 11px; }

/* ════════════════════════════════════════
   PORTFOLIO GRID — MOBILE FIRST
════════════════════════════════════════ */
/* Mobile: 2 columns */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
}
/* Tablet+: 3 columns */
@media (min-width: 560px) {
  .pf-grid { grid-template-columns: repeat(3,1fr); }
}

.pf-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--card);
  cursor: none;
}
/* touch: pointer */
@media (hover: none), (pointer: coarse) { .pf-item { cursor: pointer; } }

.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pf-item:hover img { transform: scale(1.05); }

.pf-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(145deg, var(--card), var(--raised));
}
.pf-ph svg  { width: 22px; height: 22px; color: var(--tx-mute); }
.pf-ph span { font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-mute); text-align: center; }

.pf-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,3,5,.92) 0%, rgba(3,3,5,.5) 40%, transparent 70%);
  opacity: 0; transition: opacity var(--tm) var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(.7rem,2vw,1rem);
}
.pf-item:hover .pf-ov { opacity: 1; }
.pf-ov-cat   { font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.pf-ov-title { font-family: var(--serif); font-size: clamp(.85rem,2vw,.95rem); font-weight: 600; color: var(--tx); line-height: 1.2; }

/* Tap: show overlay on touch */
.pf-item.tapped .pf-ov { opacity: 1; }

.pf-item.hidden { display: none; }

/* Filter bar */
.pf-filters {
  display: flex; align-items: center; gap: .45rem;
  flex-wrap: wrap; margin-bottom: 1.6rem;
}
.pf-fb {
  padding: .38rem .9rem; min-height: 36px;
  border-radius: var(--r-pill);
  font-size: .58rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  border: 1px solid var(--b-mid); color: var(--tx-sub);
  transition: all var(--tf) var(--ease);
}
.pf-fb:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); }
.pf-fb.on { background: linear-gradient(135deg,var(--gold),var(--gold-hi)); color: var(--void); border-color: transparent; }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.lb {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(3,3,5,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tm) var(--ease);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb-inner {
  position: relative;
  max-width: min(860px,92vw);
  max-height: 88dvh;
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
  width: 100%;
}
.lb-img { max-width: 100%; max-height: 68dvh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lb-ph {
  width: min(480px,80vw); height: clamp(220px,38vw,360px);
  background: var(--card); border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem;
  border: 1px solid var(--b);
}
.lb-ph svg { width: 36px; height: 36px; color: var(--tx-mute); }
.lb-ph span { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-mute); text-align: center; max-width: 220px; line-height: 1.6; }
.lb-meta { text-align: center; }
.lb-meta-cat   { font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.lb-meta-title { font-family: var(--serif); font-size: clamp(1rem,2.5vw,1.25rem); font-weight: 600; margin-top: .2rem; }
.lb-close {
  position: absolute; top: -2.6rem; right: 0;
  width: 32px; height: 32px; min-width: 44px; min-height: 44px;
  border: 1px solid var(--b-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-sub); cursor: none;
  transition: all var(--tf);
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-close svg { width: 14px; height: 14px; }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; min-width: 44px; min-height: 44px;
  border: 1px solid var(--b-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-sub); background: rgba(3,3,5,.7);
  transition: all var(--tf); cursor: none;
}
.lb-nav:hover { border-color: var(--gold); color: var(--gold); }
.lb-nav svg { width: 15px; height: 15px; }
.lb-prev { left: clamp(.4rem,2vw,1.2rem); }
.lb-next { right: clamp(.4rem,2vw,1.2rem); }

/* ════════════════════════════════════════
   CONTACT — MOBILE FIRST
════════════════════════════════════════ */
.contact-g {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem,5vw,3.5rem);
}
@media (min-width: 760px) {
  .contact-g { grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,5vw,5rem); }
}

.ci-list { margin-top: 1.4rem; }
.ci {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 0; border-bottom: 1px solid var(--b);
  font-size: .84rem; color: var(--tx-sub);
  transition: color var(--tf);
  min-height: 44px;
}
.ci:hover { color: var(--tx); }
.ci svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.ci a { transition: color var(--tf); word-break: break-all; }
.ci a:hover { color: var(--gold); }

.field { margin-bottom: 1.1rem; }
.field-lbl { display: block; font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .45rem; }
.field-in, .field-ta {
  width: 100%; background: var(--card); border: 1px solid var(--b);
  border-radius: var(--r-md); padding: .82rem 1.05rem;
  color: var(--tx); font-size: .9rem; outline: none;
  transition: all var(--tf) var(--ease);
  /* touch: bigger hit */
  min-height: 44px;
}
.field-in::placeholder, .field-ta::placeholder { color: var(--tx-mute); }
.field-in:focus, .field-ta:focus { border-color: var(--gold); background: var(--raised); box-shadow: 0 0 0 3px var(--ggl); }
.field-ta { resize: vertical; min-height: 110px; }
.form-msg { padding: .7rem 1rem; border-radius: var(--r-md); font-size: .8rem; margin-top: .75rem; display: none; }
.form-msg.ok  { background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.2); color: #6EE7B7; display: block; }
.form-msg.err { background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.18); color: #FCA5A5; display: block; }

/* ════════════════════════════════════════
   FOOTER — MOBILE FIRST
════════════════════════════════════════ */
.footer { padding: clamp(1.8rem,4vw,2.5rem) 0 clamp(1rem,2.5vw,1.5rem); border-top: 1px solid var(--b); }
.footer-i {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: flex-start;
}
@media (min-width: 560px) {
  .footer-i { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
}
.footer-name { font-family: var(--serif); font-size: .95rem; font-weight: 700; }
.footer-name em { color: var(--gold); font-style: normal; }
.footer-copy { font-size: .63rem; color: var(--tx-mute); letter-spacing: .04em; order: 3; width: 100%; }
@media (min-width: 560px) { .footer-copy { width: auto; order: 0; } }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-a { font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; color: var(--tx-mute); transition: color var(--tf); min-height: 44px; display: flex; align-items: center; }
.footer-a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   COOKIE
════════════════════════════════════════ */
.cookie {
  position: fixed; bottom: clamp(.8rem,2vw,1.4rem); left: 50%; z-index: 500;
  transform: translateX(-50%) translateY(130%);
  width: min(500px, calc(100vw - 1.5rem));
  background: linear-gradient(135deg, var(--card), var(--ink));
  border: 1px solid var(--b-mid); border-radius: var(--r-xl);
  padding: clamp(1.1rem,3vw,1.5rem) clamp(1.2rem,3vw,1.6rem);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: var(--sh-lg);
  transition: transform .5s var(--spring);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.ck-txt { flex: 1; min-width: 150px; font-size: .74rem; color: var(--tx-sub); line-height: 1.6; }
.ck-txt strong { color: var(--gold); }
.ck-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.ck-ok { padding: .48rem 1.2rem; min-height: 38px; background: linear-gradient(135deg,var(--gold),var(--gold-hi)); color: var(--void); border-radius: var(--r-pill); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: all var(--tf); }
.ck-ok:hover { box-shadow: var(--sh-g); transform: translateY(-1px); }
.ck-no { padding: .48rem .95rem; min-height: 38px; border: 1px solid var(--b-mid); border-radius: var(--r-pill); font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-mute); transition: all var(--tf); }
.ck-no:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════
   DISCLAIMER (login.html only)
════════════════════════════════════════ */
.disc-back {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(3,3,5,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; animation: fi .5s var(--out) .2s forwards;
}
.disc-modal {
  width: min(560px, 100%);
  background: linear-gradient(145deg, var(--card), var(--ink));
  border: 1px solid var(--b-mid); border-radius: var(--r-xl);
  padding: clamp(1.8rem,5vw,2.8rem);
  box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(1.2rem);
  animation: fup .5s var(--out) .2s forwards, fi .5s var(--out) .2s forwards;
}
.disc-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--wine-txt) 35%, var(--wine-txt) 65%, transparent);
}
.disc-lbl  { color: var(--wine-txt); margin-bottom: .9rem; }
.disc-h    { font-family: var(--serif); font-size: clamp(1.3rem,3.5vw,1.75rem); font-weight: 700; margin-bottom: 1.2rem; }
.disc-body { font-size: .82rem; line-height: 1.8; color: var(--tx-sub); margin-bottom: 1.6rem; }
.disc-body p+p { margin-top: .65rem; }
.disc-body strong { color: var(--tx); }
.disc-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
@media (max-width: 400px) { .disc-actions { flex-direction: column; } .disc-actions .btn { justify-content: center; } }

/* ════════════════════════════════════════
   LOGIN PAGE
════════════════════════════════════════ */
.login-page {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.25rem;
  background: radial-gradient(ellipse 90% 70% at 50% 30%, var(--ink) 0%, var(--void) 55%);
}
.login-card {
  width: min(380px, 100%);
  background: linear-gradient(145deg, var(--card), var(--ink));
  border: 1px solid var(--b-mid); border-radius: var(--r-xl);
  padding: clamp(1.8rem,5vw,2.6rem);
  box-shadow: var(--sh-lg); position: relative; overflow: hidden;
}
.login-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}
.login-logo  { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: 1.8rem; }
.login-logo em { color: var(--gold); font-style: normal; }
.login-h     { font-family: var(--serif); font-size: clamp(1.4rem,3.5vw,1.9rem); font-weight: 700; margin-bottom: .35rem; }
.login-sub   { font-size: .78rem; color: var(--tx-sub); margin-bottom: 1.8rem; line-height: 1.5; }

/* ════════════════════════════════════════
   PAGE TOP (subpages)
════════════════════════════════════════ */
.page-top {
  padding-top: clamp(6rem,14vw,10rem);
  padding-bottom: clamp(2rem,5vw,3.5rem);
}
.back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tx-mute); margin-bottom: 1.8rem;
  transition: color var(--tf); min-height: 44px;
}
.back:hover { color: var(--gold); }
.back svg { width: 11px; height: 11px; }

/* ════════════════════════════════════════
   CERT CARDS — MOBILE FIRST
════════════════════════════════════════ */
.certs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
@media (min-width: 500px) { .certs-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .certs-grid { grid-template-columns: repeat(3,1fr); } }

.cert {
  display: flex; flex-direction: column; gap: .85rem;
  background: linear-gradient(145deg, var(--card), var(--ink));
  border: 1px solid var(--b); border-radius: var(--r-xl);
  padding: clamp(1.4rem,3vw,1.8rem);
  position: relative; overflow: hidden;
  transition: all var(--tm) var(--ease);
  color: inherit; text-decoration: none;
}
.cert::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--c-acc,var(--gold)) 40%, var(--c-acc,var(--gold)) 60%, transparent);
  opacity: 0; transition: opacity var(--tm);
}
@media (hover: hover) {
  .cert:hover { transform: translateY(-4px); border-color: var(--b-hi); box-shadow: var(--sh-lg); }
  .cert:hover::after { opacity: 1; }
}
.cert-top  { display: flex; align-items: center; gap: .8rem; }
.cert-ico  { width: 40px; height: 40px; border-radius: var(--r-md); border: 1px solid var(--b-mid); background: var(--ggl); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cert-badge { padding: .18rem .6rem; border-radius: var(--r-pill); font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cb-g  { background: rgba(160,120,48,.14); color: var(--gold); border: 1px solid rgba(160,120,48,.26); }
.cb-b  { background: rgba(59,130,246,.1);  color: #93C5FD; border: 1px solid rgba(59,130,246,.2); }
.cb-gr { background: rgba(52,211,153,.09); color: #6EE7B7; border: 1px solid rgba(52,211,153,.18); }
.cert-iss   { font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.cert-title { font-family: var(--serif); font-size: clamp(1rem,2.5vw,1.1rem); font-weight: 700; line-height: 1.2; }
.cert-desc  { font-size: .78rem; line-height: 1.7; color: var(--tx-sub); flex: 1; }
.cert-foot  { display: flex; align-items: center; justify-content: space-between; padding-top: .85rem; border-top: 1px solid var(--b); margin-top: auto; }
.cert-date  { font-size: .6rem; letter-spacing: .1em; color: var(--tx-mute); }
.cert-lnk   { display: flex; align-items: center; gap: .32rem; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); transition: gap var(--tf); }
.cert-lnk svg { width: 10px; height: 10px; }

/* ════════════════════════════════════════
   DISC PAGE GRID (subpage portfolio)
════════════════════════════════════════ */
.disc-pg-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
}
@media (min-width: 560px) { .disc-pg-grid { grid-template-columns: repeat(3,1fr); } }

/* ════════════════════════════════════════
   REVEAL
════════════════════════════════════════ */
[data-r] { opacity: 0; transform: translateY(1.8rem); transition: opacity var(--ts) var(--ease), transform var(--ts) var(--ease); }
[data-r].on { opacity: 1; transform: none; }
[data-r][data-d="1"] { transition-delay: 80ms; }
[data-r][data-d="2"] { transition-delay: 160ms; }
[data-r][data-d="3"] { transition-delay: 240ms; }
[data-r][data-d="4"] { transition-delay: 320ms; }

/* ════════════════════════════════════════
   DISC PAGE HERO — zdjęcie + opis
════════════════════════════════════════ */
.disc-hero {
  padding-top: clamp(6rem,14vw,10rem);
  /* bigger bottom gap before gallery */
  padding-bottom: clamp(2.5rem,5vw,4rem);
  position: relative;
}
.disc-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem,4vw,3rem);
  align-items: start;
}
@media (min-width: 760px) {
  /* smaller image column — 45% image, 55% text */
  .disc-hero-inner { grid-template-columns: .9fr 1.1fr; }
}

.disc-hero-img {
  position: relative;
  /* smaller highlight — 3:2 instead of 4:3 */
  aspect-ratio: 3/2;
  max-height: clamp(220px,30vw,380px);
  background: var(--card);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--b);
}
.disc-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.disc-hero-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  background: linear-gradient(145deg, var(--card), var(--raised));
}
.disc-hero-img-ph svg { width: 32px; height: 32px; color: var(--tx-mute); }
.disc-hero-img-ph span {
  font-size: .54rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tx-mute); text-align: center; max-width: 180px; line-height: 1.6;
}

/* wine accent line on left of image */
.disc-hero-img::before {
  content: '';
  position: absolute; top: 15%; bottom: 15%; left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--wine-mid) 40%, var(--wine-mid) 60%, transparent);
  opacity: .5; z-index: 1;
}

.disc-hero-txt { display: flex; flex-direction: column; gap: 1.2rem; }
.disc-hero-eyebrow { display: flex; align-items: center; gap: .75rem; }
.disc-hero-eyebrow-line { width: 20px; height: 1px; background: var(--wine-txt); flex-shrink: 0; }

.disc-hero-h {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.disc-hero-lead {
  font-size: clamp(.88rem, 2vw, 1rem);
  line-height: 1.85;
  color: var(--tx-sub);
}
.disc-hero-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--tx-wine);
  line-height: 1.65;
  padding-left: 1.2rem;
  border-left: 1.5px solid var(--wine-mid);
  margin-top: .4rem;
}
.disc-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: .4rem;
}
.disc-tag {
  padding: .3rem .85rem;
  border: 1px solid var(--b-mid); border-radius: var(--r-pill);
  font-size: .5rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--tx-sub);
}

/* ════════════════════════════════════════
   SLIDER — auto-scroll gallery
════════════════════════════════════════ */
.slider-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.slider-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.slider-hd h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -.015em;
}
.slider-controls { display: flex; gap: .5rem; }
.slider-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--b-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-sub); cursor: none;
  transition: all var(--tf) var(--ease);
  flex-shrink: 0;
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--ggl); }
.slider-btn svg { width: 14px; height: 14px; }

.slider-track-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}
.slider-track {
  display: flex;
  gap: 1rem;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.slider-slide {
  flex-shrink: 0;
  /* show ~2.5 on desktop, ~1.2 on mobile */
  width: clamp(240px, 38vw, 420px);
  aspect-ratio: 3/2;
  background: linear-gradient(145deg, var(--card), var(--raised));
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--b);
  position: relative;
}
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-slide-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .6rem;
}
.slider-slide-ph svg { width: 26px; height: 26px; color: var(--tx-mute); }
.slider-slide-ph span {
  font-size: .5rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tx-mute); text-align: center;
}
.slider-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .9rem 1rem .8rem;
  background: linear-gradient(to top, rgba(3,3,5,.9) 0%, transparent 100%);
  font-size: .56rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tx-sub);
  opacity: 0; transition: opacity var(--tm) var(--ease);
}
.slider-slide:hover .slider-slide-caption { opacity: 1; }

/* dots */
.slider-dots {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-top: 1.2rem;
}
.slider-dot {
  width: 4px; height: 4px;
  background: var(--tx-mute); border-radius: 50%;
  transition: all var(--tf) var(--ease);
  cursor: none;
}
.slider-dot.active { width: 20px; border-radius: 2px; background: var(--gold); }

@media (max-width: 560px) {
  .slider-slide { width: clamp(200px, 75vw, 300px); }
}

/* ════════════════════════════════════════
   O MNIE — about page
════════════════════════════════════════ */
.about-page { min-height: 100dvh; }

.about-hero {
  padding-top: clamp(6.5rem, 15vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
/* atmospheric bg */
.about-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(62,13,30,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(160,120,48,.05) 0%, transparent 60%);
}
.about-overline {
  display: flex; align-items: center; gap: .85rem; margin-bottom: 2rem;
}
.about-overline-line { width: 20px; height: 1px; background: var(--wine-txt); }

.about-name-block {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--tx);
}
.about-role {
  font-size: clamp(.65rem, 1.4vw, .78rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-top: 1.2rem;
  font-family: var(--sans);
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--b);
}
@media (min-width: 720px) {
  .about-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .about-cols { grid-template-columns: 1.2fr 1fr 1fr; }
}

.about-col-title {
  font-size: .56rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.about-col-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--b-mid), transparent);
}

.about-col p {
  font-size: clamp(.86rem, 1.8vw, .96rem);
  line-height: 1.9;
  color: var(--tx-sub);
}
.about-col p + p { margin-top: 1rem; }

/* placeholder text style */
.about-placeholder {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tx-mute);
  font-size: clamp(.9rem, 1.8vw, 1rem);
  line-height: 1.8;
  border-left: 1.5px solid var(--b-mid);
  padding-left: 1rem;
}

/* values / disciplines strip */
.about-strip {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--b);
}
.about-strip-item {
  padding: .45rem 1.1rem;
  border: 1px solid var(--b);
  border-radius: var(--r-pill);
  font-size: .5rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tx-mute);
  transition: all var(--tf) var(--ease);
}
.about-strip-item:hover { border-color: var(--gold); color: var(--gold); }

/* quote block */
.about-quote-block {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  margin-block: clamp(3rem, 6vw, 5rem);
  display: flex; align-items: flex-start; gap: 2rem;
}
.about-quote-mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .7;
  color: var(--wine-mid);
  flex-shrink: 0;
  user-select: none;
}
.about-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--tx-sub);
  line-height: 1.65;
}
.about-quote-text strong { color: var(--tx); font-weight: 600; font-style: normal; }

/* ════════════════════════════════════════
   VIDEO PLAYER — play button overlay
════════════════════════════════════════ */
.vid-wrap {
  position: relative;
  background: var(--card);
  overflow: hidden;
}
.vid-wrap video {
  width: 100%; display: block;
}
.vid-wrap.playing .vid-play-btn { opacity: 0; pointer-events: none; }
.vid-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,3,5,.45);
  cursor: pointer;
  transition: background var(--tm) var(--ease), opacity var(--tm) var(--ease);
}
.vid-play-btn:hover { background: rgba(3,3,5,.3); }
.vid-play-icon {
  width: clamp(48px,8vw,72px);
  height: clamp(48px,8vw,72px);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--tm), transform var(--tm) var(--spring);
  background: rgba(160,120,48,.15);
}
.vid-play-btn:hover .vid-play-icon {
  border-color: var(--gold);
  transform: scale(1.06);
  background: rgba(160,120,48,.25);
}
.vid-play-icon svg {
  width: clamp(18px,3vw,24px);
  height: clamp(18px,3vw,24px);
  color: #fff;
  margin-left: 3px; /* optical center for play triangle */
}
/* thumbnail from poster attr */
.vid-wrap video { object-fit: cover; }
