/* Hugg Travel Co — marketing site styles
   Brand tokens from the brand guide (see templates/TEMPLATE.md):
   Chocolate #4B3D31 · Terracotta #6B342A · Palm Leaf #605F49 · Teal #4F6A68
   Green #BCC2AD · Mist #C9D6D4 · Ivory #F6F1E8 · Slate #808C9D (live-site nav) */

@font-face {
  font-family: 'Storyteller';
  src: url('/shared/brand/fonts/Storyteller.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Modular Houseplant';
  src: url('/shared/brand/fonts/ModularHouseplantRegular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Modular Houseplant';
  src: url('/shared/brand/fonts/ModularHouseplantBold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/shared/brand/fonts/cormorant-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/shared/brand/fonts/cormorant-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sailing Club';
  src: url('/shared/brand/fonts/sailingclub-webfont.woff2') format('woff2');
  font-display: swap;
}

:root {
  --ivory: #F6F1E8;
  --chocolate: #4B3D31;
  --terracotta: #6B342A;
  --palm: #605F49;
  --teal: #4F6A68;
  --green: #BCC2AD;
  --mist: #C9D6D4;
  --slate: #808C9D;
  --body: 'Cormorant Garamond', Georgia, serif;
  --display: 'Storyteller', Georgia, serif;
  --label: 'Modular Houseplant', 'Courier New', monospace;
  --script: 'Sailing Club', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.6;
  color: var(--chocolate);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- type ---------- */
.label {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.15;
}
.script {
  font-family: var(--script);
  font-weight: 400;
  line-height: 1;
}
.lede { font-size: 23px; }

/* ---------- header ---------- */
.site-header {
  background: var(--ivory);
  padding: 26px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 50;
}
.site-header .wordmark { flex: 1; min-width: 0; }
.site-header .wordmark img { height: 44px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
@media (max-width: 760px) {
  .site-header { padding: 18px 5vw; }
  .site-header .wordmark img { height: 30px; }
}
.site-nav { display: flex; gap: 38px; align-items: center; }
.site-nav a {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--slate); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--slate);
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 8px 5vw 28px;
    gap: 20px;
    box-shadow: 0 14px 24px rgba(75, 61, 49, .12);
  }
  .site-nav.open { display: flex; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-slate { background: var(--slate); color: var(--ivory); }
.btn-slate:hover { background: #6d7a8d; }
.btn-terracotta { background: var(--terracotta); color: var(--ivory); }
.btn-terracotta:hover { background: #57281f; }
.btn-outline { border-color: var(--ivory); color: var(--ivory); background: transparent; }
.btn-outline:hover { background: var(--ivory); color: var(--palm); }

/* ---------- bands ---------- */
.band { padding: 90px 5vw; }
.band-tight { padding: 60px 5vw; }
.band-ivory { background: var(--ivory); color: var(--chocolate); }
.band-palm { background: var(--palm); color: var(--ivory); }
.band-terracotta { background: var(--terracotta); color: var(--ivory); }
.band-chocolate { background: var(--chocolate); color: var(--ivory); }
.band-mist { background: var(--mist); color: var(--chocolate); }
.band-green { background: var(--green); color: var(--chocolate); }
.band-teal { background: var(--teal); color: var(--ivory); }
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap-narrow { max-width: 780px; margin: 0 auto; }
.center { text-align: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero > img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-mark {
  position: relative;
  width: min(420px, 70vw);
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, .18));
}
.hero-sub {
  position: relative;
  padding: 60px 5vw;
}

/* ---------- misc layout helpers ---------- */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
@media (max-width: 980px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .cols-2 { grid-template-columns: 1fr; gap: 30px; }
  .cols-4 { grid-template-columns: 1fr; }
  .band { padding: 44px 6vw; }
  .band-tight { padding: 36px 6vw; }
  .deco { width: 96px; margin-bottom: 18px; }
  .mb-3 { margin-bottom: 28px; }
  .mt-3 { margin-top: 28px; }

  /* mobile: center section titles, brand marks, and buttons */
  .cols-2 h1, .cols-2 h2, .tier h3 { text-align: center; }
  .band img[aria-hidden="true"]:not(.portrait-frame):not(.oval-art) {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  p:has(> .btn), .tier .tier-cost { text-align: center; }
}

.deco { width: 130px; margin: 0 auto 26px; opacity: .95; }
.rule {
  border: 0;
  border-top: 1px solid currentColor;
  opacity: .35;
  width: 72px;
  margin: 30px auto;
}

/* framed photo trio (home intro) */
.photo-panel {
  background: var(--ivory);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.photo-panel img { width: 100%; height: 320px; object-fit: cover; }
@media (max-width: 700px) {
  .photo-panel { grid-template-columns: 1fr; }
  .photo-panel img { height: 240px; }
}

/* trip-type photo cards */
.trip-card {
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .14);
  display: flex;
  flex-direction: column;
}
.trip-card img { width: 100%; height: 240px; object-fit: cover; }
.trip-card .trip-card-body { padding: 24px 24px 28px; }
.trip-card h3 {
  font-family: var(--label);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--terracotta);
}
.trip-card ul { list-style: none; }
.trip-card li { padding: 4px 0; font-size: 19px; color: var(--chocolate); }

/* CTA on palm: ivory script */
.cta-band.band-palm .script { color: var(--ivory); }

/* scrim for text over full-bleed photos */
.hero-scrim { position: absolute; inset: 0; background: rgba(43, 35, 28, .38); }
.hero-scrim-chocolate { position: absolute; inset: 0; background: rgba(75, 61, 49, .45); }

/* oval votive frames (about page) */
.oval-frame { position: relative; width: min(460px, 100%); margin: 0 auto; }
.oval-frame.f02 { aspect-ratio: 1000 / 1283; }
.oval-frame.f11 { aspect-ratio: 1000 / 1219; }
.oval-frame .oval-photo {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}
.oval-frame.f02 .oval-photo { inset: 23% 26%; width: 48%; height: 56%; }
.oval-frame.f11 .oval-photo { inset: 13% 20%; width: 60%; height: 74%; }
.oval-frame .oval-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.tint-ivory { filter: brightness(0) invert(.96) sepia(.08); }
.tint-brown { filter: brightness(0) invert(.24) sepia(.9) saturate(2.2) hue-rotate(-15deg); }
.tint-terracotta { filter: brightness(0) invert(.28) sepia(1) saturate(4.5) hue-rotate(-22deg); }
.tint-olive { filter: brightness(0) invert(.36) sepia(.5) saturate(1.4) hue-rotate(35deg); }

/* offset line frame that anchors a photo block */
.frame-behind { position: relative; }
.frame-behind::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(246, 241, 232, .55);
  pointer-events: none;
}
.band-ivory .frame-behind::before { border-color: rgba(75, 61, 49, .3); }
.frame-behind > * { position: relative; z-index: 1; }
@media (max-width: 700px) { .frame-behind::before { inset: 14px -14px -14px 14px; } }

/* crossfading photo slot (about travel style) */
.fader { position: relative; height: 660px; overflow: hidden; }
.fader img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s linear;
}
.fader img.on { opacity: 1; transform: scale(1); }
@media (max-width: 700px) { .fader { height: 420px; } }
@media (prefers-reduced-motion: reduce) {
  .fader img { transition: none; transform: none; }
}

/* editorial photo grid (about travel style) */
.ed-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 295px);
  gap: 16px;
}
.ed-grid img { width: 100%; height: 100%; object-fit: cover; }
.ed-grid .ed-a { grid-row: 1 / 3; }
@media (max-width: 700px) {
  .ed-grid { grid-template-rows: repeat(2, 180px); }
}

/* layered collage, prints-on-a-table (about, merged travel style section) */
.collage { position: relative; padding-bottom: 90px; }
.collage .cg-main {
  display: block;
  width: 76%;
  height: 600px;
  object-fit: cover;
}
.collage .cg-b {
  position: absolute;
  right: 0;
  top: 40px;
  width: 48%;
  height: 280px;
  object-fit: cover;
  border: 10px solid var(--ivory);
  box-shadow: 0 18px 40px rgba(43, 35, 28, .3);
}
.collage .cg-c {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 36%;
  height: 230px;
  object-fit: cover;
  border: 10px solid var(--ivory);
  box-shadow: 0 18px 40px rgba(43, 35, 28, .3);
}
@media (max-width: 700px) {
  .collage .cg-main { width: 88%; height: 400px; }
  .collage .cg-b { height: 200px; bottom: 100px; }
  .collage .cg-c { height: 160px; }
}

/* layered photo collage (about intro) */
.photo-stack { position: relative; padding: 0 0 70px; }
.photo-stack .ps-main {
  display: block;
  width: 84%;
  margin-left: auto;
  height: 560px;
  object-fit: cover;
}
.photo-stack .ps-over {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 330px;
  object-fit: cover;
  border: 10px solid var(--ivory);
  box-shadow: 0 18px 40px rgba(75, 61, 49, .22);
}
@media (max-width: 700px) {
  .photo-stack .ps-main { height: 380px; }
  .photo-stack .ps-over { height: 220px; }
}

/* arch-topped photos (about philosophy) */
.arch-outline {
  padding: 14px;
  border: 1px solid rgba(246, 241, 232, .55);
  border-radius: 999px 999px 0 0;
}
.arch-outline img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
}
.arch-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: end;
  margin-top: 60px;
}
.arch-trio img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
}
.arch-trio img:nth-child(2) { height: 350px; }
@media (max-width: 760px) {
  .arch-outline img { height: 400px; }
  .arch-trio { gap: 14px; }
  .arch-trio img { height: 180px; }
  .arch-trio img:nth-child(2) { height: 220px; }
}

