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

:root {
  --bg: #0c1408;
  --bg-elev: #152010;
  --line: rgba(159, 204, 136, 0.16);
  --line-strong: rgba(159, 204, 136, 0.28);
  --text: #f4efe6;
  --text-soft: rgba(244, 239, 230, 0.72);
  --text-dim: rgba(244, 239, 230, 0.48);
  --verde: #6aaf52;
  --verde-soft: #9fcc88;
  --verde-deep: #2d4a22;
  --cobre: #c4844a;
  --cobre-soft: #d4a574;
  --shell: 1120px;
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(74, 122, 56, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 15%, rgba(196, 132, 74, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 90%, rgba(45, 74, 34, 0.45), transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

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

.page { position: relative; z-index: 1; }

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

/* Nav */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 8px;
}

.brand-mini {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  gap: 1px;
}

.brand-mini .naturo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 36px);
  letter-spacing: 0.01em;
}

.brand-mini .tech {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde);
  margin-left: 4px;
  padding-bottom: 4px;
}

.topnav-links { display: flex; gap: 8px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
  background: transparent;
  color: inherit;
}

.btn.primary {
  background: linear-gradient(135deg, #6aaf52, #4a7a38);
  color: #0f1809;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(106, 175, 82, 0.25);
}

.btn.secondary {
  background: rgba(196, 132, 74, 0.12);
  color: var(--cobre-soft);
  border-color: rgba(196, 132, 74, 0.35);
}

.btn.ghost {
  border-color: rgba(244, 239, 230, 0.16);
  color: var(--text-soft);
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--verde-soft); outline-offset: 3px; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* Hero / typography */
.hero {
  padding: 48px 0 56px;
  animation: rise .8s var(--ease) both;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobre-soft);
  margin-bottom: 18px;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sections */
.section {
  padding: 56px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
  animation: rise .7s var(--ease) both;
}

.section.band {
  background: linear-gradient(180deg, rgba(21, 32, 16, 0.65), rgba(21, 32, 16, 0.15));
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.panel {
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(244, 239, 230, 0.04), transparent 40%),
    rgba(21, 32, 16, 0.85);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.panel:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.panel.copper {
  border-color: rgba(196, 132, 74, 0.28);
  background:
    linear-gradient(165deg, rgba(196, 132, 74, 0.1), transparent 45%),
    rgba(21, 32, 16, 0.85);
}

.panel h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-soft);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel.copper h3 { color: var(--cobre-soft); }

.panel p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

.icon-mini {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  opacity: 0.95;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 14px;
  align-items: stretch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobre-soft);
  margin-bottom: 10px;
}

.brand-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.logo-mark {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(21, 32, 16, 0.7);
}

.brand-block { min-width: 0; flex: 1; }

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-name .naturo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 58px);
  line-height: 1;
}

.brand-name .tech {
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--verde);
  margin-left: 4px;
  padding-bottom: 5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(106, 175, 82, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfe9c6;
}

.tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid rgba(196, 132, 74, 0.25);
  padding-top: 10px;
}

.tagline span { color: var(--cobre-soft); }

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.contact-links .btn { width: 100%; }

.privacy-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
}

.privacy-note a,
.inline-link {
  color: var(--verde-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 204, 136, 0.35);
}

.privacy-note a:hover,
.inline-link:hover { color: var(--verde); }

.panel a {
  color: var(--verde-soft);
  text-decoration: none;
}

.panel a:hover { text-decoration: underline; }

/* Legal */
.legal-doc {
  padding: 28px 0 40px;
}

.legal-doc .headline {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 8px;
}

.updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.legal-section {
  padding: 22px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.07);
}

.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-section h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-soft);
  margin: 16px 0 8px;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.legal-section ul {
  margin: 8px 0 14px 1.1em;
}

.legal-section a {
  color: var(--verde-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 204, 136, 0.3);
}

.legal-section a:hover { color: var(--verde); }

.contact-block {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(21, 32, 16, 0.7);
  padding: 16px 18px;
  margin: 12px 0 8px;
}

.contact-block p { margin-bottom: 4px; }

/* Footer */
.footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer a { color: var(--verde-soft); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-services,
  .contact-links {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .shell { width: min(var(--shell), calc(100% - 28px)); }

  .hero { padding: 28px 0 40px; }
  .section { padding: 40px 0; }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-services,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .logo-mark { width: 72px; height: 72px; border-radius: 16px; }
  .btn { letter-spacing: 0.04em; }
  .topnav-links { width: 100%; }
  .topnav-links .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .shell { width: calc(100% - 20px); }
  .headline { font-size: clamp(34px, 11vw, 44px); }
  .brand-name .naturo { font-size: clamp(34px, 11vw, 44px); }
  .btn { padding: 11px 14px; font-size: 11px; }
}
