/* ============================================================
   ARTTRAVELS.gallery — base stylesheet
   Three-layer color system + typography
   ============================================================ */

:root {
  /* Layer backgrounds */
  --bg-linen:     #f5f2eb;  /* journal / homepage / editorial */
  --bg-charcoal:  #2a2520;  /* group gallery */
  --bg-stone:     #e8e2d5;  /* individual painting page */

  /* Supporting palette */
  --text-warm:    #2c2416;  /* primary text */
  --text-body:    #3d2e1a;  /* body copy */
  --gold:         #c4a882;  /* accents, borders, hover */
  --earth:        #8b6f47;  /* secondary text, labels */
  --divider:      #d4c9b0;  /* hairline rules */
  --card:         #fffef9;  /* card backgrounds */
  --paper:        #f0ece0;  /* aged paper accent */
  --muted-gold:   #a89070;  /* sub-line on dark */
  --hero-cream:   #f5f0e8;  /* hero headline on dark */

  /* Fonts */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Lora', Georgia, serif;
  --f-hand:    'Caveat', 'Comic Sans MS', cursive;
}

/* ---------- reset / base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-linen);
  color: var(--text-body);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ---------- shared utility ---------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hand {
  font-family: var(--f-hand);
  font-weight: 400;
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--earth);
  margin: 0 0 12px;
}

.eyebrow--gold {
  color: var(--gold);
}

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

/* ============================================================
   NAVIGATION  (links left, logo right)
   ============================================================ */

.site-nav {
  background: var(--bg-linen);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-warm);
  transition: color .2s ease;
  padding: 6px 0;
  display: inline-block;
}

.site-nav__links a:hover {
  color: var(--gold);
}

.site-nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-nav__logo img {
  height: 56px;
  width: auto;
  display: block;
}

.site-nav__toggle {
  display: none;
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--text-warm);
}

/* ============================================================
   HERO  (full-bleed collage, no overlay)
   ============================================================ */

.hero {
  width: 100%;
  background: var(--bg-linen);
  overflow: hidden;
}

.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   HEADLINE BLOCK  (sits below hero on linen)
   ============================================================ */

.headline-block {
  background: var(--bg-linen);
  padding: 70px 32px 30px;
}

.headline-block__inner {
  max-width: 920px;
  margin: 0 auto;
}

.headline-block__eyebrow {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 16px;
}

.headline-block__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  color: var(--text-warm);
  margin: 0 0 18px;
  max-width: 760px;
}

.headline-block__sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--earth);
  margin: 0;
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
   HOOK TEXT — first scroll
   ============================================================ */

.hook {
  padding: 50px 32px 80px;
}

.hook__inner {
  max-width: 640px;
  margin: 0 auto;
}

.hook p {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-body);
  line-height: 2;
  margin: 0 0 24px;
}

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

/* ============================================================
   SECTION HEADERS (handwritten labels)
   ============================================================ */

.section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 28px;
}

.section-head__label {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--earth);
  margin: 0 0 8px;
}

.section-head__line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 14px;
  max-width: 580px;
}

.section-head__link {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.section-head__link:hover {
  color: var(--gold);
}

/* ============================================================
   JOURNAL GRID
   ============================================================ */

.journal {
  padding: 40px 0 80px;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Card base */
.card {
  background: var(--card);
  border: 1px solid var(--divider);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 36, 22, .08);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card__media--tall { aspect-ratio: 3 / 4; }
.card__media--square { aspect-ratio: 1 / 1; }

/* Placeholder treatment */
.card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--paper),
    var(--paper) 12px,
    #ebe5d4 12px,
    #ebe5d4 24px
  );
  font-family: var(--f-hand);
  font-size: 17px;
  color: var(--earth);
  text-align: center;
  padding: 12px;
}

.card__body {
  padding: 10px 22px 22px;
}

.card__location {
  font-family: var(--f-hand);
  font-size: 17px;
  color: var(--earth);
  margin: 0 0 4px;
}

.card__title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-warm);
  margin: 0 0 6px;
  line-height: 1.3;
}

.card__title--italic { font-style: italic; }

.card__meta {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--earth);
  margin: 0;
}

/* Field-note card */
.card--note {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card--note p {
  font-family: var(--f-hand);
  font-size: 23px;
  line-height: 1.5;
  color: var(--text-warm);
  margin: 0;
}

.card--note__date {
  font-family: var(--f-hand);
  font-size: 20px !important;
  color: var(--gold);
  margin: 0 0 18px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  letter-spacing: .01em;
}

.card--note__body {
  font-family: var(--f-hand);
  font-size: 19px !important;
  line-height: 1.85 !important;
  color: var(--text-warm);
  margin: 0 !important;
}

/* Let card__media on the matching row stretch to fill the
   field-note height so there is no cream gap below the photo */
.journal__grid > .card .card__media {
  flex: 1;
}

/* Painting card */
.painting-card .card__media {
  background: var(--card);
  padding: 0;
}

.painting-card .painting-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.painting-card .painting-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.painting-card .painting-frame .card__placeholder {
  background: linear-gradient(160deg, #d8c8a8 0%, #b89a6e 100%);
  color: rgba(44, 36, 22, .55);
}

.painting-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px 22px;
}

.painting-card__info { min-width: 0; }

.pill {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 11px;
  color: var(--text-warm);
  border: 0.5px solid var(--gold);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.pill:hover {
  background: var(--gold);
  color: #fff;
}

.found-home {
  font-family: var(--f-hand);
  font-size: 16px;
  color: var(--muted-gold);
}

.painting-card.is-sold .painting-frame { opacity: .5; }
.painting-card.is-sold .card__media { pointer-events: none; }

/* Video card — 16:9 to match YouTube thumb proportions */
.card--video .card__media {
  background: var(--bg-charcoal);
  aspect-ratio: 16 / 9;
}

.card--video .card__media .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 240, 232, .12);
  border: 1.5px solid rgba(245, 240, 232, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform .25s ease, background .25s ease;
}

.card--video:hover .play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(245, 240, 232, .25);
}

.card--video .play::after {
  content: '';
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--hero-cream);
  margin-left: 3px;
}

.card--video .card__body { background: var(--card); }

/* Grid spans (12-col responsive) */
.span-2  { grid-column: span 2;  }
.span-3  { grid-column: span 3;  }
.span-4  { grid-column: span 4;  }
.span-5  { grid-column: span 5;  }
.span-6  { grid-column: span 6;  }
.span-7  { grid-column: span 7;  }
.span-8  { grid-column: span 8;  }
.span-12 { grid-column: span 12; }

/* ============================================================
   PLAYLIST CARD  (sits beside the video card in the videos row)
   ============================================================ */

.playlist-card__media {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 36px 32px;
  border: 1px dashed var(--divider);
  transition: border-color .25s ease, transform .25s ease;
}

.playlist-card__media:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.playlist-card__inner {
  max-width: 320px;
}

.playlist-card__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 10px;
}

.playlist-card__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--text-warm);
  margin: 0 0 6px;
  line-height: 1.2;
}

.playlist-card__sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--earth);
  margin: 0 0 16px;
}

.playlist-card__cta {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}

/* ============================================================
   ROAD SNAPSHOTS  (postcards from the road, on the homepage)
   ============================================================ */

.road-snaps {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 32px;
}

.road-snaps__label {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--earth);
  margin: 0 0 24px;
}

.road-snaps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}

.road-snap {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.road-snap img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(44, 36, 22, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.road-snap:hover img {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44, 36, 22, .18);
}

.road-snap figcaption {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--text-warm);
  line-height: 1.4;
  padding-top: 14px;
}

/* portrait snap (Trisha selfie) — clip to consistent height so the row stays even */
.road-snap--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

/* CTA card that fills the 6th grid cell */
.road-snap--cta {
  background: var(--bg-charcoal);
  color: var(--hero-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 28px;
  text-align: left;
  transition: transform .3s ease, background .25s ease;
}

.road-snap--cta:hover {
  transform: translateY(-3px);
  background: #1f1a15;
}

.road-snap__cta-inner {
  max-width: 280px;
}

.road-snap__cta-label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--gold);
  margin: 0 0 10px;
}

.road-snap__cta-line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 240, 232, .85);
  margin: 0 0 16px;
  line-height: 1.7;
}

.road-snap__cta-link {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--hero-cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .road-snaps__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
}

@media (max-width: 640px) {
  .road-snaps { padding: 0 22px; margin-top: 40px; }
  .road-snaps__grid { grid-template-columns: 1fr; gap: 28px; }
  .road-snap figcaption { font-size: 15px; }
  .playlist-card__media { padding: 26px 22px; }
  .playlist-card__title { font-size: 20px; }
}

/* ============================================================
   EMAIL OPT-IN — dark strip
   ============================================================ */

.optin {
  background: var(--bg-charcoal);
  padding: 90px 32px;
  text-align: left;
}

.optin__inner {
  max-width: 720px;
  margin: 0 auto;
}

.optin__eyebrow {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--gold);
  margin: 0 0 14px;
}

.optin__headline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--hero-cream);
  margin: 0 0 18px;
  line-height: 1.3;
}

.optin__body {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--muted-gold);
  margin: 0 0 28px;
  line-height: 1.8;
  max-width: 560px;
}

.optin__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.optin__input {
  flex: 1 1 240px;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  background: transparent;
  color: var(--hero-cream);
  border: 1px solid rgba(196, 168, 130, .4);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
}

.optin__input::placeholder {
  color: rgba(196, 168, 130, .55);
  font-style: italic;
}

.optin__input:focus { border-color: var(--gold); }

.optin__btn {
  padding: 14px 26px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--bg-charcoal);
  background: var(--gold);
  transition: background .2s ease;
}

.optin__btn:hover { background: #d4bb95; }

.optin__fine {
  font-family: var(--f-body);
  font-size: 11px;
  font-style: italic;
  color: rgba(196, 168, 130, .55);
  margin: 20px 0 0;
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   PAINTINGS SECTION
   ============================================================ */

.paintings {
  padding: 100px 0 80px;
  background: var(--paper);
  border-top: 1px solid var(--bg-charcoal);
  border-bottom: 1px solid var(--bg-charcoal);
}

.paintings__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   PAINTINGS DISPLAY  (homepage "paintings available" row)
   Full paintings, natural aspect, drop shadow, no captions
   ============================================================ */

.painting-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: transparent;
}

.painting-display a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
}

.painting-display a:hover {
  transform: translateY(-4px);
}

.painting-display img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .22));
  transition: filter .4s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.painting-display a:hover img {
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, .28));
}

@media (max-width: 900px) {
  .painting-display img { max-height: 360px; }
}

@media (max-width: 640px) {
  .painting-display img { max-height: 320px; }
}

/* ============================================================
   VIDEOS SECTION
   ============================================================ */

