/* ============================================================
   Hocking Hills Guide — Design System
   ============================================================ */

:root {
  /* Color palette — earthy, sandstone, forest */
  --forest-deep: #1a2e22;
  --forest: #2d4a37;
  --forest-soft: #4a6b54;
  --moss: #7a9277;
  --sandstone: #c8915a;
  --sandstone-deep: #8b5a32;
  --sandstone-soft: #e8c79a;
  --cream: #f8f1e3;
  --paper: #fdfaf3;
  --ink: #15191a;
  --ink-soft: #2a302d;
  --muted: #6a6e63;
  --line: rgba(26, 46, 34, 0.12);
  --shadow-sm: 0 2px 8px rgba(26, 30, 26, 0.06);
  --shadow-md: 0 8px 28px rgba(26, 30, 26, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 30, 26, 0.18);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

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

/* ============================================================
   Typography
   ============================================================ */

.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone-deep);
  display: inline-block;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

p { color: var(--ink-soft); }

em.serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--sandstone-deep);
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

@media (min-width: 768px) {
  section { padding: 128px 0; }
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

.nav.scrolled {
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav.scrolled .logo { color: var(--forest-deep); }

.nav-links {
  display: none;
  gap: 38px;
  list-style: none;
}

@media (min-width: 880px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--paper);
  position: relative;
  padding: 4px 0;
}

.nav.scrolled .nav-links a { color: var(--forest-deep); }

.nav-links a:hover { color: var(--sandstone-soft); }
.nav.scrolled .nav-links a:hover { color: var(--sandstone-deep); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--sandstone);
}

.nav-cta {
  padding: 10px 22px;
  border: 1px solid rgba(248, 241, 227, 0.4);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--paper);
  transition: all .25s ease;
}

.nav-cta:hover {
  background: var(--paper);
  color: var(--forest-deep);
  border-color: var(--paper);
}

.nav.scrolled .nav-cta {
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}

.nav.scrolled .nav-cta:hover {
  background: var(--forest-deep);
  color: var(--paper);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 880px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: background .25s ease;
}

.nav.scrolled .nav-toggle span { background: var(--forest-deep); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 99;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,.05,.3,1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(26, 46, 34, 0.55) 0%,
    rgba(26, 46, 34, 0.30) 35%,
    rgba(26, 46, 34, 0.65) 100%
  );
}

.hero-content {
  max-width: 880px;
  position: relative;
}

.hero h1 {
  color: var(--paper);
  font-weight: 200;
  margin: 24px 0 28px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sandstone-soft);
}

.hero .eyebrow {
  color: var(--sandstone-soft);
}

.hero-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(248, 241, 227, 0.92);
  max-width: 680px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 48px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-meta { left: 50%; transform: translateX(-50%); }
}

.hero-meta-item {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 227, 0.7);
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-transform: none;
  margin-top: 4px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}

.scroll-cue::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cream);
}

/* Page Hero (smaller, for sub-pages) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  padding: 140px 0 80px;
  overflow: hidden;
}

.page-hero h1 { color: var(--paper); font-weight: 200; }

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

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--sandstone);
  color: var(--forest-deep);
}

.btn-primary:hover {
  background: var(--sandstone-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(248, 241, 227, 0.5);
}

.btn-ghost:hover {
  background: rgba(248, 241, 227, 0.1);
  border-color: var(--paper);
}

.btn-dark {
  background: var(--forest-deep);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--forest);
  transform: translateY(-1px);
}

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Section Headers
   ============================================================ */

.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-header.center {
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .eyebrow { margin-bottom: 16px; }

.section-header p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   Cards & Grids
   ============================================================ */

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.card:hover .card-image img { transform: scale(1.05); }

.card-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: rgba(253, 250, 243, 0.95);
  color: var(--forest-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.card-body {
  padding: 28px 4px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 { margin-bottom: 12px; }

.card p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--sandstone-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Editorial / mosaic cards */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  color: var(--paper);
  isolation: isolate;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cream);
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}

.feature-card:hover::before { transform: scale(1.04); }

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(21, 25, 26, 0.85) 100%);
}

.feature-card h3 { color: var(--paper); margin-bottom: 8px; }

.feature-card p {
  color: rgba(248, 241, 227, 0.88);
  font-size: 0.96rem;
  margin: 0;
  max-width: 420px;
}

.feature-card.tall { min-height: 540px; }

