/* ======================================================
   Eve Garden — G.E.T. I.T.
   Grow. Evolve. Transform. Into Tranquility.
   Botanical, warm, calm aesthetic
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg:          #f9f6f0;
  --bg-alt:      #f2ede4;
  --bg-deep:     #ede6d8;
  --fg:          #2c2c2c;
  --fg-muted:    #6b6b6b;
  --green:       #3d6b4f;
  --green-light: #7aab8c;
  --green-pale:  #d4e8da;
  --earth:       #c4956a;
  --earth-light: #e8c9a8;
  --card-bg:     #ffffff;
  --card-border: #e2d9cc;
  --radius:      2px;
  --radius-md:   4px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 600;
}

/* ======================================================
   NAVIGATION
   ====================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--card-border);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 8px 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--green);
  color: var(--bg);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(122, 171, 140, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(196, 149, 106, 0.08) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}

/* Botanical SVG background decoration */
.hero-botanical {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.hero-botanical-left {
  position: absolute;
  left: -60px;
  bottom: 40px;
  width: 280px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  transform: rotate(25deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--earth);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--earth);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(61, 107, 79, 0.22);
}

.btn-primary:hover {
  background: #2d5039;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(61, 107, 79, 0.32);
}

.hero-scroll-hint {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint svg {
  animation: nudge 2s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ======================================================
   GET IT FRAMEWORK / PILLARS
   ====================================================== */
.framework {
  padding: 120px 40px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.framework::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.framework-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--earth);
}

.framework h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 12px;
}

.framework-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 72px;
  max-width: 560px;
}

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

.pillar {
  background: var(--card-bg);
  padding: 52px 44px;
  position: relative;
  transition: background 0.3s ease;
  overflow: hidden;
}

.pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 44px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.4s ease;
}

.pillar:hover {
  background: #fdfcf8;
}

.pillar:hover::after {
  width: calc(100% - 88px);
}

.pillar-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.pillar:hover .pillar-letter {
  color: rgba(61, 107, 79, 0.18);
}

.pillar-word {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}

.pillar p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.pillar-icon {
  position: absolute;
  top: 44px;
  right: 44px;
  opacity: 0.35;
  width: 36px;
  height: 36px;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.pillar:hover .pillar-icon {
  opacity: 0.7;
  transform: rotate(8deg) scale(1.05);
}

/* ======================================================
   ABOUT / MISSION
   ====================================================== */
.mission {
  padding: 120px 40px;
  background: var(--bg);
  position: relative;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.mission-deco {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--green-pale), var(--bg-alt));
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mission-circle-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(122, 171, 140, 0.3), rgba(196, 149, 106, 0.12));
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.mission-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--card-border);
  animation: orbit-rotate 30s linear infinite;
}

.mission-orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--earth);
}

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

.mission-content .section-label {
  margin-bottom: 20px;
}

.mission-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 28px;
}

.mission-content p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

.mission-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--earth);
  border-left: 2px solid var(--earth-light);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.65;
}

/* ======================================================
   CTA / EMAIL CAPTURE
   ====================================================== */
.cta {
  padding: 120px 40px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(122, 171, 140, 0.15) 0%, transparent 70%);
}

.cta-botanical-left {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.2;
  pointer-events: none;
}

.cta-botanical-right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 200px;
  opacity: 0.2;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--earth);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 1.75;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}

.subscribe-input {
  flex: 1;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-right: none;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.subscribe-input::placeholder {
  color: #a8a095;
}

.subscribe-input:focus {
  border-color: var(--green-light);
}

.subscribe-btn {
  padding: 16px 28px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subscribe-btn:hover {
  background: #2d5039;
}

.subscribe-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.subscribe-message {
  height: 24px;
  font-size: 0.88rem;
  transition: opacity 0.3s ease;
}

.subscribe-message.success {
  color: var(--green);
}

.subscribe-message.error {
  color: #b94040;
}

.subscribe-privacy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  padding: 56px 40px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.82rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.55);
}

.footer-right {
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.8;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: #fff;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mission-deco {
    display: none;
  }
}

@media (max-width: 700px) {
  .nav {
    padding: 16px 20px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-botanical {
    width: 260px;
    right: -60px;
    opacity: 0.1;
  }

  .framework,
  .mission,
  .cta {
    padding: 80px 24px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 40px 28px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-input {
    border-right: 1px solid var(--card-border);
    border-bottom: none;
  }

  .subscribe-btn {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ======================================================
   ANIMATIONS / TRANSITIONS
   ====================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