.videos {
  padding: 60px 0 80px;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   ART LESSONS CALLOUT — secondary, small
   ============================================================ */

.lessons-callout {
  padding: 30px 32px 80px;
}

.lessons-callout__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

.lessons-callout__label {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--earth);
  margin: 0 0 6px;
}

.lessons-callout__line {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 8px;
}

.lessons-callout__link {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
}

/* ============================================================
   COMMUNITY — feedback checklist, above footer
   ============================================================ */

.community {
  padding: 40px 32px 80px;
}

.community__inner {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--divider);
  padding-top: 50px;
}

.community__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 6px;
}

.community__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-warm);
  margin: 0 0 18px;
  line-height: 1.2;
}

.community__intro {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 28px;
  max-width: 640px;
}

.community__intro a {
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
}

.community__form {
  margin: 0 0 24px;
}

.community__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.community__item {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--divider);
}

.community__item:last-child {
  border-bottom: none;
}

.community__option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.community__option input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
  cursor: pointer;
}

.community__option-body {
  display: block;
}

.community__option-title {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-warm);
  margin-bottom: 4px;
  line-height: 1.3;
}

.community__option-desc {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

.community__thanks {
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--earth);
  margin: 8px 0 0;
}

.community__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 28px;
}

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

.community__field {
  display: flex;
  flex-direction: column;
}

.community__field--message {
  margin: 8px 0 24px;
}

.community__field-label {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-warm);
  margin-bottom: 6px;
}

.community__required {
  font-style: italic;
  color: var(--earth);
  font-size: 12px;
}

.community__field input[type="text"],
.community__field input[type="email"],
.community__field textarea {
  padding: 10px 14px;
  font-family: var(--f-body);
  font-size: 14px;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 0;
  color: var(--text-warm);
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}

.community__field input[type="text"]:focus,
.community__field input[type="email"]:focus,
.community__field textarea:focus {
  border-color: var(--gold);
}

.community__field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--f-body);
  line-height: 1.6;
}

.community__field textarea::placeholder {
  color: var(--earth);
  font-style: italic;
}

.community__list-intro {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 16px;
}

.community__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.community__submit {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 30px;
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--bg-linen);
  background: var(--text-warm);
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}

.community__submit:hover {
  background: var(--earth);
}

.community__success {
  margin: 0 0 28px;
  padding: 22px 24px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

.community__success-title {
  font-family: var(--f-hand);
  font-size: 26px;
  color: var(--text-warm);
  margin: 0 0 4px;
}

.community__success-body {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
}

/* ============================================================
   FOOTER  (brand left, three link columns right)
   ============================================================ */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--divider);
  padding: 60px 32px 30px;
  margin-top: 40px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.site-footer__brand {
  padding-right: 24px;
}

.site-footer__logo img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.site-footer__tag {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--earth);
  margin: 0;
  line-height: 1.4;
  max-width: 260px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.site-footer__col li {
  margin-bottom: 8px;
}

.site-footer__heading {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--earth);
  margin: 0 0 14px;
}

.site-footer__col a {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-warm);
  line-height: 1.7;
  transition: color .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.site-footer__col a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--earth);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.7;
}

.site-footer__social {
  max-width: 1200px;
  margin: 50px auto 14px;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: var(--earth);
  text-align: center;
  line-height: 1.8;
}

.site-footer__social a {
  color: var(--text-warm);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  padding-bottom: 1px;
}

.site-footer__social a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* when both social + bottom rows are present, drop the second border-top on bottom */
.site-footer__social + .site-footer__bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .journal__grid,
  .paintings__grid,
  .videos__grid {
    gap: 22px;
  }

  .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8 {
    grid-column: span 6;
  }

  .headline-block { padding: 50px 32px 20px; }
  .headline-block__title { font-size: 34px; }

  .site-nav__logo img { height: 48px; }
  .site-nav__links { gap: 22px; }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__brand { padding-right: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }

  .site-nav__inner { padding: 14px 22px; gap: 12px; }
  .site-nav__logo img { height: 42px; }

  .site-nav__links {
    display: none;
  }
  .site-nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-linen);
    border-bottom: 1px solid var(--divider);
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    z-index: 90;
  }
  .site-nav__toggle { display: block; }

  .hero__photo { max-height: 60vh; }

  .headline-block { padding: 40px 22px 16px; }
  .headline-block__title { font-size: 28px; }

  .hook { padding: 30px 22px 50px; }

  .journal__grid,
  .paintings__grid,
  .videos__grid {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }
  .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-12 {
    grid-column: span 1;
  }

  .optin { padding: 70px 22px; }
  .optin__headline { font-size: 24px; }

  .paintings { padding: 70px 0 60px; }
  .section-head { padding: 0 22px 22px; }

  .site-footer { padding: 50px 22px 24px; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}

/* ============================================================
   ============================================================
   GALLERY PAGE  (gallery.html)
   Layer-2 charcoal background — paintings glow against it
   Minimal information: title + availability pill only.
   Everything else lives one click away on the painting page.
   ============================================================
   ============================================================ */

.gallery-page {
  background: var(--bg-charcoal);
  color: var(--hero-cream);
}

/* The site-nav on this page sits on charcoal too */

.site-nav--dark {
  background: var(--bg-charcoal);
  border-bottom: 1px solid rgba(196, 168, 130, .15);
}

.site-nav--dark .site-nav__links a {
  color: var(--hero-cream);
}

.site-nav--dark .site-nav__links a:hover {
  color: var(--gold);
}

.site-nav--dark .site-nav__toggle {
  color: var(--hero-cream);
}

