/* ── Dark trustworthy tokens ──────────────────────────────── */
:root {
  --surface: #1c1a18;
  --surface-raised: #242220;
  --surface-card: #2a2825;
  --surface-hover: #32302c;
  --cream: #2a2825;
  --cream-dark: #242220;
  --cream-warm: #1c1a18;
  --walnut: #121110;
  --walnut-soft: #1c1a18;
  --walnut-mid: #2e2c28;
  --walnut-rich: #181614;
  --accent: #c4b49a;
  --accent-deep: #a6967e;
  --accent-light: #ddd0bc;
  --accent-soft: #ebe2d4;
  --accent-bright: #f0e6d6;
  --accent-faint: rgba(196, 180, 154, 0.15);
  --accent-ring: rgba(196, 180, 154, 0.28);
  --sage: #5d7268;
  --sage-light: #849b8f;
  --sage-muted: #6d8278;
  --concrete: #8a8580;
  --concrete-light: #a8a39c;
  --text-dark: #ece9e4;
  --text-body: #c4bfb6;
  --text-muted: #948f86;
  --text-subtle: #6e6962;
  --text-light: #f2efea;
  --text-light-muted: #b5afa6;
  --text-light-soft: #d4cec5;
  --border: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.11);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 10px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.42);
  --shadow-float: 0 16px 44px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-logo: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --gold: #c4a574;
  --gold-light: #dcc99a;
  --gold-deep: #9a7d4a;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: min(1160px, 92vw);
  --header-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(196, 180, 154, 0.05), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--walnut) 100%);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
em { font-style: italic; }

.container { width: var(--container); margin-inline: auto; }

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(196, 165, 116, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 165, 116, 0.18);
}

.accent { color: var(--accent-bright); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section-label::before {
  content: attr(data-label) " — ";
  color: var(--text-subtle);
}

.section-label--light { color: var(--gold-light); }
.section-label--light::before { color: var(--text-light-soft); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

.section-head {
  max-width: 34rem;
  margin-bottom: 3rem;
}

.section-head--center {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--walnut);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(221, 208, 188, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(196, 180, 154, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-full { width: 100%; }

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s, transform 0.2s;
}

.link-arrow:hover {
  color: var(--accent-bright);
  transform: translateX(4px);
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(28, 26, 24, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-medium);
}

.site-header.scrolled .nav-links a { color: var(--text-light-muted); }
.site-header.scrolled .nav-links a:hover { color: var(--gold-light); }
.site-header.scrolled .nav-toggle span { background: var(--text-dark); }
.site-header.scrolled .logo-emblem,
.site-header.scrolled .logo-brand { color: var(--gold-deep); }

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  position: relative;
  z-index: 12;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.88; }

.logo-emblem {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  color: var(--gold-light);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
  transition: color 0.3s, transform 0.25s;
}

.logo:hover .logo-emblem { transform: scale(1.03); }

.logo-brand {
  font-family: var(--font-logo);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.3s;
  white-space: nowrap;
  padding-top: 0.15rem;
}

.logo-footer .logo-emblem {
  width: 50px;
  height: 50px;
}

.logo-footer .logo-brand {
  font-size: 1.05rem;
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 0.95vw, 1.35rem);
  list-style: none;
  margin: 0;
  min-width: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  font-size: clamp(0.62rem, 0.72vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 0.5rem 0.95rem !important;
  font-size: clamp(0.6rem, 0.68vw, 0.72rem) !important;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%) !important;
  color: var(--walnut) !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%) !important;
}

.nav-cta--bar {
  display: none;
  align-items: center;
  text-decoration: none;
}

@media (min-width: 641px) {
  .nav-cta--bar { display: inline-flex; }
  .nav-links .nav-cta-item { display: none !important; }
}

@media (max-width: 640px) {
  .nav-cta--bar { display: none !important; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}

/* ── Language switcher ─────────────────────────────────────── */
.lang-switcher {
  position: relative;
  z-index: 13;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 196, 168, 0.45);
  color: var(--gold-light);
}

