/* ===== STAR CURSOR — follows mouse with smooth easing ===== */
.star-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s var(--ease), width 0.35s var(--ease), height 0.35s var(--ease);
}
.star-cursor.visible { opacity: 1; }
.star-cursor.hover { width: 56px; height: 56px; }
.star-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--white);
  filter: drop-shadow(0 0 8px rgba(198, 167, 94, 0.55));
  transition: transform 0.5s var(--ease);
}
.star-cursor.hover svg { transform: rotate(72deg); }

/* Hide on touch devices and small screens */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .star-cursor { display: none !important; }
}

/* ===== PAGE COMPONENTS v3 ===== */

/* ===== HERO 3D — star.glb canvas pinned to the right half ===== */
.hero-3d {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  /* leave 120px headroom for the fixed nav bar */
  padding-top: 7rem;
  padding-right: var(--gutter);
}

/* Compact variant — smaller, nudged up-and-right. Used on secondary pages
   where the 3D star is a decorative accent, not the main event. */
.hero-3d--compact {
  width: 28%;
  height: 45%;
  padding-top: 6rem;
  padding-right: var(--gutter);
  /* anchor to the top of the hero instead of stretching */
  top: 0;
  bottom: auto;
}
.hero-3d--compact .hero-3d-fallback svg {
  width: clamp(80px, 9vw, 140px);
  height: clamp(80px, 9vw, 140px);
}
.hero-3d--compact .hero-3d-progress {
  font-size: 0.6rem;
  bottom: 1rem;
}
.hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-3d.ready canvas { opacity: 1; }

/* Fallback — rotating SVG star shown until GLB loads or if it fails */
.hero-3d-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}
.hero-3d.ready .hero-3d-fallback { opacity: 0; }
.hero-3d-fallback svg {
  width: clamp(160px, 22vw, 300px);
  height: clamp(160px, 22vw, 300px);
  fill: var(--white);
  filter: drop-shadow(0 0 40px rgba(198, 167, 94, 0.35));
  animation: hero3dSpin 24s linear infinite;
}
@keyframes hero3dSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-3d-progress {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-3d-progress-value { color: var(--gold); }
.hero-3d.ready .hero-3d-progress,
.hero-3d.failed .hero-3d-progress { display: none; }

/* Show "load failed" note if the GLB could not be loaded at all */
.hero-3d-error {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: none;
}
.hero-3d.failed .hero-3d-error { display: block; }

/* Hero text needs to sit above canvas */
.hero-chapter .chapter-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-3d {
    /* On mobile, tuck it behind the text as a soft background */
    width: 100%;
    opacity: 0.28;
    padding-top: 0;
    padding-right: 0;
  }
  .hero-3d-fallback svg {
    filter: drop-shadow(0 0 30px rgba(198, 167, 94, 0.25));
  }
}

/* ===== MENU LINK — single-line with reserved italic width ===== */
/* Stack normal + italic variants in same grid cell so width is always
   the wider (italic) variant. Prevents reflow on hover. */
.menu-link .ml-text {
  display: inline-grid;
  grid-template-areas: "stack";
  vertical-align: baseline;
}
.menu-link .ml-text > span {
  grid-area: stack;
  white-space: nowrap;
  transition: opacity 0.35s var(--ease);
}
.menu-link .ml-text .ml-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
}
.menu-link:hover .ml-text .ml-normal { opacity: 0; }
.menu-link:hover .ml-text .ml-italic { opacity: 1; }

/* ===== HERO CHAPTER (opening) ===== */
.hero-chapter {
  min-height: 100vh;
  padding: 7rem var(--gutter) 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-chapter .chapter-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 4rem;
}

.hero-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.chapter-light .hero-eyebrow { color: var(--black-muted); }

.hero-meta {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-muted);
  line-height: 1.8;
}

