/* ============================================
   PEER JÜLICH — DESIGN SYSTEM v2
   Warm editorial + bento grid + newsletter-first
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --cream: #FAF3DD;
  --cream-light: #FFF8E7;
  --cream-card: #FFFCF2;
  --ink: #1a0e07;
  --ink-soft: #2D1810;
  --ink-mute: #8B7B6E;
  --line: rgba(26, 14, 7, 0.12);
  --line-strong: rgba(26, 14, 7, 0.25);
  --orange: #F4A95C;
  --orange-deep: #E85D2F;
  --orange-soft: #FFD9AC;
  --green: #87B66B;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-lg: 24px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: "ss01", "ss02";
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--orange-deep); color: var(--cream); }

.serif {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.06  0 0 0 0 0.03  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: multiply;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(250, 243, 221, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--orange-deep);
  display: flex; align-items: center; gap: 8px;
  transition: transform .25s ease;
}
.nav__logo:hover { transform: rotate(-2deg) scale(1.04); }
.nav__logo span:last-child {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__pills {
  display: flex; gap: 6px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: 999px;
}
.nav__pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  font-size: 13px; font-weight: 500;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .25s ease;
}
.nav__pill__num {
  font-family: var(--serif); font-weight: 600;
  font-size: 11px; color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.nav__pill:hover { background: var(--cream); color: var(--ink); }
.nav__pill.is-active { background: var(--ink); color: var(--cream); }
.nav__pill.is-active .nav__pill__num { color: var(--orange); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px;
  font-size: 13px; font-weight: 500;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  transition: all .25s ease;
}
.nav__cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav__pills { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px; font-size: 14px; font-weight: 500;
  border-radius: 999px;
  transition: all .3s ease;
  white-space: nowrap; cursor: pointer; border: 0;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--secondary { background: var(--orange-deep); color: var(--cream); }
.btn--secondary:hover { background: var(--ink); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--big { padding: 22px 34px; font-size: 16px; }
.btn--orange { background: var(--orange-deep); color: var(--cream); }
.btn--orange:hover { background: var(--ink); transform: translateY(-2px); }
.btn__arrow { transition: transform .3s ease; }
.btn:hover .btn__arrow { transform: translate(4px, -2px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(60px, 10vw, 120px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__meta .dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--orange);
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic; color: var(--orange-deep);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.hero__sub {
  max-width: 720px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.hero__sub strong {
  color: var(--ink); font-weight: 600;
  background: linear-gradient(to top, var(--orange-soft) 30%, transparent 30%);
  padding: 0 4px;
}
.hero__sub a {
  color: var(--orange-deep);
  border-bottom: 2px solid var(--orange-soft);
  transition: border-color .2s;
}
.hero__sub a:hover { border-color: var(--orange-deep); }
.hero__row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__photo {
  display: inline-block;
  width: clamp(60px, 8vw, 100px); height: clamp(60px, 8vw, 100px);
  border-radius: 999px;
  background: var(--orange-soft);
  vertical-align: middle;
  margin: 0 0.1em;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 4px var(--cream);
}
.hero__photo::after {
  content: '👋';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(28px, 4vw, 44px);
  background: var(--orange-soft);
}
.hero-reveal { display: block; overflow: hidden; }
.hero-reveal > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-reveal:nth-child(2) > span { animation-delay: 0.12s; }
.hero-reveal:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise { to { transform: translateY(0); } }

/* ============================================
   STATS BAR (social proof under hero)
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell__num {
  font-family: var(--serif); font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1; color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-cell__num em { color: var(--orange-deep); font-style: italic; }
.stat-cell__label {
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 800px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--cream-light);
}
.marquee__track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 4.2vw, 56px);
  color: var(--orange-deep);
  animation: scroll 40s linear infinite;
}
.marquee__track > * { flex-shrink: 0; }
.marquee__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(70px, 10vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.section--alt {
  max-width: none;
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--alt .section__inner { max-width: var(--max); margin: 0 auto; }
.section--ink {
  max-width: none;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--ink .section__inner { max-width: var(--max); margin: 0 auto; }
.section--ink .section__title { color: var(--cream); }
.section--ink .section__title em { color: var(--orange); }
.section--ink .eyebrow { color: rgba(250, 243, 221, 0.6); }
.section--ink .eyebrow__num { color: var(--orange); }

.section__head {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow__num {
  font-family: var(--serif); font-weight: 700;
  color: var(--orange-deep);
  font-size: 14px;
  letter-spacing: 0;
}
.section__title {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section__title em {
  color: var(--orange-deep); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.section__sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-text {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.about-text p { margin-bottom: 26px; }
.about-text strong {
  color: var(--ink); font-weight: 600;
  background: linear-gradient(to top, var(--orange-soft) 35%, transparent 35%);
  padding: 0 4px;
}
.about-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.about-card h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-card ul { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-card li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.about-card li:first-child { border-top: 0; padding-top: 0; }
.about-card li span:first-child { color: var(--ink-mute); }
.about-card li span:last-child { color: var(--ink); font-weight: 500; }

/* ============================================
   BENTO GRID — Featured projects on home
   1 hero card + 2 supports
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento__item {
  display: flex; flex-direction: column;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.bento__item--hero {
  grid-column: 1 / -1;
  min-height: 360px;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.bento__item--hero::before {
  content: '';
  position: absolute; top: -50%; left: -30%;
  width: 100%; height: 200%;
  background: radial-gradient(circle at center, rgba(244, 169, 92, 0.18), transparent 60%);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}
.bento__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(232, 93, 47, 0.18);
}
.bento__item--hero:hover { box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4); }
.bento__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: clamp(40px, 6vw, 80px);
  position: relative; z-index: 1;
}
.bento__num {
  font-family: var(--serif); font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--orange-deep);
}
.bento__item--hero .bento__num { color: var(--orange); }
.bento__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 999px;
}
.bento__tag--green { background: rgba(135, 182, 107, 0.2); color: #5a8042; }
.bento__tag--cream { background: var(--cream); color: var(--ink); }
.bento__title {
  font-family: var(--serif); font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
  position: relative; z-index: 1;
}
.bento__item--hero .bento__title {
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--cream);
}
.bento__item--hero .bento__title em {
  color: var(--orange);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.bento__desc {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: auto;
  padding-bottom: 28px;
  position: relative; z-index: 1;
}
.bento__item--hero .bento__desc {
  color: rgba(250, 243, 221, 0.8);
  font-size: 17px;
  max-width: 560px;
}
.bento__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.bento__item--hero .bento__foot {
  border-top-color: rgba(250, 243, 221, 0.15);
}
.bento__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: gap .3s ease, color .3s ease;
}
.bento__item--hero .bento__cta { color: var(--orange); }
.bento__item:hover .bento__cta { gap: 14px; color: var(--orange-deep); }
.bento__item--hero:hover .bento__cta { color: var(--orange); }

@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; }
  .bento__item--hero { grid-column: 1; }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8%, 6%); }
}

/* ============================================
   GENERAL CARDS (used for service grids etc.)
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }
.card {
  display: flex; flex-direction: column;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.card:hover {
  border-color: var(--orange-deep);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(232, 93, 47, 0.18);
}
.card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 60px;
}
.card__num {
  font-family: var(--serif); font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--orange-deep);
}
.card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 999px;
}
.card__tag--green { background: rgba(135, 182, 107, 0.2); color: #5a8042; }
.card__tag--ink { background: var(--ink); color: var(--cream); }
.card__title {
  font-family: var(--serif); font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
}
.card__desc {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: auto;
  padding-bottom: 28px;
}
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: gap .3s ease, color .3s ease;
}
.card:hover .card__cta { gap: 14px; color: var(--orange-deep); }

/* ============================================
   PROJECTS LIST (long rows on projects page)
   ============================================ */
