:root {
  --deep-blue: #083c5c;
  --ocean: #087b8f;
  --aqua: #2bbfc2;
  --sand: #fff6e6;
  --cream: #fffaf1;
  --coral: #f26f63;
  --hibiscus: #e23d7d;
  --sun: #f7c948;
  --green: #3f9b6d;
  --ink: #16313d;
  --muted: #657985;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 60, 92, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8, 60, 92, 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean), var(--aqua));
  color: white;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .05em;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1.15rem; color: var(--deep-blue); }
.brand small { display: block; color: var(--muted); font-size: 0.72rem; }
.nav-links { display: flex; gap: 20px; align-items: center; font-weight: 700; }
.nav-links a { color: var(--deep-blue); font-size: 0.94rem; }
.nav-cta { background: var(--deep-blue); color: white !important; padding: 11px 16px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: .9rem; font-weight: 900; color: var(--deep-blue); }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: center;
  gap: 42px;
  padding: 92px 6vw;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(4, 45, 69, .88), rgba(8, 123, 143, .62)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(43,191,194,.28), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(247,201,72,.22), transparent 24%),
    linear-gradient(180deg, transparent 75%, rgba(255,250,241,.95));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
}
.hero-content { position: relative; z-index: 2; width: min(900px, 100%); color: white; text-align: left; }
.hero .island-tabs { justify-content: flex-start; }
.hero .search-panel { max-width: 820px; }
.hero .hero-text { margin-left: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--coral); font-size: .78rem; margin: 0 0 12px; }
.hero .eyebrow { color: var(--sun); }
h1, h2 { font-family: 'Fraunces', serif; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(4rem, 10vw, 8.5rem); letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 4rem); color: var(--deep-blue); }
h3 { margin: 0 0 10px; color: var(--deep-blue); }
.hero-text { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 760px; margin: 22px auto 22px; color: rgba(255,255,255,.92); line-height: 1.65; }

.script-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--sun);
  margin: -12px 0 28px;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.hero h1 {
  text-transform: uppercase;
  letter-spacing: .02em;
}


.search-panel {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: left;
}
.search-panel label { font-weight: 800; color: var(--deep-blue); display: block; margin-bottom: 10px; }
.search-row { display: flex; gap: 10px; }
.search-row input {
  flex: 1;
  border: 2px solid rgba(8, 60, 92, .12);
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 1rem;
}
.search-row button, .button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: white;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}
.quick-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.quick-tags button {
  border: 1px solid rgba(8, 60, 92, .15);
  background: var(--sand);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--deep-blue);
  font-weight: 700;
  cursor: pointer;
}

