:root {
  --color-primary: #2d5016;
  --color-secondary: #7fa650;
  --color-accent: #d4a574;
  --color-bg: #faf8f5;
  --color-text: #2a2a2a;
  --color-light: #e8e4df;
  --color-white: #ffffff;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-sm); font-size: 0.95rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, .btn {
  font-family: var(--font-body);
  padding: 0.7rem 1.8rem;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

button:hover, .btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.61) 0%, transparent 100%);
}

.header.scrolled {
  position: fixed;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.header.scrolled .logo {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
}

.header.scrolled .nav-toggle {
  color: var(--color-primary);
}

.header:has(.nav.active) .nav-toggle,
.header.scrolled:has(.nav.active) .nav-toggle {
  color: #000000;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
}

.header.scrolled .nav a {
  color: var(--color-text);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.hero-organic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, #1a3010 0%, #0d1808 100%);
  overflow: hidden;
}

.growth-ring {
  position: absolute;
  width: 90vmin;
  height: 90vmin;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(127, 166, 80, 0.15);
  border-radius: 50%;
  animation: ringGrow 2s ease-out forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.ring-layer:nth-child(1) { width: 25%; height: 25%; }
.ring-layer:nth-child(2) { width: 50%; height: 50%; }
.ring-layer:nth-child(3) { width: 75%; height: 75%; }
.ring-layer:nth-child(4) { width: 100%; height: 100%; }

@keyframes ringGrow {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.season-mark {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.5s forwards;
}

.ring-layer:nth-child(1) .season-mark { top: -1.5rem; left: 50%; transform: translateX(-50%); }
.ring-layer:nth-child(2) .season-mark { right: -3rem; top: 50%; transform: translateY(-50%); }
.ring-layer:nth-child(3) .season-mark { bottom: -1.5rem; left: 50%; transform: translateX(-50%); }
.ring-layer:nth-child(4) .season-mark { left: -3rem; top: 50%; transform: translateY(-50%); }

@keyframes fadeIn {
  to { opacity: 0.7; }
}

.hero-core {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  animation: coreReveal 1.2s ease-out 1.2s forwards;
}

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

.hero-core h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.essence {
  max-width: 400px;
  margin: 0 auto;
}

.essence p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-style: italic;
}

.root-link {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--color-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 2s forwards;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 0.5rem;
}

.root-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 2rem;
  background: var(--color-secondary);
  opacity: 0.5;
}

.root-link:hover {
  color: var(--color-white);
  transform: translateX(-50%) translateY(-3px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3010 100%);
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-image {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt {
  background: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: var(--space-sm) 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-md);
}

.feature-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.feature-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.feature-box p {
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.icon-box {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.icon-box:hover {
  background: var(--color-light);
}

.icon-box i {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.icon-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.icon-box p {
  font-size: 0.85rem;
  color: #666;
}

.contact-section {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  padding: var(--space-xl) var(--space-md);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.info-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.info-item i {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-top: 0.2rem;
}

.info-item div h4 {
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.info-item div p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--color-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(127,166,80,0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.checkbox-group label a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-popup.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cookie-content p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-buttons button {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-light) 100%);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.error-content h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: #666;
  margin-bottom: var(--space-lg);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.thankyou-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.thankyou-content h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thankyou-content p {
  color: #666;
  margin-bottom: var(--space-lg);
}

.policy-page {
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  padding-top: 120px;
}

.policy-page h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.policy-page h2 {
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.policy-page p {
  margin-bottom: var(--space-md);
  color: #666;
}

.policy-page ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.policy-page li {
  margin-bottom: var(--space-xs);
  color: #666;
}

@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .grid-2,
  .split-section,
  .contact-wrapper,
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-core h1 {
    font-size: 2rem;
  }
  
  .essence p {
    font-size: 1.1rem;
  }
  
  .season-mark {
    font-size: 0.65rem;
  }
  
  .ring-layer:nth-child(2) .season-mark { right: -2.5rem; }
  .ring-layer:nth-child(4) .season-mark { left: -2.5rem; }
  
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    align-items: flex-start;
    display: none;
  }
  
  .nav.active {
    right: 0;
    display: flex;
  }
  
  .nav a {
    color: var(--color-text);
    font-size: 1.1rem;
    padding: var(--space-sm) 0;
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  
  .hero-core h1 {
    font-size: 1.7rem;
  }
  
  .essence p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .growth-ring {
    width: 95vmin;
    height: 95vmin;
  }
  
  .root-link {
    bottom: 2rem;
    font-size: 0.75rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .contact-info,
  .contact-form {
    padding: var(--space-md);
  }

  .split-section {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .hero-core h1 {
    font-size: 1.5rem;
  }
  
  .essence p {
    font-size: 0.95rem;
  }
  
  button, .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}