/* service cards */
.service-card {
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .18);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.service-card img { height: 620px; width: 100%; object-fit: cover; }
@media (max-width: 980px) { .service-card img { height: 420px; } }
.service-card .service-card-body { padding: 24px 22px 28px; }
.service-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--slate);
}
.service-card p { font-size: 21px; color: var(--chocolate); }
.service-card .service-card-body { padding: 30px 26px 36px; }
.service-card:hover { border-color: var(--terracotta); }

/* partner logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 56px;
  align-items: center;
  justify-items: center;
}
.logo-grid img {
  max-height: 74px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(4);
  opacity: .92;
}
@media (max-width: 760px) { .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } }

/* testimonials */
.quote-card {
  text-align: center;
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .16);
  padding: 30px 28px 38px;
  color: var(--chocolate);
}
.quote-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 28px;
  border: 12px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 12px 28px rgba(43, 35, 28, .18);
}
.quote-card h3 {
  font-family: var(--label);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--terracotta);
}
.quote-card blockquote { font-size: 19px; font-style: italic; }

/* favorite trips carousel */
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(330px, 78vw);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
}
.carousel figure { scroll-snap-align: start; }
.carousel img { width: 100%; height: 400px; object-fit: cover; margin-bottom: 14px; }
.carousel figcaption { font-size: 18px; font-style: italic; }

/* checklist */
.checklist { list-style: none; max-width: 720px; margin: 0 auto; }
.checklist li {
  padding: 16px 0;
  text-align: center;
  font-size: 22px;
}

/* vertical vines flanking a block */
.flank-vines { display: grid; grid-template-columns: 220px 1fr 220px; gap: 40px; align-items: center; }
.flank-vines .vine-v { display: flex; align-items: center; justify-content: center; }
.flank-vines .vine-v img { width: 200px; transform: rotate(180deg); }
.flank-vines .vine-v.flip img { transform: rotate(180deg) scaleX(-1); }
@media (max-width: 900px) { .flank-vines { grid-template-columns: 1fr; } .flank-vines .vine-v { display: none; } }

/* tiers (services page) */
.tier { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; }
.tier:nth-child(even) .tier-media { order: 2; }
.tier + .tier { border-top: 1px solid rgba(75, 61, 49, .15); }
.tier img { width: 100%; height: 460px; object-fit: cover; }
.tier h3 { font-family: var(--display); font-size: 30px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; color: var(--terracotta); }
.tier .tier-tag { font-style: italic; font-size: 20px; margin-bottom: 18px; color: var(--palm); }
.tier ul { list-style: none; margin: 18px 0; }
.tier li { padding: 6px 0 6px 26px; position: relative; font-size: 19px; }
.tier li::before { content: '·'; position: absolute; left: 6px; color: var(--terracotta); font-size: 26px; line-height: 1; }
.tier .tier-cost { font-family: var(--label); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-top: 14px; }
@media (max-width: 860px) {
  .tier { grid-template-columns: 1fr; gap: 30px; }
  .tier:nth-child(even) .tier-media { order: 0; }
  .tier img { height: 300px; }
}

/* process steps */
.steps { counter-reset: step; }
.step { padding: 30px 0; border-bottom: 1px solid rgba(246, 241, 232, .25); display: grid; grid-template-columns: 90px 1fr; gap: 26px; align-items: start; }
.step:last-child { border-bottom: 0; }
.step .step-num { font-family: var(--display); font-size: 44px; color: var(--green); }
.step h3 { font-family: var(--label); font-weight: 400; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; }

/* marquee */
.marquee { overflow: hidden; white-space: nowrap; padding: 16px 0; border-top: 1px solid rgba(75,61,49,.2); border-bottom: 1px solid rgba(75,61,49,.2); }
.marquee span {
  display: inline-block;
  font-family: var(--display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--terracotta);
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* accordion */
.accordion { max-width: 860px; margin: 0 auto; }
.accordion details { border-bottom: 1px solid rgba(75, 61, 49, .2); }
.accordion summary {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 22px 40px 22px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 26px;
  color: var(--terracotta);
}
.accordion details[open] summary::after { content: '–'; }
.accordion .accordion-body { padding: 0 4px 26px; font-size: 19px; }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--palm);
}
.field .hint { font-size: 16px; font-style: italic; color: var(--palm); margin-top: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 19px;
  color: var(--chocolate);
  background: #fff;
  border: 1px solid rgba(75, 61, 49, .3);
  padding: 13px 14px;
  border-radius: 0;
  -webkit-appearance: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--slate);
  outline-offset: 0;
}
.checkbox-row { display: flex; gap: 12px; align-items: baseline; font-size: 18px; }
.checkbox-row input { transform: translateY(2px); }
.form-status { margin-top: 22px; font-size: 19px; font-style: italic; display: none; }
.form-status.error { color: var(--terracotta); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .script { font-size: clamp(54px, 8vw, 96px); color: var(--terracotta); margin-bottom: 24px; }
.band-palm .cta-band .script, .cta-script-ivory { color: var(--ivory); }

/* footer */
.site-footer { background: var(--chocolate); color: var(--ivory); padding: 70px 5vw 40px; }
.site-footer .wordmark-img { width: min(420px, 80vw); margin: 0 auto 40px; opacity: .95; }
.footer-nav { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.footer-nav a {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  opacity: .85;
}
.footer-nav a:hover { opacity: 1; }
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.ig-strip a { display: block; }
.ig-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 700px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }
.footer-meta { text-align: center; font-size: 17px; opacity: .8; }
.footer-meta a { color: var(--ivory); }
.footer-meta .label { font-size: 12px; margin-bottom: 10px; }

/* hero with logo + tagline merged (home) */
.hero-stack { min-height: 94vh; flex-direction: column; text-align: center; padding: 40px 6vw; }
.hero-stack .hero-mark { width: min(560px, 82vw); }
.hero-stack .hero-tagline {
  position: relative;
  color: var(--ivory);
  margin-top: 34px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .35);
}
.hero-stack .hero-tagline h1 { font-size: clamp(26px, 3.6vw, 44px); }
.hero-stack .hero-tagline .label { margin-top: 16px; opacity: .95; }
.hero-stack .hero-actions { position: relative; margin-top: 34px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* framed portrait (votive embroidery over photo) */
.framed-portrait {
  position: relative;
  aspect-ratio: 1000 / 1384;
  width: min(400px, 100%);
  margin: 0 auto;
}
.framed-portrait .portrait-photo {
  position: absolute;
  inset: 9% 11%;
  width: 78%;
  height: 82%;
  object-fit: cover;
}
.framed-portrait .portrait-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(0) invert(.96) sepia(.08);
}