.lang-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--surface-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.lang-menu.open { display: block; }

.lang-menu li { margin: 0; }

.lang-menu button {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  background: transparent;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-menu button:hover,
.lang-menu button.is-active {
  background: rgba(212, 196, 168, 0.14);
  color: var(--gold-deep);
}

.site-header.scrolled .lang-toggle {
  border-color: var(--border-medium);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light-muted);
}

.site-header.scrolled .lang-toggle:hover,
.site-header.scrolled .lang-toggle[aria-expanded="true"] {
  color: var(--gold-deep);
  border-color: rgba(212, 196, 168, 0.45);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28, 24, 20, 0.94) 0%, rgba(42, 36, 31, 0.52) 48%, rgba(50, 43, 37, 0.32) 100%),
    linear-gradient(to right, rgba(28, 24, 20, 0.68) 0%, transparent 62%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  padding-block: 5rem 4rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-light-soft);
  max-width: 34rem;
  margin: 1.25rem 0 2rem;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.hero-lead strong { color: var(--text-light); }

.hero-content h1 {
  color: var(--text-light);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-card {
  background: rgba(42, 40, 37, 0.88);
  backdrop-filter: blur(12px);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-medium);
  transition: transform 0.25s;
}

.float-card:hover { transform: translateX(-6px); }

.float-card--accent {
  background: linear-gradient(145deg, var(--accent-deep) 0%, #8a7a66 100%);
  color: var(--text-light);
  border-color: rgba(221, 208, 188, 0.3);
}

.float-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
}

.float-card--accent .float-card-num { color: #fff; }

.float-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 0.3rem;
}

.float-card--accent .float-card-label { color: rgba(255, 255, 255, 0.8); }

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  background:
    linear-gradient(180deg, var(--walnut-rich) 0%, var(--walnut-soft) 100%);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  color: var(--gold-light);
  font-size: 0.7rem;
}

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-light-soft);
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 6rem 0; }

/* About */
.about {
  background:
    linear-gradient(180deg, var(--surface-raised) 0%, var(--surface) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card--main {
  width: 75%;
  height: 340px;
}

.img-card--offset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 220px;
  border: 4px solid var(--surface);
}

.about-copy p {
  color: var(--text-body);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

/* Leadership spotlight */
.spotlight {
  background:
    linear-gradient(160deg, var(--walnut-soft) 0%, var(--walnut-rich) 100%);
  padding: 5.5rem 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-visual {
  position: relative;
  overflow: hidden;
}

.spotlight-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-quote {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  right: 2rem;
  padding: 1.35rem 1.5rem;
  background: rgba(42, 40, 37, 0.95);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-md);
}

.spotlight-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light-soft);
  line-height: 1.55;
}

.spotlight-copy .section-label--light { color: var(--gold); }
.spotlight-copy .section-label--light::before { color: var(--text-light-muted); }

.spotlight-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.spotlight-copy h2 {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.spotlight-intro {
  color: var(--text-light-soft);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.spotlight-vision {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.spotlight-vision h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.spotlight-vision p {
  font-size: 0.98rem;
  color: var(--concrete-light);
  line-height: 1.65;
}

.spotlight-points {
  list-style: none;
}

.spotlight-points li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-light-soft);
}

.spotlight-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Plant recovery insight */
.plant-insight {
  background:
    linear-gradient(135deg, rgba(196, 180, 154, 0.08) 0%, transparent 58%),
    linear-gradient(180deg, var(--surface-raised) 0%, var(--surface) 100%);
  border-block: 1px solid var(--border-medium);
  padding: 6rem 0;
}

.plant-insight-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.plant-insight-copy h2 {
  margin-bottom: 1.1rem;
  max-width: 22ch;
  color: var(--text-light);
}

.plant-insight-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 38rem;
}

