/* ============================================================
   SUBACO INTERNATIONAL — Suriname, in print
   Editorial redesign · single source of styles
   ============================================================ */

:root {
  /* Paper & ink */
  --paper:        #f4ede0;
  --paper-warm:   #ebe1cc;
  --paper-deep:   #e3d6b8;
  --ink:          #14241a;
  --ink-soft:     #2b3a30;
  --ink-mute:     #5a6258;

  /* Suriname palette */
  --canopy:       #1c3b2a;
  --canopy-deep:  #112418;
  --canopy-leaf:  #2a5a3f;
  --bamboo:       #c8a26a;
  --bamboo-deep:  #a07f49;
  --brick:        #a04830;
  --moss:         #6b7a4a;

  /* Tokens */
  --rule:         color-mix(in oklab, var(--ink) 18%, transparent);
  --rule-strong:  color-mix(in oklab, var(--ink) 38%, transparent);
  --hairline:     1px solid var(--rule);

  /* Type */
  --serif:        "Instrument Serif", "Newsreader", Georgia, serif;
  --sans:         "Geist", "DM Sans", system-ui, sans-serif;
  --mono:         "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --gutter:       clamp(20px, 4vw, 56px);
  --max:          1920px;
  --max-text:     720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper grain — tropical, like uncoated stock */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.13  0 0 0 0 0.1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */

.display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 8.4vw, 128px); line-height: 0.94; margin: 0; }
h2 { font-size: clamp(44px, 6.5vw, 100px); line-height: 0.98; margin: 0; }
h3 { font-size: clamp(26px, 3vw, 42px);    line-height: 1.1;  margin: 0; }

.italic, em, i { font-style: italic; }
.lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: var(--max-text);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

p { margin: 0 0 1em; max-width: 64ch; }
p.lead { font-size: 19px; line-height: 1.55; max-width: 60ch; color: var(--ink-soft); }

::selection { background: var(--canopy); color: var(--paper); }

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(64px, 7.5vw, 130px) 0;
  position: relative;
}
.section--dense { padding: clamp(44px, 5vw, 80px) 0; }
.section--tight { padding: clamp(32px, 3.5vw, 60px) 0; }

.section--dark {
  background: var(--canopy);
  color: var(--paper);
}
.section--dark .eyebrow,
.section--dark .kicker,
.section--dark .lede,
.section--dark p { color: color-mix(in oklab, var(--paper) 80%, transparent); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }

.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .eyebrow, .section--ink p { color: color-mix(in oklab, var(--paper) 78%, transparent); }

.section--gold {
  background: var(--bamboo);
  color: var(--canopy-deep);
}
.section--gold h1, .section--gold h2, .section--gold h3 { color: var(--canopy-deep); }
.section--gold .eyebrow { color: color-mix(in oklab, var(--canopy-deep) 70%, transparent); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-head--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; }
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.section--dark .rule, .section--ink .rule {
  background: color-mix(in oklab, var(--paper) 22%, transparent);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 13px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translate(3px, -1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--canopy); }
.btn--ghost {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--ink);
}
.btn--ghost:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover { background: #fff; }
.btn--gold {
  background: var(--bamboo);
  color: var(--canopy-deep);
}
.btn--gold:hover { background: color-mix(in oklab, var(--bamboo) 88%, white); }
.btn--ghost-light {
  background: transparent;
  border-color: color-mix(in oklab, var(--paper) 40%, transparent);
  color: var(--paper);
}
.btn--ghost-light:hover { background: color-mix(in oklab, var(--paper) 12%, transparent); }

/* ---------- Image placeholders ---------- */

.ph {
  position: relative;
  display: block;
  width: 100%;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--canopy) 8%, var(--paper-warm)) 0 14px,
      color-mix(in oklab, var(--canopy) 12%, var(--paper-warm)) 14px 28px);
  color: var(--canopy);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px;
  text-align: center;
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--paper) 8%, var(--canopy-deep)) 0 14px,
      color-mix(in oklab, var(--paper) 12%, var(--canopy-deep)) 14px 28px);
  color: var(--paper);
}

.frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  isolation: isolate;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame--tint::after {
  content: "";
  position: absolute; inset: 0;
  background: color-mix(in oklab, var(--canopy) 22%, transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.frame--warm::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 40%,
    color-mix(in oklab, var(--canopy-deep) 50%, transparent));
  pointer-events: none;
}

.caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section--dark .caption, .section--ink .caption {
  color: color-mix(in oklab, var(--paper) 65%, transparent);
}

/* ---------- Reusable hairlines & marks ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 5px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tag .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--canopy-leaf);
}
.tag--gold .dot { background: var(--bamboo); }
.tag--brick .dot { background: var(--brick); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.nav__brand .mark {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
}
.nav__brand--logo { padding: 0; }
.nav__brand--logo img {
  display: block;
  height: 128px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
  margin: -8px 0;
}
@media (max-width: 900px) {
  .nav__brand--logo img { height: 88px; max-width: 360px; }
}
@media (max-width: 600px) {
  .nav__brand--logo img { height: 64px; max-width: 280px; margin: -4px 0; }
}

/* Wordmark variant — used in nav now that logo lives in footer */
.nav__brand--wordmark{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  padding: 4px 0;
}
.nav__brand-mark{
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ink);
  font-weight: 400;
}
.nav__brand-sub{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 4px;
}
@media (max-width: 720px){
  .nav__brand-sub{ display: none; }
}
.nav__menu {
  display: flex;
  gap: 6px;
  justify-self: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__menu a {
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.nav__menu a:hover { background: color-mix(in oklab, var(--ink) 8%, transparent); }
.nav__menu .num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
}
.nav__cta { display: flex; gap: 10px; }
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(40px, 6vw, 90px) 0 0;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 120px);
}
.hero__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) {
  .hero__head { grid-template-columns: 1fr; }
}
.hero__h1 {
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.hero__h1 em {
  color: var(--canopy);
  font-style: italic;
}
.hero__h1 .gold { color: var(--bamboo-deep); font-style: italic; }
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 12px;
}
.hero__meta p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  height: clamp(360px, 56vw, 720px);
  border-radius: 0;
  overflow: hidden;
  background: var(--canopy-deep);
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Anchor to top of source so subject's head is preserved on wider viewports */
  object-position: 50% 12%;
  display: block;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, color-mix(in oklab, var(--canopy-deep) 70%, transparent));
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  color: var(--paper);
  z-index: 2;
}
.hero__overlay .quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  max-width: 28ch;
  line-height: 1.25;
}
.hero__overlay .stamp {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.85;
  line-height: 1.6;
}

/* Stat strip below hero */
.statstrip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statstrip__cell {
  padding: 28px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.statstrip__cell:last-child { border-right: 0; }
.statstrip__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--canopy);
  letter-spacing: -0.02em;
}
.statstrip__num .u {
  font-size: 0.4em;
  margin-left: 4px;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.statstrip__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 30ch;
}
@media (max-width: 800px) {
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .statstrip__cell:nth-child(2) { border-right: 0; }
  .statstrip__cell:nth-child(1), .statstrip__cell:nth-child(2) {
    border-bottom: 1px solid var(--rule);
  }
}

/* ============================================================
   STORY
   ============================================================ */

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }

.story__col p {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: none;
}
.story__col p + p { margin-top: 1.1em; }
.story__col p strong {
  color: var(--ink);
  font-weight: 600;
}

.story__pull {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  color: var(--canopy);
  font-style: italic;
  border-left: 1px solid var(--canopy);
  padding-left: 24px;
  margin: 32px 0 0;
}

.story__media {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  height: 100%;
}
.story__media .frame {
  aspect-ratio: auto;
  flex: 1;
  min-height: 420px;
}
.story__media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */

.leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 900px) { .leaders { grid-template-columns: 1fr; } }