/* full-width photo ticker */
.ticker { overflow: hidden; background: var(--ivory); padding: 12px 0; }
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker-scroll 70s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track img {
  height: 400px;
  width: auto;
  flex: none;
  object-fit: cover;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}
@media (max-width: 760px) { .ticker-track img { height: 240px; } }
@media (prefers-reduced-motion: reduce) {
  .ticker { overflow-x: auto; }
  .ticker-track { animation: none; }
}

/* quote carousel */
.qcarousel { position: relative; max-width: 820px; margin: 0 auto; }
.qcarousel .qslides { position: relative; }
.qcarousel .qslide {
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .18);
  display: none;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
  text-align: left;
  min-height: 440px;
}
.qcarousel .qslide.active { display: grid; animation: qfade .5s ease; }
@keyframes qfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.qcarousel .qslide img { width: 100%; height: 100%; object-fit: cover; }
.qcarousel .qslide .qbody {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qcarousel .qslide h3 {
  font-family: var(--label);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(75, 61, 49, .25);
}
.qcarousel .qslide blockquote { font-size: 20px; font-style: italic; }
@media (max-width: 760px) {
  .qcarousel .qslide { grid-template-columns: 1fr; min-height: 0; }
  .qcarousel .qslide img { height: 240px; }
}
.qcarousel .qarrow {
  position: absolute;
  top: 42%;
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .3);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  font-size: 22px;
  color: var(--chocolate);
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.qcarousel .qarrow:hover { background: #fff; }
.qcarousel .qprev { left: -23px; }
.qcarousel .qnext { right: -23px; }
@media (max-width: 900px) { .qcarousel .qprev { left: 8px; } .qcarousel .qnext { right: 8px; } }
@media (max-width: 760px) {
  /* stacked card: pin arrows over the photo, not the quote text */
  .qcarousel .qarrow { top: 120px; }
}
.qdots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.qdots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--chocolate);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.qdots button.active { background: var(--terracotta); border-color: var(--terracotta); }

/* CTA with side imagery */
.cta-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.cta-grid img { width: 100%; height: 440px; object-fit: cover; }
@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid img { height: 260px; }
  .cta-grid .cta-side-b { display: none; }
}

/* legal pages */
.legal-band h1 { font-family: var(--display); font-size: clamp(28px, 3.6vw, 40px); text-transform: uppercase; color: var(--terracotta); text-align: center; margin-bottom: 10px; }
.htc-terms { max-width: 46rem; margin: 0 auto; line-height: 1.65; }
.htc-terms h2 { font-family: var(--label); font-weight: 400; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; margin: 2.6rem 0 .7rem; color: var(--terracotta); }
.htc-terms h3 { font-size: 21px; margin: 1.6rem 0 .4rem; font-weight: 600; }
.htc-terms ul { margin: .6rem 0 1rem 1.2rem; }
.htc-terms li { margin-bottom: .35rem; }
.htc-terms .htc-meta { font-size: 17px; opacity: .7; margin-bottom: 2rem; text-align: center; }
.htc-terms .htc-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(75, 61, 49, .2); font-size: 18px; }

/* ---------- Field Guide ---------- */
.fg-card {
  background: var(--ivory);
  border: 1px solid rgba(75, 61, 49, .16);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--chocolate);
}
.fg-card:hover { border-color: var(--terracotta); }
.fg-card img { width: 100%; height: 300px; object-fit: cover; }
.fg-card .fg-card-body { padding: 26px 26px 32px; }
.fg-kicker {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.fg-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fg-card p { font-size: 19px; color: var(--palm); }

/* featured guide banner */
.fg-featured {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--mist);
  color: var(--chocolate);
}
.fg-featured img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.fg-featured .fg-featured-body { padding: clamp(30px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .fg-featured { grid-template-columns: 1fr; }
  .fg-featured img { min-height: 240px; }
}

/* editorial article rows (field guide landing) */
.fg-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 60px 0;
  text-decoration: none;
  color: var(--chocolate);
}
.fg-row + .fg-row { border-top: 1px solid rgba(75, 61, 49, .18); }
.fg-row.flip .fg-row-media { order: 2; }
.fg-row img { width: 100%; height: 480px; object-fit: cover; }
.fg-row h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 10px 0 14px;
}
.fg-row .fg-dek { font-size: 21px; font-style: italic; color: var(--palm); }
.fg-row .fg-read {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
}
.fg-row:hover h3 { color: var(--terracotta); }
@media (max-width: 860px) {
  .fg-row { grid-template-columns: 1fr; padding: 40px 0; }
  .fg-row.flip .fg-row-media { order: 0; }
  .fg-row img { height: 280px; }
}