.plant-steps {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.plant-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.plant-step:hover {
  border-color: rgba(196, 180, 154, 0.35);
  box-shadow: var(--shadow-sm);
}

.plant-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-light);
  background: var(--accent-faint);
  border: 1px solid rgba(196, 180, 154, 0.22);
}

.plant-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text-light);
}

.plant-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.plant-insight-visual {
  position: relative;
  overflow: hidden;
}

.plant-insight-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.plant-insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plant-insight-callout {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  right: 2rem;
  padding: 1.2rem 1.35rem;
  background: var(--walnut-soft);
  border-left: 3px solid var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-md);
}

.plant-insight-callout strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.plant-insight-callout span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.plant-insight--ewaste {
  background:
    linear-gradient(135deg, rgba(90, 111, 82, 0.16) 0%, transparent 58%),
    linear-gradient(160deg, var(--walnut-soft) 0%, var(--walnut-rich) 100%);
  border-block-color: var(--border-light);
}

.plant-insight--ewaste .section-label--light { color: var(--sage-light); }
.plant-insight--ewaste .section-label--light::before { color: var(--text-light-muted); }

.plant-insight--ewaste .plant-insight-copy h2 {
  color: var(--text-light);
  max-width: 24ch;
}

.plant-insight--ewaste .plant-insight-lead { color: var(--text-light-muted); }

.plant-insight--ewaste .plant-step {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-light);
}

.plant-insight--ewaste .plant-step:hover {
  border-color: rgba(122, 148, 112, 0.45);
  box-shadow: var(--shadow-sm);
}

.plant-insight--ewaste .plant-step-num {
  color: var(--sage-light);
  background: rgba(93, 115, 84, 0.16);
  border-color: rgba(93, 115, 84, 0.35);
}

.plant-insight--ewaste .plant-step h3 { color: var(--text-light); }
.plant-insight--ewaste .plant-step p { color: var(--text-light-muted); }

.plant-insight-callout--light {
  left: auto;
  right: -1.25rem;
  background: rgba(42, 40, 37, 0.95);
  border-left: none;
  border-right: 3px solid var(--sage-light);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.plant-insight-callout--light strong { color: var(--text-light); }
.plant-insight-callout--light span { color: var(--text-light-muted); }

.plant-insight-grid--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

/* Buy & Sell */
.trade {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--walnut-soft) 100%);
}

.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.trade-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.trade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trade-card-img {
  height: 220px;
  overflow: hidden;
}

.trade-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.trade-card:hover .trade-card-img img { transform: scale(1.05); }

.trade-card-body { padding: 1.75rem; }

.trade-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(93, 115, 84, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.trade-tag--sell {
  color: var(--accent-light);
  background: var(--accent-faint);
}

.trade-card h3 { color: var(--text-light); }

.trade-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
  line-height: 1.65;
}

/* Materials showcase */
.materials {
  background:
    linear-gradient(180deg, var(--surface-raised) 0%, var(--surface) 100%);
}

.materials .section-head { margin-bottom: 2.5rem; }

.materials-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.materials-stage {
  position: relative;
  width: min(1320px, 100%);
  margin-inline: auto;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  max-height: min(68vh, 620px);
  background: var(--walnut);
}

.materials-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 8s ease;
}

.materials-stage.is-fading img { opacity: 0.15; }

.materials-stage:hover img { transform: scale(1.03); }

.materials-stage figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(30, 26, 22, 0.88) 0%, rgba(30, 26, 22, 0.35) 55%, transparent 100%);
}

.materials-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.materials-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.materials-thumb:hover {
  border-color: rgba(196, 180, 154, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.materials-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.materials-thumb span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

.materials-thumb.active span { color: var(--accent-light); }

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
  justify-content: center;
}

.material-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-card);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-medium);
}

/* Services */
.services {
  background:
    linear-gradient(165deg, var(--walnut-rich) 0%, var(--walnut-soft) 100%);
}