/* invert logo so the black wordmark reads on charcoal */
.site-nav--dark .site-nav__logo img {
  filter: invert(1) brightness(1.04);
}

/* ---------- gallery intro ---------- */

.gallery-intro {
  padding: 90px 32px 70px;
  background: var(--bg-charcoal);
  border-bottom: 1px solid rgba(196, 168, 130, .12);
}

.gallery-intro__inner {
  max-width: 820px;
  margin: 0 auto;
}

.gallery-intro__eyebrow {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--gold);
  margin: 0 0 14px;
}

.gallery-intro__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--hero-cream);
  margin: 0 0 30px;
  letter-spacing: -.01em;
}

.gallery-intro__body p {
  font-family: var(--f-body);
  font-size: 16px;
  color: rgba(245, 240, 232, .85);
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 680px;
}

.gallery-intro__body p em {
  font-style: italic;
  color: var(--hero-cream);
}

.gallery-intro__hint {
  font-family: var(--f-hand) !important;
  font-size: 20px !important;
  color: var(--gold) !important;
  margin-top: 24px !important;
}

/* ---------- gallery room (location group) ---------- */

.gallery-room {
  padding: 90px 32px 80px;
}

.gallery-room__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.gallery-room__head {
  text-align: center;
  margin-bottom: 90px;
}

.gallery-room__label {
  font-family: var(--f-hand);
  font-size: 25px;
  color: var(--gold);
  margin: 0 0 10px;
}

.gallery-room__sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 240, 232, .7);
  margin: 0;
}

/* ---------- gallery grid (3 across, generous space) ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px 80px;
  align-items: end;
}

/* ---------- individual piece ---------- */

.gallery-piece {
  margin: 0;
}

.gallery-piece__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .5s ease;
}

.gallery-piece__link:hover {
  transform: translateY(-4px);
}

.gallery-piece__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  /* a tall constraint so portrait paintings don't tower over landscape ones */
  max-height: 460px;
}

.gallery-piece__img {
  display: block;
  max-width: 100%;
  max-height: 460px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 40px rgba(0, 0, 0, .55))
    drop-shadow(0 3px 6px rgba(0, 0, 0, .4));
  transition: filter .4s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-piece__link:hover .gallery-piece__img {
  filter:
    drop-shadow(0 28px 50px rgba(0, 0, 0, .65))
    drop-shadow(0 4px 8px rgba(0, 0, 0, .45));
}

.gallery-piece__label {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gallery-piece__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--hero-cream);
  margin: 0;
  transition: color .25s ease;
}

.gallery-piece__link:hover .gallery-piece__title {
  color: var(--gold);
}

.gallery-piece__pill {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--gold);
  transition: color .25s ease;
}

.gallery-piece__link:hover .gallery-piece__pill {
  color: var(--hero-cream);
}

.gallery-piece__found-home {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--muted-gold);
}

/* sold pieces: dim the painting slightly */
.gallery-piece.is-sold .gallery-piece__img {
  opacity: .72;
}

.gallery-piece.is-sold .gallery-piece__link:hover .gallery-piece__img {
  opacity: .85;
}

/* ---------- commission strip (bottom, charcoal continues) ---------- */

.gallery-commission {
  padding: 60px 32px 100px;
  border-top: 1px solid rgba(196, 168, 130, .15);
  text-align: center;
}

.gallery-commission__inner {
  max-width: 640px;
  margin: 0 auto;
}

.gallery-commission__label {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--gold);
  margin: 0 0 12px;
}

.gallery-commission__line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(245, 240, 232, .85);
  margin: 0 0 22px;
  line-height: 1.7;
}

.gallery-commission__link {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--hero-cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color .2s ease;
}

.gallery-commission__link:hover {
  color: var(--gold);
}

/* footer on this page picks up dark treatment too */

.gallery-page .site-footer {
  background: #1f1a15;
  border-top: 1px solid rgba(196, 168, 130, .12);
}

.gallery-page .site-footer__tag,
.gallery-page .site-footer__heading {
  color: var(--gold);
}

.gallery-page .site-footer__col a,
.gallery-page .site-footer__left,
.gallery-page .site-footer__right {
  color: rgba(245, 240, 232, .8);
}

.gallery-page .site-footer__col a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-page .site-footer__bottom {
  color: rgba(196, 168, 130, .65);
  border-top-color: rgba(196, 168, 130, .12);
}

.gallery-page .site-footer__social {
  color: rgba(196, 168, 130, .75);
  border-top-color: rgba(196, 168, 130, .12);
}

.gallery-page .site-footer__social a {
  color: var(--hero-cream);
}

.gallery-page .site-footer__social a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-page .site-footer__logo img {
  filter: invert(1) brightness(1.04);
}

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .gallery-grid { gap: 80px 60px; }
}

@media (max-width: 900px) {
  .gallery-intro__title { font-size: 52px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 540px;
    margin: 0 auto;
  }

  .gallery-piece__media { max-height: none; }
  .gallery-piece__img { max-height: 520px; }

  .gallery-room__head { margin-bottom: 60px; }
}

@media (max-width: 640px) {
  .gallery-intro { padding: 60px 22px 50px; }
  .gallery-intro__title { font-size: 40px; }
  .gallery-intro__body p { font-size: 15px; }

  .gallery-room { padding: 60px 22px 60px; }
  .gallery-room__head { margin-bottom: 50px; }
  .gallery-room__label { font-size: 19px; }

  .gallery-grid { gap: 70px; }
  .gallery-piece__img { max-height: 440px; }

  .gallery-commission { padding: 50px 22px 70px; }
}

