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

:root {
  --blush: #FAE8ED;
  --mimi: #FDD5DF;
  --pink: #FFC2D1;
  --cherry: #FFB2C5;
  --amaranth: #FFA2B9;
  --deep-rose: #8E5A5A;
  --espresso: #3D2A25;
  --secondary: #6E4A45;
  --eyebrow: #C4836F;
  --cream: #FFF8F6;
  --dark-footer: #2A1F1B;
  --border: rgba(142,90,90,0.15);
  --pad-x: clamp(20px, 5vw, 72px);
  --pad-y: clamp(48px, 8vw, 88px);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  height: clamp(52px, 7vw, 62px);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links { display: flex; gap: clamp(16px, 3vw, 36px); align-items: center; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 300;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--deep-rose); }
.nav-links a.active { color: var(--espresso); font-weight: 400; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--deep-rose);
  color: var(--deep-rose);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 7px clamp(12px, 2vw, 20px);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--deep-rose); color: white; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: clamp(52px, 7vw, 62px);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad-x) 32px;
  z-index: 199;
  flex-direction: column;
  gap: 0;
  animation: slideDown 0.25s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.active { color: var(--espresso); font-weight: 400; }
.mobile-nav a:first-child { padding-top: 0; }
.mob-cta {
  background: var(--deep-rose);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
}
.mob-cta:hover { background: var(--espresso); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 11px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb span {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--eyebrow);
  text-transform: uppercase;
}
.breadcrumb .sep { opacity: 0.5; }

/* ── HERO ── */
.hero {
  background: var(--blush);
  padding: var(--pad-y) var(--pad-x);
  min-height: clamp(360px, 52vw, 460px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 300;
  color: var(--secondary);
  letter-spacing: 0.04em;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7.5vw, 72px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.06;
  margin-bottom: clamp(20px, 3vw, 30px);
  max-width: 680px;
}
.hero h1 em { font-style: italic; color: var(--deep-rose); }
.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: clamp(14px, 2vw, 20px);
}
.hero-link {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  color: var(--deep-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  margin-bottom: clamp(36px, 6vw, 60px);
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-cities, .hero-est {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--eyebrow);
  text-transform: uppercase;
}

/* ── SEEN IN ── */
.seen-in-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: clamp(12px, 2vw, 18px) var(--pad-x);
}
.seen-in-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--eyebrow);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.seen-in-logos { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; }
.seen-in-logos span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  color: var(--deep-rose);
  padding: 4px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--border);
}
.seen-in-logos span:last-child { border-right: none; }

/* ── MARQUEE ── */
.marquee-wrapper {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: clamp(10px, 1.5vw, 14px) 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--secondary);
  letter-spacing: 0.04em;
  padding: 0 clamp(18px, 3vw, 30px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee-track span::after { content: '•'; color: var(--cherry); font-size: 8px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-section {
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-image {
  background: var(--cherry);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 40vw, 540px);
  padding: 40px;
}
.about-image-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-style: italic;
  color: var(--deep-rose);
  text-align: center;
  line-height: 1.7;
  opacity: 0.85;
}
.about-content {
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--eyebrow);
  text-transform: uppercase;
  border: 1px solid var(--border);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: clamp(16px, 2.5vw, 28px);
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.about-content h2 em { font-style: italic; color: var(--deep-rose); }
.about-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.82;
  margin-bottom: 14px;
}

/* ── STATS ── */
.stats-section {
  background: var(--blush);
  border-top: 1px solid var(--border);
  padding: clamp(36px, 5vw, 68px) var(--pad-x);
}
.stats-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: clamp(28px, 4vw, 52px);
}
.stats-headline em { font-style: italic; color: var(--deep-rose); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.5;
}
.stat-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  color: var(--eyebrow);
}

