:root {
  font-family: "Manrope", sans-serif;
  color: #173042;
  background: #eef2f1;
  background-color: #eef2f1;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #eef2f1 62%),
    #eef2f1;
}

body.modal-open {
  overflow: hidden;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 0 0 40px;
}

.hero {
  position: relative;
  padding-bottom: 88px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(238, 242, 241, 0) 0%, rgba(238, 242, 241, 0.82) 58%, #eef2f1 100%);
  z-index: 0;
}

.hero-image-shell {
  position: relative;
  min-height: 640px;
  overflow: visible;
}

.location-switcher {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 10px;
  width: min(320px, 100%);
  margin: 0;
}

.location-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: rgba(247, 251, 250, 0.92);
  color: #173042;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  box-shadow: 0 16px 30px rgba(12, 44, 59, 0.18);
}

.location-picker-trigger:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(12, 44, 59, 0.22);
}

.location-picker-prefix {
  color: rgba(23, 48, 66, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-picker-trigger:focus-visible,
.location-chip:focus-visible,
.location-search:focus-visible {
  outline: 2px solid rgba(24, 129, 168, 0.72);
  outline-offset: 2px;
}

.location-picker-caret {
  font-size: 0.84rem;
  color: rgba(23, 48, 66, 0.56);
  transition: transform 160ms ease;
}

.location-switcher.is-open .location-picker-caret {
  transform: rotate(180deg);
}

.location-picker-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 10px;
  padding: 10px;
  width: min(360px, calc(100vw - 32px));
  border-radius: 20px;
  background: rgba(248, 250, 250, 0.88);
  border: 1px solid rgba(216, 229, 233, 0.78);
  box-shadow: 0 18px 36px rgba(12, 44, 59, 0.16);
  backdrop-filter: blur(14px);
  z-index: 60;
}

.location-picker-panel[hidden] {
  display: none;
}

.location-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  min-height: 48px;
  border-radius: 16px;
  background: rgba(233, 240, 242, 0.88);
  border: 1px solid rgba(206, 220, 225, 0.9);
}

.location-search-icon {
  font-size: 0.92rem;
  color: rgba(23, 48, 66, 0.5);
}

.location-search {
  width: 100%;
  border: 0;
  background: transparent;
  color: #173042;
  font: inherit;
}

.location-search::placeholder {
  color: rgba(23, 48, 66, 0.48);
}

.location-switcher-options {
  display: grid;
  gap: 8px;
  max-height: min(50vh, 320px);
  overflow-y: auto;
  padding-right: 2px;
}

.location-chip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(214, 226, 229, 0.92);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(23, 48, 66, 0.78);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.location-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(168, 199, 209, 0.96);
}

.location-chip::after {
  content: "Choose";
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 48, 66, 0.42);
}

.location-chip.is-active {
  background: linear-gradient(135deg, rgba(22, 120, 154, 0.96), rgba(43, 161, 135, 0.96));
  border-color: transparent;
  color: #f7fbfa;
  box-shadow: 0 10px 22px rgba(12, 44, 59, 0.18);
}

.location-chip.is-active::after {
  content: "Current";
  color: rgba(247, 251, 250, 0.78);
}

.location-chip.is-filtered-out {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 27, 44, 0.58) 0%, rgba(22, 38, 55, 0.24) 38%, rgba(238, 242, 241, 0.36) 70%, rgba(238, 242, 241, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 29, 44, 0.18) 0%, rgba(15, 29, 44, 0.05) 100%);
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 36%;
  width: min(90vw, 760px);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f7f5f1;
  z-index: 6;
}

.eyebrow,
.panel-topline,
.window-card p,
.stat-card dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(23, 48, 66, 0.6);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(22, 120, 154, 0.1);
  color: #16789a;
  font-size: 0.9rem;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.best-swim-card .stat-icon {
  background: rgba(222, 107, 58, 0.14);
  color: #c45f33;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 245, 241, 0.92);
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(120, 240, 211, 0.75);
  box-shadow: 0 0 0 2px rgba(120, 240, 211, 0.14);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.96;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 7vw, 5.8rem);
  margin-top: 18px;
  color: #f7f5f1;
}

.lead {
  max-width: 34rem;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(247, 245, 241, 0.9);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 120, 154, 0.92), rgba(43, 161, 135, 0.92));
  color: #f7fbfa;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(12, 44, 59, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(12, 44, 59, 0.26);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
}

.stat-card {
  min-width: 0;
  border-radius: 18px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 48, 66, 0.06);
  text-align: center;
  overflow: hidden;
}

.stat-card.best-swim-card {
  background:
    radial-gradient(circle at top right, rgba(222, 107, 58, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(249, 242, 238, 0.72));
  border-color: rgba(222, 107, 58, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.best-swim-card dt {
  color: rgba(196, 95, 51, 0.74);
}

.best-swim-card dd {
  color: #c45f33;
}

.best-swim-card span {
  color: #a56c4a;
}

.stat-card.surf-watch-card {
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(237, 246, 249, 0.72));
  border-color: rgba(22, 120, 154, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.surf-watch-card dt {
  color: rgba(22, 120, 154, 0.78);
}

.surf-watch-card dd {
  color: #16789a;
}

.surf-watch-card span {
  color: #1a5872;
}

.best-spot-note {
  display: block;
  margin-top: 6px;
  color: #c45f33;
  font-weight: 700;
}

.stat-card dd {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 1.45vw, 1.7rem);
  font-weight: 700;
  color: #1a2f40;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.stat-card span {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  line-height: 1.38;
  color: #4aa68f;
  overflow-wrap: anywhere;
}

.direction-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  margin-right: 0.3em;
  color: #16789a;
  font-size: 0.95em;
  transform: rotate(var(--direction-rotation, 0deg));
  transform-origin: center;
}

.stat-card span .direction-arrow,
.outlook-detail-line .direction-arrow,
.spot-match span .direction-arrow,
.spot-criteria-list .direction-arrow {
  display: inline-flex;
}

.stat-card span > span,
.outlook-detail-line > span,
.spot-match span > span,
.spot-criteria-list span {
  display: inline;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 48px));
  margin: -84px auto 0;
  border-radius: 22px;
  padding: 24px;
  background: rgba(244, 247, 246, 0.82);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.1);
  backdrop-filter: blur(16px);
}

