/* ================== TOKENS ================== */
:root {
  --paper:       #F1E4CC;
  --paper-2:     #E8D6B5;
  --paper-3:     #DCC59A;
  --fog:         #F7EFDD;
  --ink:         #1F1812;
  --ink-2:       #3B2F23;
  --ink-3:       #6B5A45;
  --amber:       #B2721F;
  --amber-glow:  #D4913F;
  --amber-soft:  #E8C89A;
  --clay:        #9C3F1F;
  --moss:        #4F6B3A;
  --moss-dark:   #3A5229;

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 14px;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);

  --t-fast: 200ms;
  --t-mid: 400ms;
  --t-slow: 900ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--amber); color: var(--paper); }

/* paper grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.7 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

/* ================== TYPO ================== */
.font-display, h1, h2, h3 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-variation-settings: "SOFT" 50, "opsz" 144, "wght" 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
em { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; color: var(--amber); }

.h2 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h2--light { color: var(--paper); }
.h2--light em { color: var(--amber-glow); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--amber-soft); }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(212,145,63,0.18);
}
.eyebrow--light .dot { background: var(--amber-glow); box-shadow: 0 0 0 4px rgba(212,145,63,0.3); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
}
.lede--light { color: var(--amber-soft); }

/* ================== NAV ================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 18px var(--gutter);
  background: rgba(241, 228, 204, 0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid rgba(31, 24, 18, 0.08);
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  transition: background var(--t-fast);
}
.nav__logo img { width: auto; height: 18px; display: block; }
.nav__brand:hover .nav__logo { background: var(--amber); }
.nav__logo--sm { padding: 7px 10px; border-radius: 4px; }
.nav__logo--sm img { height: 13px; }
.nav__since {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 140px;
}
.nav__links {
  justify-self: center;
  display: flex; gap: 34px;
  font-size: 15px;
  color: var(--ink-2);
}
.nav__links a { position: relative; padding: 8px 0; }
.nav__links a:hover { color: var(--amber); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1.5px; background: var(--amber);
  transition: right var(--t-mid) ease;
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: flex; flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.nav__cta:hover { background: var(--amber); }
.nav__cta-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-glow);
}
.nav__cta:hover .nav__cta-label { color: var(--paper); }
.nav__cta-number {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: auto auto; gap: 12px; }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 140px) var(--gutter) clamp(60px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
.hero__kicker { margin-bottom: 28px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}

.hero__title {
  font-size: clamp(52px, 10vw, 152px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
  max-width: 13ch;
  margin-bottom: 18px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--italic {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 400;
  color: var(--amber);
}
.hero__title .word, .hero__title .char {
  display: inline-block;
  will-change: transform;
}

.hero__scribble {
  width: clamp(180px, 26vw, 320px);
  margin: 4px 0 28px;
  color: var(--clay);
}
.scribble-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.hero__lede {
  font-size: clamp(18px, 1.5vw, 22px);
  max-width: 58ch;
  color: var(--ink-2);
  margin-bottom: 36px;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 72px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--r-md);
  transition: all var(--t-fast) ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(178, 114, 31, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--ticket {
  background: var(--amber);
  color: var(--paper);
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  position: relative;
}
.btn--ticket::before,
.btn--ticket::after {
  content: ''; position: absolute;
  width: 10px; height: 10px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.btn--ticket::before { left: -5px; }
.btn--ticket::after { right: -5px; }
.btn--ticket:hover { background: var(--clay); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding-top: 40px;
  border-top: 1px solid rgba(31,24,18,0.15);
  max-width: 900px;
}
.stat__num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.stat__accent { color: var(--amber); }
.stat__lbl {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.3;
}

.hero__decor {
  position: absolute;
  right: calc(var(--gutter) - 40px);
  top: 50%;
  transform: translateY(-40%) rotate(8deg);
  width: 180px;
  color: var(--ink-2);
  opacity: 0.65;
  pointer-events: none;
  filter: drop-shadow(2px 6px 0 rgba(31,24,18,0.08));
}
@media (max-width: 1100px) { .hero__decor { display: none; } }

/* ================== MARQUEE ================== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(241,228,204,0.1);
  border-bottom: 1px solid rgba(241,228,204,0.1);
}
.marquee__track {
  display: inline-flex;
  gap: 34px;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 500;
  animation: scroll 42s linear infinite;
}
.marquee__track span {
  font-style: italic;
}
.marquee__track span:nth-child(even) {
  font-style: normal;
  color: var(--amber-glow);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================== JAK ================== */
