/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Instrument+Sans:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-mid:   #161616;
  --grey-light: #f2f0ed;
  --grey-mid:   #e8e4df;
  --white:      #faf9f7;
  --blue:       #2b7de9;
  --blue-light: #4a9eff;
  --text-dark:  #0a0a0a;
  --text-light: #faf9f7;
  --muted-dark: rgba(250,249,247,0.58);
  --muted-light:rgba(10,10,10,0.5);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Instrument Sans', sans-serif;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
  padding: 14px 0;
}
.site-nav.scrolled { border-bottom-color: rgba(255,255,255,0.12); }
.nav-logo-img { height: 100px; width: auto; display: block; }

/* Nav links — horizontal on lg+, vertical in collapsed mobile menu */
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(250,249,247,0.65);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }

/* Mobile: stack vertically inside collapsed panel */
@media (max-width: 991px) {
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child a { border-bottom: none; }
}

/* Bootstrap navbar-toggler overrides */
.navbar-toggler { border-color: rgba(255,255,255,0.2); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28250,249,247,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Collapsed menu panel background */
.navbar-collapse { background: rgba(10,10,10,0.97); }
@media (min-width: 992px) { .navbar-collapse { background: transparent; } }

/* ── SOCIAL SIDEBAR ── */
.social-bar {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}
@media (max-width: 767px) { .social-bar { display: none; } }
.social-icon {
  width: 30px; height: 30px;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--blue); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(43,125,233,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(43,125,233,0.06) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 108px);
  line-height: 1.0;
  font-weight: 400;
}
.hero-title em { font-style: italic; color: rgba(250,249,247,0.62); }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 440px;
}
.hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute;
  bottom: 28px; right: 48px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dark);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.22);
}
@media (max-width: 575px) { .hero-scroll { display: none; } }

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  border: none;
}
.btn-primary-custom:hover { background: var(--blue-light); color: var(--white); }
.btn-ghost-custom {
  display: inline-block;
  color: var(--muted-dark);
  padding: 13px 0;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-custom:hover { color: var(--white); border-color: var(--white); }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--blue);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 44px;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 44px;
}
.marquee-item::after { content: '·'; color: rgba(255,255,255,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
}
.section-title em { font-style: italic; }

/* ── DAD ACRONYM ── */
#dad-section { background: var(--grey-light); padding: 100px 0; }
.dad-header { text-align: center; margin-bottom: 64px; }
.dad-header p { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 14px; }
.dad-header h2 { font-family: var(--serif); font-size: clamp(32px,5vw,56px); color: var(--text-dark); font-weight: 400; line-height: 1.1; }

.dad-row { margin: 0; }
.dad-col { padding: 0; }
.dad-col + .dad-col { border-left: 2px solid var(--grey-light); }
@media (max-width: 767px) {
  .dad-col + .dad-col { border-left: none; border-top: 2px solid var(--grey-light); }
}

.dad-card {
  background: var(--white);
  padding: 44px 36px;
  height: 100%;
  transition: background 0.3s;
  cursor: default;
}
.dad-card:hover { background: var(--text-dark); }
.dad-card:hover .dc-letter { color: var(--blue-light); }
.dad-card:hover .dc-word   { color: var(--white); }
.dad-card:hover .dc-desc   { color: rgba(250,249,247,0.58); }
.dc-letter {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 88px);
  font-weight: 400;
  color: var(--grey-mid);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.dc-word {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.dc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-light);
  transition: color 0.3s;
}

/* ── STATS ── */
#stats { background: var(--black); padding: 100px 0; }
.stats-intro { text-align: center; margin-bottom: 64px; }
.stats-intro p { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px; }
.stats-intro h2 { font-family: var(--serif); font-size: clamp(26px,4vw,46px); color: var(--white); font-weight: 400; max-width: 540px; margin: 0 auto; line-height: 1.2; }

.stats-grid { border: 1px solid rgba(255,255,255,0.08); }
.stat-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; line-height: 1.6; color: var(--muted-dark); }

/* ── FEATURED EPISODE ── */
#featured-episode { background: var(--dark); padding: 100px 0; }
.ep-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
  margin-bottom: 44px;
}
.ep-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.ep-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 16px; display: block; font-weight: 500;
}
.ep-guest-name {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400; color: var(--white);
  line-height: 1.0; margin-bottom: 16px;
}
.ep-guest-name em { font-style: italic; color: rgba(250,249,247,0.55); display: block; }
.ep-tagline {
  font-family: var(--serif);
  font-size: clamp(15px,1.8vw,18px);
  font-style: italic;
  color: rgba(250,249,247,0.8);
  line-height: 1.5; margin-bottom: 24px;
}
.ep-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.ep-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all 0.2s;
}
.ep-btn-main { background: var(--blue); color: var(--white); }
.ep-btn-main:hover { background: var(--blue-light); color: var(--white); }
.ep-btn-sec { color: rgba(250,249,247,0.6); border: 1px solid rgba(255,255,255,0.16); }
.ep-btn-sec:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.ep-desc { font-size: 15px; line-height: 1.8; color: rgba(250,249,247,0.7); margin-bottom: 18px; }
.ep-desc strong { color: var(--white); font-weight: 500; }
.ep-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 20px; }
.ep-tag {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(250,249,247,0.5);
  border-radius: 2px;
}