/* ============================================================
   ============================================================
   VIDEOS LANDING PAGE  (videos.html)
   Catalog of all videos, grouped by YouTube channel
   ============================================================
   ============================================================ */

.vid-page {
  background: var(--bg-linen);
}

/* ---------- intro / hero ---------- */

.vid-hero {
  background: var(--bg-linen);
  padding: 80px 32px 50px;
  border-bottom: 1px solid var(--divider);
}

.vid-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.vid-hero__eyebrow {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--earth);
  margin: 0 0 14px;
}

.vid-hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--text-warm);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}

.vid-hero__lead {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 680px;
}

.vid-hero__lead em {
  font-style: italic;
  color: var(--text-warm);
}

.vid-hero__hint {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--gold);
  margin: 0;
}

/* ---------- channel section ---------- */

.vid-channel {
  padding: 70px 32px 60px;
}

.vid-channel + .vid-channel {
  padding-top: 30px;
}

.vid-channel__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vid-channel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}

.vid-channel__name {
  font-family: var(--f-hand);
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: var(--text-warm);
  margin: 0 0 6px;
  letter-spacing: .01em;
}

.vid-channel__sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--earth);
  margin: 0;
}

.vid-channel__count {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--earth);
  margin: 0;
  white-space: nowrap;
}

/* ---------- video grid (reuses .video-thumb) ---------- */

.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vid-channel__channel-link {
  margin: 36px 0 0;
  font-family: var(--f-body);
  font-size: 13px;
}

.vid-channel__channel-link a {
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s ease;
}

.vid-channel__channel-link a:hover { color: var(--gold); }

/* ---------- closing ---------- */

.vid-closing {
  background: var(--paper);
  padding: 60px 32px 70px;
  border-top: 1px solid var(--divider);
  margin-top: 30px;
}

.vid-closing__inner {
  max-width: 720px;
  margin: 0 auto;
}

.vid-closing__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 10px;
}

.vid-closing__line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

.vid-closing__line a {
  border-bottom: 1px solid var(--gold);
  color: var(--text-warm);
  font-style: normal;
}

.vid-closing__line a:hover {
  color: var(--gold);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .vid-hero__title { font-size: 52px; }
  .vid-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .vid-hero { padding: 60px 22px 40px; }
  .vid-hero__title { font-size: 40px; }
  .vid-hero__lead { font-size: 15px; }

  .vid-channel { padding: 50px 22px 40px; }
  .vid-channel__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .vid-channel__name { font-size: 30px; }

  .vid-closing { padding: 50px 22px 60px; }
}

/* ============================================================
   ============================================================
   POLICY PAGE  (shipping.html — purchase + shipping + returns)
   Long-form editorial prose, linen background, generous reading
   ============================================================
   ============================================================ */

.policy-page {
  background: var(--bg-linen);
}

.policy-hero {
  padding: 80px 32px 50px;
  border-bottom: 1px solid var(--divider);
}

.policy-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.policy-hero__eyebrow {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 14px;
}

.policy-hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-warm);
  margin: 0 0 28px;
  letter-spacing: -.01em;
}

.policy-hero__lead {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
}

.policy-hero__lead strong {
  font-weight: 400;
  color: var(--text-warm);
}

.policy-body {
  padding: 60px 32px 90px;
}

.policy-body__inner {
  max-width: 720px;
  margin: 0 auto;
}

.policy-body section {
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}

.policy-body section:last-of-type {
  border-bottom: none;
}

.policy-body h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--text-warm);
  margin: 0 0 18px;
  letter-spacing: -.005em;
}

.policy-body p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0 0 18px;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

.policy-body p strong {
  font-weight: 400;
  font-style: italic;
  color: var(--text-warm);
}

.policy-body a {
  color: var(--text-warm);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}

.policy-body a:hover {
  color: var(--gold);
}

.policy-body__cta {
  margin-top: 24px !important;
  font-style: italic;
  font-size: 16px !important;
}

.policy-body__close {
  text-align: center;
  border-bottom: none !important;
  padding-top: 50px !important;
}

.policy-body__close p {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--earth);
  margin: 0;
}

.policy-body__close a {
  color: var(--text-warm);
  font-family: var(--f-body);
  font-size: 15px;
  font-style: italic;
}

@media (max-width: 640px) {
  .policy-hero { padding: 60px 22px 40px; }
  .policy-hero__title { font-size: 38px; }
  .policy-hero__lead { font-size: 15px; }
  .policy-body { padding: 40px 22px 70px; }
  .policy-body h2 { font-size: 24px; }
}

/* ============================================================
   ============================================================
   ADVENTURES LANDING PAGE  (adventures.html)
   Categorized list of destinations, grouped by US state
   ============================================================
   ============================================================ */

.adv-page {
  background: var(--bg-linen);
}

/* ---------- intro / hero ---------- */

.adv-hero {
  background: var(--bg-linen);
  padding: 80px 32px 50px;
  border-bottom: 1px solid var(--divider);
}

.adv-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.adv-hero__eyebrow {
  font-family: var(--f-hand);
  font-size: 21px;
  color: var(--earth);
  margin: 0 0 14px;
}

.adv-hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--text-warm);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}

.adv-hero__lead {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 680px;
}

.adv-hero__hint {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--gold);
  margin: 0;
}

/* ---------- state section ---------- */

.adv-state {
  padding: 70px 32px 60px;
}

