/* ---------- Design tokens ---------- */
:root {
  --green: #6e7c42;
  --green-dark: #4c5730;
  --green-deep: #3c4526;
  --purple: #6f3b63;
  --purple-dark: #56294c;
  --orange: #d2652a;
  --yellow: #e4a93c;
  --cream: #faf6ee;
  --cream-deep: #f3ecdd;
  --ink: #2b2a26;
  --ink-soft: #55534a;
  --white: #ffffff;

  --font-display: "Caveat", cursive;
  --font-body: "Nunito", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 40px -18px rgba(60, 45, 20, 0.35);
  --max-width: 1080px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.4em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--purple);
  margin-bottom: 0.6em;
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(210, 101, 42, 0.6);
}
.btn-primary:hover { background: #bd5620; }
.btn-large {
  padding: 1.05em 2.3em;
  font-size: 1.15rem;
  white-space: normal;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--green);
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-bar .btn {
  padding: 0.5em 1.3em;
  font-size: 0.92rem;
}

/* ---------- Header ---------- */
.site-header {
  background: transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 6px;
}
.brand img { height: 130px; width: auto; }

/* ---------- Coming soon hero ---------- */
.hero-simple {
  padding: 40px 0 56px;
  text-align: center;
  overflow: hidden;
}
.hero-simple .container { max-width: 700px; }
.hero-simple h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--green-deep);
}
.hero-simple .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto;
}
.hero-simple .decor-corner {
  position: absolute;
  width: 130px;
  opacity: 0.9;
  pointer-events: none;
  top: -10px;
  left: -30px;
  transform: scaleX(-1) rotate(8deg);
}

/* ---------- Advert section ---------- */
.advert {
  padding: 20px 0 70px;
}
.advert-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.advert-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  justify-self: center;
  width: min(420px, 100%);
}
.advert-copy h2 {
  color: var(--green-deep);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
}
.advert-copy .body-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.detail-list {
  margin: 1.4rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.detail-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.detail-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg { width: 19px; height: 19px; }
.detail-icon.green { background: var(--green); }
.detail-icon.purple { background: var(--purple); }
.detail-icon.orange { background: var(--orange); }

.form-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.88);
  padding: 46px 0 26px;
}
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.patch-badge {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
}
.footer-links a:hover { color: var(--yellow); }
.footer-links .fa-facebook { font-size: 1.4em; vertical-align: middle; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ---------- Utility reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .advert-grid {
    grid-template-columns: 1fr;
  }
  .btn-large { width: 100%; justify-content: center; }
  .hero-simple .decor-corner { display: none; }
}
