/* ================================================================
   CAMP TRAIL — Design System
   Inspired by: Hipcamp, The Dyrt, Outside Magazine
   Architecture: ct-* prefix, CSS custom properties, mobile-first
   ================================================================ */

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --green-900: #0f2409;
  --green-800: #1b3c10;
  --green-700: #2d5a1e;
  --green-600: #3d7329;
  --green-500: #4d8f34;
  --green-200: #c2dbb8;
  --green-100: #e8f2e3;
  --green-50:  #f3f8f0;

  --amber-800: #7a3e12;
  --amber-700: #9a5118;
  --amber-600: #b8692a;
  --amber-400: #d48a4f;
  --amber-200: #e8c89a;
  --amber-100: #f5e8d0;
  --amber-50:  #fdf5ea;

  --stone-900: #1a1a12;
  --stone-800: #2a2a1e;
  --stone-600: #4a4a38;
  --stone-400: #7a7a62;
  --stone-300: #a8a890;
  --stone-200: #d0cdb8;
  --stone-100: #e8e4d8;
  --stone-50:  #f5f2ea;
  --stone-10:  #fdf9f3;

  --white: #ffffff;

  /* Semantic */
  --color-brand:      var(--green-700);
  --color-brand-dark: var(--green-800);
  --color-accent:     var(--amber-600);
  --color-text:       var(--stone-900);
  --color-text-2:     var(--stone-600);
  --color-text-3:     var(--stone-400);
  --color-border:     var(--stone-200);
  --color-border-2:   var(--stone-100);
  --color-bg:         var(--stone-10);
  --color-bg-2:       var(--stone-50);
  --color-bg-inverse: var(--green-900);

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'SF Mono', 'Fira Code', monospace;

  /* Spacing scale (4px base) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  /* Radius */
  --r4:   4px;
  --r8:   8px;
  --r12:  12px;
  --r16:  16px;
  --r24:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.07), 0 10px 10px -5px rgba(0,0,0,.03);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 120ms var(--ease);
  --t-base: 200ms var(--ease);
  --t-slow: 350ms var(--ease);
}

/* ── Reset / Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--color-text);
  margin: 0;
}

p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────────────── */
.ct-shell {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.ct-shell--wide {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding-inline: var(--s6);
}

/* ── Typography utilities ────────────────────────────────────────── */
.ct-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s2);
}

.ct-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-200);
  margin-bottom: var(--s3);
}

.ct-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s3);
}

.ct-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}

.ct-text-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}

.ct-text-link:hover { border-color: var(--color-brand); }

/* ── Button System ───────────────────────────────────────────────── */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .625rem 1.375rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border: none;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  cursor: pointer;
  line-height: 1;
}

.ct-btn--primary {
  background: var(--color-brand);
  color: var(--white);
}
.ct-btn--primary:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,90,30,.3);
}

.ct-btn--amber {
  background: var(--color-accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(184,105,42,.3);
}
.ct-btn--amber:hover {
  background: var(--amber-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,105,42,.4);
}

.ct-btn--ghost {
  background: transparent;
  color: var(--color-text-2);
  border: 1px solid var(--color-border);
}
.ct-btn--ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.ct-btn--lg {
  padding: .875rem 2rem;
  font-size: 1rem;
}

/* ── Badge / Chip ────────────────────────────────────────────────── */
.ct-badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .6rem;
  border-radius: var(--r4);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}
.ct-badge--green {
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-200);
}
.ct-badge--amber {
  background: var(--amber-100);
  color: var(--amber-800);
  border: 1px solid var(--amber-200);
}

.ct-chip {
  display: inline-flex;
  align-items: center;
  padding: .3rem .8rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 500;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
}

/* ── Rating ──────────────────────────────────────────────────────── */
.ct-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
}
.ct-rating__star {
  color: #f59e0b;
  font-size: .8rem;
}
.ct-rating__count {
  font-size: .78rem;
  font-weight: 400;
  color: var(--color-text-3);
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,249,243,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-2);
  box-shadow: var(--shadow-xs);
}

.site-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-800) !important;
  letter-spacing: -.02em;
  text-decoration: none;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-2);
  text-decoration: none;
  transition: color var(--t-fast);
}
.site-nav a:hover { color: var(--color-brand); }
.site-nav a.is-active {
  color: var(--color-brand);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.ct-hero {
  position: relative;
  height: min(88vh, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
}
.ct-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.ct-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,8,.35) 0%,
    rgba(10,25,8,.60) 60%,
    rgba(10,25,8,.80) 100%
  );
}

.ct-hero__body {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  padding-inline: var(--s6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
}

.ct-hero__copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: var(--s4);
}
.ct-hero__copy h1 em {
  font-style: italic;
  color: var(--amber-200);
}
.ct-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 54ch;
  margin-inline: auto;
}

/* Search bar */
.ct-hero__search {
  display: flex;
  width: 100%;
  background: var(--white);
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  overflow: hidden;
  height: 56px;
}
.ct-hero__search-input {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 var(--s5);
  gap: var(--s3);
}
.ct-hero__search-icon {
  flex-shrink: 0;
  color: var(--stone-400);
  display: flex;
}
.ct-hero__search-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--color-text);
  background: transparent;
  min-width: 0;
}
.ct-hero__search-input input::placeholder { color: var(--stone-300); }
.ct-hero__search-btn {
  flex-shrink: 0;
  background: var(--color-accent);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  padding: 0 var(--s6);
  cursor: pointer;
  transition: background var(--t-base);
  white-space: nowrap;
}
.ct-hero__search-btn:hover { background: var(--amber-700); }

.ct-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s4);
}
.ct-hero__pills span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Camp type cards */
.ct-types {
  background: var(--color-bg);
  padding: var(--s16) 0;
}
.ct-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.ct-type-card {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r16);
  padding: var(--s6);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.ct-type-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ct-type-card strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
}
.ct-type-card p {
  font-size: .83rem;
  color: var(--color-text-2);
  line-height: 1.5;
}
.ct-type-card__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: .2rem .55rem;
  background: var(--amber-50);
  border-radius: var(--r4);
  width: fit-content;
  display: block;
  margin-bottom: var(--s2);
}

/* Featured campground cards */
.ct-featured {
  background: var(--stone-50);
  padding: var(--s16) 0;
  border-top: 1px solid var(--color-border-2);
}
.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.ct-cards-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.ct-camp-card {
  background: var(--white);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.ct-camp-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.ct-camp-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ct-camp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-camp-card:hover .ct-camp-card__media img { transform: scale(1.04); }

.ct-camp-card__badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: rgba(253,249,243,.95);
  backdrop-filter: blur(4px);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-800);
  padding: .25rem .6rem;
  border-radius: var(--r4);
}
.ct-camp-card__body {
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.ct-camp-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-camp-card__loc {
  font-size: .78rem;
  color: var(--color-text-3);
  font-weight: 500;
}
.ct-camp-card__rating {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--s1);
}
.ct-camp-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.ct-camp-card__body h3 a {
  text-decoration: none;
  color: inherit;
}
.ct-camp-card__body h3 a:hover { color: var(--color-brand); }
.ct-camp-card__excerpt {
  font-size: .83rem;
  color: var(--color-text-2);
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.ct-camp-card__price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-top: var(--s1);
}
.ct-camp-card__price span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--color-text-3);
}

/* States grid */
.ct-states {
  padding: var(--s16) 0;
  background: var(--color-bg);
}
.ct-states__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s3);
}
.ct-state-card {
  position: relative;
  border-radius: var(--r12);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.ct-state-card--wide {
  grid-column: span 2;
  aspect-ratio: 2;
}
.ct-state-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-state-card:hover img { transform: scale(1.05); }
.ct-state-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}
.ct-state-card__label {
  position: relative;
  z-index: 1;
  padding: var(--s4) var(--s5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-state-card__label strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.ct-state-card__label span {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
}

/* Stats strip */
.ct-why {
  background: var(--green-900);
  padding: var(--s12) 0;
}
.ct-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
}
.ct-why__item {
  border-left: 2px solid rgba(255,255,255,.12);
  padding-left: var(--s6);
}
.ct-why__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-200);
  line-height: 1;
  margin-bottom: var(--s3);
}
.ct-why__item p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Journal section */
.ct-journal {
  padding: var(--s16) 0;
  background: var(--white);
}
.ct-journal__grid {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: var(--s6);
  align-items: start;
}
.ct-post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r12);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--color-border-2);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.ct-post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.ct-post-card__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ct-post-card--lead .ct-post-card__img { aspect-ratio: 3/2; }
.ct-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-post-card:hover .ct-post-card__img img { transform: scale(1.03); }
.ct-post-card__body {
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ct-post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.ct-post-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.ct-post-time {
  font-size: .75rem;
  color: var(--color-text-3);
}
.ct-post-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}
.ct-post-card--lead .ct-post-card__body h3 { font-size: 1.3rem; }
.ct-post-card__body h3 a {
  text-decoration: none;
  color: inherit;
}
.ct-post-card__body h3 a:hover { color: var(--color-brand); }
.ct-post-card__body p {
  font-size: .85rem;
  color: var(--color-text-2);
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.ct-post-card__read {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  margin-top: var(--s1);
}
.ct-post-card__read:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   LISTING / DIRECTORY PAGE
   ═══════════════════════════════════════════════════════════════════ */
.ct-listing-page { background: var(--color-bg); }

.ct-listing-head {
  background: var(--white);
  border-bottom: 1px solid var(--color-border-2);
  padding: var(--s10) 0 var(--s8);
}
.ct-listing-head h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: var(--s3);
}
.ct-listing-head p { color: var(--color-text-2); font-size: .95rem; }
.ct-listing-head__stats {
  display: flex;
  gap: var(--s6);
  margin-top: var(--s5);
}
.ct-listing-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-listing-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
}
.ct-listing-stat span {
  font-size: .75rem;
  color: var(--color-text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ct-listing-body {
  padding: var(--s8) 0 var(--s16);
}
.ct-listing-cols {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s8);
  align-items: start;
}

/* Sidebar filters */
.ct-filters {
  position: sticky;
  top: calc(64px + var(--s4));
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r16);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.ct-filter-title {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: var(--s2);
}
.ct-filter-field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.ct-filter-field input,
.ct-filter-field select {
  width: 100%;
  padding: .6rem .85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--r8);
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--color-text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
}
.ct-filter-field input:focus,
.ct-filter-field select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(45,90,30,.08);
}
.ct-filter-divider {
  height: 1px;
  background: var(--color-border-2);
  margin: 0;
}
.ct-filter-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