.adv-state__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.adv-state__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}

.adv-state__name {
  font-family: var(--f-hand);
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: var(--text-warm);
  margin: 0;
  letter-spacing: .01em;
}

.adv-state__count {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--earth);
  margin: 0;
  white-space: nowrap;
}

/* ---------- destination grid ---------- */

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* destination card */

.dest-card {
  background: transparent;
  margin: 0;
}

.dest-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}

.dest-card__link:hover {
  transform: translateY(-3px);
}

.dest-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(44, 36, 22, .12);
  margin-bottom: 18px;
}

.dest-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}

.dest-card__link:hover .dest-card__media img {
  transform: scale(1.04);
}

.dest-card__body {
  padding: 0 4px;
}

.dest-card__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-warm);
  margin: 0 0 6px;
}

.dest-card__link:hover .dest-card__title {
  color: var(--gold);
}

.dest-card__sub {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 10px;
  line-height: 1.4;
}

.dest-card__meta {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--earth);
  margin: 0;
}

/* ---------- closing block ---------- */

.adv-closing {
  background: var(--paper);
  padding: 60px 32px 70px;
  border-top: 1px solid var(--divider);
  margin-top: 30px;
}

.adv-closing__inner {
  max-width: 720px;
  margin: 0 auto;
}

.adv-closing__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 10px;
}

.adv-closing__line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

.adv-closing__line a {
  border-bottom: 1px solid var(--gold);
  color: var(--text-warm);
  font-style: normal;
}

.adv-closing__line a:hover {
  color: var(--gold);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .adv-hero__title { font-size: 52px; }
  .adv-grid { gap: 32px; }
}

@media (max-width: 640px) {
  .adv-hero { padding: 60px 22px 40px; }
  .adv-hero__title { font-size: 40px; }
  .adv-hero__lead { font-size: 15px; }

  .adv-state { padding: 50px 22px 40px; }
  .adv-state__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .adv-state__name { font-size: 30px; }

  .adv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dest-card__title { font-size: 22px; }
  .dest-card__sub { font-size: 16px; }

  .adv-closing { padding: 50px 22px 60px; }
}

/* ============================================================
   ============================================================
   DESTINATION PAGE  (zion-narrows.html and future locations)
   ============================================================
   ============================================================ */

.dest-page {
  background: var(--bg-linen);
}

/* ---------- back bar (charcoal) ---------- */

.back-bar {
  background: var(--bg-charcoal);
  border-bottom: 1px solid #1f1a15;
}

.back-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
}

.back-bar__link {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--gold);
  transition: color .2s ease;
}

.back-bar__link:hover { color: var(--hero-cream); }

/* ---------- hero ---------- */

.dest-hero {
  width: 100%;
  background: var(--bg-charcoal);
  overflow: hidden;
}

.dest-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center;
}

/* ---------- title block ---------- */

.dest-title {
  background: var(--bg-linen);
  padding: 70px 32px 36px;
}

.dest-title__inner {
  max-width: 820px;
  margin: 0 auto;
}

.dest-title__eyebrow {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 14px;
}

.dest-title__h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-warm);
  margin: 0 0 12px;
  letter-spacing: -.01em;
}

.dest-title__location {
  font-family: var(--f-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--earth);
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-title__location .pin {
  font-size: 10px;
  color: var(--gold);
}

.dest-title__intro {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
  max-width: 680px;
}

/* ---------- scrapbook (thrown photos) ---------- */

.scrapbook {
  background: var(--bg-linen);
  padding: 30px 32px 80px;
  overflow: hidden;
}

.scrapbook__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.snap {
  background: #fffef9;
  padding: 14px 14px 46px;
  box-shadow:
    0 8px 22px rgba(44, 36, 22, .18),
    0 1px 2px rgba(44, 36, 22, .12);
  margin: 0;
  position: relative;
  z-index: var(--z, 1);
  transition: transform .35s ease, box-shadow .35s ease, z-index 0s;
}

.snap img {
  display: block;
  width: 100%;
  height: auto;
}

.snap figcaption {
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--text-warm);
  line-height: 1.2;
  text-align: center;
}

.snap--lg  { width: 500px; margin: 0 -30px; }
.snap--md  { width: 320px; margin: 28px -20px 0; }
.snap--sm  { width: 240px; margin: 60px -16px 0; }

.snap--rot-l { transform: rotate(-3.2deg); }
.snap--rot-r { transform: rotate(2.6deg); }

.snap:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
  z-index: 50;
  box-shadow:
    0 16px 36px rgba(44, 36, 22, .25),
    0 2px 4px rgba(44, 36, 22, .15);
}

/* ---------- story sections (linen) ---------- */

.dest-story {
  background: var(--bg-linen);
  padding: 40px 32px 90px;
}

.dest-story__inner {
  max-width: 720px;
  margin: 0 auto;
}

.hand-pull {
  font-family: var(--f-hand);
  font-size: 30px;
  line-height: 1.45;
  color: var(--text-warm);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 0 0 36px;
  max-width: 580px;
}

.dest-story__body p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.9;
  margin: 0 0 22px;
}

.dest-story__body p:last-child { margin-bottom: 0; }

/* itinerary button — sits centered in its own row inside the story */
.dest-story__cta-row {
  text-align: center;
  margin: 12px 0 32px !important;
}

.itinerary-button {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-warm);
  background: var(--card);
  border: 1px solid var(--gold);
  padding: 12px 28px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.itinerary-button:hover {
  background: var(--gold);
  color: var(--bg-linen);
  transform: translateY(-1px);
}