/* magazine devices */
.article .lede-open { font-size: 24px; line-height: 1.55; }
.article .dropcap::first-letter {
  font-family: var(--display);
  font-size: 76px;
  line-height: .82;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--terracotta);
}
.article h2[data-num]::before {
  content: attr(data-num);
  display: block;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--palm);
  margin-bottom: 8px;
}
.byline {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--palm);
  margin-top: 22px;
}
.venue-list {
  list-style: none;
  margin: 1.2em 0 1.8em !important;
  column-count: 2;
  column-gap: 48px;
}
.venue-list li {
  break-inside: avoid;
  margin-bottom: 1.15em;
  font-size: 19px;
  line-height: 1.5;
}
.venue-list li strong {
  display: block;
  font-family: var(--label);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
@media (max-width: 700px) { .venue-list { column-count: 1; } }

/* article pages */
.article { max-width: 720px; margin: 0 auto; }
.article p, .article li { font-size: 21px; }
.article p + p { margin-top: 1.1em; }
.article h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 2.2em 0 .7em;
}
.article ul { margin: .8em 0 1.2em 1.3em; }
.article li { margin-bottom: .55em; }
.article li strong { font-weight: 600; }
.article .article-photo { width: 100%; height: 440px; object-fit: cover; margin: 2.2em 0; }
.article table { border-collapse: collapse; width: 100%; margin: 1.4em 0; font-size: 19px; }
.article th {
  font-family: var(--label);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--palm);
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid rgba(75, 61, 49, .35);
}
.article td { padding: 12px 14px 12px 0; border-bottom: 1px solid rgba(75, 61, 49, .15); vertical-align: top; }
.article .article-photo-wide {
  display: block;
  width: min(1060px, 94vw);
  height: 480px;
  object-fit: cover;
  margin: 2.4em auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.article .photo-caption {
  text-align: center;
  font-size: 17px;
  font-style: italic;
  color: var(--palm);
  margin-top: -1.6em;
  margin-bottom: 2.4em;
}
.pullquote {
  font-size: clamp(26px, 3vw, 34px);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
  color: var(--terracotta);
  border-top: 1px solid rgba(75, 61, 49, .3);
  border-bottom: 1px solid rgba(75, 61, 49, .3);
  padding: 1.2em 0;
  margin: 2em 0;
}
@media (max-width: 700px) {
  .article .article-photo-wide { height: 260px; }
}

.note-from-julia {
  background: #fff;
  border: 1px solid rgba(75, 61, 49, .18);
  padding: 26px 28px;
  margin: 2em 0;
}
.note-from-julia .label { color: var(--terracotta); margin-bottom: 10px; }
.note-from-julia p { font-size: 20px; font-style: italic; }
.article-hero { padding: 90px 6vw 50px; text-align: center; }
.article-hero .fg-kicker {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--palm);
  margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 54px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta);
  max-width: 900px;
  margin: 0 auto;
}
.article-hero .dek { font-size: 22px; font-style: italic; color: var(--palm); max-width: 640px; margin: 18px auto 0; }
@media (max-width: 700px) {
  .article .article-photo { height: 260px; }
  .article-hero { padding: 50px 6vw 30px; }
  .article table { display: block; overflow-x: auto; }
}

/* ---------- destination guide (Nashville template, from Julia's design) ---------- */
.ng-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  overflow: visible;
}
.ng-hero .ng-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ng-hero .ng-hero-scrim { position: absolute; inset: 0; background: rgba(20, 14, 10, .45); }
.ng-hero .ng-hero-mark { position: relative; width: min(220px, 40vw); filter: drop-shadow(0 2px 14px rgba(0,0,0,.3)); }
.ng-hero-card {
  position: relative;
  background: var(--ivory);
  max-width: 900px;
  width: min(92vw, 900px);
  margin: auto auto -90px;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 70px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(20, 14, 10, .25);
}
.ng-hero-card .fg-kicker { color: var(--palm); }
.ng-hero-card h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--chocolate);
}
.ng-hero-card .dek { font-size: 21px; font-style: italic; color: var(--palm); margin-top: 16px; }
.ng-spacer { height: 120px; }

/* sticky in-guide nav */
.ng-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ivory);
  border-bottom: 1px solid rgba(75, 61, 49, .15);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 5vw;
}
.ng-nav .ng-nav-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.ng-nav .ng-nav-brand img { height: 30px; }
.ng-nav .ng-nav-brand span { font-family: var(--label); font-size: 12px; letter-spacing: .2em; color: var(--chocolate); }
.ng-nav a.ng-jump {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--palm);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.ng-nav a.ng-jump:hover { border-bottom-color: var(--terracotta); color: var(--terracotta); }
@media (max-width: 900px) { .ng-nav { overflow-x: auto; } .ng-nav .ng-nav-brand span { display: none; } }