/* Results pane */
.ct-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  gap: var(--s3);
}
.ct-results-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}
.ct-results-meta {
  font-size: .83rem;
  color: var(--color-text-3);
  margin-top: 2px;
}
.ct-results-count {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-2);
  background: var(--color-bg-2);
  border-radius: var(--r-full);
  padding: .25rem .75rem;
  border: 1px solid var(--color-border-2);
}

/* Active filter chips */
.ct-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.ct-active-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .25rem .65rem;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  transition: background var(--t-fast);
}
.ct-active-chip:hover { background: var(--green-200); }

/* Listing cards (horizontal) */
.ct-listing-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.ct-listing-card {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: box-shadow var(--t-slow), border-color var(--t-base);
  text-decoration: none;
  color: inherit;
}
.ct-listing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}
.ct-listing-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ct-listing-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-listing-card:hover .ct-listing-card__img img { transform: scale(1.04); }
.ct-listing-card__badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(253,249,243,.92);
  color: var(--green-800);
  padding: .2rem .5rem;
  border-radius: var(--r4);
}
.ct-listing-card__body {
  padding: var(--s5) var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s3);
}
.ct-listing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.ct-listing-card__loc {
  font-size: .78rem;
  color: var(--color-text-3);
}
.ct-listing-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.ct-listing-card__desc {
  font-size: .83rem;
  color: var(--color-text-2);
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.ct-listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s1);
  flex-wrap: wrap;
  gap: var(--s2);
}
.ct-listing-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.ct-listing-card__amenity {
  font-size: .72rem;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r4);
  padding: .15rem .5rem;
  color: var(--color-text-2);
}
.ct-listing-card__price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-brand);
  text-align: right;
  white-space: nowrap;
}
.ct-listing-card__price small {
  font-size: .72rem;
  font-weight: 400;
  color: var(--color-text-3);
  display: block;
}

/* Empty state */
.ct-empty {
  padding: var(--s12) var(--s6);
  text-align: center;
  color: var(--color-text-3);
}
.ct-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text-2);
  margin-bottom: var(--s3);
}