.services .section-head h2,
.services .section-head .section-label { color: var(--text-light); }
.services .section-head .section-label::before { color: var(--text-light-muted); }
.services .section-head p { color: var(--text-light-muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-float);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 1.5rem 1.6rem 1.65rem; }

.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  opacity: 0.85;
  margin-bottom: 0.65rem;
}

.service-card h3 {
  color: var(--text-light);
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.65;
}

.service-details {
  list-style: none;
  margin-top: 0.9rem;
  padding: 0;
}

.service-details li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.service-details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 600;
}

/* Global / Reach */
.global {
  background:
    linear-gradient(155deg, var(--walnut-soft) 0%, var(--walnut) 100%);
  padding: 6.5rem 0;
  overflow: hidden;
}

.global-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.global-visual {
  position: relative;
  min-height: 420px;
}

.global-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.global-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.global-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(30, 26, 22, 0.85), transparent);
}

.global-photo--main {
  width: 86%;
  aspect-ratio: 4 / 3;
}

.global-photo--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  border: 4px solid var(--walnut-soft);
  aspect-ratio: 4 / 3;
}

.global-content h2 { color: var(--text-light); }

.global-content > p {
  color: var(--text-light-muted);
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.reach-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.reach-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  transition: background 0.25s;
}

.reach-card:hover { background: rgba(255, 255, 255, 0.07); }

.reach-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(196, 165, 116, 0.14);
  border: 1px solid rgba(196, 165, 116, 0.28);
}

.reach-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.reach-card > div > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.reach-card p {
  font-size: 0.84rem;
  color: var(--text-light-muted);
  line-height: 1.55;
}

.reach-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.reach-regions span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 165, 116, 0.35);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--walnut-soft) 100%);
}

.contact-eyebrow {
  margin-bottom: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  --contact-field-gap: 1rem;
}

.contact-intro {
  margin-bottom: 1.75rem;
}

.contact-intro > p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.contact-details {
  display: grid;
  gap: var(--contact-field-gap);
}

.detail-card {
  background: var(--surface-card);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.detail-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.detail-card span,
.detail-card a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.detail-card a:hover { color: var(--accent-light); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--contact-field-gap);
  padding: 1.75rem;
  background: var(--surface-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--contact-field-gap);
}

