/* ==========================================================================
   Charlotte Glamping™ — Moonlit Sage (Custom) Palette
   ========================================================================== */

:root {
  /* Locked Moonlit Sage palette */
  --parchment: #F8F4EE;
  --sage: #8BA888;
  --terracotta: #C4907A;
  --driftwood: #9B8B7A;
  --pearl-teal: #2E8B8A;          /* PRIMARY */
  --pearl-teal-deep: #246E6D;
  --pearl-teal-soft: #E4EFEE;
  --ink: #1F2A28;

  /* Semantic tokens */
  --bg: var(--parchment);
  --surface: #FDFBF6;
  --surface-alt: #EFE8DC;
  --text: var(--ink);
  --text-muted: var(--driftwood);
  --border: rgba(31, 42, 40, 0.12);
  --border-strong: rgba(31, 42, 40, 0.22);

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(31, 42, 40, 0.05);
  --shadow-md: 0 12px 30px -8px rgba(31, 42, 40, 0.12);
  --shadow-lg: 0 24px 60px -16px rgba(31, 42, 40, 0.18);

  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--pearl-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pearl-teal-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1rem; color: var(--text); }
.muted { color: var(--text-muted); }

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

section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pearl-teal);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--pearl-teal);
}

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* Trademark superscript */
.tm {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05em;
  font-weight: inherit;
  letter-spacing: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--pearl-teal);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(46, 139, 138, 0.5);
}
.btn-primary:hover {
  background: var(--pearl-teal-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(46, 139, 138, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}
.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: #fff; color: var(--pearl-teal-deep); }
.btn-small { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 244, 238, 0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
/* LOGO PLACEHOLDER styles */
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pearl-teal);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pearl-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 450;
  position: relative;
}
.nav-links a:hover { color: var(--pearl-teal); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-toggle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 500;
}
.lang-toggle .active { color: var(--pearl-teal); font-weight: 600; }
.mobile-menu-btn { display: none; }

@media (max-width: 960px) {
  .nav-links, .nav-phone, .lang-toggle { display: none; }
  .mobile-menu-btn {
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .logo-wordmark { font-size: 1.05rem; white-space: nowrap; }
  .nav-inner { gap: 0.5rem; padding: 0 1rem; height: 64px; }
  .nav-cta { gap: 0.4rem; }
  .btn-small { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}
@media (max-width: 400px) {
  .logo-wordmark { font-size: 0.98rem; }
  .logo-mark { width: 28px; height: 28px; font-size: 0.72rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,42,40,0.25) 0%, rgba(31,42,40,0.15) 40%, rgba(31,42,40,0.75) 100%),
    url("../images/hero-bell-tent.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem var(--pad) 5rem;
  width: 100%;
}
.hero .eyebrow {
  color: #F1E7D9;
}
.hero .eyebrow::before { background: var(--terracotta); }

.hero h1 {
  color: #fff;
  max-width: 15ch;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #F1E7D9;
}
.hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 52ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  z-index: 2;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta strong { display: block; color: #fff; font-size: 1.1rem; font-family: var(--font-display); font-weight: 400; text-transform: none; letter-spacing: 0; margin-top: 0.3rem; }

@media (max-width: 700px) {
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-meta > div:nth-child(2), .hero-meta > div:nth-child(3) { display: none; }
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how {
  background: var(--surface);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
.how-step {
  position: relative;
  padding-right: 1rem;
}
.how-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.8rem;
  color: var(--terracotta);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.how-step h3 { margin-bottom: 0.6rem; }
.how-step p { color: var(--text-muted); font-size: 0.98rem; }
.how-step-icon {
  width: 44px;
  height: 44px;
  color: var(--pearl-teal);
  margin-bottom: 1.25rem;
}
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   Packages
   ========================================================================== */
.packages {
  background: var(--parchment);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pearl-teal);
}
.pkg-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-alt);
}
.pkg-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.04); }
.pkg-body { padding: 1.6rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.pkg-price {
  font-family: var(--font-display);
  color: var(--pearl-teal);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.pkg-price em { color: var(--text-muted); font-style: normal; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-right: 0.4rem; font-family: var(--font-body); font-weight: 500; }
.pkg-card h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.pkg-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.25rem; flex: 1; }
.pkg-card .btn { align-self: flex-start; }

/* ==========================================================================
   Venues Tabs
   ========================================================================== */
.venues { background: var(--surface); }
.tabs {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 2.5rem;
  background: var(--parchment);
}
.tabs-wrap { display: flex; justify-content: center; }
.tab-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all .25s ease;
}
.tab-btn.active {
  background: var(--pearl-teal);
  color: #fff;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease both; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.areas-grid li {
  list-style: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.areas-grid li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
  display: inline-block;
}
.partner-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--parchment);
}
.partner-soon h3 { color: var(--pearl-teal); font-style: italic; }