/* Pagination */
.ct-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s8);
}
.ct-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-2);
  background: var(--white);
  border: 1px solid var(--color-border-2);
  transition: all var(--t-fast);
}
.ct-page-btn:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.ct-page-btn.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--white);
}
.ct-page-btn.is-disabled {
  opacity: .35;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   DETAIL PAGE (campground)
   ═══════════════════════════════════════════════════════════════════ */
.ct-detail-page { background: var(--color-bg); }

/* Gallery */
.ct-gallery {
  --ct-gallery-gap: 3px;
  --ct-gallery-height: min(420px, 55vw);
  background: var(--stone-900);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: var(--ct-gallery-gap);
  height: var(--ct-gallery-height);
  max-height: 420px;
  align-items: stretch;
  overflow: hidden;
}
.ct-gallery--single { grid-template-columns: 1fr; }
.ct-gallery__main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
  height: 100%;
}
.ct-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-gallery__main:hover img { transform: scale(1.02); }
.ct-gallery__side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--ct-gallery-gap);
  min-height: 0;
  height: 100%;
}
.ct-gallery__side--single { grid-template-rows: minmax(0, 1fr); }
.ct-gallery__thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
  height: 100%;
}
.ct-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-gallery__thumb:hover img { transform: scale(1.04); }
.ct-gallery__count {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.detail-gallery-modal--camp {
  z-index: 180;
  align-items: start;
  padding: max(76px, env(safe-area-inset-top, 0px) + 20px) clamp(16px, 2vw, 28px) 24px;
}

.detail-gallery-modal--camp .detail-gallery-modal__backdrop {
  background:
    radial-gradient(circle at top center, rgba(245, 232, 208, 0.10), transparent 38%),
    rgba(11, 22, 8, 0.84);
  backdrop-filter: blur(16px);
}

.detail-gallery-modal--camp .detail-gallery-modal__dialog {
  width: min(76rem, 100%);
  max-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(96px, 12vw, 128px);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px 16px;
  padding: 18px;
  border-radius: var(--r16);
  border: 1px solid rgba(232, 200, 154, 0.24);
  background:
    linear-gradient(180deg, rgba(253, 249, 243, 0.98) 0%, rgba(245, 242, 234, 0.95) 100%);
  box-shadow:
    0 28px 80px rgba(7, 15, 6, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.detail-gallery-modal--camp .detail-gallery-modal__topbar {
  grid-column: 1 / -1;
  align-items: flex-start;
  padding: 4px 4px 0;
}

.detail-gallery-modal--camp .detail-gallery-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.detail-gallery-modal--camp .detail-gallery-modal__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(184, 105, 42, 0.5);
}

.detail-gallery-modal--camp .detail-gallery-modal__title {
  margin-top: 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
  color: var(--green-900);
}

.detail-gallery-modal--camp .detail-gallery-modal__actions {
  gap: 10px;
}

.detail-gallery-modal--camp .detail-gallery-modal__counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(27, 60, 16, 0.12);
  background: rgba(255,255,255,.68);
  color: var(--green-800);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.detail-gallery-modal--camp .detail-gallery-modal__close,
.detail-gallery-modal--camp .detail-gallery-modal__nav {
  border: 1px solid rgba(27, 60, 16, 0.12);
  background: rgba(15, 36, 9, 0.82);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 36, 9, 0.22);
}

.detail-gallery-modal--camp .detail-gallery-modal__close:hover,
.detail-gallery-modal--camp .detail-gallery-modal__nav:hover {
  background: rgba(27, 60, 16, 0.96);
}

.detail-gallery-modal--camp .detail-gallery-modal__close:focus-visible,
.detail-gallery-modal--camp .detail-gallery-modal__nav:focus-visible,
.detail-gallery-modal--camp .detail-gallery-modal__thumb:focus-visible {
  outline: 2px solid rgba(184, 105, 42, 0.9);
  outline-offset: 2px;
}

.detail-gallery-modal--camp .detail-gallery-modal__frame {
  height: min(100%, clamp(18rem, calc(100vh - 220px), 38rem));
  border-radius: var(--r12);
  border: 1px solid rgba(208, 205, 184, 0.9);
  background:
    linear-gradient(180deg, rgba(26, 26, 18, 0.22) 0%, rgba(245, 242, 234, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 16px 34px rgba(15, 36, 9, 0.12);
}

.detail-gallery-modal--camp .detail-gallery-modal__nav {
  width: 52px;
  height: 52px;
}

.detail-gallery-modal--camp .detail-gallery-modal__nav--prev {
  left: 18px;
}

.detail-gallery-modal--camp .detail-gallery-modal__nav--next {
  right: 18px;
}

.detail-gallery-modal--camp .detail-gallery-modal__stage {
  min-height: 0;
  height: 100%;
}

.detail-gallery-modal--camp .detail-gallery-modal__strip {
  min-height: 0;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: minmax(88px, 1fr);
  gap: 10px;
  padding: 2px 2px 4px 0;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  scrollbar-width: thin;
}

.detail-gallery-modal--camp .detail-gallery-modal__thumb {
  width: 100%;
  min-height: 88px;
  border-radius: var(--r8);
  border: 1px solid rgba(27, 60, 16, 0.10);
  background: rgba(255,255,255,.58);
  opacity: .72;
}

.detail-gallery-modal--camp .detail-gallery-modal__thumb:hover {
  opacity: .96;
  transform: translateY(-2px);
}

.detail-gallery-modal--camp .detail-gallery-modal__thumb.is-active {
  border-color: rgba(184, 105, 42, 0.48);
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 30px rgba(122, 62, 18, 0.16);
}

.detail-gallery-modal--camp .detail-gallery-modal__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .detail-gallery-modal--camp {
    padding-top: max(68px, env(safe-area-inset-top, 0px) + 14px);
  }

  .detail-gallery-modal--camp .detail-gallery-modal__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-height: calc(100vh - 84px);
    gap: 12px;
    padding: 14px;
    border-radius: var(--r16);
  }

  .detail-gallery-modal--camp .detail-gallery-modal__stage {
    height: auto;
  }

  .detail-gallery-modal--camp .detail-gallery-modal__frame {
    height: clamp(16rem, 54vh, 30rem);
  }

  .detail-gallery-modal--camp .detail-gallery-modal__strip {
    display: flex;
    grid-auto-rows: auto;
    gap: 10px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .detail-gallery-modal--camp .detail-gallery-modal__thumb {
    flex: 0 0 clamp(82px, 24vw, 112px);
    min-height: 0;
  }
}

/* Detail header */
.ct-detail-header {
  background: var(--white);
  border-bottom: 1px solid var(--color-border-2);
  padding: var(--s6) 0;
}
.ct-detail-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s6);
  flex-wrap: wrap;
}
.ct-detail-header__copy { flex: 1 1 400px; }
.ct-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
}
.ct-detail-breadcrumb a {
  font-size: .78rem;
  color: var(--color-text-3);
  text-decoration: none;
}
.ct-detail-breadcrumb a:hover { color: var(--color-brand); }
.ct-detail-breadcrumb span {
  font-size: .75rem;
  color: var(--stone-200);
}
.ct-detail-title-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s3);
}
.ct-detail-title-row h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.1;
}
.ct-detail-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s3);
}
.ct-detail-contacts a {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .83rem;
  color: var(--color-text-2);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ct-detail-contacts a:hover { color: var(--color-brand); }
.ct-detail-contacts a svg { flex-shrink: 0; }

/* Quick facts ribbon */
.ct-detail-facts-wrap {
  padding: var(--s5) 0 0;
}
.ct-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: none;
}
.ct-fact {
  flex: 1 1 160px;
  padding: var(--s4) var(--s5);
  border-right: none;
  border-bottom: none;
  min-width: 0;
}
.ct-fact__label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 3px;
}
.ct-fact__value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Detail body layout */
.ct-detail-body {
  padding: var(--s10) 0 var(--s16);
}
.ct-detail-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s8);
  align-items: start;
}
.ct-detail-main { display: flex; flex-direction: column; gap: var(--s10); }

