/* Prenten AI Website Version 2
   Light editorial system from the investor & capability decks */

:root {
  --paper: #f7f5f0;
  --paper-2: #efece4;
  --surface: #ffffff;
  --ink: #1b1d1f;
  --ink-soft: #8a8f96;
  --muted: #5f656d;
  --faint: #9aa0a8;
  --line: #e5e1d8;
  --line-2: #d8d3c8;
  --accent: #14675a;
  --accent-deep: #0f4f45;
  --accent-soft: #e7f0ec;
  --accent-line: #bcd6cd;
  --clay: #b5673c;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.on-hero {
  color: #fff;
}
.nav.scrolled {
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.nav-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}
.brand-dot {
  color: var(--accent);
  margin-left: 0.02em;
}
.nav.scrolled .brand-dot { color: var(--accent); }
.nav.on-hero:not(.scrolled) .brand-dot { color: #c8e6df; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 6px;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }
  .nav-cta { margin-top: 0.75rem; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 22, 20, 0.35) 0%, rgba(15, 22, 20, 0.15) 35%, rgba(15, 22, 20, 0.72) 72%, rgba(15, 22, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 22, 20, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 6vh, 4rem);
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  animation: brandIn 1s var(--ease) both;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
@keyframes brandIn {
  from { opacity: 0; letter-spacing: 0.14em; transform: translateY(12px); }
  to { opacity: 1; letter-spacing: 0.05em; transform: none; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: 0.85rem;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}
.hero h1 .soft { color: rgba(255,255,255,0.62); }

.hero-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
  max-width: 34rem;
  margin-bottom: 1.35rem;
  animation: fadeUp 0.9s var(--ease) 0.28s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--paper-2); }
.section-ink {
  background: var(--ink);
  color: #fff;
}
.section-ink .muted { color: rgba(255,255,255,0.62); }
.section-ink .label { color: #8fc4b8; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.section h2 .soft { color: var(--ink-soft); }
.section-ink h2 .soft { color: rgba(255,255,255,0.45); }

.lede {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}
.section-ink .lede { color: rgba(255,255,255,0.68); }

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ---------- Free band ---------- */
.free-band {
  background: var(--accent);
  color: #fff;
  padding: 1.35rem 0;
}
.free-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.free-band p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.free-band a {
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  white-space: nowrap;
}
.free-band a:hover { border-bottom-color: #fff; }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.problem-col h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.problem-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.problem-col li {
  font-size: 0.98rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}
.problem-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.problem-col.solve h3 { color: var(--accent); }
.problem-col.solve { background: var(--accent-soft); padding: 1.25rem 1.35rem; border-radius: 10px; }
.problem-col.solve li { color: var(--ink); }

.problem-foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 40rem;
  line-height: 1.35;
}

@media (max-width: 800px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- Capabilities ---------- */
.cap-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.cap-figure {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 4px;
}
.cap-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}
.cap-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(15,22,20,0.85));
  color: #fff;
  font-size: 0.9rem;
}

.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-content: start;
}
.cap-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.25s, background 0.25s;
}
.cap-item:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.cap-item span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.cap-item b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .cap-layout { grid-template-columns: 1fr; }
  .cap-figure { min-height: 280px; }
}

/* ---------- Platform ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.platform-card {
  background: var(--surface);
  padding: 1.5rem 1.35rem;
  transition: background 0.25s;
}
.platform-card:hover { background: var(--accent-soft); }
.platform-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.platform-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.platform-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .platform-grid { grid-template-columns: 1fr; }
}

.tech-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.tech-pillars h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.tech-pillars p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Solutions ---------- */
.solution-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.solution-block.reverse { grid-template-columns: 0.9fr 1.1fr; }
.solution-block.reverse .solution-copy { order: 2; }
.solution-block.reverse .solution-media { order: 1; }
.solution-copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0.35rem 0 0.85rem;
}
.solution-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  max-width: 36rem;
}
.solution-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.solution-copy li {
  font-size: 0.98rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}
.solution-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.solution-media {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
}
.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.outcome-strip h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.outcome-strip p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .solution-block,
  .solution-block.reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .solution-block.reverse .solution-copy,
  .solution-block.reverse .solution-media { order: unset; }
  .tech-pillars,
  .outcome-strip { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ---------- Industries (sector list) ---------- */
.industry-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin: 0 0 2.5rem;
}
.industry-list li {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  transition: background 0.2s, border-color 0.2s;
}
.industry-list li:hover {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  border-left-color: var(--accent);
}

.industry-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.industry-proof figure {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 16/10;
}
.industry-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.industry-proof figure:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .industry-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .industry-list { grid-template-columns: 1fr; }
  .industry-proof { grid-template-columns: 1fr; }
}

/* ---------- Engage ---------- */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.engage-step {
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--line-2);
  background: var(--surface);
}
.engage-step.featured {
  border-top-color: var(--accent);
  background: var(--accent-soft);
}
.engage-step .step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.engage-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.engage-step p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.engage-step .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.6rem;
}
.engage-step.featured .tag {
  background: var(--accent);
  color: #fff;
}

.engage-note {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: var(--accent-deep);
}

@media (max-width: 800px) {
  .engage-grid { grid-template-columns: 1fr; }
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 1.5rem;
}
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}
.why-item .tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.why-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.why-item p { color: var(--muted); font-size: 0.95rem; }

.quote-panel {
  background: var(--ink);
  color: #fff;
  padding: 2.25rem 2rem;
  border-radius: 4px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.quote-panel p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.quote-panel span {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc4b8;
  font-weight: 700;
}

@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  text-align: left;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  margin-bottom: 0.9rem;
  filter: grayscale(0.15);
  transition: filter 0.35s, transform 0.5s var(--ease);
}
.team-card:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}
.team-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
}
.team-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}
.team-card a {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.team-card a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.affiliations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 2.5rem;
}
.affiliations a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.affiliations a:hover { border-color: var(--accent-line); }
.affiliations img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.advisors {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.advisors h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
}
.advisor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.advisor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.advisor img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.advisor b {
  display: block;
  font-size: 0.98rem;
}
.advisor span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: end;
}
.contact-layout h2 { max-width: 14ch; }
.contact-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-meta a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.contact-meta a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-meta p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28rem;
}
.contact-box {
  background: var(--accent);
  color: #fff;
  padding: 2rem 1.75rem;
  border-radius: 4px;
}
.contact-box h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}
.contact-box p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact-box .btn {
  background: #fff;
  color: var(--accent-deep);
  border-color: #fff;
}
.contact-box .btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.footer p {
  font-size: 0.85rem;
  color: var(--faint);
}
