/* ============================================================
   WOMEN ON THE SPECTRUM — STYLES
   ============================================================ */
:root {
  --bg:           #4A3F45;
  --heading:      #F7F5F2;
  --body:         #D6D2CC;
  --accent:       #A8B5A2;
  --gold:         #C8A96A;
  --white:        #FFFFFF;
  --radius:       1.25rem;
  --radius-sm:    .75rem;
  --transition:   0.3s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #4A3F45;
  color: #D6D2CC;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: #F7F5F2; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; margin-bottom: .75rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
p  { color: #D6D2CC; margin-bottom: 1rem; }
em { color: #A8B5A2; font-style: normal; }
a  { color: inherit; text-decoration: none; }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  background: #A8B5A2; color: #4A3F45;
  border: none; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: var(--transition); letter-spacing: .02em;
}
.btn-primary:hover { background: #F7F5F2; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  background: transparent; color: #F7F5F2;
  border: 1.5px solid rgba(247,245,242,.3); border-radius: 100px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .95rem;
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { border-color: #F7F5F2; background: rgba(247,245,242,.07); }

/* Gold button — signup & modal only */
.btn-signup-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 2.2rem;
  background: #4A3F45; color: #F7F5F2;
  border: 2px solid #C8A96A; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; letter-spacing: .03em; transition: var(--transition);
}
.btn-signup-gold:hover { background: #C8A96A; color: #4A3F45; }

/* ── SECTION COMMON ──────────────────────── */
section { padding: 6rem 5vw; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

/* ── STYLE GROUP (wraps each A/B/C variant) ─ */
.style-group { margin-bottom: 3.5rem; }
.style-group-label {
  display: inline-block;
  padding: .3rem 1.1rem;
  background: rgba(168,181,162,.15);
  border: 1px solid rgba(168,181,162,.25);
  border-radius: 100px;
  color: #A8B5A2;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #4A3F45;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.navbar.scrolled { background: #3d3339; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw; max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: #F7F5F2;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: #F7F5F2; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #D6D2CC; }
.nav-cta {
  padding: .55rem 1.4rem;
  background: #A8B5A2 !important; color: #4A3F45 !important;
  border-radius: 100px; font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: #F7F5F2 !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #F7F5F2; border-radius: 2px; transition: .3s; }
.nav-mobile { display: none; flex-direction: column; padding: 0 5vw 1rem; gap: .5rem; background: #4A3F45; }
.nav-mobile a { color: #F7F5F2; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.nav-mobile.open { display: flex; }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #4A3F45;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74,63,69,.52);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 120px 5vw 7rem;
  gap: 2rem;
}
.hero-title {
  color: #F7F5F2;
  font-size: clamp(2rem, 5vw, 4.5rem);
  text-shadow: 0 2px 28px rgba(0,0,0,.65);
  max-width: 820px;
  width: 100%;
}
.hero-sub {
  color: rgba(247,245,242,.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  margin: 0;
}
.hero-slogan {
  color: #A8B5A2;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: .03em;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  margin: 0;
}

/* ── PARTNER INTRO ───────────────────────── */
.partner-intro-section {
  background: #4A3F45;
  padding: 3rem 5vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.partner-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.partner-intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #D6D2CC;
  line-height: 1.75;
  margin: 0;
}
.partner-intro-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SCROLL REVEALS ──────────────────────── */
.reveal-up   { opacity: 0; transform: translateY(36px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.visible   { opacity: 1; transform: translateY(0); }
.quote-line {
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-family: 'Playfair Display', serif; color: #D6D2CC;
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
  text-align: center;
}
.quote-line.visible { opacity: 1; transform: translateY(0); }

/* ── CAROUSEL ────────────────────────────── */
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.5rem; padding: .75rem .5rem 2rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(74,63,69,.9);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; color: #F7F5F2; font-size: 1.1rem;
  cursor: pointer; z-index: 10; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: #A8B5A2; color: #4A3F45; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: .45rem; margin-top: .75rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(214,210,204,.25); cursor: pointer; transition: background .25s, transform .25s;
  border: none;
}
.carousel-dot.active { background: #A8B5A2; transform: scale(1.3); }

/* ── INFO CARDS — Style A & B (no hover) ─── */
.info-card {
  min-width: 300px; max-width: 300px; flex-shrink: 0;
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .4rem;
  position: relative;
}

/* Style A — #FFFFFF bg, #4A3F45 text */
.info-light {
  background-color: #FFFFFF;
  border: 1px solid rgba(74,63,69,.1);
  box-shadow: 0 2px 14px rgba(74,63,69,.08);
}
.info-light h3  { color: #4A3F45; }
.info-light p   { color: #5a5158; }
.info-light .info-num { color: #9e929a; }

/* Style B — #A8B5A2 bg, #F7F5F2 text */
.info-green {
  background-color: #A8B5A2;
  border: 1px solid rgba(255,255,255,.15);
}
.info-green h3  { color: #F7F5F2; }
.info-green p   { color: rgba(247,245,242,.88); }
.info-green .info-num { color: rgba(247,245,242,.45); }

.info-num { font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1; }

/* card CTA buttons */
.card-cta {
  display: inline-block; padding: .45rem 1.1rem;
  background: #A8B5A2; color: #4A3F45;
  border-radius: 100px; font-size: .83rem; font-weight: 600; transition: var(--transition);
  margin-top: auto;
}
.card-cta:hover { background: #4A3F45; color: #F7F5F2; }
.card-cta-on-green { background: #4A3F45; color: #F7F5F2; }
.card-cta-on-green:hover { background: #F7F5F2; color: #4A3F45; }

/* ── STYLE C — Image Cards (ic-card) ─────── */
.ic-card {
  position: relative;
  min-width: 300px; max-width: 300px; flex-shrink: 0;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--ph, #4A3F45);
}

/* Image in normal flow — card height + overflow:hidden do the clipping */
.ic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

/* Ken Burns on hover */
@media (hover: hover) {
  .ic-card:hover .ic-img { transform: scale(1.06); }
}

/* Gradient so title stays legible at rest */
.ic-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.12) 50%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Title — pinned to bottom, always visible */
.ic-title-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.5rem;
  z-index: 3;
  transition: opacity .3s ease, transform .4s cubic-bezier(.4,0,.2,1);
}
.ic-title-bar h3 {
  color: #F7F5F2;
  font-size: 1.15rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

/* Full-card overlay — slides up from bottom on hover/tap */
.ic-hover {
  position: absolute; inset: 0;
  background: #F0EBE3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 1.75rem;
  gap: .9rem;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  z-index: 4;
}
.ic-hover h3 {
  color: #4A3F45;
  font-size: 1.2rem;
  margin: 0;
}
.ic-hover p {
  color: #5a5158;
  font-size: .87rem;
  line-height: 1.65;
  margin: 0;
}
.ic-hover .card-cta {
  align-self: flex-start;
  background: #4A3F45;
  color: #F7F5F2;
}
.ic-hover .card-cta:hover {
  background: #A8B5A2;
  color: #4A3F45;
}

/* Placeholder cards (no image yet) */
.ic-placeholder { background-color: var(--ph, #4d6b68); }

/* Desktop hover */
@media (hover: hover) {
  .ic-card:hover .ic-hover    { transform: translateY(0); }
  .ic-card:hover .ic-title-bar { opacity: 0; transform: translateY(8px); }
}

/* Mobile tap-to-expand */
@media (hover: none) {
  .ic-card.expanded .ic-hover    { transform: translateY(0); }
  .ic-card.expanded .ic-title-bar { opacity: 0; }
}

/* How We Help — info card always visible, no hover animation */
.how-section .ic-hover {
  transform: translateY(0);
  transition: none;
}
.how-section .ic-title-bar { display: none; }
.how-section .ic-img { transition: none; }
.how-section .ic-card:hover .ic-img { transform: none; }

/* ── SECTIONS ────────────────────────────── */
.services-section { padding-bottom: 2rem; }
.quotes-section {
  background: #4A3F45;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}

/* Image carousel */
.quotes-img-carousel {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 320px;
  overflow: hidden;
}
.qic-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.qic-slide.active { opacity: 1; }
.qic-overlay {
  position: absolute; inset: 0;
  background: rgba(74,63,69,.35);
  pointer-events: none;
}

/* Text quotes carousel */
.quotes-text-carousel {
  position: relative;
  padding: 3.5rem 5vw;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qtc-slide {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: #F7F5F2;
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.qtc-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.why-section  { background: #4A3F45; }
.how-section  { background: rgba(168,181,162,.05); border-top: 1px solid rgba(255,255,255,.08); }

/* ── SIGNUP SECTION (gold border — C8A96A) ── */
.signup-section { position: relative; overflow: hidden; padding: 7rem 5vw; background: #4A3F45; }
.signup-bg { position: absolute; inset: 0; z-index: 0; }
.signup-orb { position: absolute; border-radius: 50%; }
.s1 { width: 380px; height: 380px; background: rgba(200,169,106,.09); top: -80px; right: 0; filter: blur(70px); }
.s2 { width: 280px; height: 280px; background: rgba(168,181,162,.09); bottom: -60px; left: -40px; filter: blur(70px); }
.signup-inner {
  position: relative; z-index: 1; max-width: 620px; margin: 0 auto; text-align: center;
  border: 2px solid #C8A96A; border-radius: 1.5rem; padding: 3rem 2.5rem;
}
.signup-inner h2 { margin-bottom: 1.5rem; }

.signup-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-input {
  width: 100%; padding: .85rem 1.15rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(200,169,106,.35);
  border-radius: var(--radius-sm);
  color: #F7F5F2; font-family: 'Inter', sans-serif; font-size: .93rem;
  transition: border-color .2s; outline: none;
}
.form-input::placeholder { color: rgba(214,210,204,.4); }
.form-input:focus { border-color: #C8A96A; box-shadow: 0 0 0 3px rgba(200,169,106,.15); }
.form-select { cursor: pointer; }
.form-select option { background: #4A3F45; color: #F7F5F2; }
.interest-group {
  width: 100%; padding: .85rem 1.15rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(200,169,106,.35);
  border-radius: var(--radius-sm);
  color: #F7F5F2; font-family: 'Inter', sans-serif; font-size: .93rem;
}
.interest-group:focus-within { border-color: #C8A96A; box-shadow: 0 0 0 3px rgba(200,169,106,.15); }
.interest-group legend { color: rgba(214,210,204,.72); margin-bottom: .6rem; text-align: left; }
.interest-option {
  display: flex; align-items: center; gap: .5rem;
  cursor: pointer; margin-bottom: .45rem; text-align: left;
}
.interest-option:last-child { margin-bottom: 0; }
.interest-option input { accent-color: #C8A96A; }
.form-textarea { resize: vertical; min-height: 95px; }
.interest-other-box { margin-top: .6rem; min-height: 60px; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .82rem; color: #A8B5A2; font-weight: 500; text-align: left; }

/* ── CLOSING SECTION ─────────────────────── */
.closing-section {
  background: rgba(168,181,162,.06);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 6rem 5vw;
}
.closing-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400; font-style: italic;
  color: #D6D2CC; line-height: 1.85;
  border: none; padding: 0;
}

/* ── MODAL (gold border — C8A96A) ────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,22,26,.72);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #4A3F45;
  border: 2px solid #C8A96A;
  border-radius: 1.5rem;
  padding: 2.5rem 2.5rem 3rem;
  max-width: 460px; width: 100%; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transform: translateY(18px); transition: transform .3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-box h2 { color: #F7F5F2; margin-bottom: 1.5rem; }
.modal-close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  background: none; border: none; color: #F7F5F2; font-size: 1.5rem;
  cursor: pointer; line-height: 1; transition: color .2s;
}
.modal-close:hover { color: #D6D2CC; }
.modal-form { flex-direction: column !important; gap: .9rem !important; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 3rem 5vw 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #F7F5F2; display: block; }
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-email { display: inline-block; margin-top: .4rem; color: #C8A96A; font-size: .8rem; text-decoration: underline; text-underline-offset: 2px; transition: opacity .2s; }
.footer-email:hover { opacity: .75; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { color: rgba(214,210,204,.55); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #F7F5F2; }
.footer-social { display: flex; flex-direction: column; gap: .45rem; }
.footer-social span { color: #F7F5F2; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-social a { color: rgba(214,210,204,.55); font-size: .85rem; transition: color .2s; }
.footer-social a:hover { color: #F7F5F2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: .78rem; color: rgba(214,210,204,.35); }

/* ── PARTNER CARDS — compact with modal ──── */
.partner-card {
  min-height: 220px;
  justify-content: space-between;
}
.partner-tagline {
  color: rgba(74,63,69,.65);
  font-style: italic;
  font-size: .95rem;
  flex-grow: 1;
  margin: 0;
}
.card-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(74,63,69,.35);
  line-height: 1;
  margin-bottom: .5rem;
}
.partner-modal-btn { align-self: flex-start; margin-top: auto; }

/* Partner modal */
.partner-modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(20,14,18,.78);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.partner-modal-overlay.open { opacity: 1; pointer-events: all; }
.partner-modal-box {
  background: #4A3F45;
  border: 2px solid #C8A96A;
  border-radius: 1.5rem;
  padding: 2.5rem 2.5rem 2.75rem;
  max-width: 620px; width: 100%;
  max-height: 82vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,.5);
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.partner-modal-overlay.open .partner-modal-box { transform: translateY(0); }
.partner-modal-close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  background: none; border: none;
  color: #D6D2CC; font-size: 1.6rem;
  cursor: pointer; line-height: 1; transition: color .2s;
}
.partner-modal-close:hover { color: #F7F5F2; }
.partner-modal-title {
  color: #F7F5F2;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.partner-modal-body p {
  color: rgba(247,245,242,.82);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.partner-modal-body p:last-child { margin-bottom: 0; }
.partner-modal-cta { margin-top: 2rem; }

/* ── PARTNER PAGE ────────────────────────── */
.partner-options-section { background: #4A3F45; }

/* Partner hero — image slideshow */
.partner-hero-gallery {
  position: relative;
  height: 72vh;
  min-height: 420px;
  overflow: hidden;
  background: #4A3F45;
  margin-top: 62px; /* clear fixed navbar */
}
.phg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.phg-slide.active { opacity: 1; }
.phg-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, #4A3F45 100%);
  z-index: 2;
  pointer-events: none;
}

.partner-form { display: flex; flex-direction: column; gap: 1.2rem; text-align: left; }
.partner-form-wrap { background: #4A3F45; }
.partner-form-inner {
  position: relative; z-index: 1; max-width: 620px; margin: 0 auto; text-align: center;
  border: 2px solid #C8A96A; border-radius: 1.5rem; padding: 3rem 2.5rem;
}
.partner-form-inner h2 { margin-bottom: .6rem; }
.partner-form-inner > p { margin-bottom: 2rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
  .signup-inner { padding: 2rem 1.5rem; }
  .partner-form-inner { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #4A3F45; }
::-webkit-scrollbar-thumb { background: rgba(168,181,162,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A8B5A2; }