/* label headers with trailing rule */
.ng-label-head {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--chocolate);
  margin: 2.4em 0 .9em;
}
.ng-label-head::after { content: ''; flex: 1; border-top: 1px solid rgba(75, 61, 49, .25); }

/* photo placeholder slots (awaiting real Nashville shots) */
.ng-slot {
  border: 1px dashed rgba(75, 61, 49, .4);
  background: rgba(75, 61, 49, .04);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ng-slot p { font-family: var(--label); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--palm); text-align: center; line-height: 1.8; }

/* neighborhoods diagram */
.ng-map { border: 1px solid rgba(75, 61, 49, .25); padding: clamp(24px, 4vw, 56px); }
.ng-map-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.ng-map-head .label { color: var(--chocolate); }
.ng-map-head em { font-size: 18px; color: var(--palm); }
.ng-map-hub {
  border: 1px solid rgba(75, 61, 49, .3);
  background: rgba(75, 61, 49, .05);
  max-width: 300px;
  margin: 0 auto;
  padding: 18px 26px;
  text-align: center;
}
.ng-map-hub .label { color: var(--chocolate); margin-bottom: 6px; }
.ng-map-hub p { font-size: 17px; color: var(--palm); }
.ng-map-stem { width: 1px; height: 34px; background: rgba(75, 61, 49, .3); margin: 0 auto; }
.ng-map-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(75, 61, 49, .3); }
.ng-map-cell { padding: 22px 12px 6px; text-align: center; position: relative; }
.ng-map-cell::before { content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 14px; background: rgba(75, 61, 49, .3); }
.ng-map-cell .label { color: var(--chocolate); margin-bottom: 8px; }
.ng-map-cell p { font-size: 16px; color: var(--palm); line-height: 1.7; }
.ng-map-south { text-align: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(75, 61, 49, .18); }
.ng-map-south .label { color: var(--chocolate); margin-bottom: 6px; }
.ng-map-south p { font-size: 17px; font-style: italic; color: var(--palm); }
@media (max-width: 760px) { .ng-map-row { grid-template-columns: repeat(2, 1fr); } }

/* rail photos + animated map */
.ng-rail-photo { width: 100%; height: 300px; object-fit: cover; margin-top: 28px; }
.ng-intro-photo { width: 100%; height: 440px; object-fit: cover; }
.ng-svgmap { width: 100%; height: auto; display: block; }
.ng-svgmap text { font-family: var(--label); letter-spacing: .14em; fill: var(--chocolate); }
.ng-svgmap .m-title { font-family: var(--script); font-size: 58px; fill: var(--terracotta); letter-spacing: 0; }
.ng-svgmap .m-big { font-size: 13px; font-weight: 400; }
.ng-svgmap .m-small { font-size: 10px; fill: var(--palm); letter-spacing: .1em; }
.ng-svgmap .m-script { font-family: var(--body); font-style: italic; font-size: 13px; fill: var(--palm); letter-spacing: .02em; text-transform: none; }
.ng-svgmap .draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.4s ease; }
.ng-map.inview .draw { stroke-dashoffset: 0; }
.ng-svgmap .pop { opacity: 0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease; }
.ng-map.inview .pop { opacity: 1; transform: none; }
.ng-map.inview .pop.d1 { transition-delay: .5s; } .ng-map.inview .pop.d2 { transition-delay: .9s; }
.ng-map.inview .pop.d3 { transition-delay: 1.3s; } .ng-map.inview .pop.d4 { transition-delay: 1.7s; }
.ng-map.inview .pop.d5 { transition-delay: 2.1s; } .ng-map.inview .pop.d6 { transition-delay: 2.5s; }
.ng-svgmap .float { animation: ng-float 7s ease-in-out infinite; }
.ng-svgmap .float.f2 { animation-delay: 2s; } .ng-svgmap .float.f3 { animation-delay: 4s; }
@keyframes ng-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) {
  .ng-svgmap .draw { stroke-dashoffset: 0; transition: none; }
  .ng-svgmap .pop { opacity: 1; transform: none; transition: none; }
  .ng-svgmap .float { animation: none; }
}

/* filter pills */
.ng-filters { display: flex; gap: 22px; flex-wrap: wrap; align-items: baseline; margin: 20px 0 10px; }
.ng-filters .ng-filter-label { font-family: var(--label); font-size: 11px; letter-spacing: .18em; color: var(--palm); }
.ng-filters button {
  background: none;
  border: 0;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--palm);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.ng-filters button.on { color: var(--terracotta); border-bottom-color: var(--terracotta); }