.projects-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.project-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 32px;
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: padding .4s ease;
  cursor: pointer;
}
.project-row:hover { padding-left: 16px; }
.project-row__num {
  font-family: var(--serif); font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: var(--orange-deep);
  padding-top: 10px;
}
.project-row__title {
  font-family: var(--serif); font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color .3s ease;
}
.project-row:hover .project-row__title { color: var(--orange-deep); }
.project-row__desc {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 14px;
}
.project-row__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px; font-weight: 500;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mute);
}
.project-row__action {
  display: flex; align-items: center; justify-content: flex-end;
  padding-top: 8px;
}
.project-row__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all .3s ease;
}
.project-row__cta:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
@media (max-width: 800px) {
  .project-row { grid-template-columns: 50px 1fr; gap: 16px; }
  .project-row__action {
    grid-column: 1 / -1; padding-left: 50px; justify-content: flex-start;
    margin-top: 4px;
  }
}

/* ============================================
   NEWSLETTER — home callout + dedicated page
   ============================================ */
.newsletter-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
}
.newsletter-card::before {
  content: '';
  position: absolute; top: -50%; left: -30%;
  width: 160%; height: 200%;
  background: radial-gradient(circle at center, rgba(244, 169, 92, 0.22), transparent 55%);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}
.newsletter-card__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) {
  .newsletter-card__inner { grid-template-columns: 1fr; gap: 40px; }
}
.newsletter-card__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.newsletter-card__title {
  font-family: var(--serif); font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--cream);
}
.newsletter-card__title em {
  color: var(--orange);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.newsletter-card__desc {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 243, 221, 0.75);
  margin-bottom: 28px;
  max-width: 480px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newsletter-form__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(250, 243, 221, 0.08);
  border: 1px solid rgba(250, 243, 221, 0.18);
  padding: 6px;
  border-radius: 999px;
  align-items: center;
}
.newsletter-form__input {
  flex: 1; min-width: 200px;
  background: transparent; border: 0;
  padding: 12px 18px;
  color: var(--cream);
  font-size: 15px;
  outline: none;
}
.newsletter-form__input::placeholder { color: rgba(250, 243, 221, 0.45); }
.newsletter-form__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-size: 14px; font-weight: 500;
  background: var(--orange-deep); color: var(--cream);
  border-radius: 999px;
  transition: all .3s ease;
  cursor: pointer; border: 0;
  white-space: nowrap;
}
.newsletter-form__btn:hover { background: var(--orange); color: var(--ink); }
.newsletter-form__btn .btn__arrow { transition: transform .3s ease; }
.newsletter-form__btn:hover .btn__arrow { transform: translate(4px, -2px); }
.newsletter-form small {
  font-size: 12px;
  color: rgba(250, 243, 221, 0.5);
  letter-spacing: 0.02em;
  padding-left: 8px;
}
.newsletter-status {
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
}
.newsletter-status.is-pending {
  display: block;
  background: rgba(244, 169, 92, 0.15);
  color: var(--orange);
  border: 1px solid rgba(244, 169, 92, 0.4);
}
.newsletter-card__bullets {
  display: flex; flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(250, 243, 221, 0.85);
}
.newsletter-card__bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(250, 243, 221, 0.12);
}
.newsletter-card__bullets li:first-child { border-top: 0; }
.newsletter-card__bullets b {
  font-family: var(--serif); font-weight: 700;
  font-style: italic;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 14px;
  min-width: 24px;
}

