:root {
  --accent: #43B02A;
  --text: #0a0a0a;
  --muted: #555;
  --bg: #ffffff;
  --card: #f7f7f7;
  --card-hover: #f0f0f0;
  --border: #e0e0e0;
  --border-subtle: #eaeaea;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --text: #e8e8e8;
  --muted: #888;
  --card: #141414;
  --card-hover: #1a1a1a;
  --border: #222;
  --border-subtle: #1a1a1a;
  --shadow: 0 2px 8px rgba(255,255,255,0.02);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  color: var(--text); 
  background: var(--bg); 
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px }
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:8px;top:8px;width:auto;height:auto;background:var(--accent);color:white;padding:12px 16px;border-radius:4px;z-index:999}

.site-header { 
  border-bottom: 1px solid var(--border); 
  background: var(--bg);
  position: sticky; 
  top: 0; 
  z-index: 10;
  transition: border-color 0.3s ease;
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 24px 0;
  gap: 20px;
}
.logo { 
  font-weight: 800; 
  font-size: 20px;
  color: var(--text); 
  text-decoration: none; 
  letter-spacing: -0.5px;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.7 }

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================
   Navigation
   ========================================== */
.nav-list { 
  list-style: none; 
  display: flex; 
  gap: 32px; 
  margin: 0; 
  padding: 0;
}
.nav a { 
  color: var(--muted); 
  text-decoration: none; 
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.2s ease;
}
.nav a:hover { color: var(--text) }
.nav a:hover::after { width: 100% }
.nav a:focus { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: 4px; cursor: pointer; color: var(--text); font-size: 14px }

.language-selector {
  position: relative;
  display: inline-block;
}
.language-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.language-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
.language-btn svg path {
  fill: var(--text);
}
.language-btn:hover {
  background: var(--card);
}
.language-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.language-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 100;
  padding: 4px 0;
}
.language-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 8px;
}
.language-selector:hover .language-dropdown,
.language-dropdown:hover {
  display: block;
}
.language-option {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.language-option:last-child {
  border-bottom: none;
}
.language-option:hover {
  background: var(--bg);
  color: var(--text);
}
.language-option.active {
  color: var(--accent);
  font-weight: 600;
}

.theme-toggle { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  background: var(--bg); 
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.theme-toggle svg path {
  fill: var(--text);
}
.theme-toggle:hover { background: var(--card); border-color: var(--muted); transform: scale(1.08) }
.theme-toggle:focus { outline: 2px solid var(--accent); outline-offset: 4px }

main {
  flex: 1;
}

/* ==========================================
   Hero
   ========================================== */
.hero { 
  padding: 180px 0 160px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1 }
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero h1 { 
  font-size: clamp(44px, 7vw, 76px); 
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--accent);
}
.subhead { 
  color: var(--muted); 
  font-size: clamp(17px, 2.5vw, 22px); 
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row { 
  display: flex; 
  gap: 16px; 
  justify-content: center;
  flex-wrap: wrap;
}
.btn { 
  display: inline-block; 
  padding: 14px 28px; 
  border-radius: 4px; 
  text-decoration: none; 
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { 
  background: var(--accent); 
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover { 
  background: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-secondary { 
  border: 2px solid var(--border); 
  background: transparent; 
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn:focus { outline: 2px solid var(--accent); outline-offset: 4px }

/* ==========================================
   Section Titles (shared)
   ========================================== */
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-align: center;
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ==========================================
   Brand Statement
   ========================================== */
.brand-statement {
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand-text {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto;
}
.brand-text + .brand-text {
  margin-top: 12px;
}

/* ==========================================
   Brands Section
   ========================================== */
.brands {
  padding: 100px 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
  transition: all 0.3s ease;
}
.brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.brand-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.brand-tagline {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.brand-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 34ch;
}
.brand-card .btn {
  width: 100%;
  text-align: center;
}

/* ==========================================
   Expertise / Pillars
   ========================================== */
.expertise {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.expertise-item {
  padding: 40px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: left;
}
.expertise-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.expertise-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  /* Green filter: maps black (#000) to #43B02A */
  filter: invert(55%) sepia(75%) saturate(500%) hue-rotate(75deg) brightness(95%);
}

[data-theme="dark"] .expertise-icon {
  /* Same green on dark - start from white (invert first) */
  filter: invert(55%) sepia(75%) saturate(500%) hue-rotate(75deg) brightness(95%);
}
.expertise-item h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: var(--text);
}
.expertise-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

/* ==========================================
   Highlight / Quote
   ========================================== */
.highlight { 
  padding: 80px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote { 
  font-style: normal; 
  color: var(--text); 
  text-align: center;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================
   Philosophy
   ========================================== */
.philosophy {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.philosophy-quote {
  font-style: normal;
  text-align: center;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.4;
  max-width: 800px;
  margin: 24px auto 32px;
  color: var(--text);
}

.philosophy-quote p {
  margin: 0;
}

.philosophy-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
  padding: 100px 0;
  max-width: 700px;
  margin: 0 auto;
}
.about h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.about p {
  max-width: 65ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
  padding: 100px 0;
  max-width: 700px;
  margin: 0 auto;
}
.contact h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  font-size: 16px;
  color: var(--muted);
}
.contact-list span {
  font-weight: 600;
}
.contact-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.contact-list a:hover {
  opacity: 0.7;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 60px 0 40px;
  background: var(--card);
}
.footer-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 20px; 
  flex-wrap: wrap;
}
.footer-inner small {
  color: var(--muted);
  font-size: 14px;
}
.footer-links { 
  list-style: none; 
  display: flex; 
  gap: 24px; 
  margin: 0; 
  padding: 0;
}
.footer-links a { 
  color: var(--muted); 
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--text);
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}

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

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: var(--accent);
  color: white;
}

.cookie-consent__btn--accept:hover {
  opacity: 0.9;
}

.cookie-consent__btn--deny {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-consent__btn--deny:hover {
  background: var(--bg);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px !important;
  }
  .header-inner {
    padding: 16px 0;
  }
  .nav-toggle { display: block }
  .nav-list { display: none }
  .nav[data-open="true"] .nav-list { 
    display: flex; 
    flex-direction: column; 
    background: var(--card); 
    position: absolute; 
    top: 70px; 
    right: 24px; 
    padding: 16px; 
    border-radius: 4px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    gap: 16px;
  }
  .hero { padding: 100px 0 80px }
  .hero h1 { font-size: 34px; letter-spacing: -1.5px }
  .hero-label { font-size: 11px; margin-bottom: 20px }
  .brand-statement { padding: 60px 0 }
  .brand-text { font-size: 17px }
  .brands { padding: 60px 0 }
  .brand-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px }
  .brand-card { padding: 28px 24px }
  .expertise { padding: 60px 0 }
  .expertise-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px }
  .expertise-item { padding: 28px 24px }
  .highlight { padding: 60px 0 }
  .philosophy { padding: 60px 0 }
  .philosophy-quote { font-size: 20px }
  .about, .contact { padding: 60px 0 }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-consent__buttons {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent__btn {
    width: 100%;
    text-align: center;
  }
}
