/* ==========================================================================
   Neon Prairie — website template by Jimmy Off Grid
   --------------------------------------------------------------------------
   This file is self-contained. It does not depend on anything outside this
   folder, so the whole folder can be copied to start a new client site.

   TO RESKIN THE SITE: change the values in the THEME block directly below.
   Nothing further down this file hardcodes a colour — everything reads from
   these tokens, so the block below is the only place you need to touch.

   Four ready-made themes ship at the bottom of this file (clay, night,
   coastal, forest). To make one of them the permanent look, either copy its
   values up into :root, or add the attribute to the html tag:

       <html lang="en" data-theme="coastal">

   ========================================================================== */

:root {
  /* ——— THEME (default: night) ———————————————————————————————— */
  --bg:              #0e0d0c;   /* page background                          */
  --surface:         #1a1816;   /* cards, header, raised panels             */
  --surface-2:       #242120;   /* image wells, subtle fills, table stripes */
  --border:          #33302d;   /* all hairlines                            */
  --text:            #f2efe9;   /* body copy and headings                   */
  --text-muted:      #a39c92;   /* secondary copy, captions, labels         */
  --accent:          #e8a33d;   /* buttons, links, active states            */
  --accent-contrast: #14120f;   /* text placed ON the accent colour         */
  --accent-soft:     rgba(232,163,61,0.14);   /* tinted accent backgrounds  */
  --shadow:          0 1px 2px rgba(0,0,0,.35), 0 12px 32px rgba(0,0,0,.30);

  /* ——— STRUCTURE (shared by every theme) ————————————————————— */
  --radius:   14px;
  --maxw:     1100px;
  --nav-h:    64px;
  --demo-h:   44px;   /* height of the demo ribbon; becomes 0 when removed */

  /* ——— TYPE ————————————————————————————————————————————————
     To change the fonts, edit these two lines AND the Google Fonts <link>
     in the <head> of index.html. Those are the only two places fonts live. */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--demo-h) + 12px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.ico {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   DEMO RIBBON  —  DELETE THIS WHOLE BLOCK FOR A REAL CLIENT SITE
   (also delete the matching markup in index.html and the theme code in
   site.js, then set --demo-h to 0px above)
   ========================================================================== */

.demo-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--demo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 14px;
  /* Deliberately NOT themed — this chrome must stay legible on every theme. */
  background: #14161a;
  color: #b9c0cc;
  border-bottom: 1px solid #262b34;
  font-size: 0.76rem;
}

