body {
  background: var(--white);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #9fb8d4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-gold {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1rem 2.6rem;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 148, 62, 0.25);
}

.hero-text-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.hero-text-link:hover {
  color: var(--gold-light);
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ═══ SECTIONS ═══ */
section {
  padding: 7rem 4rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
}

/* ═══ CHALLENGE ═══ */
.challenge {
  background: var(--white);
}

.challenge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.challenge-items {
  display: grid;
  gap: 0;
}

.challenge-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--warm-gray);
}

.challenge-item:first-child {
  padding-top: 0;
}

.challenge-item .ci-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 1px;
}

.challenge-item p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══ CASE STUDY ═══ */
.case-study {
  background: var(--off-white);
  padding: 7rem 4rem;
}

.case-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--warm-gray);
  overflow: hidden;
  background: var(--white);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.case-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #1a2e1c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.case-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
}

@media (prefers-reduced-motion: reduce) {
  .case-visual-video {
    display: none;
  }

  .case-visual {
    background-image: url("../images/club-infrastructure/case-study-vcc-brand-guide-static.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.case-logo-placeholder {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.case-visual-stat {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184, 148, 62, 0.15);
  line-height: 1;
}

.case-visual-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 0.3rem;
}

.case-body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-meta-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-gray);
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.case-meta-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 400;
}

.case-meta-value {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 400;
}

.case-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.case-body h3 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.case-body p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.case-body blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--soft-black);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 1.5rem 0;
}

.case-body cite {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-gray);
  display: block;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.case-body cite strong {
  color: var(--ink);
  font-weight: 500;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
  margin-top: 0.5rem;
}

.case-link:hover {
  gap: 0.9rem;
}

/* ═══ ECOSYSTEM (DARK) ═══ */
.ecosystem {
  background: var(--deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.eco-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.eco-header {
  margin-bottom: 3.5rem;
}

.eco-header .section-tag {
  color: var(--gold);
}

.eco-header .section-tag::before {
  background: var(--gold);
}

.eco-header h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.eco-header h2 em {
  color: var(--gold-light);
}

.eco-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.eco-card {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  cursor: default;
  border: none;
}

.eco-card-bg {
  position: absolute;
  inset: 0;
  bottom: -1px;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-grid .eco-card:nth-child(1) .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-02-vcc-entrance-gate.webp");
}

.eco-grid .eco-card:nth-child(2) .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-04-tournament-signage-warm.webp");
}

.eco-grid .eco-card:nth-child(3) .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-01-gala-table-setting.webp");
}

.eco-grid .eco-card:nth-child(4) .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-03-brand-guide-phone-mockup.webp");
}

.eco-grid .eco-card:nth-child(1):hover .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-02-vcc-entrance-gate.webp");
}

.eco-grid .eco-card:nth-child(2):hover .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-04-tournament-signage-warm.webp");
}

.eco-grid .eco-card:nth-child(3):hover .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-01-gala-table-setting.webp");
}

.eco-grid .eco-card:nth-child(4):hover .eco-card-bg {
  background-image: linear-gradient(
      to top,
      rgba(13, 31, 16, 0.88) 0%,
      rgba(26, 46, 28, 0.45) 50%,
      transparent 100%
    ),
    url("../images/club-infrastructure/eco-03-brand-guide-phone-mockup.webp");
}

.eco-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  z-index: 2;
}

.eco-card-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.eco-card-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.eco-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  font-weight: 300;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card:hover .eco-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.eco-card-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  pointer-events: none;
}

/* ═══ MANDATE ═══ */
.mandate {
  background: var(--off-white);
  padding-bottom: 4.5rem;
}

.mandate-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mandate-card {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--warm-gray);
  text-align: left;
  transition: all 0.4s;
}

.mandate-card:hover {
  border-top-color: var(--gold);
}

.mandate-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.mandate-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

.mandate-card .mc-zone {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

/* ═══ APPROACH ═══ */
.approach {
  background: var(--white);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding-top: 2.5rem;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--warm-gray);
}