/* embedded map block */
.dest-map {
  margin: 28px 0 36px;
}

.dest-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 1px solid var(--divider);
  box-shadow: 0 4px 14px rgba(44, 36, 22, .14);
}

.dest-map figcaption {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--earth);
  text-align: center;
  margin-top: 12px;
}

/* italic closing line at the end of the story body */
.dest-story__closing {
  font-style: italic;
  font-size: 15px !important;
  color: var(--text-warm) !important;
  border-top: 1px solid var(--divider);
  padding-top: 22px;
  margin-top: 34px !important;
}

@media (max-width: 640px) {
  .dest-map iframe { height: 360px; }
}

/* ---------- painting sections (charcoal) ---------- */

.dest-painting {
  background: var(--bg-charcoal);
  padding: 100px 32px 90px;
  color: var(--hero-cream);
}

.dest-painting__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dest-painting__head {
  text-align: center;
  margin-bottom: 36px;
}

.dest-painting__order {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--gold);
  margin: 0 0 6px;
}

.dest-painting__name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  color: var(--hero-cream);
  margin: 0 0 10px;
}

.dest-painting__meta {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-gold);
  margin: 0;
  letter-spacing: .01em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.dest-painting__story {
  max-width: 640px;
  margin: 0 auto 56px;
}

.dest-painting__story p {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(245, 240, 232, .82);
  line-height: 1.9;
  margin: 0 0 20px;
}

/* the painting layout — lead + supporting */

.art-stack {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.art-stack--reverse {
  grid-template-columns: 1fr 1.7fr;
}

.art-stack--reverse .art-frame--lead {
  order: 2;
}

.art-stack--reverse .art-stack__supporting {
  order: 1;
}

.art-stack--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.art-stack__supporting {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.art-frame {
  background: transparent;
  padding: 0;
  margin: 0;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, .55))
    drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
  transition: transform .4s ease, filter .4s ease;
}

.art-frame img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.art-frame figcaption {
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--muted-gold);
  text-align: center;
  padding-top: 14px;
  margin: 0;
}

.art-frame--lead,
.art-frame--sm {
  padding: 0;
}

.art-frame:hover {
  transform: translateY(-3px);
}

/* footer of each painting block */

.dest-painting__foot {
  padding-top: 18px;
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* divider BETWEEN painting sections — not within them */

.dest-painting + .dest-painting .dest-painting__inner {
  border-top: 1px solid rgba(196, 168, 130, .22);
  padding-top: 90px;
}

.dest-painting__status {
  margin: 0;
}

.dest-painting__status.hand {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--muted-gold);
}

.dest-painting__status.pill {
  display: inline-block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 5px 16px;
}

.dest-painting__line {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(245, 240, 232, .7);
  margin: 0;
  max-width: 520px;
  line-height: 1.7;
  font-style: italic;
}

.dest-painting__cta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--hero-cream);
  border-bottom: 1px solid var(--gold);
  padding: 4px 0 6px;
  margin-top: 6px;
  transition: color .2s ease, border-color .2s ease;
}

.dest-painting__cta:hover {
  color: var(--gold);
}

/* ---------- purchase block (Stripe + PayPal) ---------- */

.purchase-block {
  margin: 8px auto 6px;
  max-width: 480px;
  text-align: center;
  padding: 26px 24px;
  background: rgba(245, 240, 232, .04);
  border: 1px solid rgba(196, 168, 130, .25);
}

.purchase-block__price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--hero-cream);
  margin: 0 0 6px;
  line-height: 1.1;
}

.purchase-block__tax {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: var(--muted-gold);
  margin: 0 0 22px;
}

.purchase-block__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.purchase-block__btn {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  padding: 12px 24px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  border: 1px solid var(--gold);
}

.purchase-block__btn--primary {
  background: var(--gold);
  color: var(--bg-charcoal);
}

.purchase-block__btn--primary:hover {
  background: #d4bb95;
  transform: translateY(-1px);
}

.purchase-block__btn--secondary {
  background: transparent;
  color: var(--hero-cream);
}

.purchase-block__btn--secondary:hover {
  background: rgba(196, 168, 130, .14);
  transform: translateY(-1px);
}

.purchase-block__trust {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted-gold);
  margin: 0;
}

.purchase-block__fine {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 11px;
  color: rgba(196, 168, 130, .7);
  margin: 8px 0 0;
  line-height: 1.5;
}

.purchase-block__fine a {
  color: var(--hero-cream);
  border-bottom: 1px solid rgba(196, 168, 130, .4);
  transition: color .2s ease, border-color .2s ease;
}

.purchase-block__fine a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 640px) {
  .purchase-block__buttons { flex-direction: column; }
  .purchase-block__btn { width: 100%; }
}

.purchase-block__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 22px;
}

.purchase-block__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 168, 130, .2);
}

.purchase-block__option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.purchase-block__option-label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted-gold);
  margin: 0;
}

.purchase-block__option-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--hero-cream);
  margin: 0 0 8px;
  line-height: 1.1;
}

.purchase-block__option .purchase-block__btn {
  margin-top: 4px;
}

/* ---------- video gallery (3-up grid of clickable thumbnails) ---------- */

.video-gallery {
  background: var(--paper);
  padding: 90px 32px 100px;
  border-top: 1px solid var(--divider);
}

.video-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.video-gallery__head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: left;
}

.video-gallery__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 10px;
}

.video-gallery__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: var(--text-warm);
  margin: 0 0 14px;
}

