/* Natural Activ Plant — cald, natural, premium */
:root {
  --sage-deep: #2f3d2e;
  --sage: #4a5c48;
  --sage-mid: #6b7f68;
  --sage-soft: #a3b49e;
  --sage-mist: #d8e2d4;
  --cream: #f3efe6;
  --ivory: #faf7f1;
  --warm-white: #fffdf9;
  --sand: #e8e0d2;
  --terracotta: #c4a484;
  --gold: #b8a078;
  --text: #2a2e28;
  --text-soft: #555a52;
  --text-muted: #787d74;
  --border: rgba(47, 61, 46, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 22px 50px rgba(42, 46, 40, 0.08);
  --shadow-soft: 0 10px 28px rgba(42, 46, 40, 0.06);
  --header-h: 80px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--sage-deep);
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2.5rem, 720px);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(42, 46, 40, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--sage-deep);
  flex-shrink: 0;
}

.logo-link .logo-natural {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: italic;
}

.logo-link .logo-activ {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.logo-link .logo-plant {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--sage-deep);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--sage-mid);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--sage-deep);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn-primary {
  background: var(--sage);
  color: var(--warm-white);
  box-shadow: 0 8px 22px rgba(74, 92, 72, 0.22);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage-soft);
}

.btn-ghost:hover {
  background: var(--sage-mist);
  border-color: var(--sage-mid);
}

.btn-full {
  width: 100%;
}

/* —— Hero —— */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(163, 180, 158, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(200, 164, 132, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.page-hero-img img,
.section-img img {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 4 / 3;
}

.hero-visual-caption {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.section.soft {
  background: var(--warm-white);
  border-block: 1px solid var(--border);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 38rem;
}

.section-lead.center {
  margin-inline: auto;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.prose p + p {
  margin-top: 1rem;
}

.prose .section-title {
  margin-bottom: 1.15rem;
}

/* —— Cards —— */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--sage-soft);
  margin-bottom: 0.65rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* —— Details list —— */
.details-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.details-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.details-list strong {
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

.details-list span {
  color: var(--text-soft);
}

/* —— Page hero —— */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(163, 180, 158, 0.2), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 36rem;
}

.page-hero-with-img {
  padding-bottom: 0;
}

.page-hero-with-img .page-hero-img {
  margin-top: 2.25rem;
  margin-bottom: -2.5rem;
}

.page-hero-with-img .page-hero-img img {
  aspect-ratio: 21 / 9;
  width: 100%;
}

/* —— Forms —— */
.form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
}

.form-group .hint {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-mid);
  box-shadow: 0 0 0 3px rgba(107, 127, 104, 0.15);
  background: var(--warm-white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.form-check input {
  margin-top: 0.3rem;
  accent-color: var(--sage);
  flex-shrink: 0;
}

.form-check a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.form-success,
.form-error {
  display: none;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.form-success {
  background: var(--sage-mist);
  border: 1px solid var(--sage-soft);
  color: var(--sage-deep);
}

.form-error {
  background: #f8eaea;
  border: 1px solid #d4a0a0;
  color: #6b2e2e;
}

.form-success.visible,
.form-error.visible {
  display: block;
}

/* Honeypot — invizibil pentru utilizatori, vizibil pentru boti */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(74, 92, 72, 0.94), rgba(47, 61, 46, 0.96)),
    var(--sage-deep);
  color: var(--warm-white);
}

.cta-band h2 {
  color: var(--warm-white);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: rgba(255, 253, 249, 0.85);
  max-width: 30rem;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  background: var(--warm-white);
  color: var(--sage-deep);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--cream);
}

/* —— Footer —— */
.site-footer {
  background: var(--sage-deep);
  color: rgba(255, 253, 249, 0.78);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-link {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.footer-brand .logo-plant {
  color: var(--sage-soft);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 16rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  padding: 0.28rem 0;
  color: rgba(255, 253, 249, 0.78);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--warm-white);
}

.footer-locations {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--sage-soft);
}

.footer-bar {
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  padding: 1.15rem 0;
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.5);
  text-align: center;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
  animation: slideUp 0.4s var(--ease);
}

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

.cookie-banner p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

/* —— Legal pages —— */
.legal-content {
  padding: 3rem 0 4.5rem;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content p + p {
  margin-top: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.legal-content li {
  margin: 0.35rem 0;
}

/* —— Utility —— */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }

.gdpr-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-left: 3px solid var(--sage-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.gdpr-note a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split.reverse > :first-child {
    order: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .details-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
    box-shadow: var(--shadow-soft);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a.active::after {
    display: none;
  }

  .nav a.active {
    color: var(--sage);
  }

  .page-hero-with-img .page-hero-img img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero {
    padding-top: 2.25rem;
  }

  .form-wrap {
    padding: 1.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