.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══ DELIVERABLES ═══ */
.deliverables {
  background: var(--off-white);
}

.del-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.del-card {
  position: relative;
  padding-top: 2.5rem;
}

.del-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--warm-gray);
}

.del-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--warm-gray);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  z-index: 2;
  margin-bottom: 1.3rem;
  transition: all 0.4s;
}

.del-icon .icon-inner {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transition: all 0.4s;
}

.del-card:hover .del-icon {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.del-card:hover .del-icon .icon-inner {
  background: var(--gold);
}

.del-card.featured .del-icon {
  border-color: var(--gold);
  background: var(--gold);
}

.del-card.featured .del-icon .icon-inner {
  border-color: var(--white);
  background: var(--white);
}

.del-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.del-card p {
  font-size: 0.86rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══ ONGOING SUPPORT ═══ */
.ongoing {
  background: var(--white);
}

.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ongoing-card {
  border: 1px solid var(--warm-gray);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
}

.ongoing-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.ongoing-card .oc-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--warm-gray);
  transform: rotate(45deg);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s;
}

.ongoing-card:hover .oc-icon {
  border-color: var(--gold);
}

.ongoing-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.ongoing-card p {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══ BRIDGE ═══ */
.bridge {
  background: var(--off-white);
  padding: 4rem 4rem 7rem;
}

.bridge-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bridge-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--warm-gray);
  overflow: hidden;
  transition: all 0.5s;
}

.bridge-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.04);
}

.bridge-visual {
  background: linear-gradient(135deg, #0d1f10 0%, #1a2e1c 50%, #2c3a2e 100%);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bridge-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bridge-visual .bv-tag {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}

.bridge-visual h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  position: relative;
}

.bridge-visual h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.bridge-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.bridge-content p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
  margin-top: 0.5rem;
}

.bridge-link:hover {
  gap: 1rem;
}

/* ═══ EVENT BRANDING ═══ */
.event-branding {
  background: var(--white);
}

.eb-intro {
  margin-bottom: 3rem;
}

.eb-intro .eb-text {
  margin-top: 1rem;
  max-width: 42rem;
}

.eb-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
}

.eb-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.eb-card {
  border: 1px solid var(--warm-gray);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.eb-card:hover {
  border-color: var(--gold);
}

.eb-card-placeholder {
  aspect-ratio: 4/3;
  background-color: var(--pearl);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}

.eb-cards .eb-card:nth-child(1) .eb-card-placeholder {
  background-image: url("../images/club-infrastructure/event-04-tournament-tent.webp");
}

.eb-cards .eb-card:nth-child(2) .eb-card-placeholder {
  background-image: url("../images/club-infrastructure/event-01-gala-table.webp");
}

.eb-cards .eb-card:nth-child(3) .eb-card-placeholder {
  background-image: url("../images/club-infrastructure/event-02-heritage-golf-bags.webp");
}

.eb-cards .eb-card:nth-child(4) .eb-card-placeholder {
  background-image: url("../images/club-infrastructure/event-03-sponsor-activation.webp");
}

.eb-card .ebc-tag {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.eb-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.eb-card p {
  font-size: 0.78rem;
  color: var(--text-gray);
  line-height: 1.55;
  font-weight: 300;
}

/* ═══ WHY ═══ */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  border: 1px solid var(--warm-gray);
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.why-card h4 {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══ STRATEGIST ═══ */
.strategist {
  background: var(--off-white);
}

.strategist-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  align-items: center;
}

.strategist-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--warm-gray), var(--pearl));
  border: 1px solid var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.strategist-photo:hover {
  border-color: var(--gold);
}

.strategist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-label {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--mid-gray);
  text-align: center;
  padding: 2rem;
}

.strategist-text .strat-role {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.strategist-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.strategist-text p strong {
  color: var(--ink);
  font-weight: 500;
}

.strat-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm-gray);
}

.strat-stat .ss-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.strat-stat .ss-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 0.3rem;
}