.video-gallery__body {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
  max-width: 620px;
}

.video-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* individual thumbnail card */

.video-thumb {
  position: relative;
  display: block;
  background: var(--bg-charcoal);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 14px rgba(44, 36, 22, .15);
}

.video-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(44, 36, 22, .22);
}

.video-thumb__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease, opacity .3s ease;
  opacity: .92;
  user-select: none;
  -webkit-user-drag: none;
}

.video-thumb:hover .video-thumb__img {
  transform: scale(1.03);
  opacity: 1;
}

.video-thumb__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 240, 232, .12);
  border: 1.5px solid rgba(245, 240, 232, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform .25s ease, background .25s ease;
  pointer-events: none;
}

.video-thumb:hover .video-thumb__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(245, 240, 232, .25);
}

.video-thumb__play::after {
  content: '';
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--hero-cream);
  margin-left: 3px;
}

.video-thumb__channel {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--hero-cream);
  background: rgba(44, 36, 22, .65);
  padding: 4px 10px;
  border-radius: 2px;
  pointer-events: none;
}

.video-thumb__caption {
  padding: 16px 18px 20px;
  background: var(--card);
  border-top: 1px solid var(--divider);
}

.video-thumb__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text-warm);
  margin: 0 0 4px;
}

.video-thumb__meta {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--earth);
  margin: 0;
}

.video-gallery__hint {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--earth);
  text-align: center;
  margin: 36px 0 0;
}

/* ---------- film strip (driving out) ---------- */

.film-strip-section {
  background: var(--bg-linen);
  padding: 90px 32px 90px;
}

.film-strip-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.film-strip-section__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 8px;
}

.film-strip-section__line {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 36px;
  max-width: 640px;
  line-height: 1.7;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--text-warm);
  padding: 14px;
  position: relative;
  /* sprocket holes top + bottom */
  background-image:
    radial-gradient(circle at center, var(--bg-linen) 4px, transparent 4.5px);
  background-size: 28px 14px;
  background-position: 14px 0, 14px 100%;
  background-repeat: repeat-x;
}

.film-strip__cell {
  position: relative;
  margin: 0;
  background: #000;
  overflow: hidden;
}

.film-strip__cell + .film-strip__cell {
  border-left: 4px solid var(--text-warm);
}

.film-strip__cell img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.film-strip__cell:hover img {
  transform: scale(1.04);
}

.film-strip__cell figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--hero-cream);
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  padding: 28px 14px 12px;
  text-align: center;
}

/* ---------- closing block ---------- */

.dest-closing {
  background: var(--paper);
  padding: 80px 32px 90px;
  border-top: 1px solid var(--divider);
}

.dest-closing__inner {
  max-width: 760px;
  margin: 0 auto;
}

.dest-closing__label {
  font-family: var(--f-hand);
  font-size: 20px;
  color: var(--earth);
  margin: 0 0 18px;
}

.dest-closing__list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
}

.dest-closing__list li {
  margin: 0;
}

.dest-closing__list a {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-warm);
  padding: 10px 0;
  border-bottom: 1px dashed var(--divider);
  width: 100%;
  transition: color .2s ease, border-color .2s ease;
}

.dest-closing__list li:last-child a { border-bottom: none; }

.dest-closing__list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.dest-closing__retreat {
  background: var(--card);
  border-left: 3px solid var(--gold);
  padding: 26px 30px 30px;
}

.dest-closing__retreat-label {
  font-family: var(--f-hand);
  font-size: 19px;
  color: var(--earth);
  margin: 0 0 6px;
}

.dest-closing__retreat-line {
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 20px;
  line-height: 1.7;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .dest-title__h1 { font-size: 42px; }

  .snap--lg { width: 88%; margin: 0; }
  .snap--md { width: 70%; margin: -20px auto 0; }
  .snap--sm { width: 56%; margin: -20px auto 0; }
  .snap { transform: rotate(0) !important; }

  .art-stack,
  .art-stack--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .art-stack--reverse .art-frame--lead { order: 0; }
  .art-stack--reverse .art-stack__supporting { order: 1; }

  .art-stack__supporting {
    flex-direction: row;
    gap: 16px;
  }

  .art-stack__supporting .art-frame { flex: 1; }

  .dest-painting__name { font-size: 36px; }
}

@media (max-width: 900px) {
  .video-gallery__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .dest-title { padding: 50px 22px 28px; }
  .dest-title__h1 { font-size: 34px; }
  .dest-title__intro { font-size: 14px; }

  .scrapbook { padding: 20px 22px 60px; }
  .snap figcaption { font-size: 14px; }

  .dest-story { padding: 30px 22px 70px; }
  .hand-pull { font-size: 22px; }

  .dest-painting { padding: 70px 22px 70px; }
  .dest-painting__name { font-size: 30px; }
  .dest-painting__head { text-align: left; }
  .dest-painting__story { margin-bottom: 36px; }

  .art-stack__supporting {
    flex-direction: column;
    gap: 18px;
  }

  .video-gallery { padding: 60px 22px 70px; }
  .video-gallery__title { font-size: 24px; }

  .film-strip-section { padding: 60px 22px 60px; }
  .film-strip {
    grid-template-columns: 1fr;
    background-size: 22px 11px;
  }
  .film-strip__cell + .film-strip__cell {
    border-left: none;
    border-top: 4px solid var(--text-warm);
  }

  .dest-closing { padding: 60px 22px 70px; }
  .dest-closing__list a { font-size: 16px; }
}

