/* beach.guide — coastal editorial MVP
   Palette: deep navy, ocean blue, sky mist, warm sand, coral accent */

:root {
  --tide: #0a3358;
  --tide-deep: #061f36;
  --sea: #1f6fa5;
  --sky: #6eb6d9;
  --mist: #dceef8;
  --sand: #f6f1e7;
  --sand-dark: #e8dfd0;
  --shell: #fffdf8;
  --coral: #d96b4c;
  --coral-dark: #b85236;
  --ink: #152433;
  --ink-soft: #4a5d68;
  --line: rgba(10, 51, 88, 0.12);
  --shadow: 0 18px 40px rgba(6, 31, 54, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(110, 182, 217, 0.28), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(217, 107, 76, 0.12), transparent 55%),
    var(--sand);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--sea);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-dark);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 241, 231, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--tide);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sea);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--tide);
  color: var(--shell) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: var(--sea);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--shell);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  color: var(--tide);
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0.2rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--coral);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--tide-deep);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  color: white;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(10, 51, 88, 0.22);
  color: var(--tide);
}

.btn-secondary:hover {
  background: var(--shell);
  color: var(--tide);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.trust-row strong {
  color: var(--tide);
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.15), rgba(6, 31, 54, 0.55)),
    linear-gradient(135deg, #2b86c5 0%, #0a3358 45%, #d96b4c 140%);
  box-shadow: var(--shadow);
  color: var(--shell);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(110, 182, 217, 0.35), transparent 40%);
  pointer-events: none;
}

.hero-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 253, 248, 0.92);
  color: var(--tide);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.hero-card h2 {
  position: relative;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.15;
}

.hero-card p {
  position: relative;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  max-width: 22rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 300px;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-head h2,
.page-title,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--tide-deep);
  margin: 0;
}

.section-head h2,
.page-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-kicker {
  margin: 0 0 0.4rem;
  color: var(--sea);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0.6rem 0 0;
}

.link-more {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Cards / grids */
.beach-grid,
.card-grid,
.stay-grid,
.do-grid,
.gear-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

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

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

@media (max-width: 900px) {
  .beach-grid,
  .card-grid,
  .stay-grid,
  .do-grid,
  .gear-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .beach-grid,
  .card-grid,
  .stay-grid,
  .do-grid,
  .gear-grid {
    grid-template-columns: 1fr;
  }

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

.beach-card,
.panel,
.cta-card,
.gear-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.beach-card {
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.beach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(7, 40, 51, 0.12);
  color: inherit;
}

.beach-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--sea), var(--tide));
  position: relative;
}

.beach-card-media.siesta {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.2), rgba(10, 51, 88, 0.45)),
    url("/assets/photos/siesta/siesta-beach-wide-fred-hsu.jpg") center/cover no-repeat,
    linear-gradient(135deg, #f2d7b6, #6eb6d9 45%, #0a3358);
}

.beach-card-media.waikiki {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.18), rgba(10, 51, 88, 0.5)),
    url("/assets/photos/waikiki/waikiki-beach-diamond-head-cristo-vlahos.jpg") center/cover no-repeat,
    linear-gradient(135deg, #7ec8e8, #1f6fa5 40%, #d96b4c);
}

.beach-card-media.malibu {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.25), rgba(10, 51, 88, 0.55)),
    linear-gradient(135deg, #a8d8ea, #3a7eb0 40%, #0a3358);
}

.beach-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.beach-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--tide-deep);
}