/* ── SOCIAL PROOF ── */
#social-proof { background: var(--grey-light); padding: 88px 0; }
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-header p { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 12px; }
.proof-header h2 { font-family: var(--serif); font-size: clamp(26px,4vw,42px); color: var(--text-dark); font-weight: 400; line-height: 1.15; }
.proof-header h2 em { font-style: italic; }

/* Press grid — zero-gutter row so cards sit flush */
.press-grid { margin: 0; }
.press-grid > [class*="col"] { padding: 0; border: 1px solid var(--grey-mid); margin: -1px 0 0 -1px; }

.press-item {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  align-items: center; 
  gap: 10px;
  transition: background 0.25s;
  cursor: default;
  height: 100%;
}
.press-item:hover { background: var(--text-dark); }
.press-item:hover .press-desc { color: rgba(250,249,247,0.5); }
.press-item:hover .press-logo-img { filter: invert(1) brightness(2); opacity: 0.9; }
.press-logo-wrap { height: 44px; display: flex; align-items: center; margin-bottom: 4px; }
.press-logo-img {
  max-height: 60px; max-width: 150px;
  width: auto; object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.72;
  transition: filter 0.3s, opacity 0.3s;
}
.press-desc { font-size: 13px; color: var(--muted-light); line-height: 1.5; transition: color 0.25s; }

/* ── FOUNDER ── */
#founder { background: var(--black); padding: 100px 0; }
.founder-portrait { position: relative; }
.founder-portrait-inner {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg,#0d1a2e 0%,#060c18 40%,#020508 100%);
  position: relative; overflow: hidden;
}
.founder-portrait-inner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.founder-portrait-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,125,233,0.26) 0%, transparent 55%);
  z-index: 1;
}
.founder-portrait::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid rgba(43,125,233,0.22);
  pointer-events: none;
}
.founder-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 20px; display: block;
}
.founder-name {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400; line-height: 1.0;
  color: var(--white); margin-bottom: 24px;
}
.founder-name em { font-style: italic; display: block; color: rgba(250,249,247,0.5); }
.founder-bio { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: var(--muted-dark); margin-bottom: 20px; }
.founder-bio strong { color: var(--white); font-weight: 500; }
.founder-quote {
  border-left: 2px solid var(--blue);
  padding-left: 20px;
  font-family: var(--serif);
  font-size: clamp(16px,1.8vw,19px);
  font-style: italic;
  color: rgba(250,249,247,0.68);
  line-height: 1.55;
  margin-top: 24px;
}

/* ── TEAM ── */
#team { background: var(--grey-light); padding: 100px 0; overflow: hidden; }
.team-header { text-align: center; margin-bottom: 56px; }
.team-header p { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 12px; }
.team-header h2 { font-family: var(--serif); font-size: clamp(28px,4vw,50px); color: var(--text-dark); font-weight: 400; }
.team-header h2 em { font-style: italic; }

.team-carousel-outer { overflow: hidden; }
.team-carousel {
  display: flex;
  gap: 2px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.team-carousel-outer {
  overflow: hidden;
  width: 100%;
}
.team-member {
  flex: 0 0 calc(25vw - 2px);
  width: calc(25vw - 2px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) { .team-member { flex: 0 0 calc(33.333vw - 2px); width: calc(33.333vw - 2px); } }
@media (max-width: 767px) { .team-member { flex: 0 0 calc(50vw - 2px); width: calc(50vw - 2px); } }
@media (max-width: 479px) { .team-member { flex: 0 0 100vw; width: 100vw; } }

.team-member-img {
  width: 100%; aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  transition: transform 0.5s;
}
.team-member-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.team-member:hover .team-member-img { transform: scale(1.04); }
.team-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(43,125,233,0.22) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}
.t1 { background: linear-gradient(145deg,#1a2840 0%,#0a1520 50%,#030810 100%); }
.t2 { background: linear-gradient(145deg,#1c1f2e 0%,#0c0f1a 50%,#030408 100%); }
.t3 { background: linear-gradient(145deg,#1a2535 0%,#0a1520 50%,#030810 100%); }
.t4 { background: linear-gradient(145deg,#201a28 0%,#10101a 50%,#060408 100%); }
.t5 { background: linear-gradient(145deg,#1a2840 0%,#0a1520 50%,#030810 100%); }
.t6 { background: linear-gradient(145deg,#1c1f2e 0%,#0c0f1a 50%,#030408 100%); }

.team-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px; z-index: 2;
}
.team-role {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue-light); display: block; margin-bottom: 4px;
}
.team-name {
  font-family: var(--serif);
  font-size: clamp(18px,2.5vw,22px);
  font-weight: 400; color: var(--white); line-height: 1.1;
}
.team-name em { font-style: italic; color: rgba(250,249,247,0.6); }

.team-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.18);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--text-dark); }
.carousel-btn:hover svg path { stroke: var(--white); }
.carousel-btn svg path { stroke: var(--text-dark); stroke-width: 1.5; transition: stroke 0.2s; }

/* ── EVENTS ── */
#events { background: var(--dark-mid); padding: 100px 0; }
.events-list { display: flex; flex-direction: column; gap: 2px; margin-top: 52px; }
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: border-color 0.3s;
  position: relative;
}
@media (max-width: 767px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}
.event-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--blue);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s ease;
}
.event-card:hover { border-color: rgba(43,125,233,0.28); }
.event-card:hover::before { transform: scaleY(1); }
.event-day  { font-family: var(--serif); font-size: clamp(40px,5vw,56px); font-weight: 400; color: var(--blue-light); line-height: 1; display: block; }
.event-month{ font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); display: block; margin-top: 3px; }
.event-year { font-size: 11px; color: var(--muted-dark); display: block; }
.event-badge-sold {
  display: inline-block; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #ff7070; border: 1px solid rgba(255,112,112,0.36);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.event-badge-soon {
  display: inline-block; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,249,247,0.36); border: 1px solid rgba(255,255,255,0.13);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.event-name { font-family: var(--serif); font-size: clamp(17px,2vw,21px); font-weight: 400; color: var(--white); line-height: 1.25; margin-bottom: 10px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.event-meta-item { font-size: 13px; color: var(--muted-dark); display: flex; align-items: center; gap: 5px; }
.event-note { font-size: 13px; line-height: 1.6; color: rgba(250,249,247,0.38); margin-top: 8px; font-style: italic; }
.event-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
@media (max-width: 767px) { .event-actions { align-items: flex-start; } }
.btn-waitlist {
  display: inline-block; padding: 11px 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  background: transparent; color: rgba(250,249,247,0.6);
  border: 1px solid rgba(255,255,255,0.16);
  transition: all 0.2s; font-family: var(--sans);
  white-space: nowrap;
}
.btn-waitlist:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ── TYPE BAND ── */
.type-band { background: var(--black); overflow: hidden; line-height: 0; }
.type-band-text {
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 148px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.09);
  white-space: nowrap;
  display: block;
  padding: 14px 0;
}

/* ── CONTACT ── */
#contact { background: var(--grey-light); padding: 100px 0; }
.contact-left h2 { font-family: var(--serif); font-size: clamp(30px,4vw,52px); color: var(--text-dark); font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.contact-left h2 em { font-style: italic; }
.contact-left > p { font-size: clamp(14px,1.5vw,16px); line-height: 1.7; color: var(--muted-light); margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  transition: opacity 0.2s;
}
.contact-channel:hover { opacity: 0.52; }
.ch-icon {
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ch-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-light); display: block; margin-bottom: 2px; }
.ch-value { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.soc-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.soc-icon {
  width: 34px; height: 34px;
  background: var(--grey-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; text-decoration: none;
}
.soc-icon:hover { background: var(--text-dark); }

.contact-form {
  background: var(--white);
  padding: clamp(28px,5vw,48px) clamp(24px,4vw,44px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
.form-title { font-family: var(--serif); font-size: 22px; color: var(--text-dark); font-weight: 400; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  font-family: var(--sans); font-size: 14px;
  color: var(--text-dark);
  background: var(--grey-light);
  border: 1px solid transparent;
  border-radius: 2px; outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--text-dark); color: var(--white);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-img { height: 60px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--muted-dark); }
.footer-col-title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,249,247,0.3); margin-bottom: 16px; display: block; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--muted-dark); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-divider { border-color: rgba(255,255,255,0.06); margin: 36px 0; }
.nl-label { font-size: 13px; color: var(--muted-dark); margin-bottom: 14px; line-height: 1.6; }
.nl-row { display: flex; }
.nl-input {
  flex: 1; padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-right: none;
  color: var(--white); font-family: var(--sans); font-size: 13px;
  outline: none; border-radius: 2px 0 0 2px;
}
.nl-input::placeholder { color: rgba(250,249,247,0.28); }
.nl-input:focus { border-color: var(--blue); }
.nl-btn {
  padding: 11px 16px;
  background: var(--blue); color: var(--white);
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  border: none; cursor: pointer; border-radius: 0 2px 2px 0;
  transition: background 0.2s; white-space: nowrap;
}
.nl-btn:hover { background: var(--blue-light); }
.footer-copy { font-size: 11px; color: rgba(250,249,247,0.28); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-legal a { font-size: 11px; color: rgba(250,249,247,0.28); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }
