/* ══════════════════════════════════════════
   Crossroads Commons — Custom Styles
   ══════════════════════════════════════════ */

:root {
  --purple: #4C1241;
  --sky-blue: #4794B5;
  --magenta: #D43365;
  --orange: #E66000;
  --yellow: #F5A623;
  --cream: #F5F4EE;
  --charcoal: #261F22;
  --silver: #8D8786;
  --white: #FFFFFF;
}

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

/* ── WP BLOCK OVERRIDES ── */
/* Zero gap between top-level page sections only (not inner paragraphs) */
main.wp-block-group > *,
.wp-block-post-content > *,
.entry-content > * { margin-top: 0 !important; margin-bottom: 0 !important; }
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
.wp-site-blocks { padding-top: 0 !important; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── SCRIPT CALLOUT ── */
.script-callout {
  font-family: 'Native Record Script', cursive;
  font-size: 52px;
  color: var(--yellow);
  margin-bottom: 8px;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--white);
  height: 72px;
}
.nav-logo { height: 36px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--charcoal); text-decoration: none;
  font-size: 15px; font-weight: 600; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--magenta); }
.nav-cta {
  background: var(--purple) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 10px !important;
}
.nav-cta:hover { background: var(--magenta) !important; color: var(--white) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 12px; overflow: visible; position: relative;
  width: 48px; height: 48px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 3px; background: var(--purple);
  border-radius: 2px; transition: all 0.3s;
  position: absolute; left: 12px;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--purple); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 24px; font-weight: 700; letter-spacing: 1px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mobile-cta {
  background: var(--white); color: var(--purple);
  padding: 14px 36px; border-radius: 10px;
  font-size: 18px; font-weight: 700; margin-top: 16px;
}