/* ── CURATED ── */
.curated-section {
  background: var(--mimi);
  padding: var(--pad-y) var(--pad-x);
}
.curated-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 110px);
  margin-bottom: clamp(36px, 5vw, 64px);
  align-items: start;
}
.curated-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
}
.curated-section h2 em { font-style: italic; color: var(--deep-rose); }
.curated-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.82;
  padding-top: 8px;
}
.meetup-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.meetup-type {
  padding: clamp(24px, 4vw, 44px) clamp(20px, 4vw, 48px) clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.meetup-type:nth-child(even) {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: 0;
  border-right: none;
}
.meetup-type:nth-last-child(-n+2) { border-bottom: none; }
.meetup-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 300;
  color: var(--eyebrow);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.meetup-type h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 10px;
}
.meetup-type h3 em { font-style: italic; color: var(--deep-rose); }
.meetup-type p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.78;
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--blush);
  padding: var(--pad-y) var(--pad-x);
}
.gallery-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 110px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
}
.gallery-section h2 em { font-style: italic; color: var(--deep-rose); }
.gallery-intro-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.82;
  padding-top: 6px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.gallery-img {
  background: var(--cherry);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.gallery-img-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--deep-rose);
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
  padding: 0 16px;
}
.gallery-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 5px;
}
.gallery-card-loc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--eyebrow);
  text-transform: uppercase;
}
.gallery-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-style: italic;
  color: var(--secondary);
  text-align: center;
  margin-top: clamp(22px, 3vw, 36px);
  opacity: 0.75;
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--espresso);
  max-width: 760px;
  margin: 0 auto clamp(16px, 2.5vw, 28px);
  line-height: 1.42;
}
.testimonial-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--eyebrow);
}

/* ── UPCOMING ── */
.upcoming-section {
  background: var(--blush);
  padding: var(--pad-y) var(--pad-x);
}
.upcoming-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: clamp(32px, 5vw, 60px);
}
.upcoming-section h2 em { font-style: italic; color: var(--deep-rose); }
.meetup-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.meetup-row {
  display: grid;
  grid-template-columns: clamp(90px, 12vw, 140px) 1fr auto;
  align-items: center;
  padding: clamp(22px, 3.5vw, 36px) 0;
  border-bottom: 1px solid var(--border);
  gap: clamp(16px, 3vw, 40px);
}
.meetup-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--espresso);
}
.meetup-city {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--eyebrow);
  text-transform: uppercase;
  margin-top: 3px;
}
.meetup-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.3vw, 23px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 6px;
}
.meetup-info-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.65;
}
.meetup-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
}
.tag-spots { background: var(--amaranth); color: var(--espresso); }
.tag-announced { background: var(--deep-rose); color: white; }
.tag-waitlist { background: transparent; border: 1px solid var(--deep-rose); color: var(--deep-rose); }
.meetup-btn {
  background: var(--deep-rose);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 22px);
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.meetup-btn:hover { background: var(--espresso); }
.meetup-btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.meetup-btn-outline:hover { background: var(--secondary); color: white; }

/* ── SIGNUP ── */
.signup-section {
  background: var(--pink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.signup-left {
  padding: var(--pad-y) clamp(24px, 5vw, 68px);
}
.signup-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 18px;
}
.signup-left h2 em { font-style: italic; color: var(--deep-rose); }
.signup-left p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.78;
}
.signup-form-card {
  background: white;
  border-radius: 6px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  margin: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 60px) clamp(28px, 4vw, 52px) 0;
  box-shadow: 0 4px 44px rgba(61,42,37,0.09);
}
.form-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--eyebrow);
  text-transform: uppercase;
  border: 1px solid var(--border);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: clamp(12px, 2vw, 18px);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: clamp(18px, 3vw, 28px);
}
.form-group { margin-bottom: clamp(12px, 1.5vw, 16px); }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1px solid rgba(142,90,90,0.2);
  border-radius: 3px;
  padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.5vw, 14px);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--espresso);
  background: #FEFBFA;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--deep-rose); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(110,74,69,0.42); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238E5A5A' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  color: var(--secondary);
}
.form-textarea { resize: none; height: clamp(64px, 8vw, 84px); }
.form-submit {
  width: 100%;
  background: var(--deep-rose);
  color: white;
  border: none;
  border-radius: 3px;
  padding: clamp(11px, 1.5vw, 15px);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--espresso); }

