/* Urovalis — verdant bloom (warm organic wellness) */
:root {
  --ink: #1c2b24;
  --paper: #fffefb;
  --canvas: #faf6f0;
  --panel: #f0ebe3;
  --accent: #2d6a4f;
  --accent-hover: #1b4332;
  --accent-soft: rgba(45, 106, 79, 0.14);
  --cta: #bc6c25;
  --cta-hover: #9a5619;
  --cta-soft: rgba(188, 108, 37, 0.12);
  --muted: #5a6560;
  --header-bg: rgba(255, 254, 251, 0.82);
  --header-text: #1c2b24;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 32px rgba(28, 43, 36, 0.06);
  --shadow-card-hover: 0 16px 48px rgba(28, 43, 36, 0.1);
  --border-subtle: 1px solid rgba(28, 43, 36, 0.08);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --max-width: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  background-image:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(45, 106, 79, 0.09), transparent 60%),
    radial-gradient(ellipse 50% 45% at 100% 10%, rgba(188, 108, 37, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(240, 235, 227, 0.9), transparent 50%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.14;
  font-weight: 650;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.24;
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 var(--space-md);
  color: var(--muted);
  font-size: 1.06rem;
}

a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: var(--space-sm) 0;
  border-bottom: var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  color: var(--header-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: var(--accent-soft);
  border-color: rgba(45, 106, 79, 0.15);
  color: var(--accent-hover);
}

.nav-link.active {
  background: var(--accent);
  border-color: rgba(45, 106, 79, 0.2);
  color: #fff;
}

/* Hero */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  border-bottom: none;
  background: linear-gradient(165deg, var(--paper) 0%, #faf3ea 48%, #f5efe6 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.11) 0%, transparent 70%);
  top: -12%;
  right: -8%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 108, 37, 0.1) 0%, transparent 68%);
  bottom: -15%;
  left: -6%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  text-align: left;
  max-width: 920px;
  margin-bottom: var(--space-md);
  animation: fadeRise 0.6s ease;
}

.hero-title span.accent-word {
  background: linear-gradient(120deg, var(--cta-soft), var(--accent-soft));
  padding: 0.12em 0.4em;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--cta-hover);
}

.hero-subtitle {
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.14rem);
  max-width: 620px;
  margin: 0 0 var(--space-lg);
  color: var(--muted);
  font-weight: 500;
}

.hero .btn {
  animation: fadeRise 0.75s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta) 0%, #a85a1f 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(188, 108, 37, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cta-hover) 0%, #7d4214 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(188, 108, 37, 0.42);
}

.btn-lg {
  padding: 1.08rem 2.15rem;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section.alt {
  background: var(--panel);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: var(--paper);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent), var(--cta));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45, 106, 79, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-soft), var(--cta-soft));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.card-title {
  color: var(--ink);
  margin-bottom: var(--space-sm);
  font-size: 1.12rem;
  font-family: var(--font-display);
}

.card-text {
  color: var(--muted);
  line-height: 1.7;
}

.card img:not(.product-shot) {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  border: var(--border-subtle);
}

.product-shot {
  display: block;
  width: auto;
  max-width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: var(--border-subtle);
  background: var(--paper);
  padding: var(--space-md);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-soft);
}

.product-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.stat-num {
  font-size: 2.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--cta);
  margin-bottom: var(--space-sm);
  line-height: 1;
  letter-spacing: -0.02em;
}

.animate-fade-in-up {
  animation: fadeRise 0.55s ease forwards;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: var(--border-subtle);
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(45, 106, 79, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

/* Contact */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--paper);
  border-radius: var(--radius-sm);
  border: var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info span,
.contact-info a {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--cta);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a2f26 0%, #14241d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  align-items: start;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer h4 {
  color: #f0ebe3;
  margin-bottom: var(--space-md);
  font-size: 1.08rem;
  font-family: var(--font-display);
}

.footer p {
  color: rgba(232, 228, 220, 0.75);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(240, 235, 227, 0.88);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links a:hover {
  color: #e8b87a;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(232, 228, 220, 0.48);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-bottom a {
  color: #d4a574;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f0ebe3;
  text-decoration: underline;
}

/* List check */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-sm);
  color: var(--muted);
  line-height: 1.75;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cta));
}

/* Legal */
.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  background: var(--paper);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-subtle);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.content-card ul,
.content-card ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--muted);
}

.content-card li {
  margin-bottom: var(--space-xs);
  line-height: 1.75;
}

.content-card strong {
  color: var(--ink);
}

.content-card .contact-info {
  margin-top: var(--space-md);
  background: var(--panel);
}

@media (max-width: 968px) {
  .header-content {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }

  .card {
    padding: var(--space-md);
  }

  .content-card {
    padding: var(--space-md);
  }
}

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

.align-items-start {
  align-items: start;
}