/* ==========================================================================
   Gallery (masonry)
   ========================================================================== */
.gallery { background: var(--parchment); }
.masonry {
  column-count: 3;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform .8s ease, filter .4s ease;
  display: block;
}
.masonry-item:hover img { transform: scale(1.03); filter: brightness(1.04); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 520px) { .masonry { column-count: 1; } }

/* ==========================================================================
   Glamp Genius callout
   ========================================================================== */
.genius {
  background: var(--pearl-teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.genius::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(196,144,122,0.25), transparent 60%),
    radial-gradient(500px 400px at 85% 80%, rgba(139,168,136,0.25), transparent 60%);
  pointer-events: none;
}
.genius .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
.genius .eyebrow { color: rgba(255,255,255,0.8); }
.genius .eyebrow::before { background: var(--terracotta); }
.genius h2 { color: #fff; max-width: 14ch; }
.genius p { color: rgba(255,255,255,0.85); max-width: 44ch; font-size: 1.05rem; }
.genius-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.genius-visual svg { margin: 0 auto 1rem; color: var(--terracotta); }
.genius-visual small { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 820px) {
  .genius .container { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--surface); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--terracotta); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 1rem; }
.review blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 400;
  flex: 1;
}
.review cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.review cite strong { display: block; color: var(--ink); font-weight: 600; font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 0.1rem; }
@media (max-width: 820px) { .review-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--parchment); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}
.faq-item summary {
  list-style: none;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--pearl-teal);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--pearl-teal); }
.faq-item .faq-body {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* ==========================================================================
   Booking form
   ========================================================================== */
.booking { background: var(--ink); color: var(--parchment); }
.booking h2 { color: var(--parchment); }
.booking .eyebrow { color: var(--terracotta); }
.booking .eyebrow::before { background: var(--terracotta); }
.booking .section-head p { color: rgba(248,244,238,0.7); }
.booking-form {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.6);
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--parchment);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .2s ease, background .2s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pearl-teal);
  background: rgba(255,255,255,0.1);
}
.form-field select option { background: var(--ink); color: var(--parchment); }
.booking-form .btn { margin-top: 1.5rem; width: 100%; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .booking-form { padding: 1.75rem 1.25rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--surface-alt);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a { color: var(--ink); font-size: 0.92rem; }
.footer ul a:hover { color: var(--pearl-teal); }
.footer-about p { font-size: 0.92rem; color: var(--text-muted); max-width: 34ch; }
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.newsletter input {
  flex: 1;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.newsletter button {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--pearl-teal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}
.socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  color: var(--ink);
  border: 1px solid var(--border);
  transition: all .2s;
}
.socials a:hover { background: var(--pearl-teal); color: #fff; border-color: var(--pearl-teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--pearl-teal); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Fade-in animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   Utility: standalone pages
   ========================================================================== */
.page-header {
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header h1 { max-width: 20ch; }
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 0;
}
.prose h2 { margin-top: 2.5rem; }
.prose p { color: var(--text); font-size: 1.02rem; }
.prose ul { padding-left: 1.25rem; color: var(--text); }
.prose li { margin-bottom: 0.5rem; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.metric .label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.metric .value { font-family: var(--font-display); font-size: 2rem; color: var(--pearl-teal); margin-top: 0.4rem; }

/* Selection */
::selection { background: var(--pearl-teal); color: #fff; }