.ticker { overflow: hidden; background: var(--deep-blue); color: white; padding: 13px 0; font-weight: 800; }
.ticker-track { display: flex; gap: 46px; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { white-space: nowrap; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

.section { padding: 82px 6vw; }
.intro-section, .split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.section-copy p, .section-heading p, .split-section p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.stat-grid, .revenue-grid, .people-grid, .card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-grid article, .revenue-grid article, .event-card, .listing-card, .people-grid article, .landscape-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat-grid article { padding: 24px; }
.stat-grid strong { display: block; color: var(--deep-blue); font-size: 1.4rem; margin-bottom: 8px; }
.stat-grid span { color: var(--muted); line-height: 1.5; }

.category-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; padding-top: 20px; }
.category-nav a { background: white; box-shadow: var(--shadow); border-radius: 999px; padding: 14px 20px; font-weight: 800; color: var(--deep-blue); }

.section-heading { max-width: 800px; margin-bottom: 34px; }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.card-image { height: 190px; background-size: cover; background-position: center; }
.image-food { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.30)), url('https://images.unsplash.com/photo-1543352634-a1c51d9f1fa7?auto=format&fit=crop&w=900&q=80'); }
.image-curry { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.25)), url('https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?auto=format&fit=crop&w=900&q=80'); }
.image-dessert { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.25)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=900&q=80'); }
.card-body { padding: 22px; }
.badge, .event-card span, .landscape-card span { display: inline-block; color: var(--hibiscus); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.meta { color: var(--ocean); font-weight: 800; margin-top: 14px; }
.alt-bg { background: var(--sand); }
.event-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card, .revenue-grid article { padding: 26px; }
.event-card p, .revenue-grid p, .people-grid p, .listing-card p { color: var(--muted); line-height: 1.55; }

.check-list { padding-left: 0; list-style: none; }
.check-list li { margin: 14px 0; padding-left: 32px; position: relative; color: var(--muted); font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 13px; height: 13px; border-radius: 50%; background: var(--green); }
.landscape-card {
  min-height: 380px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background: linear-gradient(rgba(8,60,92,.15), rgba(8,60,92,.78)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1000&q=80') center/cover;
}
.landscape-card h3, .landscape-card p { color: white; }
.landscape-card span { color: var(--sun); }

.people-grid { grid-template-columns: repeat(3, 1fr); }
.people-grid article { padding: 18px; }
.portrait { height: 230px; border-radius: 20px; margin-bottom: 18px; background-size: cover; background-position: center; }
.portrait.one { background-image: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=900&q=80'); }
.portrait.two { background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=900&q=80'); }
.portrait.three { background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=900&q=80'); }

.cta-section { text-align: center; background: linear-gradient(135deg, var(--deep-blue), var(--ocean)); color: white; }
.cta-section h2 { color: white; }
.cta-section p { max-width: 720px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.88); line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 900; }
.button.secondary { background: white; color: var(--deep-blue); }

.site-footer { display: flex; justify-content: space-between; gap: 40px; padding: 44px 6vw; background: #052d44; color: white; }
.site-footer h2 { color: white; font-size: 2rem; }
.site-footer p { color: rgba(255,255,255,.75); max-width: 520px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-content: start; font-weight: 800; }

.hidden-by-search { display: none !important; }
.no-results {
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--deep-blue);
  font-weight: 800;
}


.hero-photo-stack {
  position: relative;
  z-index: 2;
  min-height: 520px;
}
.stack-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  background-size: cover;
  background-position: center;
  border: 8px solid rgba(255,255,255,.86);
}
.stack-card span, .mosaic-tile figcaption, .adventure-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(5,45,68,.86);
  color: white;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
}
.stack-card.beaches {
  inset: 0 70px 140px 0;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1000&q=80');
}
.stack-card.horseback {
  right: 0;
  bottom: 40px;
  width: 56%;
  height: 245px;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=900&q=80');
}
.stack-card.biobay {
  left: 25px;
  bottom: 0;
  width: 52%;
  height: 210px;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.38)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}
.visual-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 190px 190px;
  gap: 16px;
}
.mosaic-tile {
  position: relative;
  margin: 0;
  min-height: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.tile-large { grid-row: span 2; }
.tile-palm { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.22)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1000&q=80'); }
.tile-ag { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=800&q=80'); }
.tile-market { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=800&q=80'); }
.tile-festival { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=800&q=80'); }
.event-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,60,92,.08), rgba(5,45,68,.88));
}
.event-card > * { position: relative; z-index: 1; }
.event-card h3, .event-card p { color: white; }
.event-card span { color: var(--sun); }
.event-jump { background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=900&q=80'); }
.event-ag { background-image: url('https://images.unsplash.com/photo-1472653816316-3ad6f10a6592?auto=format&fit=crop&w=900&q=80'); }
.event-stjohn { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=80'); }
.adventure-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.adventure-card {
  position: relative;
  min-height: 235px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.adventure-horse { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=1000&q=80'); }
.adventure-bio { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.45)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=80'); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 75px;
    left: 6vw;
    right: 6vw;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .intro-section, .split-section, .stat-grid, .card-grid, .event-strip, .people-grid, .revenue-grid, .hero { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero .island-tabs { justify-content: center; }
  .hero-photo-stack { min-height: 460px; }
  .visual-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tile-large { grid-row: auto; }
  .search-row { flex-direction: column; }
  .search-row button { min-height: 52px; }
  .site-footer { flex-direction: column; }
}

.island-tabs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.island-tabs button,
.map-controls button {
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.16);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.island-tabs button:hover,
.map-controls button:hover { background: rgba(255,255,255,.28); }
.small-button {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--deep-blue);
  color: white;
  font-weight: 900;
  font-size: .85rem;
}
.secondary-outline {
  border: 2px solid var(--deep-blue);
  color: var(--deep-blue);
  background: white;
  width: fit-content;
  margin-top: 16px;
}
.form-section { background: white; }
.smart-form,
.newsletter-form {
  background: var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.smart-form label,
.newsletter-form label {
  color: var(--deep-blue);
  font-weight: 900;
  display: grid;
  gap: 8px;
}
.smart-form input,
.smart-form select,
.smart-form textarea,
.newsletter-form input {
  border: 2px solid rgba(8,60,92,.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}
.smart-form .full { grid-column: 1 / -1; }
.form-submit { margin-top: 18px; min-height: 52px; }
.hidden { display: none !important; }
.newsletter-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #fff8ea, #e7fbfb);
}
.newsletter-section p { color: var(--muted); line-height: 1.7; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; }
.newsletter-form button {
  border: 0;
  border-radius: 16px;
  background: var(--deep-blue);
  color: white;
  font-weight: 900;
  padding: 0 20px;
  cursor: pointer;
}
.map-hero {
  padding: 130px 6vw 40px;
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean));
  color: white;
}
.map-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.map-hero p { max-width: 800px; color: rgba(255,255,255,.88); line-height: 1.7; }
.map-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 70vh;
}
#map { min-height: 70vh; z-index: 1; }
.map-list {
  padding: 24px;
  background: var(--sand);
  overflow-y: auto;
}
.map-list h2 { font-size: 1.8rem; margin-bottom: 18px; }
.map-result-card {
  background: white;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(8,60,92,.10);
}
.map-result-card strong { color: var(--deep-blue); display: block; margin-bottom: 6px; }
.map-result-card span { color: var(--hibiscus); font-weight: 900; font-size: .78rem; text-transform: uppercase; }
.map-result-card p { color: var(--muted); margin-bottom: 0; }
.leaflet-popup-content strong { color: #083c5c; }


.hero-photo-stack {
  position: relative;
  z-index: 2;
  min-height: 520px;
}
.stack-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  background-size: cover;
  background-position: center;
  border: 8px solid rgba(255,255,255,.86);
}
.stack-card span, .mosaic-tile figcaption, .adventure-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(5,45,68,.86);
  color: white;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
}
.stack-card.beaches {
  inset: 0 70px 140px 0;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1000&q=80');
}
.stack-card.horseback {
  right: 0;
  bottom: 40px;
  width: 56%;
  height: 245px;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=900&q=80');
}
.stack-card.biobay {
  left: 25px;
  bottom: 0;
  width: 52%;
  height: 210px;
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.38)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}
.visual-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 190px 190px;
  gap: 16px;
}
.mosaic-tile {
  position: relative;
  margin: 0;
  min-height: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.tile-large { grid-row: span 2; }
.tile-palm { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.22)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1000&q=80'); }
.tile-ag { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=800&q=80'); }
.tile-market { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=800&q=80'); }
.tile-festival { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=800&q=80'); }
.event-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,60,92,.08), rgba(5,45,68,.88));
}
.event-card > * { position: relative; z-index: 1; }
.event-card h3, .event-card p { color: white; }
.event-card span { color: var(--sun); }
.event-jump { background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=900&q=80'); }
.event-ag { background-image: url('https://images.unsplash.com/photo-1472653816316-3ad6f10a6592?auto=format&fit=crop&w=900&q=80'); }
.event-stjohn { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=80'); }
.adventure-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.adventure-card {
  position: relative;
  min-height: 235px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.adventure-horse { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=1000&q=80'); }
.adventure-bio { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.45)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=80'); }

@media (max-width: 900px) {
  .newsletter-section,
  .form-grid,
  .map-layout { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { min-height: 52px; }
  #map { min-height: 58vh; }
}


/* Vendor submission page updates */
.submit-cta-section {
  background: linear-gradient(135deg, rgba(8, 96, 116, 0.08), rgba(245, 169, 82, 0.12));
  border-top: 1px solid rgba(8, 96, 116, 0.12);
  border-bottom: 1px solid rgba(8, 96, 116, 0.12);
}
.vendor-hero {
  min-height: 62vh;
  background:
    linear-gradient(110deg, rgba(3, 48, 62, 0.82), rgba(5, 104, 126, 0.55)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}
.thank-you-hero {
  min-height: 70vh;
  background:
    linear-gradient(110deg, rgba(3, 48, 62, 0.82), rgba(5, 104, 126, 0.52)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}
.narrow-hero {
  max-width: 940px;
}
.vendor-intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 32px;
  align-items: start;
}
.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.standalone-form-section {
  padding-top: 48px;
}
@media (max-width: 900px) {
  .vendor-intro-section,
  .compact-grid {
    grid-template-columns: 1fr;
  }
}


.submission-choice-section { padding-top: 48px; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.choice-card {
  display: block;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22, 120, 138, .18);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--ink);
  min-height: 230px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.choice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.choice-card span {
  color: var(--hibiscus);
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.choice-card h3 { margin: 12px 0 8px; font-size: 1.45rem; }
.choice-card p { color: var(--muted); line-height: 1.65; }
.smart-form input[type="file"] {
  padding: 12px;
  background: rgba(255,255,255,.75);
  border: 1px dashed rgba(22, 120, 138, .42);
}
.business-hero {
  background-image: linear-gradient(rgba(7,50,78,.72), rgba(7,50,78,.42)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80');
}
.event-submit-hero {
  background-image: linear-gradient(rgba(7,50,78,.72), rgba(7,50,78,.42)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=80');
}
@media (max-width: 900px) {
  .choice-grid { grid-template-columns: 1fr; }
}

/* v8 Virgin Islands cultural styling */
.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background:
    repeating-linear-gradient(90deg,
      #ffffff 0 14px,
      #f7c948 14px 28px,
      #e23d7d 28px 42px,
      #087b8f 42px 56px,
      #3f9b6d 56px 70px,
      #083c5c 70px 84px);
}
.site-header,
.site-footer { position: relative; }
.brand-mark {
  background:
    repeating-linear-gradient(45deg,
      #083c5c 0 8px,
      #087b8f 8px 16px,
      #f7c948 16px 24px,
      #e23d7d 24px 32px,
      #ffffff 32px 40px);
  color: #052d44;
  border: 2px solid #ffffff;
}
.brand small { color: var(--ocean); font-family: 'Dancing Script', cursive; font-size: .95rem; font-weight: 700; }

.hero {
  background:
    linear-gradient(110deg, rgba(4, 45, 69, .90), rgba(8, 123, 143, .55)),
    url('https://source.unsplash.com/1800x1200/?us-virgin-islands,beach,palm') center/cover;
}
.hero::after {
  background:
    radial-gradient(circle at 28% 28%, rgba(255,255,255,.16), transparent 0 26%, transparent 27%),
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.16) 0 10px,
      rgba(247,201,72,.18) 10px 20px,
      rgba(226,61,125,.16) 20px 30px,
      rgba(43,191,194,.18) 30px 40px);
  opacity: .85;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  letter-spacing: .01em;
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff6e6 38%, #8ff4ef 70%, #f7c948 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.30));
  position: relative;
}
.hero h1::after {
  content: "";
  display: block;
  width: min(420px, 72vw);
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg,
      #ffffff 0 18px,
      #f7c948 18px 36px,
      #e23d7d 36px 54px,
      #087b8f 54px 72px,
      #3f9b6d 72px 90px,
      #083c5c 90px 108px);
}
.hero-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -28px;
  width: 118px;
  height: 118px;
  border-radius: 999px 999px 999px 18px;
  background: radial-gradient(circle at 40% 38%, #f7c948 0 18%, #e23d7d 19% 40%, transparent 41%);
  border: 2px solid rgba(255,255,255,.24);
  opacity: .35;
  transform: rotate(-18deg);
  z-index: -1;
}

.stack-card.beaches {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('https://source.unsplash.com/1000x750/?st-croix,beach,palm');
}
.stack-card.horseback {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('https://source.unsplash.com/900x700/?horseback-riding,beach,caribbean');
}
.stack-card.biobay {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.38)), url('https://source.unsplash.com/900x700/?bioluminescent,bay,kayak');
}

.island-texture-section {
  background:
    linear-gradient(180deg, rgba(255,250,241,.96), rgba(255,246,230,.96)),
    repeating-linear-gradient(90deg,
      rgba(8,60,92,.12) 0 22px,
      rgba(247,201,72,.16) 22px 44px,
      rgba(226,61,125,.12) 44px 66px,
      rgba(8,123,143,.14) 66px 88px);
}
.madras-panel {
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,250,241,.88)),
    repeating-linear-gradient(45deg,
      rgba(8,60,92,.14) 0 14px,
      rgba(247,201,72,.16) 14px 28px,
      rgba(226,61,125,.12) 28px 42px,
      rgba(63,155,109,.12) 42px 56px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,60,92,.10);
  margin-bottom: 24px;
}
.madras-panel p { max-width: 900px; color: var(--muted); line-height: 1.7; font-size: 1.08rem; }
.landmark-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.landmark-card {
  position: relative;
  min-height: 260px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.landmark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,60,92,.05), rgba(5,45,68,.78));
}
.landmark-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: white;
  font-weight: 900;
  background: rgba(5,45,68,.82);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
}
.landmark-beach { background-image: url('https://source.unsplash.com/800x900/?virgin-islands,beach,palm'); }
.landmark-boardwalk { background-image: url('https://source.unsplash.com/800x900/?christiansted,boardwalk,st-croix'); }
.landmark-waterfront { background-image: url('https://source.unsplash.com/800x900/?st-thomas,waterfront,virgin-islands'); }
.landmark-marina { background-image: url('https://source.unsplash.com/800x900/?st-john,virgin-islands,marina'); }

.tile-boardwalk { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('https://source.unsplash.com/1000x900/?christiansted,boardwalk,st-croix'); }
.tile-stt { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://source.unsplash.com/800x800/?st-thomas,waterfront'); }
.tile-stj { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://source.unsplash.com/800x800/?st-john,marina'); }
.tile-ag { background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.35)), url('https://source.unsplash.com/800x800/?agriculture,fair,caribbean'); }
.event-ag { background-image: url('https://source.unsplash.com/900x900/?agriculture,fair,caribbean,market'); }
.event-stjohn { background-image: url('https://source.unsplash.com/900x900/?st-john,virgin-islands,festival'); }
.event-jump { background-image: url('https://source.unsplash.com/900x900/?caribbean,street,festival,market'); }

@media (max-width: 900px) {
  .landmark-row { grid-template-columns: 1fr 1fr; }
  .hero h1::after { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .landmark-row { grid-template-columns: 1fr; }
  .hero-content::before { display: none; }
}

/* v9 navigation cleanup */
.nav-links { gap: 10px; }
.nav-links a.category-pill {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(8, 60, 92, .12);
  border-radius: 999px;
  padding: 10px 15px;
  box-shadow: 0 8px 22px rgba(5, 45, 68, .06);
}
.nav-links a.category-pill:hover,
.category-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(43, 191, 194, .45);
}
.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 6vw 12px;
  background: linear-gradient(180deg, rgba(255,250,241,.98), rgba(255,250,241,.72));
}
.category-nav a {
  background: white;
  box-shadow: 0 12px 34px rgba(5, 45, 68, .10);
  border: 1px solid rgba(8, 60, 92, .10);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  color: var(--deep-blue);
  transition: transform .2s ease, border-color .2s ease;
}
.category-nav a:nth-child(1) { border-bottom: 4px solid var(--coral); }
.category-nav a:nth-child(2) { border-bottom: 4px solid var(--ocean); }
.category-nav a:nth-child(3) { border-bottom: 4px solid var(--deep-blue); }
.category-nav a:nth-child(4) { border-bottom: 4px solid var(--sun); }
.category-nav a:nth-child(5) { border-bottom: 4px solid var(--green); }

/* v10: local imagery and revised VI cultural section */
.hero-photo-stack .beaches,
.stack-card.beaches {
  background-image: linear-gradient(rgba(8,60,92,.08), rgba(8,60,92,.35)), url('assets/frederiksted.png') !important;
}
.hero-photo-stack .horseback,
.stack-card.horseback,
.adventure-horse {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('assets/horseback-riding.png') !important;
}
.hero-photo-stack .biobay,
.stack-card.biobay,
.adventure-bio {
  background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.45)), url('assets/biobay.png') !important;
}
.tile-boardwalk,
.landmark-boardwalk {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('assets/christiansted-boardwalk.png') !important;
}
.tile-stt,
.landmark-waterfront {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('assets/st-thomas-waterfront.png') !important;
}
.tile-stj,
.landmark-marina {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('assets/st-john-marina.png') !important;
}
.tile-ag,
.landmark-beach {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.25)), url('assets/frederiksted.png') !important;
}
.landmark-card,
.mosaic-tile,
.stack-card,
.adventure-card {
  background-size: cover !important;
  background-position: center !important;
}
.madras-panel .eyebrow { color: var(--coral); }
.madras-panel h2 { margin-top: 8px; }
.madras-panel p:last-child { font-size: 1.02rem; line-height: 1.7; }

/* v11: Featured monthly events and real Virgin Islands imagery */
.featured-month-section {
  background: linear-gradient(180deg, rgba(255,250,241,.92), rgba(255,255,255,.98));
}
.featured-grid,
.island-card-grid,
.culture-card-grid {
  display: grid;
  gap: 18px;
}
.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.featured-card,
.culture-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,60,92,.10);
}
.featured-image,
.culture-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}
.featured-body,
.culture-body {
  padding: 22px;
}
.featured-body h3,
.culture-body h3 { margin-bottom: 8px; }
.featured-body p,
.culture-body p { color: var(--muted); line-height: 1.55; }
.taste-st-croix { background-image: url('assets/taste-st-croix.png'); }
.pate-festival { background-image: url('assets/pate-festival.png'); }
.mango-melee { background-image: url('assets/mango-melee.png'); }
.st-john-celebration { background-image: url('assets/st-john-celebration.png'); }

.madras-divider {
  height: 12px;
  margin: 0 6vw;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg,
      #083c5c 0 18px,
      #f7c948 18px 34px,
      #e23d7d 34px 50px,
      #087b8f 50px 68px,
      #3f9b6d 68px 86px,
      #ffffff 86px 94px);
  opacity: .82;
  box-shadow: 0 10px 24px rgba(5,45,68,.08);
}
.island-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.photo-story {
  min-height: 360px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.photo-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,60,92,.02), rgba(5,45,68,.78));
}
.photo-story span,
.photo-story p {
  position: relative;
  z-index: 1;
}
.photo-story span {
  display: inline-block;
  color: white;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.1;
  background: rgba(5,45,68,.72);
  border-radius: 999px;
  padding: 10px 14px;
}
.photo-story p {
  color: rgba(255,255,255,.92);
  line-height: 1.45;
  margin: 12px 0 0;
  background: rgba(5,45,68,.72);
  border-radius: 18px;
  padding: 12px 14px;
  max-width: 92%;
}
.card-christiansted { background-image: url('assets/christiansted-boardwalk.png'); }
.card-horseback { background-image: url('assets/horseback-riding.png'); }
.card-agriculture { background-image: url('assets/agriculture-fair.png'); align-content: end; flex-direction: column; align-items: flex-start; }
.card-stt-waterfront { background-image: url('assets/st-thomas-waterfront.png'); }
.card-stt-foodfair { background-image: url('assets/st-thomas-food-fair.png'); }
.card-stt-carnival { background-image: url('assets/st-thomas-carnival.png'); }
.card-trunk-bay { background-image: url('assets/trunk-bay.png'); }
.card-stj-celebration { background-image: url('assets/st-john-celebration.png'); }
.card-cruz-bay { background-image: url('assets/cruz-bay-night.png'); }