.chapter-light .hero-meta { color: var(--black-muted); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-title .line-mask {
  display: block;
  overflow: hidden;
  line-height: 0.92;
  padding: 0.08em 0.04em 0.18em;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding-bottom: 2rem;
}

.hero-tagline {
  max-width: 40ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  color: var(--white-dim);
}

.chapter-light .hero-tagline { color: var(--black-dim); }

.hero-scroll {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.chapter-light .hero-scroll { color: var(--black-muted); }

/* ===== STATEMENT CHAPTER ===== */
.statement-chapter {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.statement-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 22ch;
}

.statement-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.statement-grid {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid currentColor;
  padding-top: 3rem;
}

.statement-grid > div {
  border-left: 1px solid;
  padding-left: 1.5rem;
  opacity: 0.6;
}

.chapter-dark .statement-grid > div { border-color: var(--line-dark); }
.chapter-light .statement-grid > div { border-color: var(--line-light); }

.statement-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1;
  font-style: italic;
}

.statement-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ===== CAROUSEL 3D chapter ===== */
.carousel-chapter {
  min-height: 100vh;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-head {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 4rem;
}

.carousel-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.carousel-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.carousel-head .lead { margin-top: 1.5rem; margin-left: auto; margin-right: auto; max-width: 50ch; }

.carousel-stage {
  position: relative;
  width: 100%;
  height: 520px;
  perspective: 1800px;
  perspective-origin: center;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 400px;
  margin: -200px 0 0 -140px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease), opacity 0.6s, box-shadow 0.6s;
  background: var(--black-95);
  border: 1px solid var(--line-dark);
}

.chapter-light .carousel-card { background: var(--white-95); border-color: var(--line-light); }

.carousel-card.active {
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  z-index: 10;
}

.chapter-light .carousel-card.active { box-shadow: 0 40px 80px rgba(0,0,0,0.18); }

.carousel-card .card-img {
  position: absolute;
  inset: 0;
}

.carousel-card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.3rem 1.3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  color: var(--white);
}

.chapter-light .carousel-card .card-body {
  background: linear-gradient(to top, rgba(245,245,243,0.95), transparent);
  color: var(--black);
}

.carousel-card .card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.carousel-card .card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.carousel-card .card-handle {
  font-size: 0.75rem;
  opacity: 0.6;
}

.carousel-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 var(--gutter);
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
}

.carousel-arrow:hover { background: currentColor; }

.chapter-dark .carousel-arrow:hover svg { stroke: var(--black); }
.chapter-light .carousel-arrow:hover svg { stroke: var(--white); }

.carousel-count {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  min-width: 80px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.carousel-count em {
  color: var(--gold);
  font-style: normal;
}

.carousel-bar {
  width: 140px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  position: relative;
}

.carousel-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  width: var(--progress, 0%);
  transition: width 0.6s var(--ease);
  opacity: 3;
}

/* ===== TALENTS GRID (talents.html) ===== */
.talents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.talent-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-95);
  transition: transform 0.6s var(--ease);
}

.chapter-light .talent-card { background: var(--white-95); }

.talent-card:hover { transform: translateY(-6px); }

.talent-card .card-img {
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.talent-card:hover .card-img { transform: scale(1.06); }

.talent-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.4rem 1.4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.94), transparent);
  color: var(--white);
  z-index: 2;
}

.chapter-light .talent-card .card-body {
  background: linear-gradient(to top, rgba(245,245,243,0.94), transparent);
  color: var(--black);
}

.talent-card .card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.talent-card .card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.talent-card .card-handle { font-size: 0.75rem; opacity: 0.6; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.chapter-dark .filter-btn { color: var(--white-dim); border-color: var(--line-dark); }
.chapter-light .filter-btn { color: var(--black-dim); border-color: var(--line-light); }

.filter-btn:hover { color: inherit; border-color: currentColor; }
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ===== SERVICES LIST ===== */
.services-list {
  margin-top: 4rem;
  border-top: 1px solid;
  border-color: inherit;
}

.chapter-dark .services-list { border-color: var(--line-dark); }
.chapter-light .services-list { border-color: var(--line-light); }

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.3fr 60px;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid;
  align-items: baseline;
  cursor: pointer;
  transition: padding 0.5s var(--ease);
  position: relative;
}

.chapter-dark .service-row { border-color: var(--line-dark); }
.chapter-light .service-row { border-color: var(--line-light); }

.service-row:hover { padding-left: 1rem; }

.service-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}

.service-row:hover .service-title { font-style: italic; font-weight: 300; color: var(--gold); }

.service-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.72;
}

.service-arrow {
  justify-self: end;
  width: 32px;
  transition: transform 0.4s;
}

.service-row:hover .service-arrow { transform: translateX(8px); }

/* ===== CASES GRID ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.case-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.case-card:nth-child(even) { transform: translateY(40px); }

.case-card .card-img {
  position: absolute;
  inset: 0;
  transition: transform 1.4s var(--ease);
}

.case-card:hover .card-img { transform: scale(1.08); }

.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 50%);
  pointer-events: none;
}

.chapter-light .case-card::after {
  background: linear-gradient(to top, rgba(11,11,13,0.86) 0%, transparent 45%);
}

.case-card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem;
  z-index: 2;
  color: var(--white);
}

.case-card .card-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.case-card .card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.case-card .card-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.case-card .card-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0.75;
  flex-wrap: wrap;
}

/* ===== POLSKA PRESS CHAPTER ===== */
.pp-chapter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pp-lock {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pp-lock .x {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: 2.5rem;
  color: var(--gold);
}

.pp-lock img { width: 56px; height: 56px; object-fit: contain; }

.pp-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  overflow-wrap: break-word;
}