.ct-detail-section {}
.ct-detail-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--color-border-2);
  margin-bottom: var(--s5);
}
.ct-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s4);
}
.ct-section-kicker {
  display: inline-flex;
  margin-bottom: var(--s2);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* About / description */
.ct-detail-about {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--color-text-2);
}
.ct-detail-about p + p { margin-top: 1rem; }
.ct-linked-story-card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: var(--s6);
  padding: var(--s5);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,246,239,.92)),
    var(--white);
  box-shadow: var(--shadow-sm);
}
.ct-linked-story-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r12);
}
.ct-linked-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-linked-story-card:hover .ct-linked-story-card__media img {
  transform: scale(1.03);
}
.ct-linked-story-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  min-width: 0;
}
.ct-linked-story-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.ct-linked-story-card__tag,
.ct-linked-story-card__time {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  border-radius: var(--r-full);
  font-size: .73rem;
  font-weight: 700;
}
.ct-linked-story-card__tag {
  background: rgba(33, 86, 60, .08);
  color: var(--color-brand);
}
.ct-linked-story-card__time {
  background: var(--stone-100);
  color: var(--color-text-3);
}
.ct-linked-story-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  text-decoration: none;
}
.ct-linked-story-card__title:hover {
  color: var(--color-brand);
}
.ct-linked-story-card__excerpt {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--color-text-2);
}
.ct-linked-story-card__lead {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--color-text-3);
}
.ct-linked-story-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s2);
}

/* Amenities */
.ct-amenity-groups {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}
.ct-amenity-group__head {
  margin-bottom: var(--s3);
}
.ct-amenity-group__head h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}
.ct-amenity-group__head p {
  font-size: .8rem;
  color: var(--color-text-3);
}
.ct-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.ct-amenity-chip {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  font-size: .8rem;
  color: var(--color-text-2);
}

/* Map */
.ct-map {
  border-radius: var(--r12);
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  height: 320px;
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.ct-map-address {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-top: var(--s4);
  font-size: .875rem;
  color: var(--color-text-2);
}
.ct-map-address svg { flex-shrink: 0; margin-top: 2px; }

/* Booking channels */
.ct-channels {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ct-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--s5);
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r8);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.ct-channel:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}
.ct-channel__info strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.ct-channel__info span {
  font-size: .78rem;
  color: var(--color-text-3);
}
.ct-channel__action {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Booking sidebar */
.ct-booking-card {
  position: sticky;
  top: calc(64px + var(--s4));
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ct-booking-card__top {
  padding: var(--s6);
  border-bottom: 1px solid var(--color-border-2);
}
.ct-booking-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}
.ct-booking-price span {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-text-3);
}
.ct-booking-card__meta {
  padding: var(--s5) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  border-bottom: 1px solid var(--color-border-2);
}
.ct-booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-booking-row dt {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-text-3);
}
.ct-booking-row dd {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
}
.ct-booking-card__actions {
  padding: var(--s5) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ct-booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem;
  background: var(--color-brand);
  color: var(--white);
  border-radius: var(--r8);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t-base);
}
.ct-booking-cta:hover { background: var(--color-brand-dark); }
.ct-booking-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text-2);
  text-decoration: none;
  transition: all var(--t-base);
}
.ct-booking-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.ct-booking-card__contact {
  padding: var(--s4) var(--s6) var(--s5);
  background: var(--stone-50);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  border-top: 1px solid var(--color-border-2);
}
.ct-booking-contact-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: .83rem;
  color: var(--color-text-2);
  text-decoration: none;
}
.ct-booking-contact-row:hover { color: var(--color-brand); }

