/* ─── BRAND TOKENS (DESIGN.md) ─────────────────────────── */
:root {
  --primary:             #002068;
  --primary-dark:        #00154a;
  --primary-container:   #003399;
  --secondary:           #775a19;
  --secondary-container: #fed488;
  --secondary-dim:       #e9c176;
  --tertiary:            #4f0f1a;
  --tertiary-container:  #6c252f;
  --surface:             #fbf9f5;
  --surface-low:         #f5f3ef;
  --surface-dim:         #dbdad6;
  --on-surface:          #1b1c1a;
  --on-surface-var:      #444653;
  --outline:             #747684;
  --ink:                 #0e1324;

  --ff-display:  'FrizQuadrata', 'Cormorant Garamond', serif;
  --ff-serif:    'Cormorant Garamond', serif;
  --ff-sans:     'Manrope', sans-serif;
}

/* ─── FONT-FACE ────────────────────────────────────────── */
@font-face {
  font-family: 'FrizQuadrata';
  src: url('FrizQuadrataPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}


/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ────────────────────────────────────────── */
.label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.label--gold  { color: var(--secondary-dim); }
.label--navy  { color: var(--primary); }
.label--amber { color: var(--secondary); }

.label-line {
  display: flex;
  align-items: center;
  gap: 14px;
}
.label-line::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.22,1,.36,1),
              transform 0.85s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ─── NAVIGATION ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}
.nav.scrolled {
  background: rgba(251,249,245,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 64px;
  box-shadow: 0 1px 0 var(--surface-dim);
}

.nav__wordmark {
  display: flex;
  align-items: center;
}
.nav__logo {
  display: block;
  width: 256px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.45s;
}
.nav.scrolled .nav__logo { filter: none; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  transition: color 0.45s;
  line-height: 0;
}
.nav.scrolled .nav__burger { color: var(--on-surface); }

/* ─── NAV DRAWER ────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.nav-drawer.open { pointer-events: auto; }

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 19, 36, 0);
  transition: background 0.35s ease;
}
.nav-drawer.open .nav-drawer__backdrop { background: rgba(14, 19, 36, 0.45); }

.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--surface);
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 72px 40px 48px;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open .nav-drawer__panel { transform: translateX(0); }

.nav-drawer__close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--on-surface-var);
  line-height: 0;
  transition: color 0.2s;
}
.nav-drawer__close:hover { color: var(--on-surface); }

.nav-drawer__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.nav-drawer__links a {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-surface-var);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer__links a:hover { color: var(--primary); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav__links a {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--secondary-dim); }
.nav.scrolled .nav__links a { color: var(--on-surface-var); }
.nav.scrolled .nav__links a:hover { color: var(--primary); }

/* ─── SECTION 2: HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/16-randuri-de-vita-de-vie.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,20,74,0.64) 0%,
    rgba(0,10,40,0.78) 55%,
    rgba(0,5,20,0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--secondary-dim);
}
.hero__eyebrow span {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-dim);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 860px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero__sub {
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.4s forwards;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ─── SECTION 3: MANIFESTO ─────────────────────────────── */
.manifesto {
  padding: 160px 64px;
  background: var(--surface);
}
.manifesto__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.manifesto__left {
  position: sticky;
  top: 120px;
}
.manifesto__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-top: 32px;
}
.manifesto__body {
  font-size: 18px;
  line-height: 1.78;
  color: var(--on-surface-var);
}
.manifesto__body p + p { margin-top: 28px; }
.manifesto__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--primary);
  border-left: 2px solid var(--secondary-container);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
}
.manifesto__body strong {
  color: var(--on-surface);
  font-weight: 600;
}

/* ─── SECTION 4: ABOUT ─────────────────────────────────── */
.about {
  background: var(--primary);
  padding: 160px 64px;
}
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin: 32px 0 36px;
}
.about__desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.about__desc p + p { margin-top: 22px; }
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  overflow: hidden;
}
.about__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(233,193,118,0.25);
  pointer-events: none;
}
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.about__badge {
  position: absolute;
  bottom: -1px;
  left: -32px;
  background: var(--secondary-container);
  padding: 28px 32px;
}
.about__badge-num {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}
.about__badge-text {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 8px;
}

/* ─── SECTION 5: AUDIENCE ──────────────────────────────── */
.audience {
  background: var(--surface-low);
  padding: 160px 64px;
}
.audience__inner { max-width: 1280px; margin: 0 auto; }
.audience__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.audience__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--primary);
  margin-top: 28px;
}
.audience__intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-surface-var);
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--surface-dim);
}
.audience__item {
  background: var(--surface-low);
  padding: 44px 36px;
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.audience__item:hover {
  background: var(--surface);
  border-bottom-color: var(--secondary);
}
.audience__item-num {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 20px;
}
.audience__item-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 14px;
}
.audience__item-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--on-surface-var);
}