.culture-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mocko-jumbie { background-image: url('assets/mocko-jumbie.png'); }
.quelbe { background-image: url('assets/quelbe.png'); }
.culture-image.mocko-jumbie,
.culture-image.quelbe,
.culture-image.pate-festival,
.culture-image.mango-melee {
  background-size: cover;
  background-position: center;
}

.ticker-track span { padding-right: 20px; }
.stack-card.beaches {
  background-image: linear-gradient(rgba(8,60,92,.08), rgba(8,60,92,.35)), url('assets/trunk-bay.png') !important;
}
.stack-card.horseback,
.adventure-horse {
  background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.30)), url('assets/horseback-riding.png') !important;
}
.stack-card.biobay,
.adventure-bio {
  background-image: linear-gradient(rgba(8,60,92,.10), rgba(8,60,92,.45)), url('assets/biobay.png') !important;
}
.event-ag { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.70)), url('assets/agriculture-fair.png') !important; }
.event-stjohn { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.70)), url('assets/st-john-celebration.png') !important; }
.event-jump { background-image: linear-gradient(rgba(8,60,92,.05), rgba(8,60,92,.70)), url('assets/quelbe.png') !important; }
.event-card { background-size: cover; background-position: center; color: white; }
.event-card h3,
.event-card p { color: white; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.event-card span { color: var(--sun); }

@media (max-width: 1100px) {
  .featured-grid,
  .culture-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .island-card-grid { grid-template-columns: 1fr; }
  .photo-story { min-height: 320px; }
}
@media (max-width: 620px) {
  .featured-grid,
  .culture-card-grid { grid-template-columns: 1fr; }
  .featured-image,
  .culture-image { height: 240px; }
}

/* v12: branded header, real VI madras print, hero featured events */
:root {
  --brand-navy: #052d44;
  --brand-teal: #078799;
  --brand-sea: #2bbfc2;
  --brand-green: #2f8d51;
  --brand-gold: #f7c948;
  --brand-coral: #f26f63;
}
.site-header {
  background: linear-gradient(90deg, #032940, #063856 48%, #052d44);
  color: white;
  padding: 14px 5vw;
  border-bottom: 0;
  display: grid;
  grid-template-columns: minmax(270px, auto) auto minmax(280px, 360px);
  gap: 28px;
  align-items: center;
}
.site-header::before {
  top: auto;
  bottom: -9px;
  height: 9px;
  background-image: url('assets/vi-madras.png');
  background-size: 220px auto;
  background-repeat: repeat-x;
  background-position: center;
}
.brand-wordmark { gap: 12px; color: white; }
.palm-mark {
  width: 54px;
  height: 54px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}
.palm-mark::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 16px;
  width: 8px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-green);
  transform: rotate(9deg);
}
.palm-mark::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 50px;
  height: 34px;
  background: var(--brand-green);
  clip-path: polygon(50% 50%, 0 18%, 40% 42%, 14% 0, 50% 37%, 58% 0, 62% 38%, 100% 10%, 70% 48%, 100% 64%, 60% 58%, 50% 100%, 42% 58%, 3% 72%);
}
.wordmark-text { display: grid; grid-template-columns: auto auto; gap: 8px; align-items: end; }
.wordmark-text small {
  grid-column: 1 / -1;
  margin-top: -6px;
  color: var(--brand-gold);
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}
.discover-word {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: white;
  line-height: .9;
}
.vi-word {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.08em;
  color: transparent;
  background-image: url('assets/vi-madras.png');
  background-size: 180px auto;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px white;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.28));
}
.nav-links {
  justify-content: center;
  gap: 22px;
}
.nav-links a {
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
}
.nav-cta {
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.24);
}
.header-search {
  display: flex;
  align-items: center;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 14px;
  font: inherit;
  color: var(--ink);
}
.header-search button {
  border: 0;
  border-radius: 999px;
  min-width: 45px;
  height: 45px;
  padding: 0 14px;
  background: var(--green);
  color: white;
  font-size: 0;
  cursor: pointer;
  position: relative;
}
.header-search button::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid white;
  border-radius: 50%;
  left: 14px;
  top: 12px;
}
.header-search button::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  background: white;
  transform: rotate(45deg);
  left: 27px;
  top: 29px;
  border-radius: 99px;
}
.hero.vi-hero {
  min-height: 78vh;
  grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
  gap: 34px;
  align-items: end;
  padding: 105px 5vw 38px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.24) 43%, rgba(255,250,241,.92) 52%, rgba(255,250,241,.98) 100%),
    url('assets/trunk-bay.png') left center/cover no-repeat;
}
.hero.vi-hero::before {
  background: linear-gradient(180deg, transparent 70%, rgba(255,250,241,.82));
}
.hero.vi-hero::after { display: none; }
.hero-content { color: var(--brand-navy); }
.hero h1 {
  color: var(--brand-navy) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  filter: none;
  font-size: clamp(3.8rem, 8.5vw, 7.4rem);
  text-shadow: 0 2px 0 rgba(255,255,255,.42);
}
.hero h1::after { display: none; }
.hero-text {
  color: #082e43;
  font-weight: 600;
  max-width: 700px;
  text-shadow: 0 1px 0 rgba(255,255,255,.60);
}
.script-tagline {
  color: var(--brand-gold);
  text-shadow: 0 2px 0 rgba(5,45,68,.15);
}
.hero .island-tabs button {
  border-color: rgba(5,45,68,.18);
  background: rgba(255,255,255,.56);
  color: var(--brand-green);
}
.hero .search-panel { display: none; }
.hero-featured-events {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 26px 66px rgba(5,45,68,.16);
  border: 1px solid rgba(8,60,92,.10);
}
.featured-events-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.featured-events-heading .eyebrow { margin: 0; color: var(--hibiscus); }
.featured-events-heading h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  text-transform: uppercase;
  color: var(--brand-navy);
}
.hero-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-event-card {
  min-height: 380px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(5,45,68,.16);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  border: 1px solid rgba(8,60,92,.10);
}
.hero-event-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  text-align: center;
  background: rgba(5,45,68,.88);
  color: white;
  border-radius: 999px;
  padding: 9px 10px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.category-nav {
  margin-top: -2px;
  padding-top: 26px;
  background: #fffaf1;
}
.category-nav::before {
  content: "";
  flex-basis: 100%;
  height: 10px;
  margin: -20px 0 8px;
  border-radius: 999px;
  background-image: url('assets/vi-madras.png');
  background-size: 240px auto;
  background-repeat: repeat-x;
  box-shadow: 0 8px 20px rgba(5,45,68,.08);
}
.madras-divider {
  background-image: url('assets/vi-madras.png') !important;
  background-size: 260px auto !important;
  background-repeat: repeat-x !important;
  height: 16px;
  opacity: 1;
}
.site-footer::before {
  background-image: url('assets/vi-madras.png');
  background-size: 230px auto;
  background-repeat: repeat-x;
}
@media (max-width: 1150px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-search { grid-column: 1 / -1; justify-self: stretch; max-width: none; }
  .hero.vi-hero { grid-template-columns: 1fr; align-items: center; }
  .hero-featured-events { max-width: 100%; }
}
@media (max-width: 900px) {
  .site-header { display: flex; flex-wrap: wrap; }
  .menu-toggle { color: white; margin-left: auto; }
  .nav-links { top: 92px; background: #052d44; }
  .nav-links a { color: white; }
  .header-search { order: 4; width: 100%; }
  .hero.vi-hero { padding-top: 160px; }
  .hero-content { text-align: left; }
  .hero .island-tabs { justify-content: flex-start; }
  .hero-event-grid { grid-template-columns: 1fr; }
  .hero-event-card { min-height: 520px; }
}
@media (max-width: 620px) {
  .discover-word { font-size: 1.6rem; }
  .vi-word { font-size: 2.35rem; }
  .palm-mark { display: none; }
  .hero-event-card { min-height: 420px; }
}