/* ═══ CONSULTATION ═══ */
.consultation {
  background: var(--deep);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consultation::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.consultation .section-tag {
  color: var(--gold);
  justify-content: center;
  position: relative;
}

.consultation .section-tag::before {
  background: var(--gold);
}

.consultation h2 {
  color: #fff;
  position: relative;
}

.consultation h2 em {
  color: var(--gold-light);
}

.consultation-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 3rem;
  position: relative;
}

.consult-card {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.consult-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.consult-meta-group {
  text-align: center;
}

.consult-meta-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.3rem;
}

.consult-meta-value {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.5;
}

.consult-meta-value a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.consult-meta-value a:hover {
  color: var(--gold-light);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.consult-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.consult-form-field label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  text-align: left;
}

.consult-form-field input,
.consult-form-field select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s;
}

.consult-form-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.consult-form-field input:focus,
.consult-form-field select:focus {
  border-color: var(--gold);
}

.consult-form-field select {
  color: rgba(255, 255, 255, 0.25);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.2)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.consult-form-field select:has(option:checked:not([value=""])) {
  color: #fff;
}

.consult-form-field select option {
  background: var(--deep);
  color: #fff;
}

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

.consult-form button {
  padding: 1.1rem 2rem;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 0.5rem;
}

.consult-form button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 148, 62, 0.25);
}
/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    height: 80px;
  }

  50% {
    opacity: 0.6;
    height: 100px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .mobile-toggle {
    display: block;
  }

  nav,
  nav.scrolled {
    padding-right: 3rem;
  }

  .nav-overlay {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.15rem 3rem 1.15rem 3.5rem;
    border-bottom: 1px solid var(--warm-gray);
    gap: 1.15rem;
    z-index: 101;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  nav.scrolled .nav-links.mobile-open {
    padding-top: 0.65rem;
  }

  .mobile-nav-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .nav-links.mobile-open .mobile-nav-header {
    display: flex;
  }

  .mobile-nav-header .nav-logo {
    border: none !important;
    padding: 0;
  }

  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: color 0.2s, transform 0.2s;
  }

  .mobile-close:hover {
    color: var(--gold);
  }

  .mobile-close svg {
    width: 26px;
    height: 26px;
  }

  .nav-links.mobile-open
    a:not(.nav-logo):not(.nav-cta):not(.repertoire-menu a) {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-links.mobile-open .repertoire-toggle {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    justify-content: center;
    width: 100%;
  }

  .nav-links.mobile-open .repertoire-menu a {
    font-size: 0.85rem;
    padding: 1rem 1.4rem;
  }

  .nav-links.mobile-open .repertoire {
    width: 100%;
  }

  .nav-links.mobile-open .repertoire-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: auto;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0.25rem 0 0.5rem 0;
    background: rgba(0, 0, 0, 0.04);
    display: none;
    overflow: hidden;
    text-align: center;
  }

  .nav-links.mobile-open .repertoire.open .repertoire-menu {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  section {
    padding: 5rem 3.5rem;
  }

  .case-study,
  .ecosystem,
  .consultation {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .consultation {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-content {
    padding: 0;
  }

  .challenge-layout,
  .case-card,
  .strategist-layout,
  .bridge-card {
    grid-template-columns: 1fr;
  }

  .challenge-layout {
    gap: 3rem;
  }

  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .del-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .mandate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ongoing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-visual {
    min-height: 300px;
  }

  .strat-stats {
    gap: 2rem;
  }

  .consult-meta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .eb-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: color 0.2s, transform 0.2s;
  }

  .mobile-close:hover {
    color: var(--gold);
  }

  .mobile-close svg {
    width: 26px;
    height: 26px;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.15rem 3rem 1.15rem 3.5rem;
    border-bottom: 1px solid var(--warm-gray);
    gap: 1.15rem;
    z-index: 101;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  .nav-links.mobile-open
    a:not(.nav-logo):not(.nav-cta):not(.repertoire-menu a) {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-links.mobile-open .nav-cta {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    text-align: center;
  }

  .challenge-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .nav-links.mobile-open {
    padding-left: 1.5rem;
    padding-right: 1rem;
    padding-top: 0.76rem;
  }

  nav.scrolled .nav-links.mobile-open {
    padding-top: 0.77rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .case-study,
  .ecosystem {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .case-study {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .ecosystem {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  nav {
    padding: 1rem 1.5rem !important;
  }

  .eco-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .approach-steps .step {
    padding: 1.875rem 0 2.5rem 0;
  }

  .approach-steps .step::before {
    left: 0;
    right: 0;
  }

  .del-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .del-card {
    padding: 2.5rem 0 2.5rem 0;
  }

  .del-card::before {
    top: 0;
  }

  .mandate-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mandate-card {
    padding: 2.5rem 0 2.5rem 0;
  }

  .mandate-card h4,
  .mandate-card p,
  .mandate-card .mc-zone,
  .approach-steps .step .step-num,
  .approach-steps .step h3,
  .approach-steps .step p,
  .del-card h4,
  .del-card p {
    padding-left: 0;
  }

  .mandate {
    padding-bottom: 2.5rem;
  }

  .bridge-visual,
  .bridge-content {
    padding: 2rem 1.5rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .ongoing-grid {
    grid-template-columns: 1fr;
  }

  .consult-form-row {
    grid-template-columns: 1fr;
  }

  .strategist-layout {
    gap: 2.5rem;
  }

  .case-body {
    padding: 1.5rem;
  }

  .case-meta-row {
    gap: 1rem;
  }

  .case-body cite {
    margin-bottom: 1.5rem;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .consultation {
    padding: 5rem 1.5rem;
  }

  .bridge {
    padding: 3rem 1.5rem 5rem;
  }

  .eb-intro {
    margin-bottom: 2rem;
  }

  .eb-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══ CASE STUDY GATE MODAL ═══ */
.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 12, 11, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cs-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 4rem);
  max-height: calc(100dvh - 4rem);
  background: linear-gradient(180deg, #151917 0%, #0d0f0e 100%);
  border: 1px solid rgba(184, 148, 62, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-overlay.open .cs-modal {
  transform: translateY(0) scale(1);
}

.cs-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cs-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 28px;
  height: 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: border-color 0.3s;
}

.cs-modal-close:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.cs-modal-close svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
}

.cs-modal-top {
  padding: 2.5rem 2.5rem 0;
  position: relative;
  z-index: 2;
}

.cs-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cs-modal-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.cs-modal-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cs-modal-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cs-modal-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.cs-modal-includes {
  padding: 1.2rem 2.5rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
}

.cs-inc-item {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

.cs-inc-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 0.1rem;
}

.cs-modal-form {
  padding: 1.8rem 2.5rem 2.5rem;
  position: relative;
  z-index: 2;
}

.cs-field {
  margin-bottom: 1.2rem;
}

.cs-field-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.cs-field-label .cs-req {
  color: var(--gold);
  font-size: 1rem;
}

.cs-field-input,
.cs-field-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

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

.cs-field-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.cs-field-select:invalid {
  color: rgba(255, 255, 255, 0.2);
}

.cs-field-select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px;
}

.cs-field-select option {
  background: #151917;
  color: #fff;
}

.cs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cs-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d0f0e;
  background: var(--gold);
  border: none;
  padding: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.3rem;
}

.cs-submit:hover {
  background: var(--gold-light);
}

.cs-privacy {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.cs-success {
  display: none;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cs-success.show {
  display: block;
}

.cs-success-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.cs-success h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.6rem;
}

.cs-success p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .cs-overlay {
    padding: 1rem;
  }

  .cs-modal {
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
  }

  .cs-modal-top,
  .cs-modal-form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-modal-includes {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
  }

  .cs-field-row {
    grid-template-columns: 1fr;
  }

  .cs-modal-title {
    font-size: 1.35rem;
  }
}