.leader {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
}
.leader > div:last-child {
  /* Bio + creds column: stack as a flex column so we can lock heights */
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leader__bio {
  /* Reserve 5 lines so both founder bios share the same y baseline before
     the credentials list (Joy's bio is shorter than Femia's) */
  min-height: calc(5 * 1.55em);
  margin: 0;
}
.leader__creds--plain li{
  /* Reserve 2 lines so bullets across both columns share the same row height */
  min-height: calc(2 * 1.55em);
}
.leader__portrait {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
}
.leader__hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  /* Lock header height — Femia has MSC · PHD CANDIDATE sub-line which
     would otherwise make her header taller than Joy's and push her
     bullets down relative to Joy's. Both headers now share one height. */
  min-height: 132px;
}
.leader__name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.leader__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  flex-shrink: 0;
  line-height: 1.6;
}
.leader__bio {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.leader__creds {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.leader__creds li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.5;
}
.leader__creds .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

/* ============================================================
   COMPARISON (Why Surinamese Bamboo)
   ============================================================ */

.compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; } }

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare__table th,
.compare__table td {
  text-align: left;
  padding: 18px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare__table thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  border-bottom: 1px solid var(--ink);
}
.compare__table tbody th {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  width: 28%;
}
.compare__table .num {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.compare__table .num .u {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  margin-left: 4px;
  letter-spacing: 0;
}
.compare__table .winner { color: var(--canopy); }
.compare__table .other  { color: var(--ink-soft); }

.bar {
  display: block;
  margin-top: 8px;
  height: 4px;
  border-radius: 2px;
  background: color-mix(in oklab, var(--ink) 10%, transparent);
  overflow: hidden;
  max-width: 220px;
}
.bar > span {
  display: block;
  height: 100%;
  background: var(--canopy);
}
.bar--other > span { background: var(--bamboo-deep); }

/* ============================================================
   ADVANTAGES (4 cards)
   ============================================================ */

.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .advantages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .advantages { grid-template-columns: 1fr; } }

.advantage {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.advantage__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.advantage__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.advantage__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: auto;
}

/* ============================================================
   WHY BAMBOO + WHY SURINAME (two columns)
   ============================================================ */

.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .dual { grid-template-columns: 1fr; } }

.dual__col h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.dual__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.dual__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.dual__list .glyph {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  padding-top: 6px;
}
.dual__list h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.dual__list p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
/* On dark sections — bump body description to a readable contrast */
.section--dark .dual__list p,
.section--ink .dual__list p{
  color: color-mix(in oklab, var(--paper) 88%, transparent);
}
.section--dark .dual__list h4,
.section--ink .dual__list h4{
  color: var(--paper);
}
.section--dark .dual__list .glyph,
.section--ink .dual__list .glyph{
  color: color-mix(in oklab, var(--paper) 65%, transparent);
}
.section--dark .dual__col h3,
.section--ink .dual__col h3{
  color: var(--paper);
  border-bottom-color: color-mix(in oklab, var(--paper) 18%, transparent);
}

/* ============================================================
   WHY BAMBOO / WHY SURINAME — bamboo grove background variant
   ============================================================ */
.section--bamboo-grove{
  position: relative;
  isolation: isolate;
  background: var(--canopy);
  overflow: hidden;
}
.section--bamboo-grove::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("assets/why-bamboo-grove.jpeg") center / cover no-repeat;
  /* Lighten the photo so it reads as a soft scene rather than a busy backdrop */
  filter: brightness(0.55) saturate(0.85);
}
.section--bamboo-grove::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Multi-stop wash: keep enough darkness that the white type stays legible
     while letting the bamboo image hint through */
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--canopy-deep) 78%, transparent) 0%,
      color-mix(in oklab, var(--canopy-deep) 60%, transparent) 35%,
      color-mix(in oklab, var(--canopy-deep) 60%, transparent) 65%,
      color-mix(in oklab, var(--canopy-deep) 78%, transparent) 100%),
    radial-gradient(80% 60% at 50% 50%,
      transparent 0%,
      color-mix(in oklab, var(--canopy-deep) 35%, transparent) 100%);
  pointer-events: none;
}
/* Slight backdrop bump on cards/dual list items so descriptions stay crisp */
.section--bamboo-grove .dual__list li{
  position: relative;
}
.section--bamboo-grove .dual__list p{
  color: color-mix(in oklab, var(--paper) 94%, transparent);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.section--bamboo-grove .dual__list h4{
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.section--bamboo-grove h2,
.section--bamboo-grove .dual__col h3,
.section--bamboo-grove .lede{
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

/* ============================================================
   PRODUCTS — What We Build
   ============================================================ */

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 1100px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .products { grid-template-columns: 1fr; } }

.product {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__media {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
}
.product__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-top: 1px solid color-mix(in oklab, var(--paper) 35%, transparent);
  padding-top: 16px;
}
.product__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  /* Reserve 2 lines so all 4 product titles align their list-start baseline */
  min-height: calc(2 * clamp(20px, 1.8vw, 26px) * 1.1);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.product__index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.product__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}
.product__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
}
.product__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--bamboo);
  margin-top: 8px;
}