/* Highlights grid */
.ct-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
}
.ct-highlight {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r12);
  padding: var(--s5);
}
.ct-highlight__label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s2);
  display: block;
}
.ct-highlight strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.ct-highlight p {
  font-size: .8rem;
  color: var(--color-text-3);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG INDEX PAGE
   ═══════════════════════════════════════════════════════════════════ */
.ct-blog-page { background: var(--color-bg); }

.ct-blog-head {
  background: var(--white);
  border-bottom: 1px solid var(--color-border-2);
  padding: var(--s12) 0 var(--s10);
}
.ct-blog-head__inner {
  max-width: 680px;
}
.ct-blog-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--s4);
}
.ct-blog-head p {
  font-size: 1rem;
  color: var(--color-text-2);
  line-height: 1.65;
}
.ct-blog-head__stats {
  display: flex;
  gap: var(--s6);
  margin-top: var(--s6);
}
.ct-blog-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-blog-stat strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
}
.ct-blog-stat span {
  font-size: .72rem;
  color: var(--color-text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.ct-category-bar {
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--color-border-2);
  background: var(--white);
  margin-bottom: var(--s8);
}
.ct-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.ct-category-chip {
  padding: .35rem .9rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
  transition: all var(--t-fast);
}
.ct-category-chip:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--green-50);
}
.ct-category-chip.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--white);
}
.ct-category-chip .ct-chip-count {
  font-size: .7rem;
  font-weight: 700;
  opacity: .65;
  margin-left: 3px;
}

/* Blog body layout */
.ct-blog-body {
  padding-bottom: var(--s16);
}

/* Feature article */
.ct-blog-feature {
  background: var(--white);
  border-radius: var(--r16);
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.ct-blog-feature__img {
  overflow: hidden;
  display: block;
}
.ct-blog-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-blog-feature:hover .ct-blog-feature__img img { transform: scale(1.03); }
.ct-blog-feature__body {
  padding: var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s4);
}
.ct-blog-feature__meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.ct-feature-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.ct-feature-time {
  font-size: .75rem;
  color: var(--color-text-3);
}
.ct-blog-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.2;
  display: block;
}
.ct-blog-feature__title:hover { color: var(--color-brand); }
.ct-blog-feature__excerpt {
  font-size: .9rem;
  color: var(--color-text-2);
  line-height: 1.65;
}
.ct-blog-feature__read {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: none;
  margin-top: var(--s2);
}
.ct-blog-feature__read:hover { text-decoration: underline; }

/* Article grid */
.ct-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

/* Blog card */
.ct-blog-card {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.ct-blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.ct-blog-card__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ct-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-blog-card:hover .ct-blog-card__img img { transform: scale(1.04); }
.ct-blog-card__body {
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}
.ct-blog-card__meta { display: flex; align-items: center; gap: var(--s3); }
.ct-card-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.ct-card-time { font-size: .75rem; color: var(--color-text-3); }
.ct-blog-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.25;
  display: block;
  flex: 1;
}
.ct-blog-card__title:hover { color: var(--color-brand); }
.ct-blog-card__excerpt {
  font-size: .82rem;
  color: var(--color-text-2);
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

/* Blog empty state */
.ct-blog-empty {
  background: var(--white);
  border: 1px dashed var(--color-border);
  border-radius: var(--r16);
  padding: var(--s12) var(--s6);
  text-align: center;
}
.ct-blog-empty h2 {
  font-size: 1.4rem;
  color: var(--color-text-2);
  margin-bottom: var(--s3);
}
.ct-blog-empty p {
  font-size: .9rem;
  color: var(--color-text-3);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: var(--s5);
}

/* ═══════════════════════════════════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════ */
.ct-article-page { background: var(--white); }

.ct-article-hero {
  padding: var(--s10) 0 0;
  background: var(--white);
}
.ct-article-hero__shell {
  width: min(100%, 780px);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.ct-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s6);
}
.ct-article-breadcrumb a {
  font-size: .78rem;
  color: var(--color-text-3);
  text-decoration: none;
}
.ct-article-breadcrumb a:hover { color: var(--color-brand); }
.ct-article-breadcrumb .sep { color: var(--stone-200); font-size: .75rem; }
.ct-article-breadcrumb .current { font-size: .78rem; color: var(--color-text-3); }

