:root {
  --green: #1a7a3c;
  --green-light: #22a050;
  --green-pale: #e8f5ee;
  --green-glow: rgba(26, 122, 60, 0.08);
  --off-white: #f7f6f2;
  --white: #ffffff;
  --ink: #0f0f0f;
  --ink-muted: #4a4a4a;
  --ink-faint: #9a9a9a;
  --border: #e2e0da;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  background: rgba(247,246,242,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
nav.scrolled {
  border-color: var(--border);
  padding: 20px 60px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; color: var(--white) !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 60px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  top: 0; right: 120px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
  opacity: 0.6;
}
.hero-bg-line:nth-child(2) { right: 240px; opacity: 0.3; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--green);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 780px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.hero-headline em { font-style: italic; color: var(--green); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #145e2e; transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }

.hero-stats {
  position: absolute;
  right: 60px; bottom: 80px;
  display: flex; flex-direction: column; gap: 32px;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}
.stat {
  text-align: right;
  border-right: 2px solid var(--green);
  padding-right: 20px;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── Ticker ── */
.ticker {
  background: var(--green);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Section Base ── */
section { padding: 120px 60px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block; width: 18px; height: 1px;
  background: var(--green);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 640px;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }

/* ── Services ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--border);
}
.service-card {
  padding: 52px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:nth-child(even) { border-right: none; }
.service-card:nth-child(3),
.service-card:nth-child(4) { border-bottom: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--green-glow); }
.service-number {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.7;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 12px;
  border-radius: 1px;
}

/* ── Why Norova ── */
.why { background: var(--off-white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 72px;
}
.why-promise {
  background: var(--ink);
  color: var(--white);
  padding: 48px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.why-promise::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--green);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.promise-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 500;
}
.promise-text {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.why-list {
  display: flex; flex-direction: column; gap: 0;
}
.why-item {
  display: flex; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1rem;
}
.why-item-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-item-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Process ── */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  width: 80%; height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-dot {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Team ── */
.team { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.team-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.team-card:hover::before { transform: scaleX(1); }
.team-avatar {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--ink);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,122,60,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,122,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  position: relative; z-index: 1;
}
.cta-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.cta-label::before {
  content: '';
  display: block; width: 18px; height: 1px;
  background: var(--green);
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-title em { font-style: italic; color: var(--green); }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green);
  color: var(--white);
  padding: 18px 40px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-cta:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── Contact ── */
.contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.form {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: none;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--green); transform: translateY(-2px); }

.contact-info { padding-top: 20px; }
.contact-detail {
  display: flex; flex-direction: column; gap: 6px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); margin-top: 48px; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-detail-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-detail-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--green); }

/* ── Footer ── */
footer {
  background: var(--white);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--green); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex; gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