/* ── FEATURED ── */
.featured-section {
  background: var(--cream);
  text-align: center;
  padding: clamp(36px, 5vw, 64px) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.featured-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--eyebrow);
  text-transform: uppercase;
  border: 1px solid var(--border);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: clamp(12px, 2vw, 18px);
}
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: clamp(16px, 2.5vw, 26px);
}
.featured-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.featured-logos span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 400;
  color: var(--deep-rose);
  padding: 4px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--border);
}
.featured-logos span:last-child { border-right: none; }

/* ── CTA ── */
.cta-section {
  background: var(--cherry);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 18px;
}
.cta-section h2 em { font-style: italic; color: var(--deep-rose); }
.cta-section p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--secondary);
  max-width: 420px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  line-height: 1.78;
}
.cta-btn {
  background: var(--deep-rose);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: clamp(12px, 1.6vw, 16px) clamp(24px, 4vw, 40px);
  border-radius: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.cta-btn:hover { background: var(--espresso); }

/* ── FOOTER ── */
footer {
  background: var(--dark-footer);
  padding: clamp(48px, 7vw, 76px) var(--pad-x) clamp(28px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.78;
}
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 300;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: clamp(18px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy, .footer-made {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 300;
  color: rgba(255,255,255,0.24);
  letter-spacing: 0.05em;
}
.footer-made { text-transform: uppercase; }

/* ══════════════ MOBILE ≤680px ══════════════ */
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 220px; }
  .about-content { padding: 40px var(--pad-x); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 16px 0 0 !important; }
  .stat-item:nth-child(2n) { padding-left: 16px !important; padding-right: 0 !important; border-right: none !important; }
  .stat-item:nth-child(2n+1) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(n+3) { padding-top: 24px; border-top: 1px solid var(--border); }
  .curated-header { grid-template-columns: 1fr; gap: 14px; }
  .meetup-types { grid-template-columns: 1fr; }
  .meetup-type { padding: 28px 0 !important; border-right: none !important; }
  .meetup-type:last-child { border-bottom: none; }
  .meetup-type:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .meetup-type:last-child { border-bottom: none; }
  .gallery-header-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-img { aspect-ratio: 16/9; }
  .meetup-row { grid-template-columns: 1fr; gap: 10px; }
  .meetup-btn { width: 100%; justify-content: center; }
  .signup-section { grid-template-columns: 1fr; }
  .signup-left { padding: 48px var(--pad-x) 24px; }
  .signup-form-card { margin: 0 var(--pad-x) 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════ TABLET 681–900px ══════════════ */
@media (min-width: 681px) and (max-width: 900px) {
  .nav-links { gap: 18px; }
  .about-section { grid-template-columns: 42% 58%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { padding-top: 24px; border-top: 1px solid var(--border); }
  .curated-header { grid-template-columns: 1fr; gap: 12px; }
  .gallery-header-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .meetup-row { grid-template-columns: 100px 1fr; }
  .meetup-row .meetup-btn { grid-column: 1 / -1; justify-content: center; }
  .signup-section { grid-template-columns: 1fr; }
  .signup-left { padding-bottom: 16px; }
  .signup-form-card { margin: 0 var(--pad-x) 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ── WP nav menu compatibility (Chai) ── */
.nav-links { list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--espresso); font-weight: 400; }
.mobile-nav ul.mobile-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { list-style: none; }
.mobile-nav-list li { list-style: none; }
.mobile-nav .current-menu-item > a { color: var(--deep-rose); }