.ct-article-tags { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s5); }
.ct-article-tag {
  display: inline-flex;
  padding: .2rem .6rem;
  border-radius: var(--r4);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  color: var(--amber-800);
}

.ct-article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: var(--s4);
  color: var(--color-text);
}

.ct-article-summary {
  font-size: 1.1rem;
  color: var(--color-text-2);
  line-height: 1.65;
  margin-bottom: var(--s6);
}

.ct-article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) 0;
  border-top: 1px solid var(--color-border-2);
  border-bottom: 1px solid var(--color-border-2);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
  gap: var(--s4);
}
.ct-article-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.ct-author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-full);
  overflow: hidden;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ct-author-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-text);
}
.ct-author-role {
  font-size: .75rem;
  color: var(--color-text-3);
}
.ct-article-facts {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.ct-article-facts span {
  font-size: .78rem;
  color: var(--color-text-3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.ct-article-img {
  margin-bottom: var(--s10);
  border-radius: var(--r8);
  overflow: hidden;
}
.ct-article-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* Article body */
.ct-article-body {
  width: min(100%, 780px);
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-bottom: var(--s16);
}
.ct-article-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--color-border-2);
  margin-bottom: var(--s8);
}
.ct-article-content {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--stone-700, #3d3d2e);
}
.ct-article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2.5rem 0 .75rem;
  color: var(--color-text);
}
.ct-article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 2rem 0 .5rem;
  color: var(--color-text);
}
.ct-article-content p { margin-bottom: 1.25rem; }
.ct-article-content a { color: var(--color-brand); text-underline-offset: 2px; }
.ct-article-content ul, .ct-article-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.25rem;
}
.ct-article-content ul li, .ct-article-content ol li {
  margin-bottom: .4rem;
  color: var(--stone-600);
}
.ct-article-content blockquote {
  background: var(--amber-50);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--r8) var(--r8) 0;
  padding: var(--s4) var(--s6);
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--amber-800);
  line-height: 1.6;
}
.ct-article-content blockquote p { margin: 0; }
.ct-article-content img {
  border-radius: var(--r8);
  margin: 1.5rem 0;
}
.ct-article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin: 1.5rem 0;
}
.ct-article-content th {
  background: var(--stone-50);
  padding: .5rem .8rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-3);
  border-bottom: 2px solid var(--color-border);
}
.ct-article-content td {
  padding: .5rem .8rem;
  border-bottom: 1px solid var(--color-border-2);
}

.ct-article-end-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  padding: var(--s6) 0;
  border-top: 1px solid var(--color-border-2);
  margin-top: var(--s8);
}
.ct-end-tag {
  padding: .25rem .65rem;
  background: var(--stone-50);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r4);
  font-size: .75rem;
  color: var(--color-text-2);
}

/* Author card */
.ct-author-card {
  background: var(--stone-50);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r12);
  padding: var(--s6);
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  margin: var(--s8) 0;
}
.ct-author-card-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--r-full);
  overflow: hidden;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.ct-author-card__label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s2);
}
.ct-author-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}
.ct-author-card p {
  font-size: .83rem;
  color: var(--color-text-3);
}

/* Article navigation */
.ct-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  padding: var(--s8) 0;
  border-top: 1px solid var(--color-border-2);
}
.ct-article-nav-card {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r8);
  padding: var(--s5);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.ct-article-nav-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}
.ct-article-nav-card span {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-3);
}
.ct-article-nav-card strong {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  display: block;
}

/* Related posts section */
.ct-related-section {
  background: var(--stone-50);
  border-top: 1px solid var(--color-border-2);
  padding: var(--s12) 0;
}
.ct-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s8);
}
.ct-related-head h2 {
  font-size: 1.5rem;
  color: var(--color-text);
}
.ct-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.ct-related-card {
  background: var(--white);
  border-radius: var(--r12);
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.ct-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.ct-related-card__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ct-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ct-related-card:hover .ct-related-card__img img { transform: scale(1.04); }
.ct-related-card__body { padding: var(--s4) var(--s5); }
.ct-related-cat {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--s2);
}
.ct-related-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.ct-related-title:hover { color: var(--color-brand); }
.ct-related-excerpt {
  font-size: .8rem;
  color: var(--color-text-3);
  line-height: 1.55;
  margin-top: var(--s2);
}

