@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

/* ===== RESET & VARIABLES ===== */
:root {
  color-scheme: light;
  --ci-ink: #242424;
  --ci-gold: #8e847a;
  --ci-cream: #f4f4f4;
  --ci-rose: #d4cfc9;
  --ci-gray: #b5b2af;
  --ci-white: #f4f4f4;
  --ci-ink-muted: rgba(36, 36, 36, 0.7);
  --ui-surface: #ffffff;
  --ui-border: 1px solid var(--ci-gray);
  --ui-radius-card: 20px;
  --ui-radius-field: 12px;
  --ui-shadow-card: 0 16px 30px rgba(12, 10, 10, 0.1);
  --ui-shadow-soft: 0 10px 20px rgba(12, 10, 10, 0.06);
  --ui-focus-ring: 0 0 0 3px rgba(142, 132, 122, 0.4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
  background: var(--ci-cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ci-gold);
  outline-offset: 4px;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}


/* ===== FLOATING LANG SWITCH ===== */
.v2-hero__lang {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.v2-hero__lang .lang-active {
  font-weight: 700;
  color: #ffffff;
}

.v2-hero__lang .lang-sep {
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
}

.v2-hero__lang .lang-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.v2-hero__lang .lang-link:hover {
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: var(--ci-gold);
  color: var(--ci-cream);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(12, 10, 10, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(12, 10, 10, 0.24);
}

/* High-contrast hero buttons */
.v2-hero .button {
  background: #ffffff;
  color: var(--ci-ink);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.v2-hero .button:hover {
  background: var(--ci-rose);
}

.v2-hero .button.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.v2-hero .button.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

.button.ghost {
  background: transparent;
  color: var(--ci-gold);
  border: 1px solid var(--ci-gray);
  box-shadow: none;
}

/* ===== HERO ===== */
.v2-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ci-cream);
}

.v2-hero--legal {
  min-height: 420px;
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.v2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36, 36, 36, 0.55) 0%, rgba(36, 36, 36, 0.15) 60%, transparent 100%);
  z-index: 1;
}

.v2-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 560px;
  margin-left: 6vw;
}

.v2-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--ci-rose);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.v2-hero__title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.v2-hero__list {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  list-style: disc;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.legal-section {
  padding: 4rem 0 5rem;
}

.legal-embed-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.96);
  border: var(--ui-border);
  border-radius: 24px;
  box-shadow: var(--ui-shadow-card);
}

.legal-embed-wrap .itrk-legaltext {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
  line-height: 1.75;
  font-size: 1.02rem;
}

.legal-embed-wrap .itrk-legaltext :is(p, li, td, th, span, div, a, strong, em, h1, h2, h3, h4) {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif !important;
  color: var(--ci-ink);
}

.legal-embed-wrap .itrk-legaltext :is(h1, h2, h3, h4) {
  font-family: "Fraunces", serif !important;
  line-height: 1.2;
  margin: 2.2rem 0 0.9rem;
  letter-spacing: 0.01em;
}

.legal-embed-wrap .itrk-legaltext h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.legal-embed-wrap .itrk-legaltext h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.legal-embed-wrap .itrk-legaltext h3,
.legal-embed-wrap .itrk-legaltext h4 {
  font-size: 1.15rem;
}

.legal-embed-wrap .itrk-legaltext :is(p, ul, ol, table) {
  margin: 0 0 1rem;
}

.legal-embed-wrap .itrk-legaltext :is(ul, ol) {
  padding-left: 1.4rem;
}

.legal-embed-wrap .itrk-legaltext li {
  margin-bottom: 0.45rem;
}

.legal-embed-wrap .itrk-legaltext a {
  color: var(--ci-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-embed-wrap .itrk-legaltext iframe {
  width: 100%;
  border: 0;
  background: transparent;
}

.legal-embed-wrap .itrk-legaltext table {
  width: 100%;
  border-collapse: collapse;
}

.legal-embed-wrap .itrk-legaltext :is(td, th) {
  padding: 0.5rem 0.25rem;
  vertical-align: top;
}

.legal-card {
  background: rgba(255, 255, 255, 0.95);
  border: var(--ui-border);
  border-radius: 24px;
  box-shadow: var(--ui-shadow-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.legal-card p,
.legal-card div,
.legal-card li {
  line-height: 1.7;
}

.legal-card iframe {
  width: 100%;
  min-height: 1800px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

.legal-fallback {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ci-ink-muted);
}



@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES ===== */
.v2-features {
  padding: 5rem 0 4rem;
  background: var(--ci-cream);
}

.v2-features__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.v2-features__header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.v2-features__header p {
  color: var(--ci-ink-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.v2-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 650px) {
  .v2-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .v2-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.v2-feature-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 2rem 1.8rem;
  box-shadow: var(--ui-shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.v2-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 10, 10, 0.14);
}

.v2-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ci-rose);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--ci-ink);
}

.v2-feature-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.v2-feature-card p {
  color: var(--ci-ink-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ===== ANNOUNCEMENTS CAROUSEL ===== */
.v2-announce {
  padding: 5rem 0;
  background: var(--ci-ink);
  color: var(--ci-cream);
  position: relative;
  overflow: hidden;
}

.v2-announce::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(142, 132, 122, 0.08);
}

.v2-announce::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(142, 132, 122, 0.06);
}

.v2-announce__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-announce__label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--ci-gold);
  margin-bottom: 2rem;
}

.v2-announce__viewport {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-announce__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.v2-announce__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.v2-announce__wish {
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.65;
  color: var(--ci-rose);
  margin-bottom: 1rem;
  font-style: italic;
}

.v2-announce__answer {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244, 244, 244, 0.75);
  max-width: 560px;
}



/* ===== VISION ===== */
.v2-vision {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ci-cream) 0%, var(--ci-rose) 100%);
}

.v2-vision__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.v2-vision__portrait {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(12, 10, 10, 0.15);
  border: 4px solid var(--ui-surface);
  justify-self: center;
}

.v2-vision__copy h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.v2-vision__copy p {
  line-height: 1.8;
  color: var(--ci-ink-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.v2-vision__quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ci-ink);
  border-left: 3px solid var(--ci-gold);
  padding-left: 1.2rem;
  margin-top: 1.5rem;
}

/* ===== TESTER PROGRAM ===== */
.v2-tester {
  padding: 4rem 0 3rem;
  background: var(--ci-cream);
}

.v2-tester__inner {
  max-width: 900px;
  margin: 0 auto;
}

.v2-tester h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.v2-tester__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ci-ink-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.v2-tester-capacity {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 18px;
  background: var(--ui-surface);
  border: var(--ui-border);
  box-shadow: var(--ui-shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.v2-tester-capacity::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--ci-gold);
}

.v2-tester-capacity__summary {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ci-ink-muted);
  letter-spacing: 0.01em;
}

.v2-tester-capacity__detail {
  margin: 0.5rem 0 0;
  color: var(--ci-gold);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

.v2-tester-form.is-closed {
  opacity: 0.72;
}

.v2-tester-form.is-closed input,
.v2-tester-form.is-closed select,
.v2-tester-form.is-closed button,
.v2-tester-form.is-closed textarea {
  pointer-events: none;
}

.v2-tester__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.v2-tester__step {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1.5rem;
  box-shadow: var(--ui-shadow-card);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v2-tester__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-tester__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--ci-gold);
  color: var(--ci-cream);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.v2-tester__step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.v2-tester__step p {
  color: var(--ci-ink-muted);
  line-height: 1.6;
  font-size: 0.93rem;
}

/* ===== TESTER FORM ===== */
.v2-tester-form-section {
  padding: 1rem 0 5rem;
  background: var(--ci-cream);
}

.v2-tester-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.v2-tester-form-copy h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.v2-tester-form-copy p {
  color: var(--ci-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.v2-tester-benefits {
  display: grid;
  gap: 0.8rem;
}

.v2-tester-benefits li {
  background: var(--ui-surface);
  border-radius: 16px;
  border: var(--ui-border);
  padding: 0.9rem 1rem;
  box-shadow: var(--ui-shadow-soft);
}

.v2-tester-form {
  background: var(--ui-surface);
  border-radius: var(--ui-radius-card);
  border: var(--ui-border);
  padding: 2rem;
  box-shadow: var(--ui-shadow-card);
  display: grid;
  gap: 1rem;
}

.v2-tester-field {
  display: grid;
  gap: 0.4rem;
}

.v2-tester-field label {
  font-weight: 600;
  color: var(--ci-gold);
}

.v2-tester-form input:not([type="checkbox"]),
.v2-tester-form select {
  border: var(--ui-border);
  border-radius: var(--ui-radius-field);
  padding: 0.7rem 0.9rem;
  min-height: 46px;
  background: var(--ci-cream);
  font-size: 1rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.v2-tester-form input:not([type="checkbox"]):focus,
.v2-tester-form select:focus {
  border-color: var(--ci-gold);
  box-shadow: var(--ui-focus-ring);
  outline: none;
}

.v2-tester-consent {
  margin-top: 0.5rem;
}

.v2-tester-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 400;
  color: var(--ci-ink-muted);
}

.v2-tester-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.v2-tester-privacy p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ci-ink-muted);
  line-height: 1.6;
}

.v2-tester-form .button {
  justify-self: start;
}

.v2-tester-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== NEWSLETTER ===== */
.v2-newsletter {
  padding: 4rem 0 5rem;
  background: var(--ci-rose);
}

.v2-newsletter__inner {
  background: var(--ui-surface);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(12, 10, 10, 0.12);
  border: 1px solid var(--ci-gray);
  max-width: 720px;
  margin: 0 auto;
}

.v2-newsletter__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0.5rem;
}

