:root {
  --forest-950: #0e1f19;
  --forest-900: #14332a;
  --forest-800: #1b4332;
  --forest-700: #2d6a4f;
  --leaf: #40916c;
  --gold: #c4a574;
  --gold-soft: #e6d3b3;
  --cream: #f6f2ea;
  --sand: #ebe3d4;
  --paper: #fdfcf8;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --line: #e4dccf;
  --white: #fff;
  --overlay: rgba(14, 31, 25, 0.58);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 4.75rem;
  --container: 72rem;
  --wide: 82rem;
  --radius: 1.15rem;
  --shadow: 0 18px 50px rgba(20, 51, 42, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--forest-900);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.section {
  padding: clamp(4.25rem, 8vw, 7.25rem) 0;
}
.section-alt { background: var(--cream); }
.section-forest {
  background: var(--forest-900);
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-bottom: 0.85rem;
}
.section-forest .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
}

.section-head { max-width: 42rem; margin-bottom: 2.75rem; }
.section-head h2,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}
.section-forest .section-head h2 { color: var(--white); }
.lede {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 40rem;
}
.section-forest .lede { color: var(--gold-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 560;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--forest-950);
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-light:hover { background: rgba(255,255,255,0.1); }
.btn-dark {
  background: var(--forest-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--forest-800); }
.btn-line {
  background: transparent;
  border-color: var(--line);
  color: var(--forest-900);
}
.btn-line:hover { border-color: var(--forest-700); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-top {
  background: transparent;
  color: var(--white);
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(253, 252, 248, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--forest-900);
}
.nav-wrap {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--forest-900);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0.9;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta { margin-left: 0.5rem; }
.site-header.is-top .btn-gold { box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: inherit;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 1.3rem; height: 1.3rem; }
.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle { border-color: var(--line); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--forest-950);
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,31,25,0.18) 0%, rgba(14,31,25,0.08) 38%, rgba(14,31,25,0.55) 100%),
    linear-gradient(90deg, rgba(14,31,25,0.22), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 8.5rem 0 7.5rem;
}
.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.1rem);
  font-weight: 600;
  line-height: 0.92;
  max-width: 12ch;
}
.hero-tag {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero p {
  margin-top: 1.15rem;
  max-width: 36rem;
  color: rgba(255,255,255,0.86);
  font-weight: 300;
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.credibility {
  position: relative;
  z-index: 2;
  margin-top: -3.25rem;
  margin-bottom: 1rem;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cred-item {
  padding: 1.25rem 1.35rem;
  border-right: 1px solid var(--line);
}
.cred-item:last-child { border-right: 0; }
.cred-item span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.cred-item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-900);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.frame {
  position: relative;
}
.frame img,
.frame picture,
.frame picture img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  border-radius: 1.4rem;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 1.4rem;
  z-index: -1;
}
.about-copy p + p { margin-top: 1rem; color: var(--ink-soft); }
.about-copy p:first-of-type { font-size: 1.12rem; }

.glance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}
.glance-item {
  background: var(--paper);
  padding: 1.2rem 1.25rem;
}
.glance-item span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.glance-item strong {
  color: var(--forest-900);
  font-weight: 560;
  font-size: 0.98rem;
  line-height: 1.4;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.activity-card,
.product-card,
.leader-card,
.cred-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 51, 42, 0.04);
}
.activity-card img,
.activity-card picture img,
.product-card img,
.product-card picture img {
  width: 100%;
  height: 13.5rem;
  object-fit: cover;
}
.card-body { padding: 1.3rem 1.35rem 1.45rem; }
.icon-wrap {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: var(--cream);
  color: var(--forest-700);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.icon-wrap svg { width: 1.2rem; height: 1.2rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--forest-900);
  margin-bottom: 0.4rem;
}
.card-body p { color: var(--ink-soft); font-size: 0.98rem; }
.chip {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-700);
  background: var(--cream);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.15rem;
}
.product-card { display: flex; flex-direction: column; }
.product-card .card-body { flex: 1; display: flex; flex-direction: column; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* Leadership */
.leader-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.leader-photo {
  height: 100%;
  min-height: 22rem;
}
.leader-photo img,
.leader-photo picture,
.leader-photo picture img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}
.leader-copy { padding: 2rem 2rem 2.1rem 0.25rem; }
.leader-copy .role {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.leader-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--forest-900);
  margin: 0.35rem 0 0.9rem;
}
.leader-copy p { color: var(--ink-soft); }
.resp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0;
  list-style: none;
}
.resp li {
  font-size: 0.8rem;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--forest-800);
}
.directors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.leader-card { display: grid; grid-template-columns: 9.5rem 1fr; }
.leader-card img,
.leader-card picture img {
  width: 100%;
  height: 100%;
  min-height: 11.5rem;
  object-fit: cover;
}

/* Messages */
.quote-block {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2.5rem;
  align-items: start;
}
.quote-photo img,
.quote-photo picture img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.2rem;
}
.quote-mark {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--forest-900);
  font-weight: 500;
}
.quote-block p { margin-top: 1rem; color: var(--ink-soft); }
.quote-sign {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--forest-900);
}
.quote-sign span {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 1.1rem 0 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: calc(2.3rem + 8px);
  right: 0.6rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.step-num {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  color: var(--forest-900);
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.process-step img,
.process-step picture img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.85rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest-900);
}
.process-step p {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Video */
.video-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--forest-950);
  aspect-ratio: 16/9;
}
.video-frame img,
.video-frame picture img,
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  color: var(--ink-soft);
}
.video-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  cursor: pointer;
}
.filter-btn.is-active {
  background: var(--forest-900);
  color: var(--white);
  border-color: var(--forest-900);
}
.masonry {
  columns: 3;
  column-gap: 1rem;
}
.masonry figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.masonry img,
.masonry picture img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.85rem 0.7rem;
  background: linear-gradient(transparent, rgba(14,31,25,0.72));
  color: var(--white);
  font-size: 0.78rem;
}

/* Identity */
.identity {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.identity-photo img,
.identity-photo picture img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.4rem;
}
.identity blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--cream);
}
.section-forest .facts dt { color: var(--gold-soft); }
.section-forest .facts dd { color: var(--white); }
.section-forest .facts div { border-bottom-color: rgba(255,255,255,0.12); }
.facts {
  display: grid;
  gap: 0.85rem;
}
.facts div {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts dd { margin: 0; color: var(--forest-900); font-weight: 500; }

/* Credentials */
.cred-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.cred-card { padding: 1.5rem 1.4rem 1.6rem; }
.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest-900);
  margin: 0.55rem 0 0.35rem;
}
.cred-card .authority { color: var(--forest-700); font-size: 0.92rem; }
.cred-card p { color: var(--ink-soft); margin-top: 0.45rem; font-size: 0.95rem; }
.fine-print { margin-top: 1.25rem; font-size: 0.85rem; color: var(--muted); }

/* Location / contact */
.presence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.map-wrap {
  min-height: 26rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 26rem; border: 0; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.info-list svg { width: 1.2rem; height: 1.2rem; color: var(--forest-700); margin-top: 0.2rem; }
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--forest-700); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}
.form {
  display: grid;
  gap: 0.95rem;
}
.field { display: grid; gap: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.65rem 0;
  border-radius: 0;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--forest-700); }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-status {
  min-height: 1.3rem;
  font-size: 0.92rem;
}
.form-status.ok { color: var(--forest-700); }
.form-status.err { color: #9b2c2c; }

/* Footer */
.site-footer {
  background: var(--forest-950);
  color: rgba(246, 242, 234, 0.82);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-brand img { width: 2.6rem; height: 2.6rem; border-radius: 50%; }
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-links span,
.footer-contact span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.copyright {
  padding-top: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 25, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 0.4rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
}
.lightbox-close { top: 1rem; right: 1rem; width: 2.6rem; height: 2.6rem; }
.lightbox-nav { top: 50%; width: 3rem; height: 3rem; }
.lightbox-nav.prev { left: 0.6rem; transform: translateY(-50%) rotate(180deg); }
.lightbox-nav.next { right: 0.6rem; transform: translateY(-50%); }
.identity h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
}
.identity .lede { color: var(--gold); }
.lightbox-caption {
  position: absolute;
  bottom: 1.1rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

/* Product dialog */
.dialog {
  border: 0;
  padding: 0;
  max-width: 48rem;
  width: calc(100% - 2rem);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}
.dialog::backdrop { background: rgba(14, 31, 25, 0.62); }
.dialog-grid { display: grid; grid-template-columns: 1fr 1.1fr; }
.dialog-grid img,
.dialog-grid picture img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; }
.dialog-body { padding: 1.6rem 1.5rem 1.7rem; }
.dialog-close {
  float: right;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .masonry img { transition: none; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    color: var(--forest-900);
    padding: 1rem 1.25rem 1.4rem;
    gap: 0.85rem;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .nav-cta { margin-left: 0; }
  .about-grid,
  .leader-feature,
  .quote-block,
  .identity,
  .presence,
  .contact-grid,
  .footer-grid,
  .dialog-grid { grid-template-columns: 1fr; }
  .leader-copy { padding: 1.4rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .process-step:not(:last-child)::after { display: none; }
  .masonry { columns: 2; }
}

@media (max-width: 720px) {
  .cred-grid,
  .glance,
  .card-grid,
  .directors,
  .cred-list,
  .product-grid,
  .process,
  .field-row { grid-template-columns: 1fr; }
  .cred-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card img,
  .leader-card picture img { min-height: 16rem; height: 16rem; }
  .frame img,
  .frame picture img { height: 22rem; }
  .masonry { columns: 1; }
  .facts div { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero-content { padding: 7.5rem 0 6.5rem; }
}