.homepage-stack {
  max-width: 1120px;
  margin: 12px auto 0;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.home-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(237, 245, 242, 0.96));
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.08);
}

.section-kicker {
  margin: 0 0 10px;
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-feature-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: #1a2f40;
}

.home-feature-text {
  margin: 18px 0 0;
  max-width: 34rem;
  color: rgba(23, 48, 66, 0.72);
  line-height: 1.72;
}

.home-feature-live {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.home-feature-label {
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-feature-place {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.02;
  color: #1a2f40;
}

.home-feature-summary {
  margin: 0;
  color: rgba(23, 48, 66, 0.74);
  line-height: 1.65;
}

.home-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-feature-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 235, 230, 0.86);
  color: #2a8f76;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.home-season-tips,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.season-tip-card,
.benefit-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 48, 66, 0.07);
}

.season-tip-card h3,
.benefit-card h3 {
  margin: 10px 0 0;
  font-size: 1.08rem;
  color: #1a2f40;
}

.season-tip-card p,
.benefit-card p {
  margin: 10px 0 0;
  color: #000000;
  line-height: 1.62;
}

.benefit-kicker {
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(23, 48, 66, 0.62);
}

.conditions-updated {
  font-size: 0.84rem;
  color: rgba(23, 48, 66, 0.5);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #7bc8b5;
}

.window-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.window-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 48, 66, 0.08);
}

.window-card strong {
  display: block;
  margin-top: 2px;
  font-size: 1.65rem;
  color: #1a2f40;
}

.window-card span {
  color: rgba(23, 48, 66, 0.74);
  line-height: 1.6;
}

.content-layout {
  max-width: 1120px;
  margin: 26px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.content-main,
.content-side {
  display: grid;
  gap: 32px;
  align-content: start;
  min-width: 0;
}

.content-card {
  min-width: 0;
  border-radius: 22px;
  padding: 28px;
  background: rgba(244, 247, 246, 0.78);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.08);
}

.utility-card {
  padding: 24px;
}

.content-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 24px;
}

.content-heading h2 {
  font-size: 2rem;
  color: #1a2f40;
}

.content-heading p,
.content-copy {
  margin: 0;
  color: rgba(23, 48, 66, 0.7);
  line-height: 1.65;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 48, 66, 0.08);
}

.swim-window-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 246, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.swim-window-date {
  display: inline-block;
  color: rgba(23, 48, 66, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.swim-window-time {
  display: block;
  margin-top: 10px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 0.95;
  color: #1a2f40;
}

.swim-window-label {
  margin: 10px 0 0;
  color: #16789a;
  font-weight: 700;
}

.swim-window-detail {
  display: block;
  margin-top: 10px;
  color: rgba(23, 48, 66, 0.68);
  line-height: 1.55;
}

.swim-window-card .pill {
  margin-top: 16px;
}

.tip-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 245, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.tip-kicker {
  display: inline-block;
  color: rgba(23, 48, 66, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tip-card h3 {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #1a2f40;
}

.tip-card p {
  margin-top: 12px;
}

.access-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 245, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.access-card h3 {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #1a2f40;
}

.access-card p {
  margin-top: 12px;
}

.spot-match-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 245, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.spot-match-card h3 {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #1a2f40;
}

.spot-match-card p {
  margin-top: 12px;
}

.around-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 245, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.around-card h3 {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #1a2f40;
}

.around-card p {
  margin-top: 12px;
}

.mini-link {
  display: inline-flex;
  margin-top: 14px;
  color: #16789a;
  font-weight: 700;
  text-decoration: none;
}

.mini-link:hover {
  text-decoration: underline;
}

.legacy-around-section {
  display: none;
}

.around-section {
  width: 100%;
  margin: 24px auto 0;
  padding: 0;
}

.around-section-card {
  border-radius: 0;
  padding: 28px 32px 32px;
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.82), rgba(240, 246, 244, 0.92));
  border-top: 1px solid rgba(23, 48, 66, 0.08);
  border-bottom: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.06);
}

.around-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.around-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.around-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(23, 48, 66, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    width 180ms ease;
}

.around-dot.is-active {
  width: 28px;
  background: #16789a;
}

.around-carousel {
  overflow: hidden;
}

.around-track {
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.around-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 34px rgba(63, 88, 101, 0.08);
}

.around-slide-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.around-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 22, 33, 0.78) 0%, rgba(9, 22, 33, 0.42) 34%, rgba(9, 22, 33, 0.08) 62%, rgba(9, 22, 33, 0) 100%),
    linear-gradient(180deg, rgba(10, 23, 34, 0.2) 0%, rgba(10, 23, 34, 0.48) 100%);
}

.around-slide-content {
  position: absolute;
  left: 40px;
  bottom: 36px;
  width: min(460px, calc(100% - 64px));
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(244, 247, 246, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(8, 21, 30, 0.16);
}

.around-slide-content h3 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.96;
  color: #1a2f40;
}

.around-slide-content p {
  margin-top: 14px;
  color: rgba(23, 48, 66, 0.74);
  line-height: 1.6;
  font-size: 1rem;
}

.around-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.around-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 120, 154, 0.96), rgba(43, 161, 135, 0.96));
  color: #f7fbfa;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(12, 44, 59, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.around-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(12, 44, 59, 0.22);
}

.mini-card h3,
.mini-card strong {
  margin: 0;
  color: #1a2f40;
}

.mini-card p,
.mini-card span {
  margin: 8px 0 0;
  color: rgba(23, 48, 66, 0.68);
  line-height: 1.5;
}

.mini-card .pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dcebe6;
  color: #2aa187;
  font-weight: 700;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#daylight-info {
  gap: 18px;
}

.info-row-safety {
  margin-bottom: 18px;
}

.info-chip {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 48, 66, 0.08);
}

.daylight-chip {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 20px 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 245, 0.9)),
    rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 30px rgba(78, 101, 110, 0.05);
}

.daylight-chip::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(150, 208, 219, 0.18), rgba(150, 208, 219, 0));
  pointer-events: none;
}

.daylight-chip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: rgba(22, 120, 154, 0.12);
  pointer-events: none;
}

.daylight-chip-head {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.daylight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(22, 120, 154, 0.12);
  color: #16789a;
  flex: 0 0 auto;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.daylight-icon::before,
.daylight-icon::after {
  content: "";
  position: absolute;
}

.daylight-chip.daylight-accent-sunrise .daylight-icon {
  background: linear-gradient(135deg, rgba(246, 213, 144, 0.38), rgba(244, 174, 96, 0.2));
  color: #c7862b;
}

.daylight-chip.daylight-accent-sunset .daylight-icon {
  background: linear-gradient(135deg, rgba(246, 200, 173, 0.34), rgba(222, 107, 58, 0.14));
  color: #d36f46;
}

.daylight-chip.daylight-accent-window .daylight-icon {
  background: linear-gradient(135deg, rgba(191, 215, 207, 0.46), rgba(110, 167, 146, 0.18));
  color: #2a8c70;
}

.daylight-chip.daylight-accent-band .daylight-icon {
  background: linear-gradient(135deg, rgba(186, 214, 244, 0.46), rgba(78, 143, 203, 0.18));
  color: #1a2f40;
}

.daylight-label {
  display: block;
  color: rgba(23, 48, 66, 0.56);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.daylight-chip strong {
  display: block;
  margin-bottom: 10px;
  color: #173042;
  font-size: clamp(1.8rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.daylight-detail {
  margin: 0;
  color: rgba(23, 48, 66, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.daylight-accent-sunrise::before {
  background: linear-gradient(90deg, rgba(231, 176, 88, 0.7), rgba(231, 176, 88, 0.18));
}

.daylight-accent-sunset::before {
  background: linear-gradient(90deg, rgba(222, 107, 58, 0.72), rgba(222, 107, 58, 0.16));
}

.daylight-accent-window::before {
  background: linear-gradient(90deg, rgba(74, 166, 143, 0.72), rgba(74, 166, 143, 0.16));
}

.daylight-accent-band::before {
  background: linear-gradient(90deg, rgba(78, 143, 203, 0.72), rgba(78, 143, 203, 0.16));
}

.daylight-accent-sunrise .daylight-icon::before {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  left: 19px;
  top: 19px;
  box-shadow:
    0 -14px 0 -7px currentColor,
    0 14px 0 -7px currentColor,
    14px 0 0 -7px currentColor,
    -14px 0 0 -7px currentColor,
    10px 10px 0 -7px currentColor,
    -10px 10px 0 -7px currentColor,
    10px -10px 0 -7px currentColor,
    -10px -10px 0 -7px currentColor;
}

.daylight-accent-sunrise .daylight-icon::after {
  left: 12px;
  right: 12px;
  bottom: 13px;
  height: 8px;
  border-radius: 999px 999px 0 0;
  border-top: 2px solid currentColor;
  opacity: 0.45;
}

.daylight-accent-sunset .daylight-icon::before {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid currentColor;
  left: 18px;
  top: 17px;
}

.daylight-accent-sunset .daylight-icon::after {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f3e2d8;
  left: 25px;
  top: 17px;
}

.daylight-accent-window .daylight-icon::before {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 3px solid currentColor;
  left: 16px;
  top: 15px;
}

.daylight-accent-window .daylight-icon::after {
  width: 3px;
  height: 12px;
  background: currentColor;
  left: 28px;
  top: 21px;
  border-radius: 999px;
  box-shadow: 6px 4px 0 0 currentColor;
  transform-origin: bottom center;
}

.daylight-accent-band .daylight-icon::before {
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 14px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(78, 143, 203, 0.12), rgba(78, 143, 203, 0.36));
}

.daylight-accent-band .daylight-icon::after {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  left: 19px;
  top: 13px;
  box-shadow: 10px 8px 0 -8px rgba(255, 255, 255, 0.72);
}

.info-chip strong {
  display: block;
  color: #1a2f40;
  font-size: 1.2rem;
}

.info-chip span {
  display: block;
  margin-top: 8px;
  color: rgba(23, 48, 66, 0.64);
}

.bullet-panel {
  padding: 4px 0 0;
}

.bullet-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #1a5872;
}

.bullet-panel li + li {
  margin-top: 12px;
}

.bullet-panel a {
  color: #16789a;
  font-weight: 700;
  text-decoration: none;
}

.bullet-panel a:hover {
  text-decoration: underline;
}

.tide-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 48, 66, 0.05);
  font-size: 0.95rem;
}

.tide-meta::before {
  font-size: 1.05rem;
  line-height: 1;
}

.tide-meta-label {
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tide-meta strong {
  color: #1a2f40;
  font-size: 1rem;
}

.tide-meta-height {
  color: rgba(23, 48, 66, 0.64);
  font-size: 0.9rem;
}

.tide-meta-up::before {
  content: "\2191";
  color: #16789a;
}

.tide-meta-down::before {
  content: "\2193";
  color: #c58a42;
}

.tide-scroll-shell {
  min-width: 0;
}

.tide-chart {
  height: 280px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  padding: 12px 0 0;
}

.tide-bar {
  border-radius: 16px 16px 0 0;
  background: #c9cdd1;
  min-height: 18px;
}

.tide-bar.good {
  background: #1d7a98;
}

.tide-bar.now {
  background: #de6b3a;
}

.chart-marker-row,
.chart-axis {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
}

.chart-marker-row {
  margin-top: 12px;
  min-height: 52px;
  align-items: start;
}

.chart-marker {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 4px;
  justify-self: center;
  width: max-content;
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(222, 107, 58, 0.12);
  border: 1px solid rgba(222, 107, 58, 0.18);
  box-shadow: 0 10px 22px rgba(222, 107, 58, 0.08);
}

.chart-marker strong {
  color: #c45f33;
  font-size: 0.98rem;
}

.chart-marker span {
  color: rgba(23, 48, 66, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.chart-axis {
  margin-top: 8px;
  color: rgba(23, 48, 66, 0.58);
  font-size: 0.9rem;
  align-items: center;
}

.chart-axis-label {
  justify-self: center;
  white-space: nowrap;
}

.chart-axis-label.is-start {
  justify-self: start;
}

.chart-axis-label.is-end {
  justify-self: end;
}

.chart-legend {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.chart-legend {
  margin-top: 22px;
  color: rgba(23, 48, 66, 0.64);
  font-size: 0.95rem;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 26px;
}

.legend-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
}

.legend-good {
  background: #1d7a98;
}

.legend-now {
  background: #de6b3a;
}

.legend-air {
  background: #1a2f40;
}

.legend-sea {
  background: #16789a;
}

.legend-wind {
  background: #7aa78b;
}

.spot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.spot-card {
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 48, 66, 0.08);
  align-self: start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 26px rgba(55, 82, 95, 0.05);
}

.spot-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  flex-wrap: wrap;
}

.spot-topline-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.spot-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #1a2f40;
}

.spot-title::before {
  content: "o";
  color: #16789a;
  font-size: 1rem;
}

.spot-rating {
  color: #df6c3e;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.spot-difficulty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spot-difficulty-easy {
  background: rgba(61, 183, 140, 0.14);
  color: #23906d;
}

.spot-difficulty-mixed {
  background: rgba(210, 142, 53, 0.14);
  color: #b6772b;
}

.spot-difficulty-advanced {
  background: rgba(195, 92, 78, 0.14);
  color: #b85b4d;
}

.spots-difficulty-summary {
  display: inline;
}

.spots-difficulty-summary strong {
  font-weight: 800;
}

.spots-difficulty-summary-easy strong {
  color: #23906d;
}

.spots-difficulty-summary-mixed strong {
  color: #b6772b;
}

.spots-difficulty-summary-advanced strong {
  color: #b85b4d;
}

.spot-card p {
  margin: 12px 0 0;
  color: rgba(23, 48, 66, 0.68);
  line-height: 1.45;
  font-size: 0.92rem;
}

.spot-match {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 48, 66, 0.05);
}

.spot-match strong {
  color: #1a2f40;
  font-size: 0.9rem;
}

.spot-match span {
  color: rgba(23, 48, 66, 0.64);
  font-size: 0.84rem;
  line-height: 1.4;
}

.spot-match-good {
  background: rgba(222, 241, 235, 0.72);
  border-color: rgba(42, 161, 135, 0.14);
}

.spot-match-mixed {
  background: rgba(247, 239, 226, 0.78);
  border-color: rgba(187, 123, 52, 0.14);
}

.spot-match-caution {
  background: rgba(243, 229, 226, 0.78);
  border-color: rgba(194, 92, 78, 0.14);
}

.spot-surf-note {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(229, 241, 245, 0.76);
  border: 1px solid rgba(22, 120, 154, 0.12);
}

.spot-surf-note strong {
  color: #16789a;
  font-size: 0.82rem;
}

.spot-surf-note span {
  color: rgba(23, 48, 66, 0.66);
  font-size: 0.82rem;
  line-height: 1.4;
}

.spot-criteria {
  margin-top: 12px;
}

.spot-criteria-kicker {
  display: inline-flex;
  color: rgba(23, 48, 66, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spot-criteria-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(23, 48, 66, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.spot-criteria-list li + li {
  margin-top: 6px;
}

.spot-map-link {
  display: inline-flex;
  margin-top: 14px;
  color: #16789a;
  font-weight: 700;
  text-decoration: none;
}

.spot-map-link:hover {
  text-decoration: underline;
}

.spot-best {
  margin: 12px 22px 0;
  padding-left: 18px;
  color: #1a5872;
}

.spot-best li + li {
  margin-top: 8px;
}

.spot-gallery-button {
  margin: 16px 22px 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(22, 120, 154, 0.12);
  color: #16789a;
  font-weight: 800;
  cursor: pointer;
}

.spot-tag {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dcebe6;
  color: #2aa187;
  font-weight: 700;
  font-size: 0.9rem;
}

.outlook-card {
  width: 100%;
  margin: 0;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(240, 246, 244, 0.92));
  border: 1px solid rgba(23, 48, 66, 0.1);
  box-shadow:
    0 18px 44px rgba(55, 82, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.newsletter-card {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 32px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(240, 246, 244, 0.92));
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.08);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.newsletter-kicker {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(23, 48, 66, 0.56);
}

.newsletter-card h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: #1a2f40;
}

.newsletter-text {
  margin: 18px 0 0;
  color: rgba(23, 48, 66, 0.72);
  line-height: 1.65;
}

.newsletter-preview {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(22, 120, 154, 0.08);
  color: #1a5872;
  line-height: 1.6;
  font-weight: 600;
}

.newsletter-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 48, 66, 0.08);
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: rgba(23, 48, 66, 0.65);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 48, 66, 0.12);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #173042;
  font: inherit;
}

.field textarea {
  min-height: 176px;
  resize: vertical;
}

.field input[type="range"] {
  padding: 0;
  accent-color: #16789a;
}

.field strong {
  color: #16789a;
  font-size: 0.96rem;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.newsletter-button,
.newsletter-submit {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #16789a, #2aa187);
  color: #f7fbfa;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease;
  box-shadow: 0 12px 24px rgba(22, 120, 154, 0.22);
}

.newsletter-button:hover,
.newsletter-submit:hover {
  transform: translateY(-1px);
}

.newsletter-button.is-loading {
  opacity: 0.8;
  cursor: progress;
}

.newsletter-button.is-success {
  background: linear-gradient(135deg, #2a8c70, #4bb59a);
  animation: pulse-success 420ms ease;
}

.newsletter-button.is-error {
  background: linear-gradient(135deg, #b96c4b, #d98563);
}

.newsletter-status {
  margin: 0;
  color: rgba(23, 48, 66, 0.62);
  line-height: 1.5;
  transition: color 160ms ease;
}

.newsletter-status[data-state="success"] {
  color: #2a8c70;
}

.newsletter-status[data-state="error"] {
  color: #b25e44;
}

.newsletter-status[data-state="loading"] {
  color: #16789a;
}

.newsletter-confirmation {
  align-self: start;
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(43, 161, 135, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(42, 140, 112, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.newsletter-confirmation.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.newsletter-confirmation-kicker {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: #2a8c70;
}

.newsletter-confirmation h3 {
  margin: 10px 0 0;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  line-height: 1.12;
  color: #1a2f40;
}

.newsletter-confirmation-text {
  margin: 12px 0 0;
  color: rgba(23, 48, 66, 0.68);
  line-height: 1.6;
}

.spot-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 20px 16px;
}

.spot-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(54, 134, 160, 0.14), transparent 36%),
    rgba(13, 24, 34, 0.68);
  backdrop-filter: blur(12px);
}

.spot-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 0 auto;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(233, 244, 245, 0.9), rgba(245, 247, 246, 0.98) 26%),
    #f5f7f6;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 36px 90px rgba(7, 19, 27, 0.34);
}

.spot-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #163345;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 42, 54, 0.12);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.spot-modal-close:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(20, 42, 54, 0.18);
}

.spot-modal-header {
  margin-bottom: 24px;
  padding-right: 92px;
}

.spot-modal-header .newsletter-kicker {
  margin-bottom: 10px;
}

.spot-modal-header h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.94;
}

.spot-modal-summary {
  max-width: 42rem;
  margin: 14px 0 0;
  color: rgba(23, 48, 66, 0.72);
  line-height: 1.65;
}

.spot-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.spot-modal-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 42px rgba(28, 56, 72, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.spot-modal-figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(28, 56, 72, 0.16);
}

.spot-modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.spot-modal-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: rgba(23, 48, 66, 0.72);
}

.spot-modal-caption-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.spot-modal-caption-copy strong {
  color: #173042;
  font-size: 1.02rem;
}

.spot-modal-caption-copy span {
  color: rgba(23, 48, 66, 0.62);
  font-size: 0.92rem;
}

.spot-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 120, 154, 0.1);
  color: #16789a;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.spot-modal-link:hover {
  background: rgba(22, 120, 154, 0.16);
  color: #0f6783;
}

@keyframes pulse-success {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.outlook-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: -6px 0 22px;
  color: rgba(23, 48, 66, 0.62);
  font-size: 0.94rem;
}

.outlook-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.outlook-grid {
  min-width: 0;
}

.outlook-table-shell {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.outlook-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.outlook-table th {
  padding: 0 8px 5px;
  color: rgba(23, 48, 66, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.outlook-table td {
  padding: 10px 8px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(23, 48, 66, 0.06);
  border-bottom: 1px solid rgba(23, 48, 66, 0.06);
  color: #1a2f40;
  font-size: 0.84rem;
  line-height: 1.3;
  white-space: nowrap;
}

.outlook-table tbody td:first-child {
  border-left: 1px solid rgba(23, 48, 66, 0.06);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(246, 249, 248, 0.96);
}

.outlook-table tbody td:last-child {
  border-right: 1px solid rgba(23, 48, 66, 0.06);
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

.outlook-table-day {
  display: grid;
  gap: 2px;
  min-width: 78px;
}

.outlook-table-lead {
  display: grid;
  gap: 8px;
  min-width: 200px;
}

.outlook-table-day strong {
  font-size: 0.94rem;
  color: #1a2f40;
}

.outlook-table-day span {
  color: rgba(23, 48, 66, 0.62);
  font-size: 0.76rem;
  white-space: normal;
}

.outlook-table-weather {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: normal;
  min-width: 92px;
}

.outlook-table-weather .outlook-icon {
  margin: 0;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.outlook-table-best {
  display: grid;
  gap: 2px;
  min-width: 118px;
}

.outlook-table-best-label {
  color: rgba(196, 95, 51, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outlook-table-best strong {
  color: #c45f33;
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.outlook-table-best span:last-child {
  color: rgba(118, 72, 46, 0.86);
  font-size: 0.75rem;
  white-space: normal;
}

.outlook-table-detail .outlook-detail-line,
.outlook-table-detail .weather-detail {
  border: 0;
  background: transparent;
  padding: 0;
  min-width: 0;
}

.outlook-table-detail .outlook-detail-label {
  display: none;
}

.outlook-table-detail .outlook-detail-value {
  justify-content: flex-start;
  font-size: 0.8rem;
  white-space: normal;
}

.outlook-table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #eef5f3;
}

.outlook-table .outlook-badge {
  margin: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 6px 11px;
}

.outlook-table-surf {
  display: grid;
  gap: 3px;
  min-width: 125px;
}

.outlook-table-surf strong {
  color: #16789a;
  font-size: 0.82rem;
}

.outlook-table-surf span {
  color: rgba(23, 48, 66, 0.62);
  font-size: 0.72rem;
  white-space: normal;
}

.outlook-day {
  min-width: 0;
  border-radius: 20px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(23, 48, 66, 0.08);
  text-align: center;
  display: grid;
  gap: 10px;
  align-content: start;
}

.outlook-day-top {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.outlook-swim-window {
  display: grid;
  gap: 6px;
  margin: 2px 0 4px;
  padding: 16px 14px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(222, 107, 58, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 242, 0.94), rgba(250, 241, 236, 0.84));
  border: 1px solid rgba(222, 107, 58, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.outlook-swim-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(196, 95, 51, 0.72);
}

.outlook-swim-window strong {
  color: #c45f33;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  line-height: 0.95;
}

.outlook-swim-window p {
  margin: 0;
  color: rgba(118, 72, 46, 0.84);
  font-size: 0.92rem;
  line-height: 1.45;
}

.outlook-day-name {
  font-size: 0.95rem;
  color: rgba(23, 48, 66, 0.6);
}

.outlook-day-date {
  margin-top: 4px;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2f40;
}

.outlook-icon {
  margin: 10px auto 6px;
  font-size: 2rem;
  line-height: 1;
  color: #16789a;
}

.outlook-day-headline {
  color: rgba(23, 48, 66, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.outlook-section-kicker {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  color: rgba(196, 95, 51, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outlook-section-kicker-muted {
  margin-top: 10px;
  color: rgba(23, 48, 66, 0.48);
}

.outlook-detail-stack {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.outlook-detail-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 14px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 48, 66, 0.05);
  color: rgba(23, 48, 66, 0.7);
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.outlook-detail-label {
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.outlook-detail-value {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  min-width: 0;
  color: #1a2f40;
  text-align: right;
}

.outlook-detail-meta {
  display: block;
  width: 100%;
  color: rgba(23, 48, 66, 0.56);
  font-size: 0.78rem;
}

.weather-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  color: #16789a;
}

.spot-match span,
.stat-card span {
  min-width: 0;
}

.outlook-wave {
  color: rgba(23, 48, 66, 0.64);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.outlook-sun-times {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.outlook-sun-time {
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 48, 66, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  min-width: 0;
  flex-wrap: wrap;
}

.outlook-sun-time strong {
  color: #1a2f40;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.outlook-sun-time.sunrise strong {
  color: #c7862b;
}

.outlook-sun-time.sunset strong {
  color: #d36f46;
}

.outlook-sun-label {
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.outlook-badge {
  display: inline-flex;
  margin: 6px auto 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: #dcebe6;
  color: #2aa187;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.outlook-badge.caution {
  background: #f3e7d9;
  color: #bb7b34;
}

.outlook-badge.exposed {
  background: #f0dedd;
  color: #c25c4e;
}

@media (max-width: 980px) {
  .hero-image-shell,
  .hero-image {
    min-height: 560px;
    height: 560px;
  }

  .hero-copy {
    top: 32%;
    width: min(92vw, 680px);
  }

  .hero-panel {
    width: min(100% - 32px, 1100px);
  }

  .location-switcher {
    width: min(300px, 100%);
  }

  .stats-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .homepage-stack {
    padding: 0 16px;
  }

  .home-feature-card,
  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .outlook-grid {
    min-width: 0;
  }

  .outlook-table {
    min-width: 900px;
  }

  .outlook-table th {
    font-size: 0.62rem;
    padding: 0 7px 4px;
  }

  .outlook-table td {
    padding: 9px 7px;
    font-size: 0.79rem;
  }

  .outlook-table-day {
    min-width: 72px;
  }

  .outlook-table-weather {
    min-width: 88px;
  }

  .outlook-table-best {
    min-width: 110px;
  }

  .outlook-table-lead {
    min-width: 182px;
  }

  .outlook-table-best strong {
    font-size: 1.05rem;
  }

  .outlook-table-surf {
    min-width: 110px;
  }

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

  .around-section-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .around-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .around-slide {
    min-height: 460px;
  }

  .around-slide-image {
    height: 460px;
  }

  .around-slide-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }

  .mini-card-grid,
  .info-row {
    grid-template-columns: 1fr;
  }

  #daylight-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-heading p {
    width: 100%;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .spot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spot-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .location-switcher {
    width: min(100%, 320px);
  }

  .location-picker-trigger {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .location-picker-prefix {
    display: none;
  }

  .location-picker-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 8px;
    padding: 8px;
    width: min(92vw, 340px);
    border-radius: 18px;
  }

  .location-search-wrap {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 14px;
  }

  .location-switcher-options {
    max-height: min(44vh, 260px);
  }

  .location-chip {
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .location-chip::after {
    font-size: 0.66rem;
  }

  .hero-image-shell,
  .hero-image {
    min-height: 520px;
    height: 520px;
  }

  .home-feature-card,
  .content-card,
  .newsletter-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-season-tips,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    top: 39%;
    width: calc(100vw - 32px);
  }

  h1 {
    font-size: 3.4rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-panel,
  .content-layout,
  .around-section,
  .newsletter-card {
    width: calc(100% - 24px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-panel {
    margin-top: -72px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .content-card,
  .utility-card {
    padding: 22px 16px;
  }

  .outlook-card {
    overflow: hidden;
  }

  .outlook-grid {
    min-width: 0;
  }

  .outlook-table-shell {
    margin: 0 -4px;
    padding: 0 4px 8px;
  }

  .outlook-table {
    min-width: 820px;
    border-spacing: 0 8px;
  }

  .outlook-table th {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    padding: 0 6px 4px;
  }

  .outlook-table td {
    padding: 8px 6px;
    font-size: 0.74rem;
  }

  .outlook-table tbody td:first-child,
  .outlook-table thead th:first-child {
    left: 0;
  }

  .outlook-table-day {
    min-width: 62px;
  }

  .outlook-table-day strong {
    font-size: 0.86rem;
  }

  .outlook-table-day span {
    font-size: 0.68rem;
  }

  .outlook-table-weather {
    min-width: 76px;
    gap: 5px;
  }

  .outlook-table-weather .outlook-icon {
    font-size: 1rem;
  }

  .outlook-table-best {
    min-width: 98px;
  }

  .outlook-table-lead {
    min-width: 164px;
    gap: 6px;
  }

  .outlook-table-best-label {
    font-size: 0.56rem;
  }

  .outlook-table-best strong {
    font-size: 0.96rem;
  }

  .outlook-table-best span:last-child,
  .outlook-table-detail .outlook-detail-value {
    font-size: 0.7rem;
  }

  .outlook-table .outlook-badge {
    font-size: 0.7rem;
    padding: 5px 9px;
  }

  .outlook-table-surf {
    min-width: 100px;
  }

  .outlook-table-surf strong {
    font-size: 0.74rem;
  }

  .outlook-table-surf span {
    font-size: 0.66rem;
  }

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

  .window-list {
    grid-template-columns: 1fr;
  }

  .tide-scroll-shell {
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .tide-chart,
  .chart-marker-row,
  .chart-axis {
    min-width: 0;
  }

  .tide-chart {
    height: 220px;
    gap: 2px;
  }

  .tide-bar {
    border-radius: 10px 10px 0 0;
  }

  .chart-marker-row,
  .chart-axis {
    font-size: 0.84rem;
  }

  .chart-marker {
    max-width: 140px;
    padding: 8px 10px;
  }

  .chart-axis-label {
    display: none;
    font-size: 0.72rem;
  }

  .chart-axis-label:nth-child(1),
  .chart-axis-label:nth-child(3),
  .chart-axis-label:nth-child(5),
  .chart-axis-label:nth-child(7),
  .chart-axis-label:nth-child(9) {
    display: block;
  }

  .tide-meta {
    margin-left: 0;
    margin-right: 16px;
    font-size: 0.88rem;
  }

  .chart-legend span {
    margin-right: 0;
  }

  .outlook-card {
    width: calc(100% - 24px);
    margin: 24px auto 0;
    transform: none;
    padding: 22px 16px;
  }

  .newsletter-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

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

  .outlook-grid {
    min-width: 0;
  }

  .spot-list {
    grid-template-columns: 1fr;
  }

  .outlook-day {
    padding: 16px 14px;
    gap: 8px;
    text-align: center;
  }

  .outlook-icon {
    margin: 2px 0;
    font-size: 1.6rem;
  }

  .outlook-section-kicker {
    justify-content: center;
  }

  .outlook-swim-window {
    padding: 14px 12px 12px;
    gap: 4px;
  }

  .outlook-swim-window strong {
    font-size: 1.45rem;
  }

  .outlook-swim-window p {
    font-size: 0.88rem;
  }

  .outlook-detail-line {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .outlook-detail-value {
    font-size: 0.84rem;
  }

  .outlook-sun-times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .outlook-sun-time {
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .outlook-wave {
    font-size: 0.88rem;
  }

  .outlook-badge {
    margin: 4px 0 0;
  }

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

  .around-section-card {
    padding: 20px 12px 24px;
  }

  .around-slide {
    min-height: 420px;
    border-radius: 22px;
  }

  .around-slide-image {
    height: 420px;
  }

  .around-slide-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px 18px 16px;
  }

  .around-slide-content h3 {
    font-size: 1.75rem;
  }

  .info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spot-topline,
  .newsletter-actions {
    min-width: 0;
  }

  #daylight-info {
    grid-template-columns: 1fr;
  }

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

  .spot-modal {
    padding: 10px;
  }

  .spot-modal-dialog {
    max-height: calc(100vh - 20px);
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .spot-modal-close {
    top: 14px;
    right: 14px;
    padding: 10px 13px;
  }

  .spot-modal-header {
    padding-right: 70px;
    margin-bottom: 18px;
  }

  .spot-modal-image {
    height: 240px;
  }

  .spot-modal-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

.landing-shell {
  min-height: 100vh;
  padding: 0 0 48px;
}

.landing-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
}

.landing-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.landing-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 29, 43, 0.46) 0%, rgba(13, 29, 43, 0.2) 32%, rgba(238, 242, 241, 0.18) 68%, rgba(238, 242, 241, 0.96) 100%),
    linear-gradient(90deg, rgba(14, 27, 44, 0.2) 0%, rgba(14, 27, 44, 0.04) 100%);
}

.landing-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 96px;
  color: #f7f5f1;
}

.landing-kicker {
  margin: 0;
  color: rgba(247, 245, 241, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-hero-copy h1 {
  max-width: 12ch;
  margin-top: 20px;
}

.landing-lead {
  max-width: 40rem;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.72;
  color: rgba(247, 245, 241, 0.9);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.landing-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(247, 251, 250, 0.12);
  color: #f7fbfa;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(12, 44, 59, 0.14);
  backdrop-filter: blur(10px);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.landing-secondary-cta:hover {
  transform: translateY(-1px);
  background: rgba(247, 251, 250, 0.18);
  box-shadow: 0 18px 34px rgba(12, 44, 59, 0.18);
}

.landing-secondary-cta-solid {
  border-color: rgba(22, 120, 154, 0.22);
  background: linear-gradient(135deg, rgba(22, 120, 154, 0.9), rgba(93, 187, 167, 0.92));
  color: #f7fbfa;
  box-shadow: 0 16px 30px rgba(12, 44, 59, 0.18);
}

.landing-secondary-cta-solid:hover {
  background: linear-gradient(135deg, rgba(18, 104, 133, 0.96), rgba(78, 174, 153, 0.96));
}

.landing-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: -20px auto 0;
  display: grid;
  gap: 24px;
}

.landing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 246, 243, 0.96));
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.08);
}

.landing-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2f40;
}

.landing-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
}

.landing-title-icon,
.landing-inline-icon,
.landing-card-icon,
.landing-area-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex-shrink: 0;
}

.landing-title-icon {
  width: 42px;
  height: 42px;
  background: rgba(22, 120, 154, 0.1);
  color: #16789a;
  font-size: 1.08rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.landing-title-icon.soft {
  width: 34px;
  height: 34px;
  background: rgba(222, 107, 58, 0.1);
  color: #c45f33;
  font-size: 0.95rem;
}

.landing-heading-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.landing-inline-icon {
  width: 34px;
  height: 34px;
  background: rgba(22, 120, 154, 0.1);
  color: #16789a;
  font-size: 0.95rem;
}

.landing-copy {
  max-width: 38rem;
  margin: 18px 0 0;
  color: rgba(23, 48, 66, 0.72);
  line-height: 1.7;
}

.landing-live-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.landing-live-label {
  color: rgba(23, 48, 66, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-live-place {
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.04;
  color: #1a2f40;
}

.landing-live-summary {
  margin: 0;
  color: rgba(23, 48, 66, 0.72);
  line-height: 1.68;
}

.landing-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-live-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 120, 154, 0.9), rgba(43, 161, 135, 0.9));
  color: #f7fbfa;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(12, 44, 59, 0.14);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.landing-live-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(12, 44, 59, 0.18);
}

.landing-live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 235, 230, 0.86);
  color: #2a8f76;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.landing-storyband {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-story-card {
  position: relative;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 44px rgba(55, 82, 95, 0.08);
}

.landing-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-story-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(12, 26, 37, 0) 0%, rgba(12, 26, 37, 0.76) 100%);
  color: #f7fbfa;
}

.landing-story-overlay h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.landing-story-overlay p {
  margin: 10px 0 0;
  max-width: 28rem;
  color: rgba(247, 251, 250, 0.82);
  line-height: 1.58;
}

.landing-story-kicker {
  color: rgba(247, 251, 250, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-season-card,
.landing-benefits-card,
.landing-beginners-card,
.landing-areas-card {
  background: rgba(244, 247, 246, 0.82);
}

.landing-season-card {
  background:
    radial-gradient(circle at top right, rgba(42, 161, 135, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.9), rgba(236, 246, 242, 0.98));
}

.landing-benefits-card {
  background:
    radial-gradient(circle at top left, rgba(22, 120, 154, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.9), rgba(237, 244, 249, 0.98));
}

.landing-beginners-card {
  background:
    radial-gradient(circle at top right, rgba(222, 107, 58, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(247, 244, 241, 0.9), rgba(249, 242, 237, 0.98));
}

.landing-areas-card {
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.9), rgba(236, 242, 245, 0.98));
}

.landing-section-figure {
  position: relative;
  margin: 4px 0 18px;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(23, 48, 66, 0.08);
  box-shadow: 0 18px 34px rgba(63, 88, 101, 0.08);
}

.landing-section-figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.landing-section-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 26, 37, 0) 0%, rgba(12, 26, 37, 0.74) 100%);
  color: #f7fbfa;
  display: grid;
  gap: 6px;
}

.landing-section-figure figcaption strong {
  font-size: 1.05rem;
  line-height: 1.28;
}

.landing-section-figure-tips {
  min-height: 260px;
}

.landing-section-figure-benefits {
  min-height: 260px;
}

.landing-section-figure-beginners {
  min-height: 660px;
}

.landing-section-figure-beginners::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 26, 37, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(12, 26, 37, 0.02) 0%, rgba(12, 26, 37, 0.24) 100%);
  pointer-events: none;
}

.landing-beginner-grid-overlay {
  position: absolute;
  inset: 18px 18px 18px 18px;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  align-content: start;
}

.landing-beginner-grid-overlay .benefit-card {
  background: rgba(244, 247, 246, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(3px);
  box-shadow: 0 16px 30px rgba(18, 42, 53, 0.12);
  min-height: 100%;
}

.landing-season-grid,
.landing-beginner-grid,
.landing-areas-grid {
  display: grid;
  gap: 14px;
}

.landing-season-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -4px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 48, 66, 0.06);
}

.landing-season-intro p {
  margin: 0;
  color: rgba(23, 48, 66, 0.74);
  line-height: 1.62;
}

.landing-season-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(22, 120, 154, 0.12);
  color: #16789a;
  font-weight: 800;
  text-decoration: none;
}

.landing-season-cta:hover {
  background: rgba(22, 120, 154, 0.16);
}

.landing-season-grid,
.landing-beginner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-areas-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-area-tile {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  min-height: 132px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 26, 37, 0.08) 0%, rgba(12, 26, 37, 0.72) 100%),
    var(--tile-image) center center / cover no-repeat;
  border: 1px solid rgba(23, 48, 66, 0.08);
  color: #f7fbfa;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
  overflow: hidden;
}

.landing-area-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(32, 63, 77, 0.14);
}

.landing-card-icon {
  width: 32px;
  height: 32px;
  margin-top: 12px;
  background: rgba(22, 120, 154, 0.08);
  color: #16789a;
  font-size: 0.92rem;
}

.landing-area-icon {
  width: 28px;
  height: 28px;
  background: rgba(247, 251, 250, 0.16);
  color: #f7fbfa;
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
}

.landing-newsletter-card {
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.84), rgba(237, 245, 242, 0.98));
}

.contact-hero {
  min-height: 58vh;
  align-items: start;
}

.contact-hero-copy {
  width: min(100% - 48px, 960px);
  padding: 82px 0 64px;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(222, 107, 58, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(244, 247, 246, 0.84), rgba(241, 246, 244, 0.98));
}

.contact-textarea {
  line-height: 1.62;
}

.contact-form-note {
  margin: 0;
  color: rgba(23, 48, 66, 0.68);
  line-height: 1.55;
}

.contact-status {
  width: 100%;
  margin-top: 4px;
}

.landing-season-card .season-tip-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 249, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(63, 88, 101, 0.05);
}

.landing-season-card .season-tip-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.landing-season-card .season-tip-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.landing-season-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(22, 120, 154, 0.1);
  color: #16789a;
  font-size: 1rem;
}

.landing-season-tip-footer {
  margin-top: auto;
  padding-top: 10px;
  display: grid;
  gap: 4px;
}

.landing-season-tip-footer strong {
  color: #16789a;
  font-size: 0.92rem;
}

.landing-season-tip-footer span {
  color: rgba(23, 48, 66, 0.54);
  font-size: 0.82rem;
}

.landing-newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 0 0 8px;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(22, 120, 154, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(22, 36, 50, 0.95), rgba(18, 54, 67, 0.94));
  color: rgba(247, 251, 250, 0.9);
  box-shadow: 0 18px 44px rgba(22, 36, 50, 0.18);
}

.site-footer-kicker {
  margin: 0 0 10px;
  color: rgba(156, 220, 206, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-brand h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #f7fbfa;
}

.site-footer-brand p,
.site-footer-note p {
  margin: 12px 0 0;
  line-height: 1.68;
  color: rgba(247, 251, 250, 0.72);
}

.site-footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  color: #f7fbfa;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .landing-hero {
    min-height: auto;
  }

  .landing-hero-copy,
  .landing-content {
    width: min(100% - 32px, 980px);
  }

  .site-footer {
    width: min(100% - 32px, 980px);
  }

  .landing-hero-copy {
    padding: 112px 0 82px;
  }

  .landing-feature,
  .landing-storyband,
  .landing-grid,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .landing-season-grid,
  .landing-beginner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-season-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .landing-hero-copy,
  .landing-content,
  .site-footer {
    width: calc(100% - 24px);
  }

  .landing-hero-copy {
    padding: 96px 0 76px;
  }

  .landing-lead {
    font-size: 1rem;
  }

  .landing-actions,
  .landing-newsletter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-actions a,
  .landing-newsletter-actions a {
    width: 100%;
  }

  .landing-feature,
  .landing-story-card,
  .landing-season-card,
  .landing-benefits-card,
  .landing-beginners-card,
  .landing-areas-card,
  .landing-newsletter-card,
  .site-footer-inner {
    padding: 20px 16px;
  }

  .landing-season-grid,
  .landing-beginner-grid,
  .landing-areas-grid {
    grid-template-columns: 1fr;
  }

  .landing-season-intro {
    padding: 14px;
  }

  .landing-heading-with-icon {
    gap: 10px;
  }

  .landing-inline-icon {
    width: 30px;
    height: 30px;
  }

  .landing-story-card,
  .landing-area-tile {
    min-height: 220px;
  }

  .landing-section-figure-beginners {
    min-height: 1560px;
  }

  .landing-beginner-grid-overlay {
    inset: 12px 12px 12px 12px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-beginner-grid-overlay .benefit-card {
    padding: 16px;
  }
}