.form-row--split {
  align-items: start;
  grid-template-columns: 1fr;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.contact-form .field-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  color: var(--text-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.contact-form textarea { resize: vertical; min-height: 96px; }

.phone-group { min-width: 0; }

.phone-field {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.phone-country-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: stretch;
  min-width: 0;
}


.phone-country-search {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.7rem 0.85rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  color: var(--text-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-country-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.phone-country {
  min-width: 0;
  cursor: pointer;
}

.phone-number-wrap {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.phone-dial {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 0.7rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-medium);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--accent-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.phone-number {
  flex: 1;
  min-width: 0;
  border-radius: 0 8px 8px 0 !important;
}

.phone-number-wrap:focus-within .phone-dial {
  border-color: var(--accent);
}

.phone-number-wrap:focus-within .phone-number {
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.phone-hint {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-subtle);
  line-height: 1.4;
}

.phone-number.is-invalid {
  border-color: #c96a6a !important;
}

.form-note.error { color: #d48484; }

.form-note {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2rem;
}

.form-note.success { color: var(--sage-muted); }

/* Footer */
.site-footer {
  background:
    linear-gradient(180deg, var(--walnut) 0%, #14110e 100%);
  padding: 3rem 0;
  color: var(--text-light-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
}

.footer-grid .logo-emblem,
.footer-grid .logo-brand { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-light-muted);
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-light); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .float-card { flex: 1; min-width: 140px; }
  .about-grid,
  .spotlight-grid,
  .plant-insight-grid,
  .trade-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .contact-form { margin-top: 0; }

  .plant-insight-copy h2 { max-width: none; }

  .plant-insight-callout,
  .plant-insight-callout--light {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
    border-left: 3px solid var(--accent-light);
    border-right: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .plant-insight-callout--light {
    border-left: none;
    border-right: 3px solid var(--sage-light);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }

  .plant-insight-img { aspect-ratio: 16 / 10; }

  .spotlight-quote {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: auto;
    align-items: stretch;
  }

  .img-card--main {
    width: 100%;
    height: auto;
    min-height: 220px;
  }

  .img-card--offset {
    position: static;
    width: 100%;
    height: auto;
    min-height: 180px;
    border: none;
    align-self: end;
  }

  .materials-picker { grid-template-columns: repeat(3, 1fr); }
  .materials-stage {
    width: 100%;
    max-height: min(56vh, 480px);
  }
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .global-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .global-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: auto;
    align-items: stretch;
  }

  .global-photo--main,
  .global-photo--accent {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
  .logo-brand {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .logo-emblem { width: 46px; height: 46px; }

  .logo-footer .logo-emblem { width: 42px; height: 42px; }
  .logo-footer .logo-brand { font-size: 0.82rem; }
}

@media (max-width: 640px) {
  :root { --container: min(1160px, calc(100% - 2rem)); }

  .nav {
    gap: 0.75rem;
    padding-block: 0.55rem;
  }

  .nav-end {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0;
  }

  .nav-toggle { display: flex; }

  .lang-menu {
    right: 0;
    left: auto;
    min-width: 10rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0;
    background: var(--surface-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    transform: translateY(8px);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 110;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--text-body) !important;
    white-space: normal;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 6.5rem);
  }

  .logo-emblem {
    width: 42px;
    height: 42px;
  }

  .logo-brand {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
  }

  .hero-media img {
    object-position: center 32%;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(28, 24, 20, 0.96) 0%, rgba(42, 36, 31, 0.72) 52%, rgba(50, 43, 37, 0.42) 100%),
      linear-gradient(to right, rgba(28, 24, 20, 0.55) 0%, transparent 72%);
  }

  .hero-inner {
    padding-block: 2.25rem 2rem;
    gap: 1.25rem;
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 7.8vw, 2.2rem);
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-cards {
    flex-direction: column;
  }

  .float-card {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .float-card:hover { transform: none; }

  .about-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }

  .img-card--main,
  .img-card--offset {
    width: 100%;
    height: auto;
    min-height: 210px;
    aspect-ratio: 16 / 10;
  }

  .img-card--offset {
    position: static;
    border: none;
  }

  .spotlight-img {
    aspect-ratio: 16 / 10;
  }

  .spotlight-quote {
    position: static;
    margin-top: 1rem;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
  }

  .plant-insight-img {
    aspect-ratio: 16 / 10;
  }

  .trade-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .trade-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .materials-picker {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .materials-thumb {
    flex: 0 0 auto;
    width: min(72vw, 220px);
    scroll-snap-align: start;
  }

  .materials-stage {
    width: 100%;
    border-radius: var(--radius-sm);
    max-height: 48vh;
    aspect-ratio: 16 / 10;
  }

  .materials-stage img {
    object-position: center 40%;
  }

  .trust-grid { grid-template-columns: 1fr; }

  .global-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }

  .global-photo--main,
  .global-photo--accent {
    position: static;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: none;
  }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { margin-top: 0; }

  .phone-country-picker { grid-template-columns: 1fr; }

  .phone-country { max-height: 9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .section { padding: 4.25rem 0; }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
  }
}

@media (min-width: 1200px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.76rem; }
}

@media (max-width: 1400px) and (min-width: 641px) {
  .logo-emblem { width: 50px; height: 50px; }
  .logo-brand { font-size: 1rem; letter-spacing: 0.24em; }
  .nav-links { gap: 0.65rem; }
  .nav-links a { font-size: 0.64rem; }
  .nav-cta { padding: 0.42rem 0.7rem !important; font-size: 0.62rem !important; }
  .lang-toggle { padding: 0.4rem 0.65rem; font-size: 0.68rem; }
}
