*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #faf6f0;
  --sage: #5c7a5c;
  --sage-dark: #3d5a3d;
  --sage-light: #8faa8f;
  --brown: #6b4c35;
  --brown-light: #a67c52;
  --gold: #c4a35a;
  --text: #2c3e2c;
  --text-light: #5a6e5a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

.leaf {
  position: fixed;
  border-radius: 0 80% 0 80%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.leaf-1 { width: 300px; height: 400px; background: var(--sage); top: -50px; right: 10%; transform: rotate(25deg); }
.leaf-2 { width: 200px; height: 280px; background: var(--sage-dark); bottom: 20%; left: 40%; transform: rotate(-15deg); }
.leaf-3 { width: 150px; height: 200px; background: var(--brown-light); top: 50%; right: 5%; transform: rotate(45deg); }

.sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--sage-dark);
  color: var(--cream);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar-logo { text-align: center; margin-bottom: 3rem; }

.coconut-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.sidebar-logo h1 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.sidebar-nav { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }

.sidebar-nav a {
  color: rgba(250,246,240,0.7);
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--cream);
  background: rgba(255,255,255,0.08);
  border-left-color: var(--gold);
}

.sidebar-footer {
  font-size: 0.75rem;
  opacity: 0.6;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.main-content {
  margin-left: 260px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mobile-nav-btn {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  background: var(--sage-dark);
  color: var(--cream);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

.welcome {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 4rem 5rem;
  gap: 3rem;
}

.eyebrow {
  font-size: 0.85rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.welcome h2 {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.welcome-actions { display: flex; gap: 1rem; }

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--cream); }

.welcome-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--sage-light);
  opacity: 0.3;
}
.ring-1 { width: 350px; height: 350px; animation: pulse 4s ease-in-out infinite; }
.ring-2 { width: 250px; height: 250px; animation: pulse 4s ease-in-out infinite 1s; }
.ring-3 { width: 150px; height: 150px; animation: pulse 4s ease-in-out infinite 2s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

.welcome-stat-box {
  background: var(--sage);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(61,90,61,0.2);
}

.big-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
}

.welcome-stat-box span:last-child { font-size: 0.9rem; opacity: 0.9; }

.story, .offerings, .values, .industries, .insights, .reach {
  padding: 5rem;
}

.story-header { margin-bottom: 3rem; }

.story-header h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--sage-dark);
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 1rem;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.story-col h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.story-col p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.offerings { background: white; }

.offerings h2, .values h2, .industries h2, .insights h2, .reach h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.offerings-list { display: flex; flex-direction: column; gap: 2.5rem; }

.offering {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(92,122,92,0.15);
}

.offering-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  min-width: 50px;
}

.offering-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
}

.offering-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-6px); }

.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.value-card h3 {
  font-family: var(--serif);
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
}

.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.industries { background: white; }

.industry-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--sage-light);
  background: transparent;
  color: var(--sage);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.tab.active, .tab:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.tab-panel { display: none; animation: fadeUp 0.4s; }
.tab-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.tab-panel p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.insight-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border-top: 4px solid var(--gold);
}

.insight-date {
  font-size: 0.8rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin: 0.8rem 0;
}

.insight-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }

.read-more {
  color: var(--sage);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.read-more:hover { color: var(--sage-dark); }

.reach {
  background: var(--sage-dark);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reach h2 { color: var(--cream); }

.reach-content > p {
  opacity: 0.85;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

.reach-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.reach-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reach-item p { opacity: 0.8; line-height: 1.7; font-size: 0.95rem; }
.reach-item a { color: var(--gold); text-decoration: none; }
.reach-item a:hover { text-decoration: underline; }

.reach-form {
  background: rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 20px;
}

.reach-form h3 {
  font-family: var(--serif);
  margin-bottom: 1.5rem;
}

.reach-form input,
.reach-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.reach-form input::placeholder,
.reach-form textarea::placeholder { color: rgba(250,246,240,0.4); }

.reach-form input:focus,
.reach-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row input { margin-bottom: 0; }

.reach-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--sage-dark);
}
.reach-form .btn-primary:hover { background: #d4b36a; }

.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--cream);
}

@media (max-width: 1100px) {
  .welcome { grid-template-columns: 1fr; padding: 4rem 3rem; }
  .welcome-visual { display: none; }
  .story-columns { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .reach { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .mobile-nav-btn { display: block; }
  .story, .offerings, .values, .industries, .insights, .reach { padding: 3rem 1.5rem; }
  .welcome { padding: 5rem 1.5rem 3rem; }
  .welcome h2 { font-size: 2.2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .reach-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