/* ============================================================
   Split Section (image + text)
   ============================================================ */

.split {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 96px; }
  .split.reverse > :first-child { order: 2; }
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split-image .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 14px 20px;
  background: rgba(253, 250, 243, 0.95);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--forest-deep);
}

.split-content .lead { margin-top: 24px; }

/* ============================================================
   Stats / numbered list
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--sandstone-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Trail / Detail rows
   ============================================================ */

.trail-row {
  display: grid;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.trail-row:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .trail-row { grid-template-columns: 1.2fr 1fr; gap: 80px; }
  .trail-row.reverse > :first-child { order: 2; }
}

.trail-row-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.trail-row-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.trail-row:hover .trail-row-image img { transform: scale(1.04); }

.trail-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--sandstone-deep);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.trail-row h2 { margin-bottom: 18px; }

.trail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trail-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.trail-stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-deep);
}

/* ============================================================
   Seasons block
   ============================================================ */

.seasons {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.seasons h2 { color: var(--cream); }
.seasons .eyebrow { color: var(--sandstone-soft); }
.seasons p { color: rgba(248, 241, 227, 0.78); }

.season-grid {
  display: grid;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(248, 241, 227, 0.15);
}

@media (min-width: 768px) {
  .season-grid { grid-template-columns: repeat(4, 1fr); border-top: none; }
}

.season {
  padding: 36px 28px;
  border-bottom: 1px solid rgba(248, 241, 227, 0.15);
  position: relative;
}

@media (min-width: 768px) {
  .season {
    border-bottom: none;
    border-right: 1px solid rgba(248, 241, 227, 0.15);
  }
  .season:last-child { border-right: none; }
}

.season-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandstone-soft);
  margin-bottom: 12px;
  font-weight: 500;
}

.season h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.season p {
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ============================================================
   Quote / Pull
   ============================================================ */

.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}

.pull-quote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandstone-deep);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ============================================================
   CTA Banner
   ============================================================ */

.cta-banner {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Ice_Hangs_%2811958815863%29.jpg/1920px-Ice_Hangs_%2811958815863%29.jpg');
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(26, 46, 34, 0.78), rgba(139, 90, 50, 0.62));
}

.cta-banner h2 { color: var(--paper); margin-bottom: 20px; }
.cta-banner p { color: rgba(248, 241, 227, 0.9); max-width: 580px; margin: 0 auto 36px; font-size: 1.1rem; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(248, 241, 227, 0.7);
  padding: 96px 0 32px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-brand .logo { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { color: rgba(248, 241, 227, 0.6); font-size: 0.95rem; max-width: 320px; line-height: 1.7; }

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer a { color: rgba(248, 241, 227, 0.7); }
.footer a:hover { color: var(--sandstone-soft); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(248, 241, 227, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(248, 241, 227, 0.45);
}

/* ============================================================
   Mosaic grid (homepage feature)
   ============================================================ */

.mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mosaic {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .mosaic > :nth-child(1) { grid-row: span 2; }
}

@media (min-width: 1100px) {
  .mosaic {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .mosaic > :nth-child(1) { grid-row: span 2; }
  .mosaic > :nth-child(2) { grid-column: span 1; }
}

/* ============================================================
   Restaurant / lodging list
   ============================================================ */

.list-item {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

@media (min-width: 700px) {
  .list-item { grid-template-columns: 280px 1fr auto; gap: 40px; }
}

.list-item-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.list-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.list-item:hover .list-item-img img { transform: scale(1.04); }

.list-item-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sandstone-deep);
  font-weight: 500;
  margin-bottom: 10px;
}

.list-item h3 { margin-bottom: 10px; }

.list-item p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 580px;
}

.list-item-action {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.list-item-action:hover { color: var(--sandstone-deep); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest-deep);
  font-weight: 400;
  cursor: pointer;
  background: none;
  padding: 0;
}

.faq-q .faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sandstone-deep);
  transition: transform .3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--ink-soft);
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 16px;
}

.faq-a p { line-height: 1.7; }

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   Misc
   ============================================================ */

.divider {
  width: 60px;
  height: 1px;
  background: var(--sandstone);
  margin: 24px 0;
}

.center { text-align: center; }
.center .divider { margin: 24px auto; }

.crumbs {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 241, 227, 0.7);
  margin-bottom: 24px;
}

.crumbs a { color: var(--sandstone-soft); }
.crumbs span { opacity: 0.5; }
