:root {
  --ink: #f6efe4;
  --muted: #c7b9a8;
  --paper: #171412;
  --surface: #25201c;
  --line: #44382f;
  --coral: #f07a62;
  --teal: #54b7ad;
  --gold: #d59b2d;
  --leaf: #75a66b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --serif: Charter, "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  line-height: 1.5;
}

body.internal-page {
  --ink: #f3efe7;
  --muted: #c0c8c2;
  --paper: #101818;
  --surface: #1b2524;
  --line: #334441;
  --coral: #e8896e;
  --teal: #78c7ba;
  --gold: #d7ab57;
  --leaf: #8fbf82;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

body.venues-page {
  --ink: #f5eee8;
  --muted: #cbbdb3;
  --paper: #1a1214;
  --surface: #281c20;
  --line: #4c3438;
  --coral: #f08a7a;
  --teal: #d08a9b;
  --gold: #d9a85a;
  --leaf: #a87968;
}

body.activities-page {
  --ink: #eef3ea;
  --muted: #bcc8b7;
  --paper: #111811;
  --surface: #1d271c;
  --line: #354532;
  --coral: #d89b62;
  --teal: #98c47c;
  --gold: #d7b955;
  --leaf: #a7cf86;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(23, 20, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

body.internal-page .site-header {
  background: rgba(16, 24, 24, 0.92);
}

body.venues-page .site-header {
  background: rgba(26, 18, 20, 0.92);
}

body.activities-page .site-header {
  background: rgba(17, 24, 17, 0.92);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 150px;
}

.brand strong {
  font-family: var(--serif);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: 1.35rem;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  border-radius: 999px;
  color: #eadfce;
  font-size: 0.92rem;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: #fff2df;
  color: #201a16;
}

body.internal-page .nav a[aria-current="page"],
body.internal-page .nav a:hover {
  background: #dff7ef;
  color: #0f1a19;
}

body.venues-page .nav a[aria-current="page"],
body.venues-page .nav a:hover {
  background: #ffe2dc;
  color: #241214;
}

body.activities-page .nav a[aria-current="page"],
body.activities-page .nav a:hover {
  background: #e8f6d8;
  color: #111c10;
}

.hero {
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(20, 19, 16, 0.15), rgba(20, 19, 16, 0.76)),
    var(--hero-image) var(--hero-position, center) / cover;
  color: white;
}

body.internal-page .hero {
  background:
    linear-gradient(180deg, rgba(8, 14, 14, 0.28), rgba(8, 14, 14, 0.86)),
    var(--hero-image) var(--hero-position, center) / cover;
}

body.venues-page .hero {
  background:
    linear-gradient(180deg, rgba(20, 10, 12, 0.24), rgba(20, 10, 12, 0.86)),
    var(--hero-image) var(--hero-position, center) / cover;
}

body.activities-page .hero {
  background:
    linear-gradient(180deg, rgba(9, 18, 9, 0.2), rgba(9, 18, 9, 0.84)),
    var(--hero-image) var(--hero-position, center) / cover;
}

.hero-inner {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.25rem);
  font-weight: 700;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.section.alt {
  background: #211c18;
}

body.internal-page .section.alt {
  background: #14201f;
}

body.venues-page .section.alt {
  background: #23171a;
}

body.activities-page .section.alt {
  background: #172116;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  overflow: hidden;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.card-image {
  height: 230px;
  background: #342a23;
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #3a2f27;
  color: #f0dfc8;
  font-size: 0.8rem;
  font-weight: 800;
}

body.internal-page .tag {
  background: #273633;
  color: #dff7ef;
}

body.venues-page .tag {
  background: #3b272d;
  color: #ffe2dc;
}

body.activities-page .tag {
  background: #2b3a26;
  color: #e8f6d8;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--teal);
  color: #11211f;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

body.internal-page .map-link {
  color: #0f1a19;
}

.map-link:hover {
  background: #7bd1c8;
}

.home-card-link {
  margin-top: 16px;
}

.venue-section {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.category-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1240px;
  width: 100%;
  margin: -18px auto 0;
  padding: 14px;
  background: rgba(40, 28, 32, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.category-menu a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: #3b272d;
  color: #ffe2dc;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.category-menu a:hover {
  background: #ffe2dc;
  color: #241214;
}

.venue-category {
  display: grid;
  gap: 18px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.category-head .eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
}

.category-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

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

.venue-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-photo-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.78;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #211719;
  color: inherit;
  cursor: zoom-in;
}

.venue-photo-button img {
  opacity: 1;
  transition: opacity 520ms ease, transform 300ms ease;
}

.venue-photo-button img.is-fading {
  opacity: 0;
}

.venue-photo-button:hover img {
  transform: scale(1.035);
}

.venue-card[data-gallery-title="PS40"] .venue-photo-button img {
  object-position: center top;
}

.gallery-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(10, 8, 8, 0.72);
  color: #fffaf2;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.venue-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.venue-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.venue-title-row h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
}

.venue-card .map-link {
  justify-self: start;
  margin-top: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: clamp(16px, 4vw, 34px);
  background: rgba(6, 5, 5, 0.92);
  color: #fffaf2;
}

.gallery-lightbox.is-open {
  display: grid;
}

.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}

