@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --ink: #10233f;
  --ink-2: #1d3656;
  --muted: #607086;
  --muted-light: #8a96a7;
  --paper: #fffdf8;
  --white: #ffffff;
  --sand: #fff7e8;
  --sand-2: #f6ead5;
  --sea: #087f8c;
  --sea-dark: #075d67;
  --sea-soft: #e2f4f2;
  --sky: #dff3ff;
  --coral: #ff6245;
  --coral-dark: #dc432c;
  --coral-soft: #fff0eb;
  --sun: #ffc82e;
  --sun-soft: #fff3bd;
  --lavender: #e8e3ff;
  --line: #e6e3db;
  --navy-line: rgba(255,255,255,.15);
  --shadow-sm: 0 8px 24px rgba(16,35,63,.08);
  --shadow-md: 0 18px 50px rgba(16,35,63,.14);
  --shadow-lg: 0 32px 70px rgba(16,35,63,.2);
  --radius: 18px;
  --radius-sm: 10px;
  --site: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd { margin-top: 0; }
h1, h2, h3, h4, .display {
  font-family: 'Bricolage Grotesque', 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.035em;
}
:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: .7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }
.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  vertical-align: -.16em;
}
.container {
  width: min(calc(100% - 40px), var(--site));
  margin-inline: auto;
}
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sea);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: '';
  width: 23px;
  height: 7px;
  background: var(--sun);
  border-radius: 99px 99px 0 99px;
  transform: rotate(-6deg);
}
.section-kicker.light { color: #b9eeea; }
.section-kicker.coral { color: var(--coral-dark); }
.section-title {
  max-width: 740px;
  margin: 13px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 800;
}
.section-title.small { font-size: clamp(28px, 3vw, 42px); }
.section-copy {
  margin: 16px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

/* Header */
.fresh-bar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .025em;
}
.fresh-bar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.fresh-dot {
  width: 7px;
  height: 7px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,200,46,.14);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,248,.94);
  border-bottom: 1px solid rgba(16,35,63,.09);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
  color: var(--ink);
}
.brand .holiday { color: var(--coral); }
.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-left: 4px;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 74px;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}
.nav-item::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  border-radius: 9px 9px 0 0;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-item:hover::after,
.nav-item.active::after { transform: scaleX(1); }
.nav-item.local { color: var(--coral-dark); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-search,
.icon-button,
.menu-button {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 42px;
  border-radius: 99px;
}
.nav-search {
  width: 178px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.icon-button,
.menu-button {
  width: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu-button { display: none; }
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 99px;
  background: var(--sea);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(8,127,140,.18);
}
.nav-cta:hover { background: var(--sea-dark); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 74px 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 28px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* Buttons and labels */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 0;
  border-radius: 99px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255,98,69,.22);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,98,69,.28); }
.button.secondary { background: var(--ink); box-shadow: 0 10px 22px rgba(16,35,63,.18); }
.button.sea { background: var(--sea); box-shadow: 0 10px 22px rgba(8,127,140,.18); }
.button.light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.button.small { min-height: 40px; padding: 0 16px; font-size: 13px; }
.button .icon { transition: transform .2s ease; }
.button:hover .icon { transform: translateX(3px); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--sea-soft);
  color: var(--sea-dark);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}
.pill.sun { background: var(--sun-soft); color: #785b00; }
.pill.coral { background: var(--coral-soft); color: var(--coral-dark); }
.pill.white { background: rgba(255,255,255,.94); color: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sea);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(255,200,46,.28) 0 78px, transparent 79px),
    radial-gradient(circle at 90% 95%, rgba(8,127,140,.12) 0 190px, transparent 191px),
    var(--sand);
  padding: 68px 0 112px;
}
.home-hero::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -110px;
  width: 280px;
  height: 190px;
  border: 28px solid rgba(255,98,69,.09);
  border-radius: 50% 50% 0 0;
  transform: rotate(10deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 68px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 790px;
  margin: 18px 0 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .97;
  font-weight: 800;
}
.hero-copy h1 .sun-word {
  position: relative;
  z-index: 0;
  color: var(--coral);
  white-space: nowrap;
}
.hero-copy h1 .sun-word::after {
  content: '';
  position: absolute;
  left: 2%;
  right: -1%;
  bottom: 1px;
  height: 7px;
  background: var(--sun);
  border-radius: 999px;
  transform: rotate(-1deg);
  z-index: -1;
}
.hero-copy > p {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; gap: 10px; max-width: 165px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.trust-item .icon { color: var(--sea); font-size: 20px; }
.trust-item strong { display: block; color: var(--ink); font-size: 13px; }
.hero-media {
  position: relative;
  min-height: 520px;
}
.hero-sunburst {
  position: absolute;
  right: -76px;
  top: -60px;
  width: 300px;
  height: 300px;
  opacity: .3;
  background: repeating-conic-gradient(from 0deg, var(--sun) 0 4deg, transparent 4deg 17deg);
  border-radius: 50%;
}
.hero-photo-main {
  position: absolute;
  inset: 26px 36px 42px 0;
  border-radius: 180px 18px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,29,50,.62), transparent 54%);
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}
.hero-caption strong { display: block; margin-top: 9px; max-width: 390px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; line-height: 1.16; }
.hero-caption small { display: block; margin-top: 6px; color: rgba(255,255,255,.82); }
.hero-photo-float {
  position: absolute;
  width: 185px;
  right: -8px;
  bottom: 0;
  padding: 7px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
  z-index: 3;
}
.hero-photo-float img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; border-radius: 9px; }
.hero-date {
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 4;
  width: 78px;
  padding: 13px 8px 11px;
  background: var(--coral);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-date .day { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 31px; line-height: .9; font-weight: 800; }
.hero-date .month { display: block; margin-top: 5px; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

/* Planner */
.planner-wrap { position: relative; z-index: 8; margin-top: -50px; }
.planner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr auto;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(16,35,63,.08);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.planner-field {
  position: relative;
  min-height: 98px;
  padding: 22px 24px 18px 58px;
  border-right: 1px solid var(--line);
}
.planner-field .icon {
  position: absolute;
  left: 24px;
  top: 26px;
  color: var(--coral);
  font-size: 21px;
}
.planner-field label {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.planner-field select,
.planner-field input {
  width: 100%;
  margin-top: 4px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  appearance: none;
}
.planner-submit { padding: 18px; display: grid; place-items: center; background: var(--ink); }
.planner-submit .button { box-shadow: none; min-width: 162px; }

/* Event cards */
.event-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.event-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.event-card-media { position: relative; display: block; overflow: hidden; }
.event-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .55s cubic-bezier(.2,.65,.3,1); }
.event-card:hover .event-card-media img { transform: scale(1.045); }
.event-date {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 57px;
  padding: 9px 5px 7px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.event-date .day { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; line-height: 1; font-weight: 800; color: var(--coral); }
.event-date .month { display: block; margin-top: 3px; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.event-card-body { padding: 18px 18px 19px; }
.event-card .badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }
.event-card h3 { margin: 0; font-size: 18px; line-height: 1.2; font-weight: 800; }
.event-card h3 a:hover { color: var(--coral-dark); }
.event-card p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.event-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.save-button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--sea);
  cursor: pointer;
}
.save-button:hover { background: var(--sea-soft); }
.save-button.saved {
  border-color: var(--sea);
  background: var(--sea);
  color: #fff;
}
.save-button.saved .icon { fill: currentColor; }

/* Browse gateways */
.browse-section { background: #fff; }
.browse-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.browse-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.browse-card:nth-child(2) { background: var(--sea-soft); }
.browse-card:nth-child(3) { background: var(--coral-soft); }
.browse-card:nth-child(4) { background: var(--lavender); }
.browse-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.browse-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--sea);
  box-shadow: 0 8px 18px rgba(16,35,63,.06);
  font-size: 23px;
}
.browse-card h3 { margin: 26px 0 0; font-size: 24px; line-height: 1.08; }
.browse-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.browse-links { margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid rgba(16,35,63,.1); list-style: none; }
.browse-links li + li { margin-top: 8px; }
.browse-links a { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; font-weight: 700; }
.browse-links a:hover { color: var(--coral-dark); }
.browse-count {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(16,35,63,.13);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
}