/* guide sections: left rail + directory */
.ng-sec { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 80px); padding: 70px 0; border-top: 1px solid rgba(75, 61, 49, .18); }
.ng-sec:first-of-type { border-top: 0; }
.ng-rail { position: sticky; top: 70px; align-self: start; }
.ng-rail .ng-num { font-family: var(--label); font-size: 13px; letter-spacing: .2em; color: var(--palm); margin-bottom: 10px; }
.ng-rail h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--chocolate);
}
.ng-rail .ng-sub { font-size: 19px; font-style: italic; color: var(--palm); margin-top: 10px; }
.ng-rail .ng-slot { margin-top: 28px; min-height: 240px; }
.ng-venues { list-style: none; margin: 0; }
.ng-venues li { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(75, 61, 49, .14); }
.ng-venues li:first-child { border-top: 0; }
.ng-venues .ng-vname { font-family: var(--label); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--chocolate); }
.ng-venues .ng-vtag { display: block; font-family: var(--label); font-size: 10px; letter-spacing: .18em; color: var(--palm); margin-top: 8px; }
.ng-venues .ng-vdesc { font-size: 19px; }
.ng-venues li.hide { display: none; }
@media (max-width: 900px) {
  .ng-sec { grid-template-columns: 1fr; }
  .ng-rail { position: static; }
  .ng-rail .ng-slot { display: none; }
  .ng-venues li { grid-template-columns: 1fr; gap: 6px; }
}

/* stay rows with photos */
.ng-venues.ng-stay li { grid-template-columns: 220px 200px 1fr; align-items: start; }
.ng-venues.ng-stay img { width: 100%; height: 150px; object-fit: cover; }
@media (max-width: 900px) {
  .ng-venues.ng-stay li { grid-template-columns: 1fr; }
  .ng-venues.ng-stay img { height: 220px; }
}

/* hot take panel */
.ng-hottake { border: 1px solid rgba(75, 61, 49, .25); padding: clamp(28px, 4vw, 50px); text-align: center; margin: 40px 0 10px; }
.ng-hottake .label { color: var(--terracotta); margin-bottom: 16px; }
.ng-hottake .ng-hottake-line {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--chocolate);
  line-height: 1.3;
}
.ng-hottake .ng-hottake-aside { font-size: 18px; font-style: italic; color: var(--palm); margin-top: 14px; }

/* patterned closer */
.ng-closer {
  position: relative;
  background-color: var(--chocolate);
  background-image: url('/assets/img/sprig-pattern.jpg');
  background-size: 420px;
  background-blend-mode: multiply;
  color: var(--ivory);
  text-align: center;
  padding: 90px 6vw;
}
.ng-closer .script { font-size: clamp(48px, 6vw, 76px); color: var(--ivory); }
.ng-closer p.ng-closer-copy { font-size: 21px; font-style: italic; max-width: 640px; margin: 26px auto 0; }
.ng-closer .btn { margin-top: 34px; }
.ng-closer img.ng-closer-mark { width: min(200px, 50vw); margin: 50px auto 0; opacity: .95; }

