/* === DESIGN TOKENS === */
:root {
  --c-bg: #FAFAF7;
  --c-bg-warm: #F4F1EA;
  --c-ink: #0B0B0B;
  --c-graphite: #1F1F1F;
  --c-graphite-2: #2A2A2A;
  --c-muted: #6E6A63;
  --c-line: #E5E1D8;
  --c-gold: #B8924D;
  --c-gold-soft: #D4B57A;
  --c-gold-deep: #8E6E36;

  --f-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
::selection { background: var(--c-gold); color: var(--c-bg); }

/* === TYPOGRAPHY === */
.serif { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--c-gold);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.015em; }

.h-display {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.h-display em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 300;
}

.h-section {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.h-section em { font-style: italic; color: var(--c-gold); font-weight: 300; }

.h-3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  font-weight: 500;
}

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--c-graphite);
  max-width: 56ch;
}

/* === LAYOUT === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section-pad {
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(80px, 12vw, 180px);
}

.divider { height: 1px; background: var(--c-line); width: 100%; }

/* === NAV (mobile-first) === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}

/* Fix: when menu is open, drop backdrop-filter so nav-links isn't trapped
   in the new stacking context it creates */
body.menu-open .nav,
body.menu-open .nav.scrolled {
  background: var(--c-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
  position: relative;
  z-index: 55;
}
.brand-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--c-ink);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--c-gold);
  pointer-events: none;
}

/* Mobile: nav-links as fullscreen overlay, hidden by default */
.nav-links {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 22px;
  padding: 40px;
  z-index: 40;
}
.nav-links.open { display: flex; }
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--c-graphite);
  font-family: var(--f-display);
  font-size: 28px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--c-ink); }

/* Mobile: hide CTA, show burger */
.nav-cta { display: none; }

.nav-burger {
  display: flex;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 55;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--c-ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Tablet+: inline nav, hide burger */
@media (min-width: 720px) {
  .nav-inner { gap: 32px; }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: clamp(18px, 2.4vw, 34px);
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .nav-links a { font-family: var(--f-body); font-size: 13px; }
  .nav-cta {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: 1px solid var(--c-ink);
    background: var(--c-ink);
    color: var(--c-bg);
    transition: all 0.25s ease;
    font-weight: 500;
  }
  .nav-cta:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-ink);
  }
  .nav-burger { display: none; }
}

/* === HERO (mobile-first) === */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(40px, 7vw, 80px);
  gap: 24px;
  flex-wrap: wrap;
}
.hero-meta .meta-right {
  text-align: left;
  font-size: 13px;
  color: var(--c-muted);
  max-width: 280px;
  line-height: 1.5;
}
@media (min-width: 720px) {
  .hero-meta .meta-right { text-align: right; }
}

.hero-title { max-width: 18ch; }

.hero-foot {
  margin-top: clamp(50px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .hero-foot { grid-template-columns: 1fr auto auto; gap: 32px; }
}

.hero-blurb {
  max-width: 44ch;
  font-size: 15px;
  color: var(--c-graphite);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid var(--c-ink);
  background: var(--c-ink);
  color: var(--c-bg);
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--f-body);
}
.btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-ink); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.btn .arrow {
  width: 18px; height: 1px; background: currentColor; position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.scroll-indicator .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.hero-ornament {
  position: absolute;
  pointer-events: none;
  color: var(--c-gold);
}
.hero-ornament-1 {
  right: var(--gutter);
  top: 22%;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-gold);
  opacity: 0.6;
  font-weight: 300;
}

/* === IMAGE PLACEHOLDERS === */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--c-bg-warm) 0 16px,
      transparent 16px 32px
    ),
    var(--c-bg);
  border: 1px solid var(--c-line);
  overflow: hidden;
  color: var(--c-muted);
}
.img-ph::before, .img-ph::after {
  content: "";
  position: absolute;
  background: var(--c-gold);
}
.img-ph::before { top: 0; left: 0; width: 24px; height: 1px; }
.img-ph::after { top: 0; left: 0; width: 1px; height: 24px; }
.img-ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: var(--c-bg);
  padding: 6px 10px;
  display: inline-block;
  width: max-content;
  border: 1px solid var(--c-line);
}

/* === SECTION HEAD (mobile-first) === */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 90px);
}
.section-head-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-head-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-gold);
}
@media (min-width: 1024px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
  }
}

