:root {
  --green-deep: #2c5e2e;
  --green: #3d8542;
  --green-bright: #5cb85c;
  --cream: #f5f1e8;
  --cream-warm: #ede5d3;
  --tan: #b8864a;
  --tan-deep: #8a6234;
  --ink: #1f2a1f;
  --ink-soft: #3a4a3a;
  --paper: #faf7ef;
  --shadow: rgba(31, 42, 31, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--green-deep);
}

.serif { font-family: 'Fraunces', serif; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.78em; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- layout helpers ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

section { padding: 100px 0; position: relative; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 18px;
  display: inline-block;
}

.eyebrow::before {
  content: "◆ ";
  color: var(--tan);
}

/* ---------- nav ---------- */
nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  padding: 18px 28px;
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(31, 42, 31, 0.08);
  transition: padding 0.3s ease;
}

nav.scrolled { padding: 12px 28px; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-deep);
}

.brand-mark img {
  height: 44px;
  width: auto;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}

.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--green-deep); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 134, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(60, 133, 66, 0.06) 0%, transparent 50%),
    var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(31, 42, 31, 0.025) 0, rgba(31, 42, 31, 0.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(31, 42, 31, 0.025) 0, rgba(31, 42, 31, 0.025) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s ease both;
}

.hero-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--tan);
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--tan-deep);
  display: block;
  font-size: 0.7em;
  margin-top: 8px;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(60, 133, 66, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: fadeUp 1s ease 0.4s both;
}

.gecko-frame {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow:
    0 30px 80px -20px rgba(31, 42, 31, 0.25),
    0 0 0 1px rgba(31, 42, 31, 0.05);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.gecko-frame:hover { transform: rotate(0deg) scale(1.02); }

.gecko-frame img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.gecko-stamp {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--tan);
  color: var(--cream);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(184, 134, 74, 0.4);
  animation: spinSlow 18s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gecko-caption {
  text-align: center;
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- on tour banner ---------- */
.tour-strip {
  background: var(--green-deep);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.tour-track {
  display: flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
}

.tour-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.tour-track span::after {
  content: "◆";
  color: var(--tan);
  font-size: 14px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section: where we are ---------- */
.location {
  background: var(--cream);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.location h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
}

.location-text p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.schedule-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(31, 42, 31, 0.06);
}

.schedule-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.25);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(92, 184, 92, 0.1); }
}

.stop {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(31, 42, 31, 0.12);
}

.stop:last-child { border-bottom: none; }

.stop-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--tan-deep);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.stop-place {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--green-deep);
  font-weight: 600;
}

.stop-status {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-now { background: var(--green-bright); color: white; }
.status-next { background: var(--tan); color: white; }
.status-soon { background: rgba(31, 42, 31, 0.08); color: var(--ink-soft); }

.schedule-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(184, 134, 74, 0.08);
  border-left: 3px solid var(--tan);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- services ---------- */
.services {
  background: var(--paper);
}

.services h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  max-width: 700px;
}

.services-intro {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 60px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.svc-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 31, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px var(--shadow);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--green-deep);
}

.svc-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.svc-card.premium {
  background: var(--green-deep);
  color: var(--cream);
}

.svc-card.premium h3 { color: var(--cream); }
.svc-card.premium p { color: rgba(245, 241, 232, 0.8); }
.svc-card.premium .svc-icon { color: var(--tan); }
.svc-card.premium::before { background: var(--tan); }

.svc-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--tan);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ---------- about ---------- */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 28px;
}

.about p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.creds {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cred {
  background: var(--paper);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 31, 0.06);
}

.cred-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.cred-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.4;
}

.about-photo {
  background: var(--paper);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 60px var(--shadow);
  position: relative;
}

.about-photo img { width: 100%; max-width: 320px; }

.about-quote {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(31, 42, 31, 0.2);
}

/* ---------- gallery ---------- */
.gallery {
  background: var(--paper);
}

.gallery h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.gallery-intro {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 50px;
  max-width: 600px;
}

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

.gallery-item {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
  text-align: center;
  padding: 30px;
}

.gallery-placeholder .ph-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--tan);
  opacity: 0.6;
}

.gallery-placeholder h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.gallery-placeholder p {
  font-size: 13px;
  color: var(--tan-deep);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- blog ---------- */
.blog {
  background: var(--cream);
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog h2 { font-size: clamp(36px, 5vw, 56px); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(31, 42, 31, 0.06);
  transition: all 0.3s ease;
  display: block;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px var(--shadow);
}

.post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 14px;
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.post-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.post-card .read-more {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(245, 241, 232, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  max-width: 800px;
}

.contact h2 .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--tan);
}

.contact-intro {
  font-size: 19px;
  color: rgba(245, 241, 232, 0.85);
  max-width: 600px;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  padding: 48px;
  border-radius: 24px;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 28px;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(31, 42, 31, 0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60, 133, 66, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}

.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-method {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.contact-method:last-child { border-bottom: none; }

.contact-method .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 10px;
}

.contact-method .value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.contact-method .value:hover { color: var(--tan); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  color: white !important;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif !important;
  margin-top: 8px;
  transition: transform 0.2s;
}

.wa-btn:hover { transform: translateY(-2px); color: white !important; }

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
}

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

.footer-brand img { height: 60px; margin-bottom: 16px; }

.footer-brand p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: rgba(245, 241, 232, 0.7);
  font-size: 16px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--tan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.5);
}

/* ---------- mobile ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .gecko-frame { transform: rotate(0); max-width: 360px; margin: 0 auto; }
  .gecko-stamp { width: 90px; height: 90px; font-size: 11px; top: -10px; right: 0; }
  .location-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 0 0 12px 12px;
    width: 220px;
    gap: 18px;
  }
  .creds { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 700px) {
  .svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stop { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .hero h1 .accent { font-size: 0.55em; }
}


/* ---------- pre-launch notice ---------- */
.notice-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--tan-deep);
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.notice-bar strong {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .notice-bar { font-size: 11px; padding: 8px 16px; }
}
/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }