@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@200;300;400;500;600&display=swap');

:root {
  --green: #086a2e;
  --green-dark: #054d22;
  --green-light: #0a8038;
  --white: #ffffff;
  --black: #0a0a0a;
  --off-white: #f8f8f6;
  --gray: #888888;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--green-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8, 106, 46, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
}

body:hover .cursor { opacity: 1; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
}

/* ─── BACKGROUND MESH ─── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-mesh::before {
  content: '';
  position: absolute;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, rgba(8, 106, 46, 0.15) 0%, transparent 70%);
  top: -20vw;
  right: -20vw;
  animation: meshFloat 12s ease-in-out infinite;
}

.bg-mesh::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(8, 106, 46, 0.1) 0%, transparent 70%);
  bottom: -10vw;
  left: -10vw;
  animation: meshFloat 16s ease-in-out infinite reverse;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 3%) scale(1.05); }
}

/* ─── DIAGONAL LINES ─── */
.bg-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(8, 106, 46, 0.03) 80px,
    rgba(8, 106, 46, 0.03) 81px
  );
}

/* ─── MAIN WRAPPER ─── */
.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HEADER ─── */
header {
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeDown 1s ease 0.3s forwards;
}

.logo-wrap {
  width: 80px;
  height: 80px;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.header-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── HERO ─── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--green-light);
  opacity: 0.6;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
  position: relative;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-light);
  display: block;
}

.hero-subline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

/* ─── DIVIDER ─── */
.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--green-light), transparent);
  margin: 3.5rem auto;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

/* ─── COMING SOON TEXT ─── */
.coming-block {
  opacity: 0;
  animation: fadeUp 1s ease 1.8s forwards;
  text-align: center;
}

.coming-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.8rem;
}

.coming-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.coming-text::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--green-light);
  animation: expandLine 1.5s ease 2.5s forwards;
}

@keyframes expandLine {
  to { width: 100%; }
}

/* ─── FLOATING ELEMENTS ─── */
.float-el {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: floatReveal 2s ease 2s forwards;
}

.float-el-1 {
  top: 18%;
  left: 6%;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(8,106,46,0.4);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation-delay: 2.2s;
}

.float-el-2 {
  bottom: 22%;
  right: 5%;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(8,106,46,0.4);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation-delay: 2.4s;
}

.float-el-3 {
  top: 45%;
  left: 3%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(8,106,46,0.4));
  animation-delay: 2.6s;
}

.float-el-4 {
  top: 45%;
  right: 3%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(8,106,46,0.4));
  animation-delay: 2.6s;
}

@keyframes floatReveal {
  to { opacity: 1; }
}

/* ─── MARQUEE ─── */
.marquee-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(8,106,46,0.2);
  border-bottom: 1px solid rgba(8,106,46,0.2);
  padding: 1.2rem 0;
  background: rgba(8,106,46,0.04);
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item span {
  color: var(--green-light);
  opacity: 0.5;
  font-style: normal;
  font-size: 0.5rem;
}

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

/* ─── FOOTER ─── */
footer {
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 3s forwards;
}

.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── REVEAL ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GREEN ACCENT BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8,106,46,0.15);
  border: 1px solid rgba(8,106,46,0.35);
  border-radius: 2px;
  padding: 0.45rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 2.2s forwards;
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 3.5s forwards;
}

.scroll-indicator span {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(8,106,46,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── SECOND SECTION ─── */
.section-2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
  position: relative;
  z-index: 1;
}

.section-2-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.large-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.large-quote strong {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.large-quote strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--green-light);
  opacity: 0.7;
}

.section-2-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light), transparent);
  margin: 3rem auto;
}

.section-2-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ─── THIRD SECTION ─── */
.section-3 {
  padding: 6rem 4rem 10rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(8,106,46,0.15);
  border: 1px solid rgba(8,106,46,0.15);
}

.grid-item {
  background: var(--black);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: background 0.4s ease;
  cursor: none;
}

.grid-item:hover {
  background: rgba(8,106,46,0.06);
}

.grid-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--green-light);
  opacity: 0.6;
}

.grid-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.grid-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  header, footer {
    padding: 2rem 1.5rem;
  }
  .hero {
    padding: 3rem 1.5rem 5rem;
  }
  .float-el-1, .float-el-2, .float-el-3, .float-el-4 {
    display: none;
  }
  .section-2 {
    padding: 6rem 2rem;
  }
  .section-3 {
    padding: 4rem 1.5rem 8rem;
  }
  .section-3-grid {
    grid-template-columns: 1fr;
  }
  .header-tagline {
    display: none;
  }
}