/* Dedicated newsletter page benefits grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.benefit__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.benefit__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit__desc {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================
   FORM (inquiry, dark bg)
   ============================================ */
.form-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(70px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.form-section .section__inner { max-width: 900px; margin: 0 auto; }
.form-section .section__title { color: var(--cream); }
.form-section .section__title em { color: var(--orange); }
.form-section .eyebrow { color: rgba(250, 243, 221, 0.6); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row--full { grid-column: 1 / -1; }
.form__label {
  font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250, 243, 221, 0.65);
  font-weight: 500;
}
.form__input,
.form__textarea,
.form__select {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(250, 243, 221, 0.25);
  padding: 14px 0;
  color: var(--cream);
  font-size: 16px;
  outline: none;
  transition: border-color .3s ease;
  width: 100%;
  border-radius: 0;
}
.form__textarea {
  min-height: 120px; resize: vertical;
  font-family: var(--sans);
}
.form__select {
  appearance: none;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23FAF3DD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 4px center;
  padding-right: 28px;
}
.form__select option { background: var(--ink); color: var(--cream); }
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-color: var(--orange); }
.form__input::placeholder, .form__textarea::placeholder { color: rgba(250, 243, 221, 0.35); }
.form__submit {
  grid-column: 1 / -1;
  margin-top: 16px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.form__submit small {
  color: rgba(250, 243, 221, 0.5);
  font-size: 12px;
}
.form-status {
  grid-column: 1 / -1;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(135, 182, 107, 0.18);
  color: var(--green);
  border: 1px solid var(--green);
}
.form-status.is-error {
  display: block;
  background: rgba(232, 93, 47, 0.15);
  color: var(--orange);
  border: 1px solid var(--orange-deep);
}
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

/* ============================================
   SOCIALS LIST
   ============================================ */
.socials { border-top: 1px solid var(--line); }
.social {
  display: grid;
  grid-template-columns: 60px 1.2fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .3s ease, padding-right .3s ease, color .3s ease;
}
.social::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.socials li { position: relative; overflow: hidden; }
.social:hover { padding-left: 24px; padding-right: 24px; }
.social:hover::before { transform: scaleX(1); }
.social__num {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: 14px;
  color: var(--orange-deep);
}
.social__name {
  font-family: var(--serif); font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
}
.social__handle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
}
.social__arrow {
  font-size: 22px;
  transition: transform .3s ease;
}
.social:hover .social__arrow { transform: translateX(8px) rotate(-12deg); }
@media (max-width: 700px) {
  .social { grid-template-columns: 30px 1fr auto; gap: 12px; }
  .social__handle { display: none; }
}

