/* ══════════════════════════════════════════════
   MESA MINGLES — Brand Stylesheet
   Colors matched to official flyer/FB branding
   ══════════════════════════════════════════════ */

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

:root {
  /* Brand Blues */
  --blue-deep:    #1B2D5B;
  --blue-primary: #1E3A6E;
  --blue-mid:     #2C4F8A;
  --blue-light:   #3A6BB5;
  --blue-pale:    #E8EEF6;

  /* Brand Yellow */
  --yellow:       #F7C948;
  --yellow-bright:#FFDA44;
  --yellow-dark:  #D4A520;

  /* Brand Red */
  --red:          #C0392B;
  --red-light:    #E74C3C;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F8F9FC;
  --gray-100:     #F0F2F5;
  --gray-200:     #E2E5EA;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --gray-900:     #111827;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-script:  'Caveat', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Subtle grain overlay — gives everything a printed/physical feel */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY UTILITIES ── */
.section-label {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--blue-primary);
  margin-bottom: .5rem;
}
.section-label-light { color: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.section-title-light { color: var(--white); }
.highlight {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
.highlight::after {
  content: '';
  position: absolute;
  left: -.05em; right: -.05em;
  bottom: .02em;
  height: .18em;
  background: var(--yellow);
  opacity: .45;
  transform: skewX(-3deg);
  z-index: -1;
}
.highlight-yellow { color: var(--yellow-bright); }
.script-text {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--red);
  font-size: 1.15em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-yellow {
  background: var(--yellow);
  color: var(--blue-deep);
}
.btn-yellow:hover {
  background: var(--yellow-bright);
  box-shadow: 4px 4px 0 var(--blue-deep);
}
.btn-blue {
  background: var(--blue-primary);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-mid);
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all .35s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,45,91,.08);
  padding: .8rem 2rem;
}
.nav-logo {
  display: flex; gap: .35rem; align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}
.nav-logo-mesa { color: var(--white); transition: color .35s; }
.nav-logo-mingles { color: var(--yellow); transition: color .35s; }
.nav.scrolled .nav-logo-mesa { color: var(--blue-deep); }
.nav.scrolled .nav-logo-mingles { color: var(--yellow-dark); }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--yellow); }
.nav.scrolled .nav-links a:hover { color: var(--blue-primary); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--blue-deep) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: all .3s !important;
}
.nav-cta:hover {
  background: var(--yellow-bright) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(247,201,72,.4);
}

.nav-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative; z-index: 110;
}
.nav-mobile-toggle span {
  display: block; position: absolute; left: 0; right: 0;
  height: 2.5px; background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.nav.scrolled .nav-mobile-toggle span { background: var(--blue-deep); }
.nav-mobile-toggle span:nth-child(1) { top: 0; }
.nav-mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-mobile-toggle span:nth-child(3) { bottom: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/518323880_10234712118317995_690716703280826775_n.jpg') center 30% / cover no-repeat;
  opacity: .15;
}
.hero-shapes {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.hero-shape { position: absolute; }
/* Replace geometric AI shapes with organic, large-scale color washes */
.hero-shape-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(247,201,72,.08) 0%, transparent 70%);
  top: -30%; right: -15%;
}
.hero-shape-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,107,181,.12) 0%, transparent 70%);
  bottom: -20%; left: -10%;
}
.hero-shape-3 {
  width: 400px; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(247,201,72,.2), transparent);
  top: 22%; left: 0; right: 0;
}
.hero-shape-4 { display: none; }
.hero-content {
  position: relative; z-index: 10;
  padding: 0 2rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(247,201,72,.12);
  border: 1px solid rgba(247,201,72,.25);
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 2rem;
  animation: fadeInDown .8s ease-out both;
}
.hero-badge-dot { display: none; }