.jak {
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.jak--dark {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
  margin: 0;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  position: relative;
}
.jak--dark .act__art svg { color: var(--amber-soft); }

.jak__intro { max-width: 900px; margin-bottom: 90px; }

.act {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid rgba(31,24,18,0.12);
}
.jak--dark .act { border-top: 1px solid rgba(241,228,204,0.14); max-width: var(--max); margin: 0 auto; }
.act--reverse .act__art { order: 3; }
.act--reverse .act__body { order: 2; }

.act__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 0.85;
  opacity: 0.9;
  font-style: italic;
}
.act__num--light { color: var(--amber-glow); }
.act__num--inline { font-size: clamp(80px, 10vw, 140px); margin-bottom: 24px; }

.act__art {
  color: var(--ink);
  aspect-ratio: 1 / 0.87;
  display: grid; place-items: center;
  padding: 20px;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.jak--dark .act__art {
  background: rgba(241,228,204,0.06);
  border: 1px solid rgba(241,228,204,0.12);
}
.act__art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(31,24,18,0.04) 49%, rgba(31,24,18,0.04) 51%, transparent 52%);
  background-size: 14px 14px;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.act__art svg { width: 100%; height: auto; color: var(--ink); position: relative; z-index: 1; }

.act__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.act__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--amber);
  margin-bottom: 18px;
}
.jak--dark .act__sub { color: var(--amber-glow); }
.act__copy {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 24px;
}
.act__body--light .act__copy { color: var(--amber-soft); }

.act__list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.act__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-2);
}
.act__list li span {
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.act__list--light li { color: var(--amber-soft); }
.act__list--light li span { color: var(--amber-glow); }

@media (max-width: 900px) {
  .act {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .act__num { font-size: 72px; }
  .act--reverse .act__art { order: 2; }
  .act--reverse .act__body { order: 3; }
}

/* SVG hand-drawn reveal */
.draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.6, 0, 0.4, 1);
}

/* ================== KASY ================== */
.kasy {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
}
.kasy__intro {
  max-width: 900px;
  margin-bottom: 80px;
}
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .products { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .products { grid-template-columns: 1fr; } }

.product {
  background: var(--fog);
  border-radius: var(--r-lg);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border: 1px solid rgba(31,24,18,0.08);
  transition: transform var(--t-mid) ease, box-shadow var(--t-mid) ease;
  overflow: hidden;
}
.product::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(212,145,63,0.18), transparent 55%);
  pointer-events: none;
  opacity: 0.8;
}
.product:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow:
    0 2px 0 rgba(31,24,18,0.08),
    0 22px 44px -14px rgba(31,24,18,0.18);
}
.product > * { position: relative; }

.product__tag {
  position: absolute;
  top: 18px; right: -6px;
  background: var(--amber);
  color: var(--paper);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transform: rotate(3deg);
  z-index: 2;
}
.product__tag--alt { background: var(--moss); }
.product__tag--alt2 { background: var(--clay); }

.product__art {
  background: var(--paper-3);
  border-radius: var(--r-md);
  padding: 12px;
  aspect-ratio: 180 / 140;
  display: grid; place-items: center;
  color: var(--ink);
}

.product__kind {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.product__name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.product__desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

.product__specs {
  list-style: none;
  display: grid;
  gap: 4px;
  padding: 14px 0 6px;
  border-top: 1px dashed rgba(31,24,18,0.2);
  font-size: 13.5px;
  color: var(--ink-2);
}
.product__specs li {
  display: flex; align-items: center; gap: 8px;
}
.product__specs li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--amber);
}