.demo-bar a { color: #e4e7ed; text-underline-offset: 3px; }

.demo-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-swatches span { color: #7b8493; margin-right: 2px; }

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #3a4150;
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, border-color .15s ease;
}

.swatch:hover { transform: scale(1.12); }
.swatch[aria-pressed="true"] { border-color: #fff; transform: scale(1.12); }

.swatch-clay    { background: linear-gradient(135deg, #faf7f2 50%, #a84d27 50%); }
.swatch-night   { background: linear-gradient(135deg, #1a1816 50%, #e8a33d 50%); }
.swatch-coastal { background: linear-gradient(135deg, #f7f9fb 50%, #256d8b 50%); }
.swatch-forest  { background: linear-gradient(135deg, #17241c 50%, #86b96e 50%); }

/* ==========================================================================
   HEADER
   ========================================================================== */

.topbar {
  position: sticky;
  top: var(--demo-h);
  z-index: 90;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: auto;
}

.brand .ico { width: 26px; height: 26px; color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.is-active { color: var(--accent); background: var(--accent-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 7px;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-contrast);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 20px 76px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow .ico { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(2.3rem, 6.5vw, 4rem);
  margin-bottom: 16px;
}

.hero .lede {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quick facts strip under the hero */
.facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 15px;
  border-radius: 999px;
}

.chip .ico { width: 15px; height: 15px; color: var(--accent); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.section:last-of-type { border-bottom: 0; }
.section-alt { background: var(--surface-2); }

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.kicker {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.section-head p  { color: var(--text-muted); }

/* ==========================================================================
   CARDS  (site types, nearby attractions, anything in a grid)
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover { transform: translateY(-3px); border-color: var(--accent); }

.card-media {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.card h3 { font-size: 1.15rem; margin-bottom: 6px; }

.card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card p { color: var(--text-muted); font-size: 0.9rem; }

.price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.rate-lines {
  list-style: none;
  font-size: 0.83rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 12px;
}

.rate-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
}

.rate-lines strong { color: var(--text); font-weight: 600; }

.tick-list { list-style: none; margin-top: 14px; }

.tick-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tick-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.card .btn { margin-top: auto; align-self: flex-start; }
.card .tick-list + .btn,
.card .rate-lines + .btn { margin-top: 18px; }

/* ==========================================================================
   AMENITIES GRID
   ========================================================================== */

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  list-style: none;
}

.amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 16px;
  font-size: 0.9rem;
}

.amenities .ico { color: var(--accent); }

/* ==========================================================================
   GALLERY + LIGHTBOX
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.gallery a { display: block; text-decoration: none; }

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery figure:hover img { transform: scale(1.04); }

.gallery figcaption {
  padding: 11px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 40px 20px;
  background: rgba(0,0,0,.9);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  color: #d7dbe2;
  font-size: 0.86rem;
  text-align: center;
  max-width: 620px;
}

.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox button:hover { background: rgba(255,255,255,.18); }
.lightbox .lb-close { top: 18px; right: 18px; }
.lightbox .lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   FAQ  (native <details> — no JavaScript involved)
   ========================================================================== */

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

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.96rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
  transition: transform .2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details > p {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card h3 { font-size: 1.05rem; margin-bottom: 14px; }

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-list .ico { color: var(--accent); margin-top: 3px; }
.contact-list strong { display: block; color: var(--text); font-weight: 600; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  overflow: hidden;
}

.map-embed img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   CTA + FOOTER
   ========================================================================== */

.cta {
  text-align: center;
  padding: 76px 20px;
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
}

.cta h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }

.cta p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 26px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p { color: var(--text-muted); font-size: 0.84rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-links a:hover { color: var(--accent); }

.credit {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SHOWS
   ========================================================================== */

.shows { list-style: none; }

.show {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: border-color .2s ease, transform .2s ease;
}

.show:hover { border-color: var(--accent); transform: translateX(3px); }

.show-date {
  font-family: var(--font-display);
  line-height: 1.1;
  text-align: center;
}

.show-date .mon {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.show-date .day { display: block; font-size: 1.7rem; font-weight: 700; }
.show-date .yr  { display: block; font-size: 0.7rem; color: var(--text-muted); }

.show-venue strong { display: block; font-size: 1.02rem; font-weight: 600; }
.show-venue span   { font-size: 0.86rem; color: var(--text-muted); }

/* Sold-out and cancelled shows stay on the page — people still want to know
   they happened, and removing them makes the list look thin. */
.show[data-status] { opacity: .6; }
.show[data-status]:hover { transform: none; border-color: var(--border); }

.show-status {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* ==========================================================================
   RELEASES
   ========================================================================== */

.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.release { text-align: center; }

.release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 14px;
}

.release h3 { font-size: 1.05rem; }

.release .year {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.listen-links a {
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px;
  transition: color .2s ease, border-color .2s ease;
}

.listen-links a:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   PRESS QUOTES
   ========================================================================== */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
}

.quote blockquote { font-size: 0.95rem; margin-bottom: 10px; }

.quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  transition: color .2s ease, border-color .2s ease;
}

.socials a:hover { color: var(--accent); border-color: var(--accent); }
.socials .ico { width: 17px; height: 17px; }

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

@media (max-width: 620px) {
  .show {
    grid-template-columns: 66px 1fr;
    gap: 14px;
    row-gap: 12px;
  }
  .show-date .day { font-size: 1.35rem; }
  .show .btn,
  .show .show-status { grid-column: 1 / -1; text-align: center; justify-content: center; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .nav-link { padding: 12px 14px; font-size: 0.95rem; }
  .topbar-inner { position: relative; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero-inner { padding: 60px 20px 52px; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }
  .footer-inner { justify-content: center; text-align: center; }
  .demo-bar { font-size: 0.7rem; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   THEMES
   --------------------------------------------------------------------------
   These four palettes are identical across every Jimmy Off Grid template, so
   any layout can wear any of them. Apply one with data-theme on the html tag.
   Delete the three you don't want once a client has picked.
   ========================================================================== */

[data-theme="clay"] {
  --bg:              #faf7f2;
  --surface:         #ffffff;
  --surface-2:       #f1ece3;
  --border:          #e5ddd0;
  --text:            #1b1917;
  --text-muted:      #6d6558;
  --accent:          #a84d27;
  --accent-contrast: #ffffff;
  --accent-soft:     rgba(168,77,39,0.10);
  --shadow:          0 1px 2px rgba(60,45,30,.05), 0 10px 30px rgba(60,45,30,.07);
}

[data-theme="night"] {
  --bg:              #0e0d0c;
  --surface:         #1a1816;
  --surface-2:       #242120;
  --border:          #33302d;
  --text:            #f2efe9;
  --text-muted:      #a39c92;
  --accent:          #e8a33d;
  --accent-contrast: #14120f;
  --accent-soft:     rgba(232,163,61,0.14);
  --shadow:          0 1px 2px rgba(0,0,0,.35), 0 12px 32px rgba(0,0,0,.30);
}

[data-theme="coastal"] {
  --bg:              #f7f9fb;
  --surface:         #ffffff;
  --surface-2:       #eaf0f5;
  --border:          #dbe4ec;
  --text:            #16202b;
  --text-muted:      #566878;
  --accent:          #256d8b;
  --accent-contrast: #ffffff;
  --accent-soft:     rgba(37,109,139,0.10);
  --shadow:          0 1px 2px rgba(20,40,60,.05), 0 10px 30px rgba(20,40,60,.07);
}

[data-theme="forest"] {
  --bg:              #0f1a14;
  --surface:         #17241c;
  --surface-2:       #1f2f26;
  --border:          #2c3f33;
  --text:            #eef3ec;
  --text-muted:      #9db0a2;
  --accent:          #86b96e;
  --accent-contrast: #0f1a14;
  --accent-soft:     rgba(134,185,110,0.14);
  --shadow:          0 1px 2px rgba(0,0,0,.30), 0 12px 32px rgba(0,0,0,.28);
}