.v2-newsletter__header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.v2-newsletter__teaser {
  text-align: center;
  color: var(--ci-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.v2-newsletter .cr-text,
.v2-newsletter .cr-web-form input,
.v2-newsletter .cr-web-form select,
.v2-newsletter .cr-web-form button,
.v2-newsletter .cr-web-form label,
.v2-newsletter .cr-web-label {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
}

.v2-newsletter .cr-web-wrapper {
  justify-content: stretch;
}

.v2-newsletter .cr-web-row {
  max-width: none;
  width: 100%;
  border-radius: 16px;
}

.v2-newsletter .bgcolor-1 {
  background-color: transparent;
}

.v2-newsletter .bgcolor-2 {
  background-color: var(--ci-white);
}

.v2-newsletter .cr-web-form input,
.v2-newsletter .cr-web-form select {
  border-color: var(--ci-gray);
  background: var(--ci-cream);
}

.v2-newsletter .cr-web-form label {
  font-weight: 600;
  color: var(--ci-gold);
  letter-spacing: 0.02em;
}

.v2-newsletter .cr-web-form button {
  background: var(--ci-gold) !important;
  color: var(--ci-cream) !important;
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  border: none;
  box-shadow: 0 12px 24px rgba(12, 10, 10, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-newsletter .cr-web-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(12, 10, 10, 0.24);
}

.v2-newsletter .cr-consent-required {
  color: var(--ci-ink-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ci-ink);
  color: var(--ci-cream);
  padding-top: 1.5rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 0;
}

.footer-bar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--ci-cream);
}

.site-footer a:hover {
  color: var(--ci-rose);
}

/* ===== TOAST ===== */
.form-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: min(92vw, 440px);
  background: var(--ci-gold);
  color: var(--ci-cream);
  border: 1px solid var(--ci-gray);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: var(--ui-shadow-card);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-toast.is-error {
  background: var(--ci-rose);
  color: var(--ci-ink);
  border-color: var(--ci-gray);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.9rem 1rem 1rem;
    text-align: center;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    justify-content: center;
    margin-left: 0;
  }

  .v2-vision__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .v2-vision__portrait {
    width: 200px;
    height: 200px;
  }

  .v2-vision__quote {
    text-align: left;
  }

  .v2-tester-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .v2-hero {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
  }

  .v2-hero__bg {
    position: relative !important;
    inset: auto !important;
    height: 300px !important;
    width: 100% !important;
    z-index: 1;
  }

  .v2-hero__bg img {
    filter: none !important;
    object-position: right center !important;
  }

  .v2-hero__overlay {
    display: none !important;
  }

  .v2-hero__content {
    position: relative !important;
    margin: 0 !important;
    padding: 2.5rem 6vw 4rem !important;
    max-width: none !important;
    background: var(--ci-cream) !important;
    z-index: 2;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__eyebrow {
    color: var(--ci-gold) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__title {
    font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
    color: var(--ci-ink) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__list {
    color: var(--ci-ink-muted) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  /* Adjust buttons for light background */
  .v2-hero .button {
    background: var(--ci-gold) !important;
    color: var(--ci-cream) !important;
  }

  .v2-hero .button.ghost {
    background: transparent !important;
    color: var(--ci-gold) !important;
    border: 2px solid var(--ci-gold) !important;
    backdrop-filter: none !important;
  }

  .v2-announce__viewport {
    min-height: 280px;
  }

  .v2-newsletter .cr-web-row {
    width: 100%;
  }

  .v2-newsletter__inner {
    border-radius: 18px;
  }
}