/* Ecosystem flow */
.ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 25%, transparent);
}
.ecosystem__diagram {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: stretch;
}
@media (max-width: 900px) { .ecosystem__diagram { grid-template-columns: repeat(3, 1fr); } }

.eco-node {
  background: color-mix(in oklab, var(--paper) 8%, var(--canopy-deep));
  border: 1px solid color-mix(in oklab, var(--paper) 18%, transparent);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
}
.eco-node--root { background: var(--bamboo); color: var(--canopy-deep); }
.eco-node--root .eco-node__k { color: var(--canopy-deep); opacity: 0.7; }
.eco-node__k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.eco-node__t {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
}
.eco-node__d {
  font-size: 12px;
  line-height: 1.45;
  margin-top: auto;
  opacity: 0.8;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gallery-tab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.gallery-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
}
.gallery .tile {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}
.gallery .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Bias the crop toward the top so heads in landscape photos stay in frame */
  object-position: 50% 22%;
}

/* default tile spans */
.gallery .t1 { grid-column: span 4; grid-row: span 3; }
.gallery .t2 { grid-column: span 3; grid-row: span 2; }
.gallery .t3 { grid-column: span 2; grid-row: span 2; }
.gallery .t4 { grid-column: span 3; grid-row: span 3; }
.gallery .t5 { grid-column: span 5; grid-row: span 2; }
.gallery .t6 { grid-column: span 3; grid-row: span 2; }
.gallery .t7 { grid-column: span 4; grid-row: span 2; }
.gallery .t8 { grid-column: span 4; grid-row: span 2; }
.gallery .tile .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--canopy-deep) 65%, transparent));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery .tile:hover .meta { opacity: 1; }

/* ============================================================
   IMPACT — big numbers
   ============================================================ */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in oklab, var(--paper) 22%, transparent);
  border-top: 1px solid color-mix(in oklab, var(--paper) 22%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 22%, transparent);
}
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr; } }

.impact {
  background: var(--canopy);
  padding: clamp(40px, 4vw, 56px) clamp(24px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.impact__num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 168px);
  line-height: 0.9;
  color: var(--bamboo);
  letter-spacing: -0.03em;
}
.impact__num .u {
  font-size: 0.4em;
  color: var(--paper);
  margin-left: 6px;
  letter-spacing: 0;
}
.impact__num .plus {
  font-size: 0.5em;
  color: var(--paper);
  margin-left: 2px;
}
.impact__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.impact__copy {
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--paper) 84%, transparent);
  margin-top: auto;
  max-width: 30ch;
}

/* ============================================================
   INVESTMENT PATHWAYS
   ============================================================ */

.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.pathways--duo {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pathways { grid-template-columns: 1fr; }
  .pathways--duo { grid-template-columns: 1fr; }
}

.pathway {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 460px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pathway:hover { border-color: var(--ink); transform: translateY(-2px); }
.pathway__idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bamboo-deep);
}
.pathway__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pathway__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pathway__body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pathway__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pathway__visual {
  height: 120px;
  margin: -8px 0 4px;
}
.pathway__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.3;
  color: var(--bamboo);
  margin: 6px 0 0;
}
.pathway__tagline--ink {
  color: var(--canopy);
}