/* Story / editorial band */
.story-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.story-band::before {
  content: '';
  position: absolute;
  width: 580px;
  height: 580px;
  right: -260px;
  top: -260px;
  border: 2px solid rgba(255,200,46,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255,200,46,.035), 0 0 0 116px rgba(255,200,46,.025);
}
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.story-copy { padding: 92px 0; }
.story-copy h2 { margin: 14px 0 0; max-width: 620px; font-size: clamp(40px,5vw,64px); line-height: .98; }
.story-copy > p { margin: 22px 0 0; max-width: 56ch; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.story-stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--navy-line); }
.story-stats strong { display: block; color: var(--sun); font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; }
.story-stats span { color: rgba(255,255,255,.6); font-size: 12px; }
.story-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 70px 0; }
.story-card {
  position: relative;
  min-height: 265px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 120px 14px 14px 14px;
}
.story-card:nth-child(2) { margin-top: 54px; border-radius: 14px 14px 120px 14px; }
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story-card:hover img { transform: scale(1.04); }
.story-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,46,.9), transparent 72%); }
.story-card-body { position: relative; z-index: 2; padding: 24px; }
.story-card-body h3 { margin: 10px 0 0; font-size: 21px; line-height: 1.1; }
.story-card-body p { margin: 7px 0 0; color: rgba(255,255,255,.72); font-size: 12px; }
@media (min-width: 1081px) {
  .story-card.image-left {
    grid-column: 1 / -1;
    min-height: 210px;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
    border-radius: 14px 80px 14px 14px;
    background: #fff;
    color: var(--ink);
  }
  .story-card.image-left:nth-child(2) { margin-top: 0; border-radius: 14px 80px 14px 14px; }
  .story-card.image-left::after { display: none; }
  .story-card.image-left img { position: relative; grid-column: 1; height: 100%; min-height: 210px; }
  .story-card.image-left .story-card-body { grid-column: 2; align-self: center; padding: 28px; }
  .story-card.image-left .story-card-body p { color: var(--muted); }
  .story-card.image-left .pill.white { background: var(--sea-soft); color: var(--sea-dark); }
}

/* Region + guide cards */
.region-feature { background: var(--sand); }
.region-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; align-items: stretch; }
.region-layout.image-right { grid-template-columns: .85fr 1.15fr; }
.region-layout.image-right .region-image { order: 2; }
.region-layout.image-right .region-side { order: 1; }
.region-layout.full-bleed { position: relative; display: block; }
.region-layout.full-bleed .region-image { min-height: 660px; }
.region-layout.full-bleed .region-side {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 26px;
  bottom: 26px;
  width: min(410px, 42%);
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px 110px 16px 16px;
  background: rgba(16,35,63,.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.region-layout.full-bleed .mini-event { min-height: 105px; }
.region-layout.full-bleed .region-cta { margin-top: auto; }
.region-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 18px 160px 18px 18px;
}
.region-image img { width: 100%; height: 100%; object-fit: cover; }
.region-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,35,63,.74), transparent 55%); }
.region-image-caption { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; color: #fff; }
.region-image-caption h2 { margin: 10px 0 0; font-size: clamp(34px,4vw,54px); line-height: 1; }
.region-image-caption p { margin: 10px 0 0; color: rgba(255,255,255,.77); }
.region-side { display: flex; flex-direction: column; gap: 14px; }
.mini-event {
  min-height: 120px;
  display: grid;
  grid-template-columns: 98px 1fr auto;
  gap: 17px;
  align-items: center;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.mini-event:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.mini-event img { width: 98px; height: 92px; object-fit: cover; border-radius: 9px; }
.mini-event h3 { margin: 6px 0 0; font-size: 16px; line-height: 1.16; }
.mini-event p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.mini-date { width: 55px; padding-right: 8px; border-left: 1px solid var(--line); text-align: center; }
.mini-date strong { display: block; color: var(--coral); font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; line-height: 1; }
.mini-date span { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.region-cta { margin-top: auto; padding: 23px; border-radius: 13px; background: var(--sea); color: #fff; }
.region-cta h3 { margin: 0; font-size: 22px; }
.region-cta p { margin: 7px 0 16px; color: rgba(255,255,255,.73); font-size: 13px; }

.guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.guide-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-card-media { display: block; position: relative; overflow: hidden; }
.guide-card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .45s ease; }
.guide-card:hover .guide-card-media img { transform: scale(1.035); }
.guide-type {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 9px;
  border-radius: 99px;
  background: rgba(255,253,248,.94);
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.guide-card-body { padding: 20px; }
.guide-card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 11px; }
.guide-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.guide-card h3 { margin: 12px 0 0; font-size: 21px; line-height: 1.16; }
.guide-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.guide-card .text-link { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

/* Personalisation teaser, newsletter, footer */
.personal-teaser { background: #fff; }
.personal-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 52px;
  align-items: center;
  padding: 58px 62px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--coral);
  color: #fff;
}
.personal-card::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -120px;
  width: 440px;
  height: 440px;
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.12) 0 3deg, transparent 3deg 17deg);
  border-radius: 50%;
}
.personal-copy { position: relative; z-index: 2; }
.personal-copy h2 { margin: 10px 0 0; max-width: 620px; font-size: clamp(36px,4.5vw,58px); line-height: .98; }
.personal-copy p { margin: 18px 0 0; max-width: 54ch; color: rgba(255,255,255,.82); }
.preference-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}
.preference-card h3 { margin: 0; font-size: 20px; }
.pref-row { display: flex; gap: 10px; margin-top: 17px; }
.pref-chip { flex: 1; padding: 11px; border: 1px solid var(--line); border-radius: 10px; font-size: 12px; font-weight: 700; }
.pref-chip.active { border-color: var(--sea); background: var(--sea-soft); color: var(--sea-dark); }
.pref-chip { cursor: pointer; }
.preference-card small { display: block; margin-top: 15px; color: var(--muted); }