.pp-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.pp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.chapter-dark .pp-stats { border-color: var(--line-dark); }
.chapter-light .pp-stats { border-color: var(--line-light); }

.pp-stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.chapter-dark .pp-stat { border-color: var(--line-dark); }
.chapter-light .pp-stat { border-color: var(--line-light); }

.pp-stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.pp-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  opacity: 0.72;
}

/* ===== PROCESS CHAPTER (apple-style steps) ===== */
.process-chapter {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--chapter-pad) var(--gutter);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.process-left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.process-left h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  padding: 2rem 0;
  border-bottom: 1px solid;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  transition: opacity 0.4s;
}

.chapter-dark .process-step { border-color: var(--line-dark); }
.chapter-light .process-step { border-color: var(--line-light); }

.process-step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.process-step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.process-step-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.72;
  line-height: 1.5;
}

/* ===== CTA CHAPTER ===== */
.cta-chapter {
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}

.cta-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.cta-lead {
  max-width: 50ch;
  margin: 0 auto 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 30ch;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover { color: var(--gold); padding-left: 0.4rem; }

.footer-bot {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white-muted);
}

/* ===== CONTACT FORM ===== */
.contact-chapter {
  padding: var(--chapter-pad) var(--gutter);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info dt {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
  margin-top: 1.8rem;
}

.contact-info dt:first-child { margin-top: 0; }

.contact-info dd {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.2;
}

.contact-info dd a { transition: color 0.3s; }
.contact-info dd a:hover { color: var(--gold); }

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid;
}

.chapter-dark .tabs { border-color: var(--line-dark); }
.chapter-light .tabs { border-color: var(--line-light); }

.tab-btn {
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}

.tab-btn:hover { opacity: 1; }
.tab-btn.active {
  opacity: 1;
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.form { display: none; flex-direction: column; gap: 1.25rem; }
.form.active { display: flex; animation: fu 0.5s var(--ease); }

@keyframes fu {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
  font-family: var(--font-body);
  font-size: 1rem;
  color: inherit;
  transition: border-color 0.3s;
}

.chapter-dark .field input,
.chapter-dark .field textarea,
.chapter-dark .field select { border-color: var(--line-dark); }

.chapter-light .field input,
.chapter-light .field textarea,
.chapter-light .field select { border-color: var(--line-light); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { min-height: 140px; resize: vertical; padding: 0.9rem 0; }

.form .btn { align-self: flex-start; margin-top: 1rem; }

/* ===== BIG STATEMENT TYPO (Apple-style) ===== */
.big-statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 10rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  text-align: center;
}

.big-statement em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.big-statement .line {
  display: block;
  overflow: hidden;
}

.big-statement-sub {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.72;
}

/* ===== VALUES (about) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid;
}

.chapter-dark .values-grid { border-color: var(--line-dark); }
.chapter-light .values-grid { border-color: var(--line-light); }

.value-item {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid;
}

.chapter-dark .value-item { border-color: var(--line-dark); }
.chapter-light .value-item { border-color: var(--line-light); }

.value-item:last-child { border-right: none; }

.value-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.value-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.value-item p {
  font-size: 0.92rem;
  opacity: 0.72;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .pp-chapter-inner,
  .process-inner,
  .contact-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-sub { grid-template-columns: 1fr; gap: 2rem; }
  .statement-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; border-top: 1px solid; }
  .value-item:nth-child(2) { border-right: none; }
  .value-item:nth-child(odd) { border-right: 1px solid var(--line-dark); }
  .chapter-light .value-item:nth-child(odd) { border-right: 1px solid var(--line-light); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card:nth-child(even) { transform: none; }
  .service-row { grid-template-columns: 40px 1fr 30px; }
  .service-desc { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .carousel-card { width: 220px; height: 320px; margin: -160px 0 0 -110px; }
  .carousel-stage { height: 420px; }
  .hero-top { position: relative; top: auto; margin-bottom: 3rem; }
}

@media (max-width: 600px) {
  .statement-grid { grid-template-columns: 1fr; }
  .pp-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