/* Pathway CTA button — visual button inside the clickable card */
.pathway__cta{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 9px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid currentColor;
  transition: background 0.18s ease, color 0.18s ease;
}
.pathway__cta--gold{
  color: var(--bamboo);
  border-color: color-mix(in oklab, var(--bamboo) 70%, transparent);
}
.pathway__cta--canopy{
  color: var(--canopy);
  border-color: color-mix(in oklab, var(--canopy) 40%, transparent);
}
.pathway:hover .pathway__cta--gold{
  background: var(--bamboo);
  color: var(--canopy-deep);
}
.pathway:hover .pathway__cta--canopy{
  background: var(--canopy);
  color: var(--paper);
  border-color: var(--canopy);
}
.pathway__cta-play,
.pathway__cta-mail{
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: color-mix(in oklab, currentColor 20%, transparent);
}
.pathway__cta-play svg{ margin-left: 1px; }
.pathway:hover .pathway__cta-play,
.pathway:hover .pathway__cta-mail{
  background: rgba(255,255,255,0.18);
}

/* ============================================================
   PARTNERS
   ============================================================ */

.partners {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1100px) { .partners { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .partners { grid-template-columns: repeat(2, 1fr); } }

.partner {
  background: var(--paper);
  height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
  transition: background 0.2s ease;
}
.partner:hover { background: color-mix(in oklab, var(--canopy) 6%, var(--paper)); }
.partner .pn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   TEAM
   ============================================================ */

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 3vw, 44px);
}
.member {
  flex: 0 0 calc((100% - 2 * clamp(28px, 3vw, 44px)) / 3);
  max-width: 360px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .member { flex: 0 0 calc((100% - clamp(28px, 3vw, 44px)) / 2); }
}
@media (max-width: 560px) {
  .member { flex: 0 0 100%; max-width: 100%; }
}

.member__photo {
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  margin-bottom: 16px;
}
.member__name {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.member__bio {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Credentials list — bulleted (replaces the bio paragraph) */
.member__creds{
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.member__creds li{
  position: relative;
  padding-left: 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.member__creds li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--canopy);
  border-radius: 2px;
}

/* Action pills — LinkedIn brand blue + neutral website */
.member__pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.member__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1;
  white-space: nowrap;
}
.member__pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.35);
}
.member__pill--linkedin{
  background: #0A66C2;
  color: #fff;
}
.member__pill--linkedin:hover{
  background: #084d92;
  color: #fff;
}
.member__pill-glyph{
  display: block;
  flex-shrink: 0;
}
.member__pill--site{
  background: var(--paper);
  color: var(--ink);
  border-color: color-mix(in oklab, var(--ink) 14%, transparent);
}
.member__pill--site:hover{
  background: var(--paper-warm);
  border-color: color-mix(in oklab, var(--canopy) 32%, transparent);
}
.member__pill-arrow{
  font-size: 11px;
  opacity: 0.6;
}
.member__links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.member__links a {
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}

/* LinkedIn embedded profile badge — DEPRECATED (replaced with pills) */

/* ============================================================
   MILESTONES
   ============================================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 1000px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .timeline { grid-template-columns: 1fr; } }

.milestone {
  padding: 36px clamp(20px, 2vw, 28px);
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.milestone:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .milestone:nth-child(2) { border-right: 0; }
  .milestone:nth-child(1), .milestone:nth-child(2) {
    border-bottom: 1px solid var(--rule);
  }
}
.milestone__step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo-deep);
  display: flex;
  justify-content: space-between;
}
.milestone__step .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--canopy);
}
.milestone__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.milestone__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: auto;
}

/* ============================================================
   COMPETITIVE EDGE — three reasons
   ============================================================ */

.edge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 900px) { .edge { grid-template-columns: 1fr; } }

.edge__card {
  border-top: 1px solid color-mix(in oklab, var(--paper) 28%, transparent);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
}
.edge__num {
  font-family: var(--serif);
  font-size: clamp(80px, 8vw, 128px);
  line-height: 0.9;
  color: var(--bamboo);
  letter-spacing: -0.02em;
}
.edge__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
}
.edge__body {
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  margin-top: auto;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) { .blog { grid-template-columns: 1fr; } }