.newsletter-band { background: var(--sand); border-top: 1px solid var(--line); }
.newsletter-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: center; }
.newsletter-layout h2 { margin: 10px 0 0; font-size: clamp(32px,4vw,46px); line-height: 1.04; }
.newsletter-layout p { margin: 13px 0 0; color: var(--muted); }
.email-form { display: flex; padding: 8px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); }
.email-form input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 14px; background: transparent; color: var(--ink); }
.email-form .button { border-radius: 10px; }
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 54px; padding: 64px 0 48px; }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { color: rgba(255,255,255,.9); }
.footer-brand p { margin: 18px 0 0; max-width: 36ch; font-size: 14px; line-height: 1.7; }
.footer-column h3 { margin: 0 0 16px; color: #fff; font-size: 14px; letter-spacing: -.01em; }
.footer-column a { display: block; width: fit-content; margin-top: 9px; font-size: 13px; }
.footer-column a:hover { color: var(--sun); }
.footer-bottom { padding: 18px 0 22px; border-top: 1px solid var(--navy-line); font-size: 11px; }

/* Article shell */
.article-top { padding: 54px 0 34px; background: var(--sand); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--coral-dark); }
.breadcrumbs .separator { color: var(--coral); }
.article-heading-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 54px; align-items: end; margin-top: 36px; }
.article-heading h1 { max-width: 910px; margin: 16px 0 0; font-size: clamp(42px,5.6vw,72px); line-height: .98; font-weight: 800; }
.article-deck { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.article-byline { display: flex; align-items: center; flex-wrap: wrap; gap: 15px 22px; margin-top: 27px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.article-byline span { display: inline-flex; align-items: center; gap: 6px; }
.article-byline strong { color: var(--ink); }
.heading-note {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  transform: rotate(1.2deg);
  box-shadow: var(--shadow-sm);
}
.heading-note p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.heading-note strong { display: block; margin-top: 5px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; line-height: 1.15; }

.article-hero { position: relative; padding: 0 0 54px; background: var(--sand); }
.article-hero > .container { position: relative; }
.article-hero-media { position: relative; min-height: 600px; overflow: hidden; border-radius: 18px 180px 18px 18px; box-shadow: var(--shadow-lg); }
.article-hero-media img { width: 100%; height: 600px; object-fit: cover; }
.article-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,35,63,.76), transparent 48%); }
.article-hero-caption { position: absolute; z-index: 2; left: 34px; bottom: 30px; max-width: 570px; color: #fff; }
.article-hero-caption p { margin: 9px 0 0; color: rgba(255,255,255,.76); }
.article-facts {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: -28px;
  width: min(690px, calc(100% - 56px));
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.article-fact { flex: 1 1 0; min-width: 0; padding: 17px 18px; border-right: 1px solid var(--line); }
.article-fact:last-child { border: 0; }
.article-fact span { display: block; color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-fact strong { display: block; margin-top: 4px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; line-height: 1.16; }

.article-layout { display: grid; grid-template-columns: minmax(0,780px) 300px; gap: 70px; align-items: start; padding: 78px 0 88px; }
.article-body { min-width: 0; color: #263b54; font-size: 17px; line-height: 1.82; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 { margin-top: 58px; margin-bottom: 0; color: var(--ink); font-size: 34px; line-height: 1.12; scroll-margin-top: 112px; }
.article-body h3 { margin-top: 38px; margin-bottom: 0; color: var(--ink); font-size: 24px; line-height: 1.2; scroll-margin-top: 112px; }
.article-body a { color: var(--sea-dark); text-decoration: underline; text-decoration-color: rgba(8,127,140,.28); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--sea); }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li + li { margin-top: 10px; }
.article-body figure { margin: 42px 0; }
.article-body figure img { width: 100%; max-height: 540px; object-fit: cover; border-radius: var(--radius); }
.article-body figcaption { display: flex; gap: 10px; margin-top: 11px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.article-body figcaption::before { content: ''; width: 24px; height: 2px; margin-top: .7em; background: var(--coral); flex: 0 0 auto; }
.article-body table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; font-size: 14px; line-height: 1.45; }
.article-body th { padding: 13px 14px; background: var(--ink); color: #fff; font-size: 10px; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.article-body td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-body tr:last-child td { border-bottom: 0; }
.article-body tbody tr:nth-child(even) td { background: var(--sand); }
.lead-paragraph::first-letter {
  float: left;
  margin: .08em .12em 0 0;
  color: var(--coral);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4.6em;
  line-height: .74;
  font-weight: 800;
}
.quick-answer,
.honest-note,
.sun-note {
  position: relative;
  padding: 24px 26px;
  border-radius: 14px;
}
.quick-answer { background: var(--sea-soft); border-left: 4px solid var(--sea); }
.honest-note { background: var(--coral-soft); border: 1px solid #ffd0c5; }
.sun-note { background: var(--sun-soft); border: 1px solid #f1da76; }
.callout-label { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--sea-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.honest-note .callout-label { color: var(--coral-dark); }
.quick-answer p:last-child,
.honest-note p:last-child,
.sun-note p:last-child { margin: 8px 0 0; font-size: 15px; line-height: 1.65; }

.inline-events { margin: 48px 0; padding: 28px; background: var(--ink); color: #fff; border-radius: var(--radius); }
.inline-events-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.inline-events h3 { margin: 7px 0 0; color: #fff; font-size: 27px; }
.inline-event-list { display: grid; gap: 10px; }
.inline-event {
  display: grid;
  grid-template-columns: 63px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--navy-line);
  border-radius: 11px;
  background: rgba(255,255,255,.055);
}
.inline-event:hover { background: rgba(255,255,255,.1); }
.inline-event-date { text-align: center; border-right: 1px solid var(--navy-line); }
.inline-event-date strong { display: block; color: var(--sun); font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; line-height: 1; }
.inline-event-date span { display: block; margin-top: 4px; color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.inline-event h4 { margin: 0; color: #fff; font-size: 15px; line-height: 1.2; letter-spacing: -.01em; }
.inline-event p { margin: 4px 0 0; color: rgba(255,255,255,.61); font-size: 11px; }
.inline-event .save-button { border-color: var(--navy-line); background: rgba(255,255,255,.08); color: var(--sun); }

.side-rail { position: sticky; top: 102px; display: grid; gap: 16px; }
.side-card { padding: 21px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.side-card.dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.side-card h3 { margin: 0 0 14px; padding-left: 12px; border-left: 3px solid var(--coral); font-size: 16px; letter-spacing: -.015em; }
.toc { counter-reset: toc; margin: 0; padding: 0; list-style: none; }
.toc li + li { margin-top: 9px; }
.toc a { display: grid; grid-template-columns: 22px 1fr; gap: 7px; align-items: start; color: var(--muted); font-size: 12px; line-height: 1.35; }
.toc a::before { counter-increment: toc; content: counter(toc); color: var(--coral); font-weight: 800; }
.toc a:hover { color: var(--sea-dark); }
.side-event { display: grid; grid-template-columns: 54px 1fr; gap: 11px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.side-event:first-of-type { border-top: 0; padding-top: 0; }
.side-event img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.side-event h4 { margin: 0; font-size: 12px; line-height: 1.25; letter-spacing: -.01em; }
.side-event p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.side-card.dark p { color: rgba(255,255,255,.68); font-size: 12px; }

.faq-list { margin-top: 22px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; cursor: pointer; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--ink); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--coral); font-size: 24px; line-height: .8; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { margin: -2px 0 18px; color: var(--muted); font-size: 14px; }
.read-next { margin-top: 56px; padding-top: 42px; border-top: 1px solid var(--line); }
.read-next-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.read-next-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }
.read-next-card .eyebrow { margin-top: 12px; }
.read-next-card h3 { margin: 7px 0 0; font-size: 16px; line-height: 1.2; }

.mockup-switcher {
  position: fixed;
  z-index: 150;
  right: 16px;
  bottom: 16px;
  display: flex;
  overflow: hidden;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.mockup-switcher a { padding: 9px 13px; font-size: 11px; font-weight: 800; }
.mockup-switcher a.active { background: var(--coral); }

.demo-confirmation {
  position: fixed;
  z-index: 220;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.demo-confirmation.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .nav-search { display: none; }
  .hero-grid { gap: 36px; }
  .event-grid { grid-template-columns: repeat(2,1fr); }
  .browse-grid { grid-template-columns: repeat(2,1fr); }
  .article-heading-grid { grid-template-columns: 1fr; }
  .heading-note { display: none; }
  .article-layout { grid-template-columns: minmax(0,1fr) 270px; gap: 42px; }
}

@media (max-width: 820px) {
  .section { padding: 68px 0; }
  .fresh-bar { display: none; }
  .nav-wrap { min-height: 66px; }
  .mobile-nav { inset: 66px 0 0; }
  .nav-cta { display: none; }
  .home-hero { padding: 48px 0 98px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 480px; margin-top: 8px; }
  .planner { grid-template-columns: 1fr 1fr; }
  .planner-field:nth-child(2) { border-right: 0; }
  .planner-field:nth-child(3) { border-top: 1px solid var(--line); }
  .planner-submit { border-top: 1px solid var(--line); }
  .story-grid { grid-template-columns: 1fr; gap: 0; }
  .story-copy { padding-bottom: 20px; }
  .story-cards { padding-top: 20px; }
  .region-layout,
  .region-layout.image-right { grid-template-columns: 1fr; }
  .region-layout.image-right .region-image,
  .region-layout.image-right .region-side { order: initial; }
  .region-layout.full-bleed { display: grid; }
  .region-layout.full-bleed .region-image { min-height: 500px; }
  .region-layout.full-bleed .region-side { position: static; width: auto; padding: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
  .region-image { min-height: 460px; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .personal-card { grid-template-columns: 1fr; padding: 45px 38px; }
  .newsletter-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .article-hero-media, .article-hero-media img { min-height: 480px; height: 480px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 60px; }
  .side-rail { position: static; grid-template-columns: 1fr 1fr; }
  .side-card.toc-card { display: none; }
}

@media (max-width: 590px) {
  .container { width: min(calc(100% - 28px), var(--site)); }
  .section-head { align-items: start; flex-direction: column; gap: 16px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 27px; height: 27px; }
  .icon-button { display: none; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy > p { font-size: 16px; }
  .hero-media { min-height: 410px; }
  .hero-photo-main { inset: 16px 18px 42px 0; border-radius: 110px 14px 14px 14px; }
  .hero-caption { left: 18px; right: 18px; bottom: 20px; }
  .hero-caption strong { font-size: 18px; }
  .hero-photo-float { width: 130px; }
  .hero-date { width: 66px; }
  .planner-wrap { margin-top: -38px; }
  .planner { grid-template-columns: 1fr; }
  .planner-field { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); padding-top: 17px; padding-bottom: 14px; }
  .planner-field .icon { top: 21px; }
  .planner-field:nth-child(3) { border-top: 0; }
  .planner-submit { border-top: 0; }
  .event-grid, .browse-grid, .guide-grid { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .story-card:nth-child(2) { margin-top: 0; }
  .region-layout.full-bleed .region-image { min-height: 420px; }
  .region-image { min-height: 390px; border-radius: 14px 100px 14px 14px; }
  .mini-event { grid-template-columns: 76px 1fr; }
  .mini-event img { width: 76px; height: 78px; }
  .mini-date { display: none; }
  .personal-card { padding: 36px 24px; border-radius: 20px; }
  .pref-row { flex-direction: column; }
  .email-form { flex-direction: column; gap: 8px; }
  .email-form input { min-height: 46px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .article-top { padding-top: 36px; }
  .article-heading h1 { font-size: 40px; }
  .article-deck { font-size: 17px; }
  .article-hero-media, .article-hero-media img { min-height: 420px; height: 420px; }
  .article-hero-media { border-radius: 14px 90px 14px 14px; }
  .article-hero-caption { left: 20px; right: 20px; bottom: 82px; }
  .article-facts { left: 12px; right: 12px; width: auto; bottom: -38px; }
  .article-fact { padding: 12px 10px; }
  .article-fact strong { font-size: 13px; }
  .article-fact small { display: none; }
  .article-layout { padding-top: 72px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 29px; }
  .article-body table { display: block; overflow-x: auto; white-space: nowrap; }
  .inline-events { padding: 20px 15px; }
  .inline-event { grid-template-columns: 52px 1fr; }
  .inline-event .save-button { display: none; }
  .side-rail { grid-template-columns: 1fr; }
  .read-next-grid { grid-template-columns: 1fr; }
  .mockup-switcher { right: 10px; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Statamic production components
   -------------------------------------------------------------------------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.nav-group { position: static; display: flex; align-items: center; }
.nav-group .nav-item { padding-right: 2px; }
.nav-caret { display: grid; place-items: center; width: 28px; height: 38px; padding: 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.nav-caret .icon { width: 14px; transition: transform .18s ease; }
.nav-mega {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  width: min(calc(100vw - 40px), 970px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255,253,248,.99);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .17s ease, transform .17s ease, visibility .17s;
}
.nav-group:hover .nav-mega,
.nav-group:focus-within .nav-mega,
.nav-group.is-open .nav-mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-group:hover .nav-caret .icon,
.nav-group:focus-within .nav-caret .icon,
.nav-group.is-open .nav-caret .icon { transform: rotate(180deg); }
.nav-mega-intro { padding: 7px 22px 7px 4px; border-right: 1px solid var(--line); }
.nav-mega-intro h3 { margin: 14px 0 0; font-size: 25px; line-height: 1.05; }
.nav-mega-intro p { margin: 10px 0 17px; color: var(--muted); font-size: 13px; }
.nav-mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.nav-mega-links a { display: grid; grid-template-columns: 24px 1fr 15px; gap: 8px; align-items: center; padding: 9px 11px; border-radius: 9px; font-size: 13px; font-weight: 700; }
.nav-mega-links a:hover { background: var(--sea-soft); color: var(--sea-dark); }
.nav-mega-links a .icon { opacity: .45; }
.nav-region-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px 10px; }
.nav-region-links a { display: flex; align-items: center; gap: 5px; padding: 7px 8px; border-radius: 7px; font-size: 12px; font-weight: 700; }
.nav-region-links a:hover { background: var(--sand); color: var(--coral-dark); }
.nav-region-links .pill { padding: 3px 5px; font-size: 8px; }
.mobile-search { display: flex; align-items: center; gap: 10px; width: 100%; padding: 18px 4px; border: 0; border-bottom: 1px solid var(--line); background: none; font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; text-align: left; }

.search-dialog { width: min(calc(100% - 36px), 720px); padding: 0; border: 0; border-radius: 20px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow-lg); }
.search-dialog::backdrop { background: rgba(8,23,42,.72); backdrop-filter: blur(5px); }
.search-dialog form { padding: 44px; }
.search-dialog label { display: block; margin-top: 15px; font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px,5vw,43px); font-weight: 800; line-height: 1.03; letter-spacing: -.04em; }
.search-dialog form > p { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.search-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.search-input-wrap { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding: 7px 7px 7px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.search-input-wrap > .icon { color: var(--sea); }
.search-input-wrap input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.back-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.back-top.visible { opacity: 1; visibility: visible; transform: none; }

.page-shell { padding: 58px 0 90px; background: var(--paper); }
.page-shell.sand { background: var(--sand); }
.page-shell.soft { background: #fbfaf6; }
.hub-top { padding: 54px 0 58px; background: var(--sand); border-bottom: 1px solid var(--line); }
.hub-heading { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 58px; align-items: end; }
.hub-heading h1 { max-width: 850px; margin: 15px 0 0; font-size: clamp(43px,6vw,72px); line-height: .96; }
.hub-heading .section-copy { margin-bottom: 2px; }
.hub-aside-note { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.7); }
.hub-aside-note strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; line-height: 1.15; }
.hub-aside-note p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.category-visual { position: relative; min-height: 230px; margin-top: 34px; overflow: hidden; border-radius: 16px 110px 16px 16px; background: var(--ink); box-shadow: var(--shadow-sm); }
.category-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,35,63,.82), rgba(16,35,63,.12) 72%); }
.category-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-visual > span { position: absolute; z-index: 2; left: 30px; bottom: 27px; color: #fff; }
.category-visual strong { display: block; font-family: 'Bricolage Grotesque',sans-serif; font-size: 27px; letter-spacing: -.03em; }
.category-visual small { display: block; margin-top: 4px; color: rgba(255,255,255,.72); }
.hub-hero-media { position: relative; min-height: 420px; overflow: hidden; border-radius: 20px 150px 20px 20px; background: var(--ink); box-shadow: var(--shadow-md); }
.hub-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hub-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,35,63,.82), transparent 58%); }
.hub-hero-copy { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; color: #fff; }
.hub-hero-copy h1 { max-width: 900px; margin: 12px 0 0; font-size: clamp(42px,6vw,68px); line-height: .98; }
.hub-hero-copy p { max-width: 68ch; margin: 13px 0 0; color: rgba(255,255,255,.8); }
.hub-facts { display: grid; grid-template-columns: repeat(4,1fr); margin-top: -1px; border: 1px solid var(--line); background: #fff; }
.hub-fact { padding: 20px; border-right: 1px solid var(--line); }
.hub-fact:last-child { border-right: 0; }
.hub-fact span { color: var(--sea); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hub-fact strong { display: block; margin-top: 5px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; }
.content-with-rail { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 54px; align-items: start; }
.main-column { min-width: 0; }
.content-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.intro-card { margin-top: 30px; color: #263b54; font-size: 17px; line-height: 1.78; }
.intro-card > *:last-child { margin-bottom: 0; }
.section-block + .section-block { margin-top: 74px; }
.section-head.compact { margin-bottom: 25px; }
.section-head.compact .section-title { font-size: clamp(30px,4vw,43px); }
.listing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.listing-grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.listing-grid.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.event-card, .guide-card { height: 100%; }
.event-card.is-past { filter: grayscale(1); opacity: .7; }
.event-past-label { position: absolute; right: 12px; bottom: 12px; padding: 5px 8px; border-radius: 99px; background: var(--ink); color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.empty-state { padding: 38px; border: 1px dashed #c9c4b9; border-radius: var(--radius); background: #fff; color: var(--muted); text-align: center; }

.filter-card { margin-bottom: 30px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.shf-filterbar { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.shf-filter-label { margin-left: 12px; color: var(--muted-light); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.shf-filter-label:first-child { margin-left: 0; }
.shf-filter { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; font-size: 11px; font-weight: 700; }
.shf-filter:hover, .shf-filter-active { border-color: var(--sea); background: var(--sea-soft); color: var(--sea-dark); }

.travel-cta { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; gap: 19px; align-items: center; margin-top: 34px; padding: 24px; border: 1px solid #ffd5c9; border-radius: 15px; background: linear-gradient(115deg,var(--coral-soft),var(--sea-soft)); }
.travel-cta-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--coral); }
.travel-cta-icon .icon { width: 24px; height: 24px; }
.travel-cta h3 { margin: 5px 0 0; font-size: 20px; }
.travel-cta p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.travel-cta .button { white-space: nowrap; }
.side-all { margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.side-card.dark .section-kicker { margin-bottom: 13px; }
.side-card.dark h3 { padding: 0; border: 0; font-size: 23px; }
.side-card.dark .email-form { display: grid; gap: 8px; margin-top: 15px; padding: 0; background: transparent; box-shadow: none; }
.side-card.dark .email-form input { min-height: 43px; padding: 0 12px; border-radius: 8px; background: #fff; }
.side-card.dark .email-form .button { min-height: 43px; border-radius: 8px; }

.article-body .bard-wide { width: min(900px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-body figure img { transition: transform .35s ease; }
.callout-heading { margin: 7px 0 0; color: var(--ink); font-size: 21px; }
.quick-answer, .honest-note, .sun-note, .paper-note { margin: 34px 0; padding: 23px 25px; border-radius: 12px; }
.paper-note { border: 1px solid var(--line); background: var(--sand); }
.paper-note .callout-label { color: var(--sea-dark); }
.inline-events .section-kicker { color: var(--sun); }
.inline-event { text-decoration: none !important; }
.inline-event .event-inline-arrow { color: var(--sun); }
.article-fact small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.article-source { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; overflow-wrap: anywhere; }
.event-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 54px; align-items: start; padding: 54px 0 82px; }
.event-detail-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.event-detail-hero { position: relative; min-height: 470px; overflow: hidden; }
.event-detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(16,35,63,.91),transparent 63%); }
.event-detail-heading { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px; color: #fff; }
.event-detail-heading h1 { max-width: 880px; margin: 13px 0 0; font-size: clamp(38px,5vw,61px); line-height: .98; }
.event-detail-heading .badges { display: flex; flex-wrap: wrap; gap: 6px; }
.event-detail-body { padding: 36px; }
.event-intro { margin: 0 0 26px; color: #31465d; font-size: 19px; line-height: 1.65; }
.event-facts { display: grid; grid-template-columns: repeat(2,1fr); margin-bottom: 34px; border: 1px solid var(--line); }
.event-fact { display: grid; grid-template-columns: 32px 1fr; gap: 10px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-fact:nth-child(even) { border-right: 0; }
.event-fact:last-child,
.event-fact:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.event-fact-icon { color: var(--coral); font-size: 20px; }
.event-fact-label { color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.event-fact strong { display: block; margin-top: 3px; color: var(--ink); font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; line-height: 1.25; }
.event-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.map-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }

.town-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.town-grid a { padding: 14px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-size: 13px; font-weight: 700; }
.town-grid a:hover { border-color: var(--sea); color: var(--sea-dark); }
.taxonomy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.taxonomy-card { position: relative; min-height: 240px; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.taxonomy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.taxonomy-card:nth-child(3n+2) { background: var(--sea-soft); }
.taxonomy-card:nth-child(3n+3) { background: var(--coral-soft); }
.taxonomy-card .tax-number { position: absolute; top: 15px; right: 18px; color: rgba(8,127,140,.2); font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 700; }
.taxonomy-card .tax-icon { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 11px; background: #fff; font-size: 22px; }
.taxonomy-card h2 { margin: 28px 0 0; font-size: 24px; line-height: 1.08; }
.taxonomy-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.taxonomy-card .text-link { position: absolute; left: 25px; bottom: 22px; }
.destination-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.destination-card { position: relative; min-height: 300px; overflow: hidden; border-radius: var(--radius); color: #fff; box-shadow: var(--shadow-sm); }
.destination-card:nth-child(1), .destination-card:nth-child(2) { grid-column: span 1; min-height: 380px; }
.destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.destination-card:hover img { transform: scale(1.035); }
.destination-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(11,28,52,.88),transparent 68%); }
.destination-card-copy { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.destination-card h2 { margin: 9px 0 0; font-size: 28px; line-height: 1; }
.destination-card p { margin: 8px 0 0; color: rgba(255,255,255,.75); font-size: 12px; }

.calendar-shell { padding: 54px 0 84px; background: #fbfaf6; }
.calendar-hero { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 45px; align-items: end; margin-bottom: 28px; padding: 38px; border-radius: 20px; background: var(--ink); color: #fff; }
.calendar-hero h1 { margin: 12px 0 0; font-size: clamp(40px,6vw,67px); line-height: .98; }
.calendar-hero p { margin: 16px 0 0; color: rgba(255,255,255,.7); }
.calendar-hero-note { padding: 21px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(255,255,255,.07); }
.calendar-hero-note strong { color: var(--sun); font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; }
.calendar-hero-note span { display: block; margin-top: 3px; color: rgba(255,255,255,.66); font-size: 12px; }
.shf-cal-filters { margin-bottom: 34px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); }
.shf-cal-dates, .shf-cal-controls, .shf-cal-cats, .shf-cal-daterow, .shf-cal-presets { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.shf-cal-dates { justify-content: space-between; }
.shf-cal-daterow label { color: var(--muted); font-size: 11px; font-weight: 700; }
.shf-cal-daterow input, .shf-cal-controls select { margin-left: 5px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink); }
.shf-cal-presets button, .shf-cal-cat, .shf-cal-clear { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; background: #fff; font-size: 10px; font-weight: 800; cursor: pointer; }
.shf-cal-presets button:hover, .shf-cal-cat:hover, .shf-cal-cat.is-on { border-color: var(--sea); background: var(--sea-soft); color: var(--sea-dark); }
.shf-cal-controls { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.shf-cal-toggle { font-size: 11px; font-weight: 700; }
.shf-cal-cats { margin-top: 13px; }
.shf-cal-count { margin-top: 13px; color: var(--muted); font-size: 11px; font-weight: 700; }
.cal-month + .cal-month { margin-top: 34px; }
.shf-cal-month-h { width: fit-content; margin: 0 0 10px; padding-bottom: 7px; border-bottom: 3px solid var(--coral); font-size: 22px; }
.shf-cal-rows { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.cal-row { display: grid; grid-template-columns: 68px minmax(0,1fr) 95px; gap: 16px; align-items: center; min-height: 86px; padding: 11px 13px; border-bottom: 1px solid var(--line); }
.cal-row:last-child { border-bottom: 0; }
.cal-row:hover { background: var(--sand); }
.cal-date { text-align: center; }
.cal-date-day { display: block; color: var(--coral); font-family: 'Bricolage Grotesque',sans-serif; font-size: 27px; font-weight: 800; line-height: 1; }
.cal-date-mon { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cal-title { display: block; color: var(--ink); font-family: 'Bricolage Grotesque',sans-serif; font-size: 15px; font-weight: 800; line-height: 1.18; }
.cal-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 5px; color: var(--muted); font-size: 10px; }
.cal-badges { display: flex; gap: 4px; margin-top: 5px; }
.cal-thumb img { width: 90px; height: 64px; border-radius: 8px; object-fit: cover; }
.shf-cal-secmore { width: 100%; padding: 12px; border: 0; border-top: 1px solid var(--line); background: var(--sand); color: var(--sea-dark); font-size: 11px; font-weight: 800; cursor: pointer; }
.shf-cal-empty { padding: 34px; border: 1px dashed var(--line); text-align: center; }

.standard-page { width: min(100%,820px); margin: 0 auto; padding: 60px 0 90px; }
.standard-page h1 { margin: 14px 0 30px; font-size: clamp(42px,6vw,65px); line-height: .98; }
.standard-page .article-body { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.search-results-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.search-page-form { display: flex; width: min(100%,580px); padding: 6px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.search-page-form input { flex: 1; min-width: 0; padding: 0 12px; border: 0; outline: 0; background: transparent; }
.search-page-form .button { min-height: 43px; border-radius: 9px; }
.not-found { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; min-height: 64vh; }
.not-found-number { color: var(--coral); font-family: 'Bricolage Grotesque',sans-serif; font-size: clamp(110px,20vw,240px); font-weight: 800; line-height: .7; opacity: .18; }
.not-found h1 { font-size: clamp(40px,6vw,67px); line-height: .98; }

.local-gems-band { background: var(--ink); color: #fff; }
.local-gems-band .section-title, .local-gems-band .event-card h3 { color: var(--ink); }
.local-gems-band .section-head .section-title { color: #fff; }
.local-gems-band .section-copy { color: rgba(255,255,255,.68); }
.light-link { color: var(--sun); }

.editorial-lead { display: grid; grid-template-columns: 1.35fr .8fr; min-height: 510px; overflow: hidden; border-radius: 20px; background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.editorial-lead-media { min-height: 510px; overflow: hidden; }
.editorial-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.editorial-lead:hover .editorial-lead-media img { transform: scale(1.025); }
.editorial-lead-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 46px; }
.editorial-lead-copy h2 { margin: 15px 0 0; color: #fff; font-size: clamp(35px,4.2vw,54px); line-height: 1; }
.editorial-lead-copy h2 a { color: inherit; }
.editorial-lead-copy p { margin: 18px 0 25px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; }
.editorial-promise { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; padding: 45px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.editorial-promise h2 { margin: 12px 0 0; font-size: clamp(31px,4vw,46px); line-height: 1.03; }
.promise-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.promise-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.promise-list strong { display: block; margin-bottom: 7px; color: var(--ink); font-family: 'Bricolage Grotesque',sans-serif; font-size: 15px; }

.gems-top { background: linear-gradient(135deg,var(--sun-soft),var(--coral-soft) 52%,var(--sea-soft)); }
.gem-manifesto { display: grid; grid-template-columns: 62px minmax(260px,.9fr) 1.1fr; gap: 26px; align-items: center; padding: 31px; border-radius: 17px; background: var(--ink); color: #fff; }
.gem-manifesto-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--sun); color: var(--ink); }
.gem-manifesto-icon .icon { width: 29px; height: 29px; }
.gem-manifesto h2 { margin: 8px 0 0; color: #fff; font-size: 28px; line-height: 1.07; }
.gem-manifesto > p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.65; }

.calendar-content-grid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 38px; align-items: start; }
.calendar-side { position: sticky; top: 120px; display: grid; gap: 18px; }
.calendar-side .travel-cta.compact { margin: 0; }
.travel-cta.compact { grid-template-columns: 42px 1fr; gap: 14px; padding: 18px; }
.travel-cta.compact .travel-cta-icon { width: 42px; height: 42px; }
.travel-cta.compact .button { grid-column: 1 / -1; width: 100%; }
.calendar-month-copy { margin: -2px 0 12px; color: var(--muted); font-size: 12px; }

.event-map-block { overflow: hidden; }
.map-card-head { padding: 20px; background: var(--ink); color: #fff; }
.map-card-head h2 { margin: 7px 0 3px; color: #fff; font-size: 22px; }
.map-card-head > span:last-child { color: rgba(255,255,255,.62); font-size: 10px; }
.shf-eventmap { position: relative; min-height: 300px; background: #eaf0f2; }
.shf-eventmap-main { min-height: 300px; background: #eaf0f2; }
.shf-eventmap-inset { position: absolute; z-index: 500; left: 12px; bottom: 12px; width: 94px; height: 82px; overflow: hidden; border: 3px solid #fff; border-radius: 10px; background: #eaf0f2; box-shadow: var(--shadow-sm); pointer-events: none; }
.shf-eventmap-note { margin: 0; padding: 9px 13px; color: var(--muted); font-size: 9px; }
.download-list { display: grid; gap: 8px; margin-top: 17px; }
.download-list a { display: flex; justify-content: space-between; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); font-weight: 700; text-decoration: none; }

.welcome-card { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 45px; align-items: center; min-height: 450px; padding: 62px; border-radius: 24px; background: var(--ink); color: #fff; }
.welcome-sun { display: grid; place-items: center; width: 150px; height: 150px; border-radius: 50%; background: var(--sun); color: var(--ink); }
.welcome-sun .icon { width: 72px; height: 72px; }
.welcome-card h1 { margin: 13px 0 0; color: #fff; font-size: clamp(43px,6vw,70px); line-height: .96; }
.welcome-card p { max-width: 720px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.welcome-form { max-width: 560px; margin: 23px 0; }
.welcome-form .email-form { display: grid; grid-template-columns: 1fr auto; padding: 6px; border-radius: 12px; background: #fff; }
.welcome-form input { padding: 0 12px; border: 0; outline: 0; }
.newsletter-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }
.newsletter-benefits article { padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.newsletter-benefits article > span { color: var(--sea); font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; font-weight: 700; opacity: .45; }
.newsletter-benefits h2 { margin: 18px 0 0; font-size: 22px; }
.newsletter-benefits p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.search-empty { margin-top: 35px; }
.search-empty h2 { margin: 0; font-size: 27px; }
.search-empty p { margin: 8px 0 18px; }
.place-result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.place-result-grid a { position: relative; min-height: 150px; padding: 22px 48px 22px 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.place-result-grid a:hover { border-color: var(--sea); box-shadow: var(--shadow-sm); }
.place-result-grid strong { display: block; margin-top: 8px; color: var(--ink); font-family: 'Bricolage Grotesque',sans-serif; font-size: 21px; }
.place-result-grid p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.place-result-grid .icon { position: absolute; top: 22px; right: 20px; color: var(--sea); }
.place-result-type { color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.footer-disclosure { margin-top: 22px !important; color: rgba(255,255,255,.38); font-size: 10px !important; }

@media (max-width: 1080px) {
  .nav-mega { display: none; }
  .nav-caret { display: none; }
  .hub-heading, .calendar-hero { grid-template-columns: 1fr; gap: 24px; }
  .content-with-rail, .event-detail-grid { grid-template-columns: minmax(0,1fr) 270px; gap: 34px; }
  .listing-grid.four { grid-template-columns: repeat(2,1fr); }
  .taxonomy-grid, .destination-grid { grid-template-columns: repeat(2,1fr); }
  .editorial-promise { grid-template-columns: 1fr; gap: 30px; }
  .calendar-content-grid { grid-template-columns: minmax(0,1fr) 260px; gap: 25px; }
}
@media (max-width: 820px) {
  .search-dialog form { padding: 38px 24px 28px; }
  .content-with-rail, .event-detail-grid { grid-template-columns: 1fr; }
  .side-rail { position: static; grid-template-columns: 1fr 1fr; }
  .listing-grid, .listing-grid.two, .listing-grid.four { grid-template-columns: repeat(2,1fr); }
  .hub-facts { grid-template-columns: repeat(2,1fr); }
  .hub-fact:nth-child(2) { border-right: 0; }
  .hub-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .town-grid { grid-template-columns: repeat(2,1fr); }
  .travel-cta { grid-template-columns: 46px 1fr; }
  .travel-cta .button { grid-column: 1 / -1; }
  .event-detail-hero { min-height: 410px; }
  .editorial-lead { grid-template-columns: 1fr; }
  .editorial-lead-media { min-height: 390px; }
  .promise-list { grid-template-columns: 1fr; }
  .gem-manifesto { grid-template-columns: 62px 1fr; }
  .gem-manifesto > p { grid-column: 1 / -1; }
  .calendar-content-grid { grid-template-columns: 1fr; }
  .calendar-side { position: static; grid-template-columns: 1fr 1fr; }
  .welcome-card { grid-template-columns: 1fr; padding: 42px; }
  .welcome-sun { width: 100px; height: 100px; }
  .welcome-sun .icon { width: 48px; height: 48px; }
}
@media (max-width: 590px) {
  .fresh-bar span:last-child { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { width: 42px; padding: 0; justify-content: center; }
  .search-input-wrap { display: grid; grid-template-columns: 22px 1fr; }
  .search-input-wrap .button { grid-column: 1 / -1; width: 100%; }
  .page-shell, .hub-top { padding-top: 38px; }
  .hub-heading h1 { font-size: 43px; }
  .category-visual { min-height: 190px; border-radius: 14px 70px 14px 14px; }
  .hub-hero-media { min-height: 390px; border-radius: 15px 80px 15px 15px; }
  .hub-hero-copy { left: 22px; right: 22px; bottom: 21px; }
  .listing-grid, .listing-grid.two, .listing-grid.four, .taxonomy-grid, .destination-grid { grid-template-columns: 1fr; }
  .destination-card:nth-child(1), .destination-card:nth-child(2) { min-height: 310px; }
  .side-rail { grid-template-columns: 1fr; }
  .content-card, .event-detail-body { padding: 23px; }
  .event-detail-hero { min-height: 430px; }
  .event-detail-heading { left: 22px; right: 22px; bottom: 22px; }
  .event-facts { grid-template-columns: 1fr; }
  .event-fact, .event-fact:nth-child(even), .event-fact:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .event-fact:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .town-grid { grid-template-columns: 1fr; }
  .calendar-hero { padding: 25px; }
  .shf-cal-dates { align-items: flex-start; }
  .shf-cal-daterow { align-items: end; }
  .shf-cal-daterow label { display: grid; gap: 4px; }
  .shf-cal-daterow input { margin: 0; width: 130px; }
  .cal-row { grid-template-columns: 49px 1fr; }
  .cal-thumb { display: none; }
  .not-found { grid-template-columns: 1fr; gap: 20px; min-height: 55vh; }
  .not-found-number { font-size: 120px; }
  .editorial-lead-copy { padding: 28px; }
  .editorial-lead-media { min-height: 310px; }
  .editorial-promise { padding: 27px; }
  .gem-manifesto { grid-template-columns: 1fr; }
  .gem-manifesto > p { grid-column: auto; }
  .calendar-side { grid-template-columns: 1fr; }
  .welcome-card { padding: 28px; }
  .welcome-form .email-form { grid-template-columns: 1fr; gap: 8px; }
  .welcome-form .button { width: 100%; }
  .newsletter-benefits { grid-template-columns: 1fr; }
  .place-result-grid { grid-template-columns: 1fr; }
}