.hero-title {
  font-family: var(--font-display);
  line-height: .9;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out .15s both;
}
.hero-title-mesa {
  display: block;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--white);
  letter-spacing: .06em;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero-title-mingles {
  display: block;
  font-size: clamp(4rem, 11vw, 8rem);
  color: var(--yellow);
  letter-spacing: .04em;
  text-shadow: 2px 3px 0 rgba(0,0,0,.15);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: rgba(255,255,255,.7);
  letter-spacing: .15em;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out .3s both;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out .45s both;
}
.hero-sub strong { color: var(--yellow); font-weight: 600; }
.hero-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out .6s both;
}
.hero-countdown {
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease-out .8s both;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.countdown-label {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-scroll { display: none; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT ── */
.about {
  padding: 6rem 0 5rem;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--blue-primary); }
.about-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-photo {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--yellow);
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid transparent;
  border-left: 3px solid var(--blue-primary);
}
.stat-card-blue {
  background: var(--blue-pale);
  border-color: rgba(30,58,110,.08);
}
.stat-card-yellow {
  background: #FFF8E1;
  border-color: rgba(247,201,72,.2);
}
.stat-card-red {
  background: #FDEDEC;
  border-color: rgba(192,57,43,.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-card-yellow { border-left-color: var(--yellow-dark); }
.stat-card-yellow .stat-number { color: var(--yellow-dark); }
.stat-card-red { border-left-color: var(--red); }
.stat-card-red .stat-number { color: var(--red); }
.stat-label {
  font-size: .8rem; font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: flex;
  gap: 4px;
  overflow: hidden;
  height: 200px;
}
.photo-strip img {
  flex: 1;
  min-width: 0;
  object-fit: cover;
  object-position: center 25%;
  height: 100%;
  filter: saturate(.9);
  transition: filter .4s, flex .5s;
}
.photo-strip img:hover {
  filter: saturate(1.1);
  flex: 1.8;
}

/* ── WHAT TO EXPECT ── */
.expect {
  padding: 5rem 0 6rem;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
.expect::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: linear-gradient(135deg, rgba(247,201,72,.08), transparent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.expect-header { text-align: center; margin-bottom: 3.5rem; }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.expect-card {
  background: rgba(255,255,255,.04);
  border: none;
  border-top: 3px solid rgba(247,201,72,.3);
  border-radius: 0;
  padding: 2.5rem 2rem 2rem;
  transition: border-color .35s;
}
.expect-card:hover {
  border-top-color: var(--yellow);
}
/* Stagger the cards slightly for organic feel */
.expect-card:nth-child(2) { margin-top: 1.5rem; }
.expect-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.expect-icon-yellow { background: rgba(247,201,72,.15); color: var(--yellow); }
.expect-icon-red { background: rgba(192,57,43,.15); color: var(--red-light); }
.expect-icon-blue { background: rgba(58,107,181,.2); color: var(--blue-light); }
.expect-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: .6rem;
}
.expect-card p {
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  font-size: .95rem;
}

/* ── NEXT EVENT ── */
.event {
  padding: 7rem 0;
  background: var(--off-white);
}
.event-header {
  text-align: center;
  margin-bottom: 3rem;
}
.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(27,45,91,.08);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 340px 1fr;
}
.event-date-side {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 3.5rem 2.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.event-date-side::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3.5-2 3z'/%3E%3C/g%3E%3C/svg%3E");
}
.event-date-badge {
  position: relative;
  margin-bottom: 1.5rem;
}
.event-date-month {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--yellow);
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.event-date-weekday {
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.event-time-badge {
  position: relative;
  background: var(--yellow);
  color: var(--blue-deep);
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
  margin-bottom: 1.5rem;
}
.event-recur {
  position: relative;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.event-recur strong { color: var(--yellow); }

.event-details { padding: 3.5rem; }
.event-details h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .03em;
  margin-bottom: .35rem;
}
.event-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-weight: 500;
}
.event-info-list {
  list-style: none;
  margin-bottom: 2rem;
}
.event-info-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.event-info-list li:last-child { border-bottom: none; }
.event-info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
}
.event-info-list li div:last-child strong {
  display: block; font-weight: 700;
  color: var(--gray-900);
  font-size: .95rem;
}
.event-info-list li div:last-child span {
  font-size: .85rem; color: var(--gray-500);
}
.event-actions {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
}
.event-note {
  font-size: .85rem; font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── RSVP FORM ── */
.rsvp {
  padding: 5rem 0 0;
  background: var(--white);
}
.rsvp-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.rsvp-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-top: 1rem;
}
.rsvp-perk {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.rsvp-form-container {
  max-width: 720px;
  margin: 0 auto;
}
.rsvp-iframe {
  width: 100%;
  height: 2100px;
  border: none;
  display: block;
  background: var(--white);
  overflow: hidden;
}

/* ── COMMUNITY / TESTIMONIALS ── */
.community {
  padding: 7rem 0;
  background: linear-gradient(175deg, var(--blue-primary) 0%, var(--blue-deep) 100%);
  position: relative;
}
.community-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2.25rem;
  border-left: 4px solid var(--yellow);
}
/* Stagger testimonials for organic asymmetry */
.testimonial-card:nth-child(2) { margin-top: 2rem; border-left-color: var(--blue-light); }
.testimonial-card:nth-child(3) { margin-top: -1rem; border-left-color: var(--red); }
.testimonial-stars {
  color: var(--yellow);
  font-size: .85rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.testimonial-quote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .8rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--gray-500); }

/* ── JOIN CTA ── */
.join {
  padding: 7rem 0;
  background: var(--blue-deep);
  text-align: center;
  position: relative; overflow: hidden;
}
.join-shapes {
  position: absolute; inset: 0;
  pointer-events: none;
}
.join-shape {
  position: absolute;
}
.join-shape-1 {
  width: 300px; height: 300px;
  background: rgba(247,201,72,.06);
  top: -50px; right: -50px;
  transform: rotate(30deg);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.join-shape-2 {
  width: 200px; height: 200px;
  background: rgba(192,57,43,.08);
  bottom: -40px; left: 10%;
  transform: rotate(-20deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.join-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.join-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.join-text {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 2.5rem;
}
.join-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #0D1528;
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .footer-logo {
  display: flex; gap: .3rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.footer-tagline {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-bottom: .25rem;
}
.footer-location {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  padding: .3rem 0;
  transition: color .3s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--blue-deep);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/518314919_10234712118397997_9174972330662055543_n.jpg') center 40% / cover no-repeat;
  opacity: .12;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  margin: 0 auto;
}
.nav-links a.active { color: var(--yellow) !important; }

/* ── NEXT EVENT HIGHLIGHT BAR ── */
.next-highlight { padding: 2.5rem 0; background: var(--off-white); }
.next-highlight-card {
  display: flex; align-items: center; gap: 2rem;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 1.75rem 2.5rem;
  flex-wrap: wrap;
}
.next-highlight-badge {
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .35rem .85rem;
  border-radius: 100px;
}
.next-highlight-date {
  display: flex; flex-direction: column; align-items: center;
  line-height: 1;
}
.next-highlight-month {
  font-family: var(--font-display);
  font-size: .9rem; color: var(--red);
  text-transform: uppercase; letter-spacing: .1em;
}
.next-highlight-day {
  font-family: var(--font-display);
  font-size: 2.8rem; color: var(--blue-deep);
}
.next-highlight-info { flex: 1; min-width: 200px; }
.next-highlight-info h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: .03em;
}
.next-highlight-info p {
  font-size: .9rem; color: var(--gray-500);
}

/* ── CALENDAR GRID ── */
.calendar-section { padding: 4rem 0 6rem; background: var(--white); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.calendar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.calendar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(27,45,91,.08);
}
.calendar-card-next {
  border-color: var(--yellow);
  border-width: 2px;
  background: #FFFDF5;
}
.calendar-card-past { opacity: .5; }
.calendar-card-header {
  display: flex; justify-content: space-between;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: .5rem;
}
.calendar-card-month { color: var(--blue-primary); }
.calendar-card-day {
  font-family: var(--font-display);
  font-size: 3.5rem; line-height: 1;
  color: var(--blue-deep);
}
.calendar-card-next .calendar-card-day { color: var(--yellow-dark); }
.calendar-card-weekday {
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .75rem;
}
.calendar-card-time {
  font-size: .85rem; font-weight: 600;
  color: var(--gray-700);
}
.calendar-card-theme {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--red);
  margin-top: .25rem;
}
.calendar-card-venue {
  font-size: .78rem; color: var(--gray-500);
  margin-top: .25rem; margin-bottom: 1rem;
}
.calendar-card-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .85rem;
  border-radius: 100px;
}
.calendar-card-badge-past {
  background: var(--gray-100); color: var(--gray-500);
}
.calendar-card-badge-rsvp {
  background: var(--blue-primary); color: var(--white);
  transition: background .3s;
}
.calendar-card-badge-rsvp:hover { background: var(--blue-mid); }

/* ── SPOTLIGHT (BUSINESS OF THE MONTH) ── */
.spotlight {
  padding: 5rem 0;
  background: var(--blue-deep);
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.spotlight-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: .35rem;
}
.spotlight-tagline {
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.spotlight-quote {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  border: none; margin: 0 0 .5rem; padding: 0;
}
.spotlight-owner {
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.spotlight-meta {
  display: flex; gap: 1.5rem;
}
.spotlight-meta span {
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.spotlight-right h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.spotlight-highlights {
  list-style: none;
}
.spotlight-highlights li {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 0;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
}

/* ── BUSINESS DIRECTORY ── */
.directory-section { padding: 4rem 0 6rem; background: var(--white); }
.directory-controls {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.directory-search {
  display: flex; align-items: center; gap: .75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: .85rem 1.25rem;
  max-width: 400px;
  color: var(--gray-500);
  transition: border-color .3s;
}
.directory-search:focus-within {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30,58,110,.08);
}
.directory-search input {
  border: none; background: none; outline: none;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  width: 100%;
}
.directory-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.filter-pill {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .25s;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.filter-pill:hover { border-color: var(--blue-primary); color: var(--blue-primary); }
.filter-pill.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}
.directory-count {
  font-size: .85rem; color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.business-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s;
  border-top: 3px solid var(--gray-200);
}
.business-card:hover {
  border-top-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(27,45,91,.06);
}
.business-card[style*="display: none"] { display: none !important; }
.business-card-top {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1rem;
}
.business-avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
}
.business-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.business-owner {
  font-size: .82rem; color: var(--gray-500);
}
.business-category {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .85rem;
}
.business-desc {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.business-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .85rem;
  border-top: 1px solid var(--gray-100);
}
.business-phone {
  font-size: .82rem; color: var(--gray-500);
}
.business-link {
  font-size: .82rem; font-weight: 700;
  color: var(--blue-primary);
  transition: color .25s;
}
.business-link:hover { color: var(--blue-mid); }
.directory-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray-500);
  font-size: 1rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo img { height: 220px; }
  .expect-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .event-card { grid-template-columns: 1fr; }
  .event-date-side { padding: 2.5rem; }
  .event-date-day { font-size: 5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .next-highlight-card { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    box-shadow: 0 12px 40px rgba(27,45,91,.1);
    gap: 0;
  }
  .nav-links.open a {
    color: var(--gray-900) !important;
    padding: .65rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links.open .nav-cta {
    margin-top: .75rem;
    text-align: center;
    justify-content: center;
  }
  .nav-mobile-toggle { display: block; }
  section, .about, .expect, .event, .community, .join { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .join-actions { flex-direction: column; align-items: center; }
  .event-details { padding: 2rem 1.5rem; }
  .event-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .event-actions .btn { justify-content: center; }
  .calendar-grid { grid-template-columns: 1fr 1fr; }
  .calendar-card-day { font-size: 2.5rem; }
  .directory-grid { grid-template-columns: 1fr; }
  .spotlight-meta { flex-direction: column; gap: .5rem; }
}