/* ── HERO — full-width vision image ── */
.hero {
  margin-top: 72px;
  position: relative;
  min-height: min(calc(100vh - 72px), 780px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; display: block;
}
.hero-bg::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(76, 18, 65, 0.87) 0%, rgba(110, 30, 75, 0.65) 28%, rgba(76, 18, 65, 0.2) 58%, rgba(38, 31, 34, 0.06) 100%),
    linear-gradient(to top, rgba(76, 18, 65, 0.45) 0%, transparent 35%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 100px; max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 24px;
}
.hero-badge .material-symbols-outlined { font-size: 16px; }
.hero-script {
  font-family: 'Native Record Script', cursive;
  font-size: 48px; color: var(--yellow);
  margin-bottom: 4px; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-content h1 {
  font-size: 60px; font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 .highlight {
  text-decoration: underline; text-decoration-color: var(--yellow);
  text-underline-offset: 8px; text-decoration-thickness: 5px;
}
.hero-content .tagline {
  font-size: 22px; font-weight: 500;
  color: rgba(255,255,255,0.95); line-height: 1.5;
  max-width: 580px; margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-magenta { background: var(--magenta); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-white { background: var(--white); color: var(--magenta); }

/* ── COLOR BAR ── */
.color-bar {
  display: grid; grid-template-columns: repeat(5, 1fr); height: 8px;
}
.color-bar > div:nth-child(1) { background: var(--purple); }
.color-bar > div:nth-child(2) { background: var(--sky-blue); }
.color-bar > div:nth-child(3) { background: var(--magenta); }
.color-bar > div:nth-child(4) { background: var(--orange); }
.color-bar > div:nth-child(5) { background: var(--yellow); }

/* ── AS SEEN IN ── */
.as-seen-in {
  background: var(--cream);
  padding: 56px 48px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative; z-index: 2;
}
.as-seen-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 28px;
}
.logo-strip {
  display: flex; align-items: center; justify-content: space-evenly;
  flex-wrap: wrap; row-gap: 32px;
}
.logo-item {
  text-decoration: none; opacity: 0.45; transition: opacity 0.2s;
  display: flex; align-items: center; height: 32px;
}
.logo-item:hover { opacity: 0.85; }
.logo-item img {
  height: 100%; width: auto; object-fit: contain;
  filter: grayscale(100%);
}

/* ── VIDEO SECTION ── */
.video-section {
  background: #F7F6F1;
  padding: 100px 80px; position: relative; overflow: hidden;
}
.video-swoops {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  transform: translateY(-3%);
}
.video-section .section-label,
.video-heading,
.video-frame {
  position: relative; z-index: 1;
}
.video-section .section-label { text-align: center; }
.video-heading {
  font-size: 48px; font-weight: 800;
  color: var(--purple); text-align: center;
  margin-bottom: 48px;
}
.video-frame {
  max-width: 820px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.video-color-bar {
  display: grid; grid-template-columns: repeat(5, 1fr); height: 6px;
}
.video-color-bar > span:nth-child(1) { background: var(--purple); }
.video-color-bar > span:nth-child(2) { background: var(--sky-blue); }
.video-color-bar > span:nth-child(3) { background: var(--magenta); }
.video-color-bar > span:nth-child(4) { background: var(--orange); }
.video-color-bar > span:nth-child(5) { background: var(--yellow); }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 12px;
}
.section-title {
  font-size: 42px; font-weight: 800; color: var(--charcoal); margin-bottom: 48px;
  text-decoration: underline; text-decoration-color: var(--yellow);
  text-underline-offset: 10px; text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
}

/* ── PLACES GRID ── */
.places {
  padding: 100px 80px; max-width: 1280px; margin: 0 auto;
}
.places-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.place-tile {
  padding: 40px 32px; border-radius: 20px;
  text-align: center; color: var(--white);
}
.place-tile .material-symbols-outlined { font-size: 32px; margin-bottom: 16px; }
.place-tile h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.place-tile p { font-size: 14px; color: var(--white); opacity: 0.85; line-height: 1.6; }
.place-tile:nth-child(1) { background: var(--sky-blue); }
.place-tile:nth-child(2) { background: var(--magenta); }
.place-tile:nth-child(3) { background: var(--orange); }
.place-tile:nth-child(4) { background: var(--yellow); color: var(--charcoal); }
.place-tile:nth-child(4) h3 { color: var(--charcoal); }
.place-tile:nth-child(4) p { color: var(--charcoal); opacity: 0.7; }
.place-tile:nth-child(5) { background: var(--purple); }
.place-tile:nth-child(6) { background: var(--sky-blue); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; padding: 100px 80px; overflow: hidden;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(76, 18, 65, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-banner .script-callout {
  font-size: 72px; color: var(--yellow);
}
.cta-banner h2 {
  font-size: 44px; font-weight: 800; color: var(--white);
  margin-bottom: 20px; line-height: 1.15;
}
.cta-banner p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; line-height: 1.6;
}
.cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── PAGE HERO (About) ── */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--purple) 0%, #6E1E4B 60%, var(--magenta) 100%);
  padding: 100px 80px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(71, 148, 181, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.page-hero .script-callout {
  font-family: 'Native Record Script', cursive;
  font-size: 48px; color: var(--yellow); margin-bottom: 8px;
}
.page-hero h1 {
  font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.page-hero .subtitle {
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.85); line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

/* ── STORY SECTION ── */
.story {
  padding: 100px 80px; max-width: 820px; margin: 0 auto;
}
.story p {
  font-size: 18px; line-height: 1.8;
  color: var(--charcoal); margin-bottom: 24px;
}
.story p.highlight-name {
  font-size: 24px; font-weight: 800;
  color: var(--purple); margin-top: 40px; margin-bottom: 8px;
}
.story p.welcome {
  font-size: 20px; font-weight: 700;
  color: var(--magenta); font-style: italic;
}

/* ── MISSION / VISION ── */
.mission-vision {
  background: var(--cream);
  padding: 100px 80px; position: relative; overflow: hidden;
}
.mv-swoops {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  transform: translateY(-5%);
}
.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.mv-card {
  padding: 48px; border-radius: 20px;
  background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.mv-card .section-label { margin-bottom: 12px; }
.mv-card h3 {
  font-size: 28px; font-weight: 800;
  color: var(--charcoal); margin-bottom: 16px;
}
.mv-card p { font-size: 16px; line-height: 1.7; color: var(--charcoal); opacity: 0.8; }
.mv-card .accent-bar {
  width: 48px; height: 4px; border-radius: 2px; margin-bottom: 20px;
}

/* ── BOARD ── */
.board {
  padding: 100px 80px; max-width: 1100px; margin: 0 auto; text-align: center;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.board-member { text-align: center; }
.board-member .avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue), var(--purple));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.board-member .avatar .material-symbols-outlined {
  font-size: 48px; color: rgba(255,255,255,0.6);
}
.board-member .avatar img { width: 100%; height: 100%; object-fit: cover; }
.board-member h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.board-member p { font-size: 14px; color: var(--silver); }

/* ── FAQ ── */
.faq {
  background: var(--cream); padding: 100px 80px;
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq .section-label { text-align: center; }
.faq .section-title { text-align: center; }
.faq-item {
  background: var(--white); border-radius: 16px;
  padding: 32px; margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  cursor: pointer; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.faq-question {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-question h4 { font-size: 17px; font-weight: 700; color: var(--charcoal); }
.faq-question .material-symbols-outlined {
  font-size: 24px; color: var(--magenta);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
.faq-answer p {
  font-size: 15px; line-height: 1.7;
  color: var(--charcoal); opacity: 0.75;
}
.faq-answer a {
  color: var(--magenta); text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--purple); color: var(--white);
  padding: 0 80px 32px;
}
.footer-stripe { display: flex; height: 4px; }
.footer-stripe span { flex: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px; padding-top: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px; color: var(--yellow);
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.footer-col .visit-location {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 4px;
}
.footer-col .visit-location .material-symbols-outlined {
  font-size: 20px; color: var(--yellow);
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.35);
}

/* ── MEDIA COVERAGE ── */
.media-section {
  padding: 100px 80px; max-width: 1280px; margin: 0 auto;
}
.media-inner { max-width: 1200px; margin: 0 auto; }
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.media-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-decoration: none; display: flex; flex-direction: column;
  transition: all 0.2s;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.media-card-logo {
  height: 28px; margin-bottom: 20px; display: flex; align-items: center;
}
.media-card-logo img {
  height: 100%; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.5;
}
.media-card-title {
  font-size: 18px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px; line-height: 1.4;
}
.media-card-meta {
  font-size: 13px; color: var(--silver); margin-bottom: 12px;
  font-weight: 600; letter-spacing: 0.5px;
}
.media-card-excerpt {
  font-size: 14px; line-height: 1.65; color: var(--charcoal);
  opacity: 0.7; margin-bottom: 20px; flex: 1;
}
.media-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--magenta);
}
.media-card-link .material-symbols-outlined { font-size: 18px; }

/* ── BLOG ── */
.blog-section {
  padding: 80px 80px 40px; max-width: 1280px; margin: 0 auto;
}
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 64px; align-items: center;
}
.blog-featured-image img,
.blog-featured .wp-post-image {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 20px;
}
.blog-featured-content { display: flex; flex-direction: column; }
.blog-post-date {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 12px;
}
.blog-featured .blog-post-title,
.blog-featured .blog-post-title a {
  font-size: 32px; font-weight: 800; color: var(--charcoal);
  line-height: 1.2; margin-bottom: 16px; text-decoration: none;
}
.blog-featured .blog-post-title a:hover { color: var(--magenta); }
.blog-featured .blog-post-excerpt,
.blog-featured .blog-post-excerpt p {
  font-size: 16px; line-height: 1.7; color: var(--charcoal); opacity: 0.75;
}
.blog-featured .blog-post-excerpt .wp-block-post-excerpt__more-text a {
  color: var(--magenta); font-weight: 700; text-decoration: none;
}
.blog-grid {
  margin-bottom: 48px;
}
.blog-grid-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.blog-card-image img,
.blog-card .wp-post-image {
  width: 100%; height: 200px; object-fit: cover;
}
.blog-card-content { padding: 24px; }
.blog-card .blog-post-title,
.blog-card .blog-post-title a {
  font-size: 18px; font-weight: 700; color: var(--charcoal);
  line-height: 1.35; margin-bottom: 8px; text-decoration: none;
}
.blog-card .blog-post-title a:hover { color: var(--magenta); }
.blog-card .blog-post-excerpt,
.blog-card .blog-post-excerpt p {
  font-size: 14px; line-height: 1.6; color: var(--charcoal); opacity: 0.7;
}
.blog-card .blog-post-excerpt .wp-block-post-excerpt__more-text a {
  color: var(--magenta); font-weight: 700; text-decoration: none;
}
.blog-no-results {
  text-align: center; padding: 60px 24px;
  font-size: 18px; color: var(--silver);
}
.wp-block-query-pagination {
  padding: 20px 0 60px; display: flex; justify-content: center; gap: 8px;
}
.wp-block-query-pagination a,
.wp-block-query-pagination span {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.wp-block-query-pagination a { color: var(--magenta); }
.wp-block-query-pagination a:hover { background: var(--cream); }

/* ── CONTACT ── */
.contact-section {
  padding: 100px 80px; max-width: 1200px; margin: 0 auto;
}
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
  align-items: start;
}
.contact-form-col .section-title { margin-bottom: 32px; }
.contact-form-wrap {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-info-col {}
.contact-info-card {
  background: var(--cream); border-radius: 20px; padding: 40px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-size: 20px; font-weight: 800; color: var(--charcoal);
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .material-symbols-outlined {
  font-size: 24px; color: var(--magenta); flex-shrink: 0; margin-top: 2px;
}
.contact-info-item strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px; line-height: 1.6; color: var(--charcoal); opacity: 0.7;
}
.contact-info-item a { color: var(--magenta); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-social { text-align: center; }
.contact-social h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 16px;
}
.contact-social-links { display: flex; gap: 12px; justify-content: center; }
.contact-social-link {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; text-decoration: none; transition: all 0.2s;
}
.contact-social-link .material-symbols-outlined {
  font-size: 22px; color: var(--purple);
}
.contact-social-link:hover { background: var(--purple); }
.contact-social-link:hover .material-symbols-outlined { color: var(--white); }

/* WPForms brand overrides */
.wpforms-container .wpforms-field-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important; color: var(--charcoal) !important;
}
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container textarea {
  border: 2px solid #E5E3E0 !important; border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  transition: border-color 0.2s !important;
}
.wpforms-container input:focus,
.wpforms-container textarea:focus {
  border-color: var(--magenta) !important; outline: none !important;
}
.wpforms-container .wpforms-submit {
  background: var(--purple) !important; color: var(--white) !important;
  border: none !important; border-radius: 10px !important;
  padding: 14px 36px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important; font-weight: 600 !important;
  cursor: pointer !important; transition: all 0.2s !important;
}
.wpforms-container .wpforms-submit:hover {
  background: var(--magenta) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

/* ── LOGO CAROUSEL (mobile) ── */
@keyframes logo-scroll {
  0%, 12%    { transform: translateX(0); }
  16%, 28%   { transform: translateX(-100%); }
  32%, 44%   { transform: translateX(-200%); }
  48%, 60%   { transform: translateX(-300%); }
  64%, 76%   { transform: translateX(-400%); }
  80%, 92%   { transform: translateX(-500%); }
  96%, 100%  { transform: translateX(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { margin-top: 72px; min-height: 0; align-items: center; }
  .hero-bg img { object-position: center 70%; }
  .hero-bg::after {
    background: linear-gradient(
      to right,
      rgba(76, 18, 65, 0.78) 0%,
      rgba(76, 18, 65, 0.45) 60%,
      rgba(38, 31, 34, 0.15) 100%
    );
  }
  .hero-content { padding: 48px 24px; }
  .hero-script { font-size: 32px; }
  .hero-content h1 { font-size: 42px; }
  .hero-content .tagline { font-size: 17px; }

  .places { padding: 60px 24px; }
  .places-grid { grid-template-columns: 1fr; }

  .video-section { padding: 48px 24px; }
  .video-swoops { transform: translateY(9%) rotate(10deg); }

  .as-seen-in { padding: 36px 24px; overflow: hidden; }
  .logo-strip {
    display: flex; flex-wrap: nowrap; justify-content: flex-start;
    gap: 0; animation: logo-scroll 18s infinite;
  }
  .logo-item {
    min-width: 100%; height: 28px;
    justify-content: center; opacity: 0.5;
  }

  .cta-banner { padding: 60px 24px; }
  .script-callout { font-size: 32px !important; }

  .page-hero { padding: 60px 24px 48px; }
  .page-hero .script-callout { font-size: 32px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero .subtitle { font-size: 17px; }

  .story { padding: 60px 24px; }
  .story p { font-size: 16px; }

  .mission-vision { padding: 60px 24px; }
  .mission-vision-grid { grid-template-columns: 1fr; gap: 24px; }
  .mv-card { padding: 32px 24px; }

  .board { padding: 60px 24px; }
  .board .section-title { font-size: 32px; }
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .faq { padding: 60px 24px; }
  .faq .section-title { font-size: 32px; }

  .site-footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .media-section { padding: 60px 24px; }
  .media-grid { grid-template-columns: 1fr; }

  .blog-section { padding: 48px 24px 24px; }
  .blog-featured { grid-template-columns: 1fr; gap: 24px; }
  .blog-featured-image img,
  .blog-featured .wp-post-image { height: 240px; }
  .blog-featured .blog-post-title,
  .blog-featured .blog-post-title a { font-size: 24px; }
  .blog-grid-inner { grid-template-columns: 1fr; }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
}