/* ============================================
   CTA BLOCK (bottom of pages)
   ============================================ */
.cta-block {
  margin: 80px auto 0;
  padding: clamp(48px, 7vw, 96px);
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--max);
}
.cta-block::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(244, 169, 92, 0.18), transparent 60%);
  animation: drift 14s ease-in-out infinite;
}
.cta-block__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
}
.cta-block__title {
  font-family: var(--serif); font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin-bottom: 32px;
  position: relative;
}
.cta-block__title em {
  color: var(--orange);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.cta-block__row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.cta-block .btn--primary { background: var(--cream); color: var(--ink); }
.cta-block .btn--primary:hover { background: var(--orange); color: var(--ink); }

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-header__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.page-header__title {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(60px, 12vw, 180px);
  line-height: 0.86; letter-spacing: -0.045em;
  color: var(--orange);
  margin-bottom: 32px;
}
.page-header__title em {
  color: var(--orange-deep);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.page-header__sub {
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--cream-light);
  padding: 64px var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 56px;
}
@media (max-width: 800px) {
  .footer__row { grid-template-columns: 1fr; gap: 32px; }
}
.footer__col h4 {
  font-family: var(--serif); font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--ink);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.footer__col ul li a:hover { color: var(--orange-deep); }
.footer__brand p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}
.footer__brand h3 {
  font-family: var(--serif); font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--orange-deep);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer__big {
  font-family: var(--serif); font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--orange);
  user-select: none;
  margin-top: 24px;
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   UTILS
   ============================================ */
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
.hide-desktop { display: none !important; }
@media (max-width: 700px) { .hide-desktop { display: inline-flex !important; } }
