/* Gallavant LLC — gallavantventures.com. Plain CSS, no build step (Cloudflare Pages direct upload). */
:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --ink: #1f1a14;
  --muted: #6b6258;
  --line: #e7dfd3;
  --brand: #b4532a;        /* desert clay */
  --brand-ink: #ffffff;
  --brand-soft: #f6e7dd;
  --sage: #5d7052;
  --radius: 12px;
  --max: 1080px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16130f; --surface: #1f1b16; --ink: #f3ede4; --muted: #b3a898; --line: #3a332a;
    --brand: #e0794b; --brand-ink: #1a120c; --brand-soft: #3a2519; --sage: #a3b596;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 17px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--brand); }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: var(--surface); position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; flex-wrap: wrap; }
.logo { font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); text-decoration: none; }
.logo span { color: var(--brand); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a { color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 8px; font-size: .95rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: var(--brand-soft); }

/* Sections */
.hero { padding: 72px 0 56px; }
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; }
section { padding: 48px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 600; color: var(--brand); margin-bottom: .5em; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-top: 0; }
.card.path { display: flex; flex-direction: column; }
.card.path .btn { margin-top: auto; align-self: flex-start; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li { counter-increment: step; position: relative; padding-left: 52px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-weight: 700; display: grid; place-items: center; }
.btn { display: inline-block; background: var(--brand); color: var(--brand-ink); text-decoration: none; font-weight: 600; padding: 12px 20px; border-radius: 10px; }
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.note { background: var(--brand-soft); border-radius: var(--radius); padding: 18px 20px; font-size: .95rem; }
.fill { background: #fff3b0; color: #3b3000; padding: 0 4px; border-radius: 4px; } /* placeholder text still to be filled */
table.rates { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.rates th, table.rates td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }

/* Photo gallery */
.gallery { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); margin-top: 10px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.card ul { padding-left: 1.2em; margin: 0 0 1em; }

/* Legal pages */
.legal { max-width: 760px; padding: 48px 20px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal .updated { color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: 36px 0; margin-top: 48px; font-size: .92rem; color: var(--muted); }
.site-footer .wrap { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer a { color: var(--muted); }
.site-footer strong { color: var(--ink); }
