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

:root {
  --navy: #264266;
  --teal: #c2d7ea;
  --orange: #eb8861;
  --yellow: #edcf7b;
  --cream: #f1e8d7;
  --warm-beige: #f1e8d7;
  --blue: #4573b9;
  --white: #FFFFFF;
  --blush: #ebbcb5;
  --off-white: #fbfaf5;
  --dark: #1a1a1a;
  --font-heading: 'Josefin Sans', Helvetica, Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

*, *::before, *::after { min-width: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(38, 66, 102, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #d4714e;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../../img/header-bkgd.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(38, 66, 102, 0.85) 0%, rgba(30, 48, 69, 0.8) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(194, 215, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(235, 136, 97, 0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: left;
}

.hero-video {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-logo-wrap {
  margin-bottom: 24px;
  line-height: 0;
}

.hero-logo-wrap img {
  width: clamp(200px, 35vw, 360px);
  height: auto;
  display: block;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.1111rem);
  color: var(--teal);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.8889rem, 2.5vw, 1.2222rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-details {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(230, 223, 207, 0.8);
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #d4714e;
  border-color: #d4714e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(235, 136, 97, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: #a8c5de;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 215, 234, 0.3);
}

/* WAVE DIVIDER */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* SECTION STYLES */
section { padding: 80px 0; position: relative; overflow: hidden; }

.section-tag {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7778rem, 5vw, 2.6667rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  line-height: 1.7;
}

.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

.event-date-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.event-date-pill.text-center { display: block; text-align: center; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy .section-tag { color: var(--yellow); }
.bg-navy .section-title { color: var(--cream); }
.bg-navy .section-intro { color: rgba(230, 223, 207, 0.8); }
.text-center { text-align: center; }

/* ABOUT / WHAT IS CRABFEST */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.about-image-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-img-top {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.about-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-img-half {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.75;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 1rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* WHATS HAPPENING */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}
.features-grid > .feature-card {
  flex: 0 1 calc((100% - 64px) / 3);
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(38, 66, 102, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5556rem;
}

.icon-img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

/* Dark icons on light backgrounds (feature cards on cream section) */
.feature-icon .icon-img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(30%) saturate(1000%) hue-rotate(185deg) brightness(90%) contrast(90%);
}

/* White icons on dark/colored backgrounds (entertainment and community sections) */
.performer-avatar .icon-img,
.community-icon .icon-img {
  filter: brightness(0) invert(1);
}

.feature-icon.crab { background: rgba(235, 136, 97, 0.15); }
.feature-icon.music { background: rgba(194, 215, 234, 0.3); }
.feature-icon.family { background: rgba(237, 207, 123, 0.3); }
.feature-icon.market { background: rgba(69, 115, 185, 0.15); }
.feature-icon.chef { background: rgba(235, 136, 97, 0.15); }
.feature-icon.drinks { background: rgba(194, 215, 234, 0.3); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1111rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.highlight-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.highlight-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.highlight-card .content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1111rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 1rem;
  opacity: 0.85;
}

.highlight-stat {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ENTERTAINMENT */
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.performer-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 232, 215, 0.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.performer-card:hover {
  border-color: var(--teal);
  background: rgba(194, 215, 234, 0.08);
}

.performer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7778rem;
}

.performer-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.performer-card p {
  font-size: 1rem;
  color: rgba(230, 223, 207, 0.65);
  line-height: 1.5;
}

.performer-card .time-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* KIDS ZONE */
.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.kids-image-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kids-img-top {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.kids-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kids-img-half {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.kids-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-activities {
  list-style: none;
  margin-top: 24px;
}

.kids-activities li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kids-activities li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* CULINARY EXPERIENCE (flipped: text left, images right) */
.culinary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.culinary-image-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.culinary-img-top {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.culinary-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culinary-img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.culinary-img-half {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.culinary-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EDUCATIONAL MARKETPLACE (flipped: text left, images right) */
.marketplace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

/* SCHEDULE */
.schedule-tabs {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.schedule-tab {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(38, 66, 102, 0.15);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

.schedule-tab.active, .schedule-tab:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--navy);
}

.schedule-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
}

.schedule-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.schedule-table .stage-badge {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(194, 215, 234, 0.2);
  color: var(--navy);
}

.schedule-table .stage-badge.family {
  background: rgba(255, 220, 98, 0.2);
  color: #b8960e;
}

.schedule-table .stage-badge.captains {
  background: rgba(235, 136, 97, 0.2);
  color: var(--orange);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid rgba(38, 66, 102, 0.08);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(235, 136, 97, 0.15);
  padding-top: 64px;
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card .card-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3333rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.6667rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount .dollar { font-size: 1.5556rem; vertical-align: top; margin-right: 2px; }

.price-note {
  font-size: 1rem;
  color: #999;
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-card ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.price-card .btn { width: 100%; text-align: center; }

.pickup-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.pickup-links .btn {
  flex: 1;
  width: auto;
  padding: 12px 8px;
  font-size: 0.8rem;
}

/* GA SPECIAL */
.ga-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
  border-radius: 16px;
  padding: 48px;
  margin-top: 48px;
  text-align: center;
}

.ga-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5556rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.ga-section p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 24px;
}

.donation-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.donation-chip {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.donation-chip:hover, .donation-chip.selected {
  background: var(--navy);
  color: var(--cream);
}

/* COMMUNITY */
.community-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 75px;
}

.community-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.community-card {
  text-align: center;
  padding: 40px 24px;
}

.community-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7778rem;
}

.community-icon.food { background: rgba(235, 136, 97, 0.15); }
.community-icon.education { background: rgba(255, 255, 255, 0.15); }
.community-icon.ocean { background: rgba(194, 215, 234, 0.2); }

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2222rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.community-card p {
  font-size: 1rem;
  color: rgba(230, 223, 207, 0.7);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 2.3333rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-link {
  color: var(--navy);
  text-underline-offset: 3px;
}

.faq-link:hover {
  color: var(--orange);
}

/* GALLERY / INSTAGRAM */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 48px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 66, 102, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

.gallery-cta a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.gallery-cta a:hover { color: var(--orange); }

/* SPONSORS & PARTNERS */
#sponsors {
  background: var(--off-white);
  padding: 0 0 80px;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.sponsor-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 24px;
  width: 160px;
  height: 80px;
  flex-shrink: 0;
}

.sponsor-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.sponsor-logo-wrap:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sponsor-tier-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: -32px;
  opacity: 0.7;
}

.sponsors-tier-funders,
.sponsors-tier-title-sponsors,
.sponsors-tier-major,
.sponsors-tier-community,
.sponsors-tier-zerowaste {
  margin-top: 32px;
}

/* GET INVOLVED */
#get-involved {
  padding: 80px 0;
}
#get-involved .hero-buttons {
  justify-content: center;
}

/* ABOUT BC CRAB CO */
#about-crabco {
  background: var(--cream);
  padding: 100px 0;
}

.crabco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.crabco-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crabco-img-top,
.crabco-img-bottom {
  border-radius: 12px;
  overflow: hidden;
}

.crabco-img-top {
  aspect-ratio: 16/9;
}

.crabco-img-bottom {
  aspect-ratio: 16/9;
}

.crabco-img-top img,
.crabco-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crabco-text p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.crabco-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.crabco-link:hover {
  color: var(--orange);
}

.btn-outline-navy {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

@media (max-width: 768px) {
  .crabco-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .crabco-img-bottom {
    margin-top: 24px;
  }
}

/* CTA FOOTER */
.cta-footer {
  background: linear-gradient(160deg, var(--navy) 0%, #1e3045 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(235, 136, 97, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(194, 215, 234, 0.1) 0%, transparent 50%);
}

.cta-footer-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-footer h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.1111rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-date {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px !important;
}

.cta-footer p {
  font-size: 1rem;
  color: rgba(230, 223, 207, 0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-footer .btn-primary {
  font-size: 1rem;
  padding: 16px 48px;
}

.cta-footer .ticket-note {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(230, 223, 207, 0.5);
  font-family: var(--font-heading);
}

/* SITE FOOTER */
.site-footer {
  background: #141e2b;
  padding: 48px 24px 24px;
  color: rgba(230, 223, 207, 0.5);
  font-size: 1rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo span { color: var(--orange); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(230, 223, 207, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.sponsor-bar {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 223, 207, 0.1);
}

.sponsor-bar p {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(230, 223, 207, 0.35);
  margin-bottom: 12px;
}

.sponsor-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.4;
}

.sponsor-logos span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
}

/* FADE-UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid > .feature-card { flex: 0 1 calc((100% - 32px) / 2); }
  .entertainment-grid,
  .pricing-grid,
  .community-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .about-grid,
  .kids-grid,
  .culinary-grid,
  .marketplace-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid > .feature-card { flex: 0 1 100%; }
  .entertainment-grid,
  .pricing-grid,
  .community-grid { grid-template-columns: 1fr; }

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

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .community-images { grid-template-columns: 1fr; }

  .stat-row { gap: 24px; }

  .ga-section { padding: 32px 20px; }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo-wrap img {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-video {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .stat-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .schedule-table thead { display: none; }

  .schedule-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .schedule-table tbody tr td {
    padding: 2px 0;
    border-bottom: none;
  }

  .schedule-table tbody tr td:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
  }

  .schedule-table tbody tr td:nth-child(2) {
    font-family: var(--font-body);
    font-weight: 400;
    color: #555;
    font-size: 0.95rem;
  }

  .schedule-table tbody tr td:last-child {
    margin-top: 4px;
  }

  .schedule-table tbody tr td:last-child .stage-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 16px 60px; }

  .pickup-links {
    flex-direction: column;
  }
}