.post {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post__cover {
  aspect-ratio: 3 / 2;
  background: var(--paper-warm);
}
.post__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.post__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.post__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.post__more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  max-width: 920px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item details > summary { list-style: none; }
.faq__item details > summary::-webkit-details-marker { display: none; }
.faq__item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}
.faq__item summary:hover { color: var(--canopy); }
.faq__item .qn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.faq__item .toggle {
  width: 20px; height: 20px;
  position: relative;
}
.faq__item .toggle::before,
.faq__item .toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
  transition: transform 0.2s ease;
}
.faq__item .toggle::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq__item .toggle::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq__item details[open] .toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item .answer {
  padding: 0 56px 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__item .answer ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
.faq__item .answer li + li { margin-top: 6px; }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: left;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background: var(--canopy-deep);
}
.final-cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, color-mix(in oklab, var(--bamboo) 22%, transparent), transparent 70%),
    radial-gradient(40% 60% at 10% 80%, color-mix(in oklab, var(--canopy-leaf) 40%, transparent), transparent 70%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  color: var(--paper);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 1.04;
  max-width: 16ch;
  margin-bottom: 64px;
}
.final-cta h2 em { color: var(--bamboo); }
.final-cta .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--paper-warm);
  color: var(--ink-soft);
  padding: clamp(60px, 6vw, 100px) 0 40px;
  font-size: 14.5px;
  border-top: 1px solid var(--rule);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
}
.footer a{ color: var(--ink-soft); }
.footer a:hover { color: var(--canopy); }
.footer__brand {
  font-family: var(--serif);
  font-size: 30px;color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer__brand em { color: var(--canopy); }

/* Big logo in footer — sits flat on cream */
.footer__logo{
  display: inline-block;
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 0;
  transition: transform 0.3s ease;
  box-shadow: none;
}
.footer__logo img{
  display: block;
  height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer__logo:hover{
  transform: translateY(-2px);
  box-shadow: none;
}
@media (max-width: 900px){
  .footer__logo{ padding: 0; }
  .footer__logo img{ height: 84px; }
}
@media (max-width: 560px){
  .footer__logo{ padding: 0; }
  .footer__logo img{ height: 64px; }
}
.footer__sub {
  font-size: 14.5px;
  max-width: 36ch;
  line-height: 1.55;
  color: var(--ink-soft);
}
.footer__news {
  display: flex;
  margin-top: 16px;
  border: 1px solid color-mix(in oklab, var(--canopy) 22%, transparent);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.footer__news input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 18px;
  color: var(--ink);
  font: inherit;
}
.footer__news input::placeholder { color: var(--ink-mute); }
.footer__news button {
  background: var(--canopy);
  color: var(--paper);
  border: 0;
  padding: 0 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.footer__news button:hover{ background: var(--canopy-deep); }
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__bottom-cr{ text-align: left; }
.footer__bottom-tag{ text-align: right; }
.footer__bottom .footer__social{
  margin: 0;
  justify-content: center;
}
@media (max-width: 760px){
  .footer__bottom { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .footer__bottom-cr,
  .footer__bottom-tag { text-align: center; }
}

/* ============================================================
   ENTRANCE MOTION (subtle)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   Footer social — circular icon buttons (DAMAC-style)
   ============================================================ */
.footer__social-h{
  margin-top: 22px;
}
.footer__social{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.footer__social-btn{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.footer__social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.35);
}
.footer__social-btn svg{ display: block; }
/* Brand colors */
.footer__social-btn--li{ background: #0A66C2; }
.footer__social-btn--ig{
  background:
    radial-gradient(circle at 30% 110%,
      #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.footer__social-btn--tt{
  background: #000;
  position: relative;
}
.footer__social-btn--tt::before,
.footer__social-btn--tt::after{
  /* subtle TikTok signature cyan/pink offset */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.0;
}
.footer__social-btn--x{ background: #000; }
.footer__social-btn--wa{ background: #25D366; }