/* ---------- safari guide (varied layout) ---------- */
.sg-band { padding: 80px 5vw; }
.sg-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px; }
.sg-masonry img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .sg-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
.sg-window { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start;
  background: #fff; border: 1px solid rgba(75,61,49,.14); padding: 22px 24px; margin-bottom: 14px; }
.sg-window .dot { width: 12px; height: 12px; border-radius: 999px; margin-top: 7px; }
.sg-window h4 { font-family: var(--label); font-weight: 400; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.sg-window p { font-size: 19px; }
.sg-banner { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; margin: 70px calc(-5vw) 0; }
.sg-banner img.sg-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sg-banner .sg-banner-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,10,.65), rgba(20,14,10,.1)); }
.sg-banner .sg-banner-body { position: relative; padding: 40px 5vw; }
.sg-banner .fg-kicker { color: var(--ivory); opacity: .85; }
.sg-banner h2 { font-family: var(--display); font-weight: 400; font-size: clamp(38px,5vw,64px); letter-spacing: .03em; text-transform: uppercase; color: var(--ivory); line-height: 1.05; }
.sg-banner .sg-tag { font-family: var(--body); font-style: italic; font-size: clamp(20px,2.2vw,26px); color: var(--ivory); opacity: .95; margin-top: 6px; }
.sg-dest-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px,4vw,60px); padding: 50px 0 20px; align-items: start; }
.sg-stats { background: var(--mist); padding: 28px 30px; position: sticky; top: 80px; }
.sg-stats .label { color: var(--teal); margin-bottom: 10px; }
.sg-stats ul { list-style: none; margin-bottom: 20px; }
.sg-stats li { font-size: 18px; padding: 4px 0; }
.sg-stats p { font-size: 18px; margin-bottom: 20px; }
.sg-seasons { padding-bottom: 30px; }
.sg-season { display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: start;
  background: #fff; border: 1px solid rgba(75,61,49,.14); padding: 20px 24px; margin-bottom: 12px; }
.sg-pill { display: inline-block; font-family: var(--label); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; text-align: center; }
.sg-pill.p-prime { background: rgba(96,95,73,.15); color: var(--palm); }
.sg-pill.p-green { background: rgba(188,194,173,.45); color: #3d4a33; }
.sg-pill.p-hot { background: rgba(107,52,42,.12); color: var(--terracotta); }
.sg-pill.p-wet { background: rgba(128,140,157,.18); color: #5a6678; }
.sg-season h4 { font-family: var(--label); font-weight: 400; font-size: 14px; letter-spacing: .1em; margin-bottom: 4px; }
.sg-season p { font-size: 18px; }
.sg-aside { text-align: center; font-style: italic; font-size: 21px; color: var(--palm); max-width: 720px; margin: 34px auto; }
.sg-who-card { background: var(--ivory); border: 1px solid rgba(75,61,49,.15); padding: clamp(24px,3vw,44px); margin-bottom: 26px; color: var(--chocolate); }
.sg-pair-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.sg-pair-card { background: var(--ivory); border: 1px solid rgba(75,61,49,.15); padding: 30px 30px 34px; color: var(--chocolate); }
.sg-pair-card .fg-kicker { margin-bottom: 8px; }
.sg-pair-card h3 { font-family: var(--display); font-weight: 400; font-size: 25px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.sg-pair-card .sg-pair-tag { font-style: italic; font-size: 19px; color: var(--palm); margin-bottom: 14px; }
.sg-pair-card p { font-size: 18px; }
.sg-pair-card .sg-why { margin-top: 12px; font-style: italic; color: var(--palm); }
@media (max-width: 860px) {
  .sg-dest-body { grid-template-columns: 1fr; }
  .sg-stats { position: static; }
  .sg-pair-grid { grid-template-columns: 1fr; }
  .sg-season { grid-template-columns: 1fr; gap: 8px; }
  .sg-banner { min-height: 34vh; }
}

/* hotel cards with side photo */
.sg-hotel-card { display: grid; grid-template-columns: 300px 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.sg-hotel-card > img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
@media (max-width: 760px) {
  .sg-hotel-card { grid-template-columns: 1fr; }
  .sg-hotel-card > img { min-height: 0; height: 220px; }
}

/* photo strips and card photos (guides) */
.fg-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0; }
.fg-trio img { width: 100%; height: 260px; object-fit: cover; }
@media (max-width: 760px) { .fg-trio { grid-template-columns: 1fr; } .fg-trio img { height: 220px; } }
.sg-pair-card .card-photo, .sg-who-card .card-photo {
  width: calc(100% + 2 * clamp(24px, 3vw, 44px));
  max-width: none;
  margin: calc(-1 * clamp(24px, 3vw, 44px)) calc(-1 * clamp(24px, 3vw, 44px)) 20px;
  height: 220px;
  object-fit: cover;
}
.sg-pair-card .card-photo { width: calc(100% + 60px); margin: -30px -30px 20px; }

/* utility spacing */
.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 44px; }
.mb-1 { margin-bottom: 14px; } .mb-2 { margin-bottom: 28px; } .mb-3 { margin-bottom: 44px; }
p + p { margin-top: 1em; }

/* Safari planning: timeline, terracotta note, trip-length stat blocks */
.sg-timeline { position: relative; margin-top: 6px; }
.sg-timeline::before { content: ''; position: absolute; left: 5px; top: 10px; bottom: 10px; border-left: 1px solid rgba(75,61,49,.3); }
.sg-tl { position: relative; padding: 0 0 28px 40px; }
.sg-tl:last-child { padding-bottom: 0; }
.sg-tl .dot { position: absolute; left: 0; top: 5px; width: 11px; height: 11px; border-radius: 999px; box-shadow: 0 0 0 5px var(--mist); }
.sg-tl h4 { font-family: var(--label); font-weight: 400; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.sg-tl p { font-size: 19px; max-width: 660px; }
.note-julia-terra { background: var(--terracotta); color: var(--ivory); padding: 40px 38px 32px; margin: 50px 0; text-align: center; }
.note-julia-terra .label { color: var(--ivory); opacity: .85; margin-bottom: 14px; }
.note-julia-terra .note-text { font-size: 23px; font-style: italic; line-height: 1.5; max-width: 700px; margin: 0 auto; }
.note-julia-terra .script { font-size: 38px; color: var(--ivory); margin-top: 14px; }
.sg-nights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 6px; }
.sg-night { background: #fff; border: 1px solid rgba(75,61,49,.14); border-top: 3px solid var(--teal); padding: 26px 22px; text-align: center; }
.sg-night.total { background: var(--teal); border-color: var(--teal); color: var(--ivory); }
.sg-night .num { display: block; font-family: var(--display); font-size: 42px; line-height: 1; color: var(--teal); margin-bottom: 10px; }
.sg-night.total .num { color: var(--ivory); }
.sg-night h4 { font-family: var(--label); font-weight: 400; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.sg-night p { font-size: 17px; line-height: 1.5; }
.sg-night.total p { opacity: .92; }
@media (max-width: 860px) { .sg-nights { grid-template-columns: 1fr 1fr; } }

/* Safari basics photo cards + season comparison photos */
.sg-basics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 6px; }
.sg-basic { background: #fff; border: 1px solid rgba(75,61,49,.14); }
.sg-basic img { width: 100%; height: 170px; object-fit: cover; display: block; }
.sg-basic-body { padding: 18px 20px 20px; }
.sg-basic h4 { font-family: var(--label); font-weight: 400; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.sg-basic p { font-size: 17px; line-height: 1.5; }
@media (max-width: 860px) { .sg-basics { grid-template-columns: 1fr 1fr; } .sg-basic img { height: 130px; } }
.sg-vs-photo { width: 100%; height: 250px; object-fit: cover; display: block; }