.beach-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--tide);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag.quiet { background: #e6f0f7; }
.tag.family { background: #e8f3f7; }
.tag.surfing { background: #e8eef8; }
.tag.nightlife { background: #f8ebe4; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tide);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--tide-deep);
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Email capture */
.capture {
  background: linear-gradient(135deg, var(--tide-deep), var(--sea));
  color: var(--shell);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.capture h2 {
  color: var(--shell);
  margin-bottom: 0.5rem;
}

.capture p {
  margin: 0;
  color: rgba(255, 253, 248, 0.85);
}

.capture-form {
  display: grid;
  gap: 0.7rem;
}

.capture-form label {
  font-size: 0.85rem;
  font-weight: 600;
}

.capture-form input[type="email"] {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  background: var(--shell);
  color: var(--ink);
}

.capture-form button {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-weight: 700;
  background: var(--coral);
  color: white;
  cursor: pointer;
}

.capture-form button:hover {
  background: var(--coral-dark);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.7);
}

@media (max-width: 760px) {
  .capture {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--tide);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sea);
}

.footer-title {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tide);
}

.disclosure {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.85rem !important;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Interior pages */
.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero .lede {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--sea);
  text-decoration: none;
}

.dest-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.dest-visual {
  border-radius: 28px;
  min-height: 320px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.dest-visual.siesta {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.18), rgba(10, 51, 88, 0.48)),
    url("/assets/photos/siesta/siesta-beach-wide-fred-hsu.jpg") center/cover no-repeat,
    linear-gradient(135deg, #f4e1c1, #7ebfe0 42%, #0a3358);
}

.dest-visual.waikiki {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.15), rgba(10, 51, 88, 0.5)),
    url("/assets/photos/waikiki/waikiki-beach-diamond-head-cristo-vlahos.jpg") center 45%/cover no-repeat,
    linear-gradient(135deg, #9ad4ef, #2a7fb0 40%, #d96b4c);
}

.dest-visual-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.fact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.fact-list li {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.fact-list strong {
  display: block;
  color: var(--tide);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

@media (max-width: 860px) {
  .dest-hero {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: 44rem;
}

.prose p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.content-block {
  margin: 2.5rem 0;
}

.content-block > h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.content-block > p {
  color: var(--ink-soft);
  margin-top: 0;
}

.cta-card,
.gear-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-card h3,
.gear-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--tide-deep);
}

.cta-card p,
.gear-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.affiliate-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sea);
}

.btn-affiliate {
  align-self: start;
  margin-top: 0.25rem;
}

.panel {
  padding: 1.4rem;
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--tide-deep);
}

.panel p {
  margin: 0;
  color: var(--ink-soft);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
}

.list-plain {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.list-plain li + li {
  margin-top: 0.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.wave-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 111, 165, 0.35), transparent);
  border: 0;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Matcher (homepage hero) —— */
.matcher-hero {
  padding-top: 3.25rem;
}

.matcher-intro {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.matcher-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.matcher-form,
.matcher-results {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.matcher-form {
  padding: 1.35rem 1.35rem 1.5rem;
}

.matcher-fieldset {
  border: 0;
  margin: 0 0 1.15rem;
  padding: 0;
}

.matcher-fieldset legend {
  font-weight: 700;
  color: var(--tide);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.matcher-fieldset .hint {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--sand);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tide);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.chip:hover {
  border-color: rgba(31, 111, 165, 0.45);
}

.chip:has(input:checked) {
  background: var(--tide);
  border-color: var(--tide);
  color: var(--shell);
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.matcher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.matcher-results {
  padding: 1.2rem;
  min-height: 280px;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.matcher-empty,
.matcher-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.match-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.55), var(--shell));
  align-items: start;
}

.match-card-media {
  border-radius: 12px;
  min-height: 92px;
  width: 100%;
  min-width: 0;
  aspect-ratio: auto;
  align-self: stretch;
}

.match-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--tide-deep);
}

.match-card h3 a {
  color: inherit;
  text-decoration: none;
}

.match-card h3 a:hover {
  color: var(--sea);
}

.match-card p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.match-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.match-ctas a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--tide);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.match-ctas a:hover {
  background: var(--tide);
  color: var(--shell);
}

.match-card.coming .match-ctas a {
  opacity: 0.55;
  pointer-events: none;
}

.directory-teaser {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 24px;
  border: 1px dashed rgba(31, 111, 165, 0.45);
  background:
    linear-gradient(135deg, rgba(110, 182, 217, 0.18), rgba(255, 253, 248, 0.9));
}

.directory-teaser h2 {
  margin-bottom: 0.5rem;
}

.directory-teaser p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

.directory-cta-wrap {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1080px) {
  .matcher-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .directory-teaser {
    grid-template-columns: 1fr;
  }

  .directory-cta-wrap {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .match-card {
    grid-template-columns: 1fr;
  }

  .match-card-media {
    min-height: 120px;
  }
}

.beach-card-media.hilton,
.dest-visual.hilton,
.match-card-media.hilton {
  background:
    linear-gradient(160deg, rgba(6, 31, 54, 0.18), rgba(6, 31, 54, 0.42)),
    url("/assets/photos/hhi/hhi-beach-wide-thierry-caro.jpg") center/cover no-repeat,
    linear-gradient(135deg, #b9d9f2 0%, #4a9fd0 38%, #1a5f8f 72%, #0a3358 100%);
}

.beach-card-media.siesta,
.dest-visual.siesta,
.match-card-media.siesta {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.18), rgba(10, 51, 88, 0.45)),
    url("/assets/photos/siesta/siesta-beach-wide-fred-hsu.jpg") center/cover no-repeat,
    linear-gradient(135deg, #f2d7b6, #6eb6d9 45%, #0a3358);
}

.beach-card-media.waikiki,
.dest-visual.waikiki,
.match-card-media.waikiki {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.16), rgba(10, 51, 88, 0.48)),
    url("/assets/photos/waikiki/waikiki-beach-diamond-head-cristo-vlahos.jpg") center 45%/cover no-repeat,
    linear-gradient(135deg, #7ec8e8, #1f6fa5 40%, #d96b4c);
}

/* Location-verified destination photos */
.photo-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.photo-figure.photo-figure--wide img {
  aspect-ratio: 21 / 9;
}

.photo-credit {
  margin: 0;
  padding: 0.65rem 0.95rem 0.8rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.96);
}

.photo-credit a {
  color: var(--sea);
}

.dest-visual.hilton,
.dest-visual.siesta,
.dest-visual.waikiki {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.dest-visual.hilton .dest-visual-caption,
.dest-visual.siesta .dest-visual-caption,
.dest-visual.waikiki .dest-visual-caption {
  background: rgba(255, 253, 248, 0.94);
}

.dest-photo-credit {
  position: absolute;
  left: 1rem;
  top: 1rem;
  right: auto;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 31, 54, 0.62);
  color: #f4f8fc;
  font-size: 0.72rem;
  line-height: 1.3;
  max-width: calc(100% - 2rem);
}

.dest-photo-credit a {
  color: #dceef8;
}

.section-photo {
  margin: 1.25rem 0 0;
}

.beach-card-media.hilton {
  background-position: center 40%;
}

.beach-card-media.siesta {
  background-position: center 45%;
}

.beach-card-media.waikiki {
  background-position: center 42%;
}

.tag.offseason {
  background: #f3e7d3;
  color: #7a4b1e;
}

.season-callout {
  background:
    linear-gradient(160deg, rgba(110, 182, 217, 0.22), rgba(255, 253, 248, 0.95));
  border-style: solid;
}

/* Waikīkī / destination zone cards — soft intro under section heads */
.content-block .container > p {
  color: var(--ink-soft);
  margin-top: 0;
  max-width: 46rem;
}

.zone-grid .panel h3 {
  font-size: 1.15rem;
}


/* Hilton Head local-guide sections */
.who-for {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tide);
}

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

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

.tip-panel {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.08), rgba(255, 253, 248, 0.96));
  border-color: rgba(26, 95, 143, 0.35);
}

.trap-panel {
  background:
    linear-gradient(160deg, rgba(196, 120, 92, 0.12), rgba(255, 253, 248, 0.96));
  border-color: rgba(196, 120, 92, 0.35);
}

.trap-panel .list-plain {
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 900px) {
  .stretch-grid,
  .eats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trap-panel .list-plain {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .stretch-grid,
  .eats-grid {
    grid-template-columns: 1fr;
  }
}

/* Hilton Head golf page — blues gradient (no invented course photos) */
.dest-visual.golf-hero {
  background:
    linear-gradient(155deg, rgba(6, 31, 54, 0.55), rgba(31, 111, 165, 0.35)),
    linear-gradient(135deg, #dceef8 0%, #6eb6d9 32%, #1f6fa5 68%, #0a3358 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.dest-visual.golf-hero .dest-visual-caption {
  background: rgba(255, 253, 248, 0.94);
}



/* —— Journal / coffee-table magazine layer —— */
.article-page {
  background:
    radial-gradient(1100px 480px at 8% -8%, rgba(110, 182, 217, 0.32), transparent 58%),
    radial-gradient(800px 380px at 100% 4%, rgba(31, 111, 165, 0.12), transparent 52%),
    var(--sand);
}

.article-wrap {
  width: min(100% - 2rem, 44rem);
  margin-inline: auto;
}

.article-kicker {
  margin: 0 0 0.55rem;
}

.article-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 4.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--tide-deep);
  margin: 0 0 0.85rem;
}

.article-lede {
  font-size: clamp(1.15rem, 2.2vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 1.35rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}

.article-meta a {
  color: var(--sea);
  text-decoration: none;
  font-weight: 600;
}

.article-hero-visual {
  border-radius: 24px;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.article-hero-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.article-figcaption {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0.7rem 0 1.85rem;
}

.article-figcaption .photo-credit {
  display: inline;
  padding: 0;
  background: none;
  font-size: 0.82rem;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  margin: 2.35rem 0 0.7rem;
  color: var(--tide-deep);
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 1.15rem;
}

.article-body .list-plain {
  margin: 0 0 1.2rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.28;
  color: var(--tide);
  border-left: 3px solid var(--sky);
  padding: 0.2rem 0 0.2rem 1.35rem;
  margin: 2rem 0 2.1rem;
}

.further {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.further h2 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.further p,
.further li {
  font-size: 0.92rem !important;
  color: var(--ink-soft);
}

.article-note {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-note h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--tide-deep);
  margin: 0 0 0.45rem;
}

.article-note > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.article-note-form {
  display: grid;
  gap: 0.55rem;
}

.article-note-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.article-note-form textarea,
.article-note-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--shell);
  color: var(--ink);
}

.article-note-form textarea {
  min-height: 5.25rem;
  resize: vertical;
  line-height: 1.5;
}

.article-note-form textarea:focus,
.article-note-form input[type="email"]:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
}

.article-note-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--tide);
  color: var(--shell);
  cursor: pointer;
}

.article-note-form button:hover {
  background: var(--tide-deep);
}

.article-note-form .form-note {
  color: var(--ink-soft);
  font-size: 0.82rem;
  min-height: 1.2em;
}

.journal-spread {
  padding: 3.25rem 0 1rem;
}

.journal-index-intro {
  max-width: 40rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.journal-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(7, 40, 51, 0.12);
  color: inherit;
}

.journal-card-media {
  aspect-ratio: 16 / 10;
  position: relative;
}

.journal-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.journal-card-body .section-kicker {
  margin-bottom: 0.35rem;
}

.journal-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--tide-deep);
}

.journal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.journal-media-lighthouse {
  background:
    linear-gradient(165deg, rgba(6, 31, 54, 0.12), rgba(6, 31, 54, 0.38)),
    url("/assets/photos/hhi/harbour-town-lighthouse-moodygroove.jpg") center 40%/cover no-repeat,
    linear-gradient(135deg, #9ad0ea 0%, #3b8ec4 36%, #0a3358 78%, #061f36 100%);
}

.journal-media-lagoon {
  background:
    linear-gradient(165deg, rgba(10, 51, 88, 0.12), rgba(10, 51, 88, 0.5)),
    linear-gradient(135deg, #cfeaf6 0%, #6eb6d9 34%, #1f6fa5 70%, #0a3358 100%);
}

.journal-media-heritage {
  background:
    linear-gradient(155deg, rgba(6, 31, 54, 0.45), rgba(31, 111, 165, 0.28)),
    linear-gradient(135deg, #dceef8 0%, #6eb6d9 32%, #1f6fa5 68%, #0a3358 100%);
}

.journal-media-mitchelville {
  background:
    linear-gradient(165deg, rgba(6, 31, 54, 0.22), rgba(6, 31, 54, 0.55)),
    linear-gradient(135deg, #d8c4a8 0%, #8a7a68 34%, #3d4a58 70%, #061f36 100%);
}

.journal-media-hilton-name {
  background:
    linear-gradient(155deg, rgba(10, 51, 88, 0.18), rgba(6, 31, 54, 0.48)),
    linear-gradient(135deg, #e6d7b8 0%, #7aa3c0 38%, #1f6fa5 72%, #061f36 100%);
}

.journal-media-siesta {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.12), rgba(10, 51, 88, 0.38)),
    url("/assets/photos/siesta/siesta-beach-morning-justicemtran.jpg") center 60%/cover no-repeat,
    linear-gradient(135deg, #f2d7b6, #6eb6d9 45%, #0a3358);
}

.journal-media-waikiki {
  background:
    linear-gradient(160deg, rgba(10, 51, 88, 0.18), rgba(10, 51, 88, 0.28)),
    url("/assets/photos/waikiki/kapaemahu-stones-eli-fessler.jpg") center 55%/cover no-repeat,
    linear-gradient(135deg, #7ec8e8, #1f6fa5 40%, #d96b4c);
}

.journal-group {
  margin-top: 2.75rem;
}

.journal-group .section-head {
  margin-bottom: 1.15rem;
}

.from-journal {
  padding-top: 2.75rem;
}

@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .article-hero-visual,
  .article-hero-visual img {
    min-height: 220px;
    height: 220px;
  }
}


/* —— In brief / magazine notes —— */
.in-brief {
  padding-top: 2.35rem;
}

.in-brief-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.in-brief-intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  color: var(--tide-deep);
  margin: 0 0 0.5rem;
}

.in-brief-intro p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 38rem;
}

.in-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

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

.in-brief-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.45rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.in-brief-card::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sea));
  border-radius: 0 0 2px 2px;
}

.in-brief-card .section-kicker {
  margin: 0.45rem 0 0.4rem;
}

.in-brief-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.22;
  color: var(--tide-deep);
  margin: 0 0 0.7rem;
  font-weight: 600;
}

.in-brief-card > p {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.in-brief-card > p:last-of-type {
  margin-bottom: 0;
}

.in-brief-note {
  margin: 0.85rem 0 0;
  padding: 0.15rem 0 0 0.95rem;
  border-left: 2px solid var(--sky);
  color: var(--tide);
  font-size: 0.88rem;
  line-height: 1.55;
}

.in-brief-note strong {
  display: block;
  color: var(--tide-deep);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.28rem;
}

.in-brief-more {
  margin-top: auto;
  padding-top: 0.95rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--sea);
}

.in-brief-more:hover {
  color: var(--coral-dark);
}

.in-brief-dest {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}

@media (max-width: 900px) {
  .in-brief-grid,
  .in-brief-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .in-brief-grid,
  .in-brief-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Current conditions — visitor-facing dated safety note */
.current-conditions {
  margin-top: 1.5rem;
  padding: 1.35rem 1.4rem 1.3rem;
  background:
    linear-gradient(160deg, rgba(217, 107, 76, 0.16), rgba(255, 253, 248, 0.97));
  border: 1px solid rgba(184, 82, 54, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.current-conditions .section-kicker {
  color: var(--coral-dark);
  margin-bottom: 0.35rem;
}

.current-conditions h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  margin: 0 0 0.65rem;
  color: var(--tide-deep);
  font-weight: 600;
}

.current-conditions p {
  margin: 0 0 0.7rem;
  color: var(--ink);
  max-width: 48rem;
}

.current-conditions p:last-child {
  margin-bottom: 0;
}

.current-conditions time {
  font-weight: 600;
}

/* Coming up — dated magazine box, not a calendar */
.coming-up {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem 1.35rem;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.coming-up::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sea));
  border-radius: 0 0 2px 2px;
}

.coming-up .section-kicker {
  margin-bottom: 0.35rem;
}

.coming-up h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--tide-deep);
  font-weight: 600;
}

.coming-up > p.coming-up-meta {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  max-width: none;
}

.coming-up-meta time {
  font-weight: 600;
  color: var(--tide);
}

.coming-up > p {
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 44rem;
}

.coming-up-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem 1.6rem;
}

.coming-up-items article {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.coming-up-items .section-kicker {
  margin: 0 0 0.28rem;
}

.coming-up-items h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 0 0 0.45rem;
  color: var(--tide-deep);
  font-weight: 600;
}

.coming-up-items p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

@media (min-width: 760px) {
  .coming-up-items {
    grid-template-columns: 1fr 1fr;
  }

  .coming-up-items article {
    padding-top: 0.95rem;
  }
}

/* —— Sponsors (magazine page, not a directory) —— */
.sponsors-page {
  background:
    radial-gradient(1100px 460px at 8% -12%, rgba(110, 182, 217, 0.26), transparent 58%),
    var(--sand);
}

.sponsors-wrap {
  width: min(100% - 3rem, 40rem);
  margin-inline: auto;
}

.sponsors-hero {
  padding: 3.6rem 0 2.4rem;
}

.sponsors-hero .article-title {
  margin-bottom: 0.7rem;
}

.sponsors-hero .article-lede {
  margin-bottom: 1.15rem;
  max-width: 34rem;
}

.sponsors-lede {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.sponsors-section {
  padding: 0 0 3.4rem;
}

.sponsors-section .section-kicker {
  margin-bottom: 0.4rem;
}

.sponsors-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--tide-deep);
  margin: 0 0 0.4rem;
}

.sponsors-note {
  margin: 0 0 1.7rem;
  max-width: 32rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sponsor-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.sponsor-slot {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 0.95rem 1.15rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.sponsor-slot:last-child {
  border-bottom: 1px solid var(--line);
}

.sponsor-mark {
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(220, 238, 248, 0.7), rgba(255, 253, 248, 0.4));
  border-radius: 2px;
}

.sponsor-role {
  margin: 0 0 0.18rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sea);
}

.sponsor-slot h3 {
  margin: 0 0 0.22rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--tide-deep);
  letter-spacing: -0.01em;
}

.sponsor-slot p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.sponsors-invite {
  padding: 1.8rem 0 4.2rem;
}

.sponsors-invite p {
  margin: 0;
  max-width: 32rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
}

.sponsors-independence {
  margin-top: 1.85rem !important;
  font-size: 0.8rem !important;
  color: var(--ink-soft);
  max-width: 30rem;
}

@media (max-width: 620px) {
  .sponsors-wrap {
    width: min(100% - 2rem, 40rem);
  }
}

/* Quiet Google Maps directions — caption weight, not a button farm */
a.directions {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
a.directions::before {
  content: "·\00a0";
  font-weight: 400;
  color: var(--ink-soft);
}
a.directions:hover {
  color: var(--sea);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* —— Guide card (physical membership card; URL /pass/) —— */
.pass-page .sponsors-hero {
  padding-bottom: 1.4rem;
}

.pass-page .sponsors-hero .article-lede {
  margin-bottom: 0;
}

.guide-card-stage {
  margin-top: 2.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-card {
  --card-gold: #d4c4a0;
  position: relative;
  width: min(100%, 22.75rem);
  aspect-ratio: 1.586 / 1;
  border-radius: 0.88rem;
  overflow: hidden;
  color: var(--sand);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(110, 182, 217, 0.26), transparent 58%),
    radial-gradient(80% 70% at 100% 110%, rgba(212, 196, 160, 0.14), transparent 50%),
    linear-gradient(152deg, #0e3d68 0%, var(--tide) 42%, var(--tide-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.16),
    0 10px 24px rgba(6, 31, 54, 0.22),
    0 28px 48px rgba(6, 31, 54, 0.16);
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: 0.52rem;
  border: 1px solid rgba(212, 196, 160, 0.3);
  border-radius: 0.42rem;
  pointer-events: none;
  z-index: 2;
}

.guide-card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 253, 248, 0.16) 0%, transparent 34%, transparent 64%, rgba(212, 196, 160, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.guide-card-top,
.guide-card-name,
.guide-card-foot {
  position: relative;
  z-index: 3;
}

.guide-motif-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.guide-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.28rem 0;
}

.guide-card-chip {
  width: 2.08rem;
  height: 1.58rem;
  border-radius: 0.28rem;
  background:
    repeating-linear-gradient(90deg, rgba(90, 70, 30, 0.16) 0 2px, transparent 2px 5px),
    linear-gradient(135deg, #f0e6cc, #c4b07a 42%, #efe4c8 68%, #b39258);
  box-shadow:
    0 0 0 1px rgba(80, 60, 20, 0.22),
    0 1px 2px rgba(6, 31, 54, 0.28);
}

.guide-card-network {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.guide-card-motif {
  display: block;
  width: 1.72rem;
  height: 1.72rem;
  color: var(--card-gold);
  opacity: 0.92;
}

.guide-card-motif .guide-motif {
  display: none;
  width: 100%;
  height: 100%;
}

.guide-card[data-motif="palm"] .guide-motif-palm,
.guide-card[data-motif="turtle"] .guide-motif-turtle,
.guide-card[data-motif="flip-flops"] .guide-motif-flops {
  display: block;
}

.guide-card-status {
  margin: 0.08rem 0 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--card-gold);
}

.guide-card-pick {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-card-pick-word {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}

.guide-card-picks {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.guide-card-pick-btn {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--tide);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guide-card-pick-btn .guide-motif {
  width: 1.42rem;
  height: 1.42rem;
  display: block;
}

.guide-card-pick-btn:hover {
  color: var(--tide-deep);
}

.guide-card-pick-btn.is-selected {
  color: #9a7d45;
  border-color: rgba(154, 125, 69, 0.55);
  background: rgba(212, 196, 160, 0.18);
}

.guide-card-pick-btn:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

.guide-card-name {
  padding: 1.2rem 1.28rem 0;
}

.guide-card-place {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.12rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--shell);
}

.guide-card-kind {
  margin: 0.22rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--card-gold);
  font-weight: 500;
}

.guide-card-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1.15rem 1.02rem;
}

.guide-card-wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 253, 248, 0.9);
}

.guide-card-wordmark span {
  color: var(--card-gold);
}

.guide-card-qr {
  width: 3.15rem;
  height: 3.15rem;
  flex: 0 0 auto;
  border-radius: 0.28rem;
  background: var(--shell);
  padding: 0.18rem;
  box-shadow: 0 0 0 1px rgba(212, 196, 160, 0.38);
}

.guide-card-quiet {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.pass-page .sponsors-invite p:first-child {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 620px) {
  .guide-card-stage {
    margin-top: 1.85rem;
    padding-inline: 0.45rem;
  }

  .guide-card {
    width: min(100%, 20.5rem);
  }
}