/* Promo side card */
.ct-promo-card {
  background: var(--white);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r12);
  overflow: hidden;
  position: static;
}
.ct-promo-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ct-promo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ct-promo-card__body { padding: var(--s5); }
.ct-promo-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s3);
}
.ct-promo-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: .28rem .6rem;
  border-radius: var(--r-full);
  background: var(--stone-100);
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-text-3);
}
.ct-promo-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s3);
}
.ct-promo-card p {
  font-size: .83rem;
  color: var(--color-text-2);
  line-height: 1.55;
  margin-bottom: var(--s4);
}
.ct-promo-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ct-promo-cta {
  display: flex;
  justify-content: center;
  padding: .65rem;
  background: var(--color-brand);
  color: var(--white);
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t-base);
}
.ct-promo-cta:hover { background: var(--color-brand-dark); }
.ct-promo-cta-secondary {
  display: flex;
  justify-content: center;
  padding: .65rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
  border-radius: var(--r8);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.ct-promo-cta-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: rgba(33, 86, 60, .03);
}

/* Article with side layout */
.ct-article-cols {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--s10);
  align-items: start;
  padding-bottom: var(--s16);
}
.ct-article-cols.no-side {
  grid-template-columns: 1fr;
}
.ct-article-side {
  position: sticky;
  top: calc(64px + var(--s4));
  align-self: start;
}
.ct-article-cols .ct-article-body {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-900) !important;
  border-top: none !important;
}
.ct-footer-inner {
  padding: var(--s12) 0 var(--s6);
}
.ct-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--s8);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--s6);
}
.ct-footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
}
.ct-footer-brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 30ch;
}
.ct-footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--s4);
  display: block;
}
.ct-footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ct-footer-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ct-footer-col a:hover { color: var(--amber-200); }
.ct-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
}
.ct-footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.ct-footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .88rem;
  color: rgba(232,200,154,.45);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ct-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ct-types__grid { grid-template-columns: repeat(2, 1fr); }
  .ct-why__grid { grid-template-columns: repeat(2, 1fr); }
  .ct-journal__grid { grid-template-columns: 1fr 1fr; }
  .ct-journal__grid .ct-post-card:nth-child(n+3) { display: none; }
  .ct-article-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-related-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-detail-cols { grid-template-columns: 1fr 280px; }
  .ct-listing-cols { grid-template-columns: 240px 1fr; }
  .ct-footer-top { grid-template-columns: 1fr 1fr; gap: var(--s6); }
}

@media (max-width: 768px) {
  .ct-hero { height: min(80vh, 580px); }
  .ct-hero__search { flex-direction: column; border-radius: var(--r16); height: auto; }
  .ct-hero__search-input { padding: var(--s4) var(--s5); }
  .ct-hero__search-btn { padding: var(--s4); border-radius: 0 0 var(--r16) var(--r16); }
  .ct-types__grid { grid-template-columns: 1fr 1fr; }
  .ct-cards-grid { grid-template-columns: 1fr; }
  .ct-cards-grid--4 { grid-template-columns: 1fr 1fr; }
  .ct-states__grid { grid-template-columns: 1fr 1fr; }
  .ct-state-card--wide { grid-column: span 2; aspect-ratio: 2; }
  .ct-why__grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .ct-journal__grid { grid-template-columns: 1fr; }
  .ct-journal__grid .ct-post-card { display: flex; }
  .ct-blog-feature { grid-template-columns: 1fr; min-height: auto; }
  .ct-blog-feature__img { aspect-ratio: 16/9; }
  .ct-article-grid { grid-template-columns: 1fr; }
  .ct-listing-cols { grid-template-columns: 1fr; }
  .ct-filters { position: static; }
  .ct-detail-cols { grid-template-columns: 1fr; }
  .ct-booking-card { position: static; }
  .ct-detail-facts-wrap { padding-top: var(--s4); }
  .ct-linked-story-card { grid-template-columns: 1fr; }
  .ct-gallery {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .ct-gallery__main { aspect-ratio: 16 / 9; }
  .ct-gallery__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }
  .ct-gallery__side--single { grid-template-columns: 1fr; }
  .ct-gallery__thumb {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .ct-gallery__side--single .ct-gallery__thumb { aspect-ratio: 16 / 9; }
  .ct-article-cols { grid-template-columns: 1fr; }
  .ct-article-cols .ct-promo-card { display: none; }
  .ct-related-grid { grid-template-columns: 1fr; }
  .ct-article-nav { grid-template-columns: 1fr; }
  .ct-footer-top { grid-template-columns: 1fr; }
  .ct-detail-facts { flex-wrap: wrap; }
  .ct-fact { flex: 1 1 140px; }
  .ct-listing-card { grid-template-columns: 120px 1fr; }
}

@media (max-width: 480px) {
  .ct-shell { padding-inline: var(--s4); }
  .ct-types__grid { grid-template-columns: 1fr; }
  .ct-states__grid { grid-template-columns: 1fr; }
  .ct-state-card--wide { grid-column: span 1; aspect-ratio: 16/9; }
  .ct-listing-card { grid-template-columns: 1fr; }
  .ct-listing-card__img { aspect-ratio: 16/9; }
  .ct-detail-facts { display: grid; grid-template-columns: 1fr; }
}
