/* ===== Naturopia — "Eden Reimagined" ===== */
:root {
  --bg:        #212529;   /* charcoal */
  --bg-2:      #1b1f23;   /* slightly darker band */
  --ink:       #ffffff;
  --muted:     #aeb4b8;   /* body copy on dark */
  --muted-2:   #8b9196;
  --accent:    #61ffaa;   /* mint-green highlight */
  --line:      rgba(255,255,255,0.10);
  --maxw:      1080px;
  --font-display: "Antonio", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.6rem; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.46em;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0.01em;
}
.display { font-size: clamp(3rem, 8vw, 5rem); }
.display.sm { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 1.3rem; }
.accent { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 0.95rem 1.8rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background: #7dffba;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(97,255,170,0.25);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,27,0.55) 0%, rgba(20,24,27,0.20) 35%, rgba(33,37,41,0.85) 100%),
    linear-gradient(90deg, rgba(20,24,27,0.65) 0%, rgba(20,24,27,0.05) 60%);
}
.logo {
  position: absolute; top: 1.6rem; right: 2rem; z-index: 3;
  display: inline-flex; opacity: 0.95;
}
.logo img { width: 56px; height: 56px; }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 1.6rem;
}
.hero .display { margin-bottom: 1.6rem; }
.hero-lede {
  max-width: 640px;
  color: #e7eaec;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 2.1rem;
}

/* ===== Content grid ===== */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.grid-section { background: var(--bg); }
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem);
}
.block p { color: var(--muted); font-size: 1.02rem; }
.block .display.sm { letter-spacing: 0.01em; }

/* ===== Come home (villa photo + signup) ===== */
.come-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 64vh, 620px);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.come-home-media { position: absolute; inset: 0; z-index: 0; }
.come-home-media img { width: 100%; height: 100%; object-fit: cover; }
.come-home-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,21,24,0.92) 0%, rgba(18,21,24,0.55) 45%, rgba(18,21,24,0.15) 100%),
    linear-gradient(180deg, rgba(18,21,24,0.45) 0%, rgba(18,21,24,0.70) 100%);
}
.come-home-inner { position: relative; z-index: 2; }
.come-home-lede { max-width: 480px; color: #e7eaec; font-size: 1.06rem; margin-bottom: 2rem; }

.signup { display: flex; gap: 0.7rem; max-width: 520px; flex-wrap: wrap; }
.signup input {
  flex: 1 1 240px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s, background 0.2s;
}
.signup input::placeholder { color: var(--muted-2); }
.signup input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.signup-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 0.9rem; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 3.2rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-align: center; }
.footer-inner img { width: 40px; height: 40px; opacity: 0.9; }
.footer-tag { color: #d7dbde; font-size: 1rem; }
.footer-meta { font-size: 0.92rem; }
.footer-meta a { color: var(--accent); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-meta span { color: var(--muted-2); margin: 0 0.5rem; }
.footer-legal { font-size: 0.8rem; color: var(--muted-2); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .logo { top: 1.1rem; right: 1.2rem; }
  .logo img { width: 46px; height: 46px; }
  .come-home-overlay {
    background:
      linear-gradient(180deg, rgba(18,21,24,0.55) 0%, rgba(18,21,24,0.85) 100%);
  }
}