/* ─── SECTION 6: FOUNDER ───────────────────────────────── */
.founder {
  background: var(--ink);
  padding: 160px 64px;
}
.founder__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.founder__heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 28px 0 10px;
}
.founder__role {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  color: var(--secondary-dim);
  margin-bottom: 36px;
}
.founder__bio {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(255,255,255,0.62);
}
.founder__bio p + p { margin-top: 20px; }
.founder__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.founder__stat-val {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary-dim);
  margin-bottom: 6px;
}
.founder__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.founder__visual {
  position: relative;
}
.founder__img-wrap {
  position: relative;
  overflow: hidden;
}
.founder__img-wrap::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px;
  right: -28px; bottom: -28px;
  border: 1px solid rgba(233,193,118,0.18);
  z-index: 0;
}
.founder__img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(12%) brightness(0.92);
}

/* ─── SECTION 7: CLOSING ───────────────────────────────── */
.closing {
  padding: 200px 64px;
  background: var(--surface);
  text-align: center;
}
.closing__inner {
  max-width: 860px;
  margin: 0 auto;
}
.closing__heading {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 32px 0 44px;
}
.closing__heading em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 300;
  color: var(--tertiary-container);
}
.closing__text {
  font-size: 19px;
  line-height: 1.72;
  color: var(--on-surface-var);
  max-width: 680px;
  margin: 0 auto 56px;
}
.closing__ornament {
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  margin: 0 auto;
}

/* ─── SECTION 8: CONTACT ───────────────────────────────── */
.contact {
  background: var(--primary-dark);
  padding: 120px 64px 80px;
}
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact__wordmark {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 128px;
}
.contact__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}
.contact__divider {
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.12);
  justify-self: center;
}
.contact__email {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  transition: color 0.3s;
}
.contact__email:hover { color: var(--secondary-dim); }
.contact__sub-heading { text-align: right; }
.contact__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 36px;
}
.contact__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.contact__founder-credit {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.contact__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4px;
}
.contact__legal-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.contact__legal-links a:hover { color: var(--secondary-dim); }

/* ─── SUBSCRIPTION FORM ─────────────────────────────────── */
.contact__sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__field {
  position: relative;
}
.contact__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 10px 0;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.contact__input::placeholder {
  color: rgba(255,255,255,0.32);
}
.contact__input:focus {
  border-bottom-color: var(--secondary-dim);
}
.contact__input:invalid:not(:placeholder-shown):not(:focus) {
  border-bottom-color: rgba(255,90,90,0.5);
}
.contact__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.contact__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  user-select: none;
}
.contact__check a {
  color: var(--secondary-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.contact__check a:hover { color: #fff; }
.contact__check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--secondary-dim);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.contact__btn {
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--secondary-dim);
  color: var(--ink);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
  margin-top: 4px;
}
.contact__btn:hover { background: #fff; }
.contact__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.contact__msg {
  font-size: 13px;
  line-height: 1.5;
  min-height: 0;
}
.contact__msg--success { color: var(--secondary-dim); }
.contact__msg--error   { color: rgba(255,130,130,0.9); }
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ─── COOKIE BANNER ────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}
.cookie-banner__text a {
  color: var(--secondary-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.cookie-btn--accept {
  background: var(--secondary-dim);
  color: var(--ink);
}
.cookie-btn--accept:hover { background: #fff; }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--reject:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-btn--manage {
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  padding: 12px 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-btn--manage:hover { color: rgba(255,255,255,0.7); }

/* ─── KEYFRAMES ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav { padding: 16px 40px; }
  .nav.scrolled { padding: 8px 40px; }
  .nav__logo { width: 200px; }
  .hero__content { padding: 0 40px; }
  .manifesto,
  .about, .audience, .founder,
  .closing, .contact { padding-left: 40px; padding-right: 40px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 56px; }
  .manifesto__left { position: static; }
  .about__inner,
  .founder__inner { grid-template-columns: 1fr; gap: 64px; }
  .audience__header { grid-template-columns: 1fr; gap: 32px; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .about__badge { left: 0; }
  .contact__top { grid-template-columns: 1fr; gap: 64px; }
  .contact__divider { display: none; }
  .contact__wordmark { margin-top: 32px; }
  .contact__sub-heading { text-align: left; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 24px; }
  .nav.scrolled { padding: 8px 24px; }
  .nav__links { display: none; }
  .nav__logo { width: 180px; }
  .nav__burger { display: flex; align-items: center; }
  .hero__content { padding: 0 24px; }
  .manifesto,
  .about, .audience, .founder,
  .closing, .contact {
    padding-left: 24px; padding-right: 24px;
    padding-top: 100px; padding-bottom: 100px;
  }
  .closing { padding-top: 120px; padding-bottom: 120px; }
  .audience__grid { grid-template-columns: 1fr; }
  .founder__stats { grid-template-columns: 1fr 1fr; }
  .contact__top { text-align: center; }
  .contact__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact__btn { width: 100%; text-align: center; }
}