.lightbox-close,
.lightbox-arrow {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #fffaf2;
  cursor: pointer;
}

.lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.35rem;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 60px;
  border-radius: 999px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 0;
}

.lightbox-arrow.next {
  right: 0;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 242, 0.78);
  font-weight: 800;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #120f0d;
  border-radius: 8px;
  color: white;
  box-shadow: var(--shadow);
}

body.internal-page .feature-strip {
  background: #0b1111;
}

body.venues-page .feature-strip {
  background: #120a0c;
}

body.activities-page .feature-strip {
  background: #0c120b;
}

.feature-strip .feature-copy {
  padding: clamp(28px, 5vw, 54px);
}

.feature-strip h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.feature-strip p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.home-lanes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.home-lanes a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.home-lanes a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.home-lanes span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-lanes strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.45;
}

.feature-image {
  min-height: 430px;
}

.rating-list {
  display: grid;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.rating-item[data-rating-card="caterpillar-club"] {
  order: 1;
}

.rating-item[data-rating-card="cabana-bar"] {
  order: 2;
}

.rating-item[data-rating-card="twenty-nine-thirty"] {
  order: 3;
}

.rating-item {
  display: grid;
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr) minmax(210px, 240px);
  gap: 22px;
  align-items: start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rating-thumb {
  align-self: start;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 6px;
  background: #342a23;
}

.rating-thumb .venue-photo-button {
  height: 100%;
  aspect-ratio: auto;
}

.rating-item h3,
.rating-item p {
  margin: 0;
}

.rating-item p {
  color: var(--muted);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(78px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.criteria-grid div {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid #4f4135;
  border-radius: 8px;
  padding: 8px;
  background: #302820;
  color: #f0dfc8;
  font-size: 0.76rem;
  font-weight: 800;
}

body.internal-page .criteria-grid div,
body.internal-page .additional-comments,
body.internal-page .visitor-vote,
body.internal-page .rubric-item {
  background: #24302d;
  border-color: #3d504c;
}

body.internal-page .criterion-score,
body.internal-page .visitor-vote input,
body.internal-page .recommend-form input,
body.internal-page .recommend-form textarea,
body.internal-page .art-vote-form input[type="email"] {
  background: #101818;
}

body.internal-page .strength-row strong {
  background: #273633;
  color: #dff7ef;
}

body.venues-page .strength-row strong {
  background: #3b272d;
  color: #ffe2dc;
}

body.activities-page .strength-row strong {
  background: #2b3a26;
  color: #e8f6d8;
}

.criterion-score {
  display: inline-flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 7px 8px;
  background: #171412;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.strength-row {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(130px, 160px);
  gap: 10px;
  align-items: center;
  width: min(100%, 290px);
  margin-top: 12px;
  color: #f0dfc8;
  font-size: 0.86rem;
  font-weight: 800;
}

.strength-row strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 12px;
  background: #3a2f27;
  color: #f0dfc8;
  font-weight: 800;
}

.additional-comments {
  margin-top: 14px;
  padding: 12px 14px;
  background: #302820;
  border: 1px solid #4f4135;
  border-radius: 8px;
  color: var(--muted);
}

.additional-comments:empty {
  display: none;
}

.additional-comments h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.88rem;
}

.additional-comments ul {
  margin: 0;
  padding-left: 18px;
}

.visitor-vote {
  margin-top: 0;
  padding: 13px;
  background: #302820;
  border: 1px solid #4f4135;
  border-radius: 8px;
}

.visitor-vote-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.visitor-vote h4 {
  margin: 0;
  font-size: 0.92rem;
}

.visitor-vote-head span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.visitor-vote-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.visitor-vote label {
  display: grid;
  gap: 5px;
  color: #f0dfc8;
  font-size: 0.78rem;
  font-weight: 800;
}

.visitor-vote input,
.recommend-form input,
.recommend-form textarea,
.art-vote-form input[type="email"] {
  width: 100%;
  min-height: 38px;
  border: 1px solid #5d4d40;
  border-radius: 6px;
  padding: 8px 9px;
  background: #171412;
  color: var(--ink);
  font: inherit;
}

.recommend-form textarea {
  resize: vertical;
}

.vote-button {
  min-height: 38px;
  padding: 8px 14px;
  width: 100%;
}

.visitor-vote p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.recommend-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venue-recommend-panel {
  max-width: 760px;
  margin: 0 auto;
}

.recommend-panel h2 {
  margin-top: 0;
}

.recommend-panel p {
  color: var(--muted);
}

.recommend-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.recommend-form label {
  display: grid;
  gap: 6px;
  color: #f0dfc8;
  font-size: 0.86rem;
  font-weight: 800;
}

.recommend-form .button {
  justify-self: start;
}

.recommend-form [data-recommend-status] {
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

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

.activity-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.activity-grid .card-image {
  height: 430px;
  background: #111811;
}

.sunset-activity .card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 0.72;
}

.sunset-activity {
  grid-column: 1 / -1;
  max-width: 620px;
  width: 100%;
  justify-self: center;
}

.activity-grid .venue-photo-button,
.art-vote-image .venue-photo-button {
  height: 100%;
  aspect-ratio: auto;
}

.activity-grid .card-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.activity-grid .card h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

.activity-grid .card p {
  font-size: 1.04rem;
  line-height: 1.65;
}

.activity-grid .button {
  justify-self: start;
  margin-top: 2px;
}

.art-vote-image .venue-photo-button img {
  object-fit: contain;
  background: #111811;
}

.sunset-activity .venue-photo-button img {
  object-fit: cover;
  object-position: center bottom;
  background: #111811;
}

.art-vote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.art-vote-heading {
  grid-column: 1 / -1;
}

.art-vote-heading .eyebrow {
  color: var(--muted);
}

.art-vote-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.art-vote-image,
.art-vote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.art-vote-image {
  overflow: hidden;
  min-height: 520px;
}

.art-vote-image img,
.art-vote-image .venue-photo-button {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-position: center;
}

.art-vote-panel {
  display: grid;
  align-content: start;
  padding: 26px;
}

.art-vote-panel h2 {
  margin: 0;
}

.art-vote-panel p {
  color: var(--muted);
}

.art-vote-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.art-vote-form label {
  display: grid;
  gap: 6px;
  color: #e8f6d8;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.art-choice {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #243020;
  cursor: pointer;
}

.art-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.art-vote-form .button {
  justify-self: start;
}

.art-vote-form [data-art-vote-message] {
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.art-vote-results {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.vote-meter {
  display: grid;
  gap: 8px;
}

.vote-meter span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.vote-meter strong,
.vote-meter em {
  font-style: normal;
}

.vote-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #111811;
}

.vote-bar i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 220ms ease;
}

.score {
  justify-self: center;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: var(--serif);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: 1.75rem;
  font-weight: 800;
}

.rating-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.button.dark,
.button.secondary.dark {
  color: #f6efe4;
  border-color: #6f5b4b;
}

.button.secondary.dark {
  background: #302820;
}

@media (max-width: 1120px) {
  .criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.journal {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

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

.rubric-item {
  min-height: 112px;
  padding: 14px;
  background: #302820;
  border: 1px solid #4f4135;
  border-radius: 8px;
}

.rubric-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rubric-item p {
  margin: 0;
  color: var(--muted);
}

.rubric-item.muted {
  background: #241e1a;
}

body.internal-page .rubric-item.muted {
  background: #192522;
}

.map-note {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(28, 125, 122, 0.9), rgba(230, 95, 79, 0.84)),
    url("assets/coast.jpg") center / cover;
  border-radius: 8px;
  color: white;
  text-align: center;
}

body.internal-page .map-note {
  background:
    linear-gradient(135deg, rgba(23, 85, 80, 0.9), rgba(168, 100, 71, 0.82)),
    url("assets/coast.jpg") center / cover;
}

body.venues-page .map-note {
  background:
    linear-gradient(135deg, rgba(73, 35, 44, 0.92), rgba(180, 99, 84, 0.78)),
    url("assets/restaurant.jpg") center / cover;
}

body.activities-page .map-note {
  background:
    linear-gradient(135deg, rgba(35, 78, 43, 0.9), rgba(152, 120, 54, 0.76)),
    url("assets/coast.jpg") center / cover;
}

.map-note h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.next-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(42px, 7vw, 86px);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(35, 32, 29, 0.94), rgba(28, 125, 122, 0.86)),
    url("assets/restaurant.jpg") center / cover;
  border-radius: 8px;
  color: white;
}

body.internal-page .next-page {
  background:
    linear-gradient(135deg, rgba(7, 13, 13, 0.94), rgba(32, 102, 94, 0.86)),
    url("assets/restaurant.jpg") center / cover;
}

body.venues-page .next-page {
  background:
    linear-gradient(135deg, rgba(22, 10, 13, 0.94), rgba(117, 52, 64, 0.84)),
    url("assets/restaurant.jpg") center / cover;
}

body.activities-page .next-page {
  background:
    linear-gradient(135deg, rgba(9, 18, 9, 0.94), rgba(58, 105, 48, 0.84)),
    url("assets/coast.jpg") center / cover;
}

body.internal-page .next-page .button {
  background: #dff7ef;
  color: #0f1a19;
}

body.venues-page .next-page .button {
  background: #ffe2dc;
  color: #241214;
}

body.activities-page .next-page .button {
  background: #e8f6d8;
  color: #111c10;
}

.next-page .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.next-page h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
}

.next-page p:not(.eyebrow) {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.next-page .button {
  flex: 0 0 auto;
  background: #fff2df;
  color: #201a16;
}

.back-top-row {
  display: flex;
  justify-content: flex-start;
  padding: 10px clamp(30px, 5vw, 64px) 48px;
}

.back-top-button {
  min-width: 0;
  padding: 13px 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #100d0b;
  color: rgba(255, 255, 255, 0.78);
}

body.internal-page .site-footer {
  background: #0a0f0f;
}

body.venues-page .site-footer {
  background: #10090b;
}

body.activities-page .site-footer {
  background: #0a1009;
}

.site-footer a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 861px) {
  body.activities-page .hero {
    min-height: min(106vh, 1020px);
    padding-bottom: clamp(240px, calc(28vh + 72px), 380px);
  }
}

@media (max-width: 860px) {
  .site-header,
  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .next-page {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 72vh;
  }

  .grid,
  .activity-grid,
  .venue-grid,
  .feature-strip,
  .journal,
  .art-vote-layout {
    grid-template-columns: 1fr;
  }

  .category-head,
  .venue-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-image {
    min-height: 320px;
  }

  .activity-grid .card-image {
    height: 500px;
  }

  .sunset-activity .card-image {
    width: 100%;
    max-width: 100%;
    height: 560px;
    aspect-ratio: auto;
  }

  .art-vote-image,
  .art-vote-image img,
  .art-vote-image .venue-photo-button {
    min-height: 560px;
  }

  .rating-item {
    grid-template-columns: 160px 1fr;
  }

  .rating-side {
    grid-column: 2;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .rating-thumb {
    min-height: 230px;
    aspect-ratio: 0.72;
  }

  .strength-row {
    display: grid;
    grid-template-columns: minmax(86px, auto) minmax(150px, 220px);
    width: 100%;
  }

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

  .score {
    justify-self: start;
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 1.1rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .nav a {
    padding: 7px 9px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 28px 18px;
  }

  body.internal-page .hero {
    align-items: start;
    padding-top: clamp(128px, 16vh, 150px);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .card-image {
    height: 200px;
  }

  .activity-grid .card-image {
    height: 280px;
  }

  .activity-card:not(.sunset-activity) .venue-photo-button img {
    object-fit: contain;
    background: #111811;
  }

  .sunset-activity .card-image {
    width: 100%;
    max-width: 100%;
    height: 520px;
    aspect-ratio: auto;
  }

  .activity-grid .card-body {
    padding: 20px;
  }

  .art-vote-panel {
    padding: 20px;
  }

  .art-choice-grid {
    grid-template-columns: 1fr;
  }

  .art-vote-image,
  .art-vote-image img,
  .art-vote-image .venue-photo-button {
    min-height: 520px;
  }

  .venue-photo-button {
    aspect-ratio: 0.78;
  }

  .lightbox-arrow {
    top: auto;
    bottom: -6px;
    transform: none;
  }

  .rating-item {
    grid-template-columns: 1fr;
  }

  .rating-thumb {
    height: 380px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .score {
    grid-column: auto;
  }

  .rating-side {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .visitor-vote-head,
  .visitor-vote-fields {
    grid-template-columns: 1fr;
  }

  .visitor-vote-head {
    display: grid;
  }
}