.product__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(31,24,18,0.2);
}
.product__price { display: flex; flex-direction: column; }
.product__price-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product__price-note {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.kasy__more {
  margin-top: 60px;
  padding: 40px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.kasy__more p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  max-width: 28ch;
  line-height: 1.2;
}
.kasy__more .btn--primary {
  background: var(--amber);
  color: var(--paper);
}
.kasy__more .btn--primary:hover {
  background: var(--amber-glow);
}

/* ================== WYNIKI ================== */
.wyniki {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
}
.wyniki__head { margin-bottom: 70px; max-width: 900px; }

.wyniki__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .wyniki__grid { grid-template-columns: 1fr 1fr; } }
.bignum {
  background: var(--paper);
  padding: clamp(30px, 4vw, 56px) clamp(22px, 3vw, 36px);
  transition: background var(--t-mid);
}
.bignum:hover { background: var(--paper-2); }
.bignum__value {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(50px, 6vw, 92px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--amber);
  font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 500;
}
.bignum__label {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}

.opinie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .opinie__grid { grid-template-columns: 1fr; } }

.opinia {
  background: var(--fog);
  border: 1px solid rgba(31,24,18,0.08);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: grid;
  gap: 16px;
  align-content: start;
  transform: rotate(-0.4deg);
  transition: transform var(--t-mid);
}
.opinia:nth-child(2) { transform: rotate(0.5deg); }
.opinia:nth-child(3) { transform: rotate(-0.2deg); }
.opinia:hover { transform: rotate(0) translateY(-4px); }

.opinia__stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 3px;
}
.opinia blockquote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.opinia figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31,24,18,0.2);
  font-size: 14px;
  color: var(--ink-2);
}
.opinia__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--amber-glow);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.opinia figcaption strong { display: block; color: var(--ink); font-weight: 600; }
.opinia__tag {
  font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* ================== FAQ ================== */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
}
.faq__head { margin-bottom: 50px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--fog);
  border: 1px solid rgba(31,24,18,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background var(--t-fast);
}
.faq__item:hover { background: var(--paper-2); }
.faq__item[open] { background: var(--paper-2); }
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--amber);
  transition: transform var(--t-mid) cubic-bezier(0.6, 0, 0.4, 1);
  line-height: 1;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__body {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ================== KONTAKT ================== */
.kontakt {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,145,63,0.18), transparent 60%);
  pointer-events: none;
}

.kontakt__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative;
}
@media (max-width: 900px) { .kontakt__inner { grid-template-columns: 1fr; } }

.kontakt__phone {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 30px;
}
.kontakt__phone a {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  transition: color var(--t-fast);
  border-bottom: 3px solid transparent;
}
.kontakt__phone a:hover {
  color: var(--amber-glow);
  border-bottom-color: var(--amber-glow);
}
.kontakt__phone span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-soft);
}
.kontakt__phone--alt a { font-size: clamp(24px, 3vw, 36px); color: var(--amber-soft); }
.kontakt__phone--alt a:hover { color: var(--amber-glow); }
.kontakt__email {
  margin-top: 16px;
  font-size: 17px;
}
.kontakt__email a {
  color: var(--amber-soft);
  border-bottom: 1px solid var(--amber-soft);
  padding-bottom: 2px;
}
.kontakt__email a:hover { color: var(--amber-glow); border-bottom-color: var(--amber-glow); }

.kontakt__card {
  background: rgba(241,228,204,0.04);
  border: 1px solid rgba(241,228,204,0.12);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  backdrop-filter: blur(8px);
}
.kontakt__card-head {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--amber-glow);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(241,228,204,0.18);
}
.kontakt__card-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--paper);
}
.kontakt__card-row + .kontakt__card-row {
  border-top: 1px dashed rgba(241,228,204,0.1);
}
.kontakt__card-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-soft);
  padding-top: 3px;
}

/* ================== FOOTER ================== */
.foot {
  background: var(--ink);
  color: var(--amber-soft);
  padding: 30px var(--gutter);
  border-top: 1px solid rgba(241,228,204,0.08);
  font-size: 14px;
}
.foot__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(241,228,204,0.12);
}
.foot__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--paper);
}
.foot__links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot__links a { transition: color var(--t-fast); }
.foot__links a:hover { color: var(--amber-glow); }
.foot__copy {
  max-width: var(--max);
  margin: 18px auto 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* ================== REVEAL (JS toggled) ================== */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 900ms cubic-bezier(0.22,0.61,0.36,1), transform 900ms cubic-bezier(0.22,0.61,0.36,1);
}
.reveal-stagger > * { opacity: 0; transform: translateY(16px); }
.reveal-stagger.is-in > * {
  opacity: 1; transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