/* === ABOUT (mobile-first) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(30px, 5vw, 80px);
  }
}

.about-portrait {
  aspect-ratio: 3/4;
  position: relative;
}
.about-portrait .frame-mark {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.about-portrait .frame-mark.tl { top: -14px; left: 0; }
.about-portrait .frame-mark.br { bottom: -14px; right: 0; }

.about-body p {
  margin: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-graphite);
}
.about-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--c-gold);
  font-weight: 400;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-line);
  margin-top: 50px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .about-facts { grid-template-columns: 1fr 1fr; }
}
.fact {
  background: var(--c-bg);
  padding: 28px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fact-num {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  color: var(--c-ink);
}
.fact-num em { font-style: italic; color: var(--c-gold); }
.fact-lbl {
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

.signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--c-gold);
  margin-top: 28px;
  font-weight: 400;
}

/* === OFFER (mobile-first) === */
.offer-bg {
  background: var(--c-ink);
  color: var(--c-bg);
}
.offer-bg .h-section { color: var(--c-bg); }
.offer-bg .lede { color: rgba(250,250,247,0.7); }
.offer-bg .eyebrow { color: rgba(250,250,247,0.6); }
.offer-bg .section-head-num { color: var(--c-gold-soft); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

.offer-card {
  background: var(--c-ink);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  transition: background 0.4s;
  cursor: default;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { background: var(--c-graphite); }
.offer-card:hover .offer-arrow { transform: translate(6px, -6px); color: var(--c-gold); }

.offer-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold-soft);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.offer-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 400;
  max-width: 14ch;
}
.offer-title em { font-style: italic; color: var(--c-gold-soft); }
.offer-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,250,247,0.65);
  margin-bottom: 28px;
  max-width: 38ch;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  font-size: 13px;
  color: rgba(250,250,247,0.78);
}
.offer-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.offer-list li::before {
  content: "-";
  color: var(--c-gold);
  margin-right: 12px;
}
.offer-list li span:last-child {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(250,250,247,0.45);
}
.offer-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 28px; height: 28px;
  position: relative;
  color: rgba(250,250,247,0.6);
  transition: all 0.35s ease;
}
.offer-arrow::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
}
.offer-arrow::after {
  content: "";
  position: absolute;
  top: 50%; right: 0;
  width: 12px; height: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* === TEAM (mobile-first) === */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.6vw, 36px);
}
@media (min-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card { cursor: default; }
.team-photo {
  aspect-ratio: 3/4;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-photo::after { opacity: 1; }
.team-name {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.1;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-graphite);
}
.team-social {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
}
.team-social a { transition: color 0.2s; }
.team-social a:hover { color: var(--c-gold); }

/* === REFERENCES (mobile-first) === */
.ref-bg { background: var(--c-bg-warm); }

.ref-marquee {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.ref-marquee::-webkit-scrollbar { display: none; }

.ref-card {
  flex: 0 0 clamp(280px, 80vw, 520px);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  scroll-snap-align: start;
}
@media (min-width: 720px) {
  .ref-card { flex: 0 0 clamp(340px, 38vw, 520px); }
}

.ref-quote-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 100px;
  color: var(--c-gold);
  line-height: 0.5;
  margin-bottom: 24px;
  font-weight: 300;
}
.ref-quote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 32px;
  font-style: italic;
}
.ref-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.ref-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-bg-warm);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--c-gold);
  font-style: italic;
  flex-shrink: 0;
}
.ref-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
}
.ref-author-role {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}

.ref-logos {
  margin-top: clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .ref-logos { grid-template-columns: repeat(5, 1fr); }
}
.ref-logo {
  background: var(--c-bg-warm);
  padding: 28px 12px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--c-graphite);
  transition: all 0.3s;
}
.ref-logo:hover { color: var(--c-gold); background: var(--c-bg); }

/* === REALIZACJE (mobile-first) === */
.real-list { border-top: 1px solid var(--c-line); }
.real-row {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
  position: relative;
  cursor: default;
  transition: padding 0.3s;
}
.real-row:hover { padding-left: 16px; }
.real-row:hover .real-title { color: var(--c-gold); }
.real-row:hover .real-arrow { transform: translateX(8px); color: var(--c-gold); }

.real-tag, .real-year { display: none; }

@media (min-width: 720px) {
  .real-row {
    grid-template-columns: 60px 2fr 1.4fr 1fr 80px;
    gap: clamp(16px, 2vw, 32px);
    padding: clamp(24px, 3vw, 42px) 0;
  }
  .real-tag, .real-year { display: block; }
}

.real-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.12em;
}
.real-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  transition: color 0.3s;
  line-height: 1.2;
}
.real-tag {
  font-size: 13px;
  color: var(--c-graphite);
}
.real-year {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}
.real-arrow {
  justify-self: end;
  width: 24px; height: 24px;
  position: relative;
  color: var(--c-muted);
  transition: all 0.3s;
}
.real-arrow::before {
  content: ""; position: absolute;
  top: 50%; left: 0; width: 100%; height: 1px;
  background: currentColor;
}
.real-arrow::after {
  content: ""; position: absolute;
  top: 50%; right: 0;
  width: 10px; height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* === CONTACT (mobile-first) === */
.contact-bg { background: var(--c-ink); color: var(--c-bg); }
.contact-bg .h-section { color: var(--c-bg); }
.contact-bg .h-section em { color: var(--c-gold-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-block .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-gold-soft);
  margin-bottom: 10px;
}
.contact-block .val {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--c-bg);
  line-height: 1.2;
}
.contact-block .val a:hover { color: var(--c-gold); }
.contact-block .sub {
  font-size: 14px;
  color: rgba(250,250,247,0.6);
  margin-top: 8px;
}

.form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(250,250,247,0.5);
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  color: var(--c-bg);
  font-family: var(--f-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--c-gold); }
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--c-ink); }

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(250,250,247,0.6);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox input {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
}
.checkbox input:checked { background: var(--c-gold); border-color: var(--c-gold); }
.checkbox input:checked::after {
  content: ""; position: absolute;
  top: 2px; left: 4px;
  width: 5px; height: 9px;
  border-right: 1.5px solid var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  transform: rotate(45deg);
}

.btn-submit {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-ink);
  justify-content: center;
  padding: 20px 32px;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: var(--c-ink);
}

/* === FOOTER (mobile-first) === */
.footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg);
  color: var(--c-graphite);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 28px;
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col ul a:hover { color: var(--c-gold); }

.footer-brand {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer-brand em { font-style: italic; color: var(--c-gold); }
.footer-tagline { font-size: 14px; color: var(--c-muted); max-width: 32ch; line-height: 1.55; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 16px;
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
