/*
  Theme Name:   AVA Global
  Description:  Custom theme for AVA Global GmbH — international trading & sourcing
  Author:       Axel
  Author URI:   https://oncotton.net
  Version:      1.0.0
  Text Domain:  ava
*/

/* ── Design tokens ── */
:root {
  --bg:          #FFFFFF;
  --surface:     #F6F7F9;
  --ink:         #161514;
  --ink-2:       #5A5957;
  --ink-3:       #8A8987;
  --red:         #DF3A3D;
  --red-dark:    #B82E31;
  --line:        #E4E4E2;
  --line-strong: #C9C9C5;
  --maxw:        1240px;
  --pad:         clamp(20px, 4vw, 40px);
  --sect:        clamp(72px, 11vw, 128px);
}

/* ── Base reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { margin: 0; text-transform: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
fieldset { border: none; padding: 0; margin: 0; }

/* ── Layout container ── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* WordPress block container alignment */
.wp-block-group.alignfull,
.wp-block-cover.alignfull {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.wp-block-group:not(.alignfull),
.wp-block-columns:not(.alignfull) {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.wp-block-columns {
  gap: 24px;
}

.pt-0 {padding-top: 0}
.gap-wide {gap: 60px}

/* Vertical rule centred in the gap between gap-wide columns */
.wp-block-columns.gap-wide > .wp-block-column + .wp-block-column {
  position: relative;
}
.wp-block-columns.gap-wide > .wp-block-column + .wp-block-column::before {
  content: '';
  position: absolute;
  left: -30px; /* half of 60px gap */
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--line);
}
@media (max-width: 781px) {
  /* WP stacks columns below 782px — swap to a horizontal rule */
  .wp-block-columns.gap-wide > .wp-block-column + .wp-block-column::before {
    left: 0;
    top: -15px;
    height: 1px;
    width: 100%;
  }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
body.admin-bar .site-header { top: 32px; }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.ava-logo {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  text-decoration: none;
}
.ava-logo .ava    { color: var(--red); font-weight: 600; }
.ava-logo .global { color: var(--ink); font-weight: 400; }
.ava-logo img,
.ava-logo .custom-logo { height: 36px; width: auto; }

/* Primary nav */
.site-navigation {
  display: flex;
}
.site-navigation ul {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-navigation ul li a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 6px 0;
  transition: color .15s ease;
}
.site-navigation ul li a:hover { color: var(--ink); }
.site-navigation ul li.menu-item-cta > a {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 600;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.site-navigation ul li.menu-item-cta > a:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(223,58,61,.28);
}

/* Mobile hamburger */
.mobile-menu {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.mobile-menu .bar {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.mobile-menu .bar::before,
.mobile-menu .bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.mobile-menu .bar::before { top: -5px; }
.mobile-menu .bar::after  { top: 5px; }

@media (max-width: 820px) {
  .mobile-menu { display: inline-flex; }
  .site-navigation { display: none; }
  .site-navigation.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
    z-index: 49;
  }
  .site-navigation.open ul {
    flex-direction: column;
    gap: 0;
  }
  .site-navigation.open ul li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .site-navigation.open ul li:last-child > a { border-bottom: none; }
  .site-navigation.open ul li.menu-item-cta > a {
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
  }
}


/* ── Buttons ── */
.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}
.btn-primary,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--red-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(223,58,61,.28);
}
.btn-ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,21,20,.15);
}
.btn .arr {
  width: 14px;
  height: 10px;
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arr { transform: translateX(3px); }
.wp-block-buttons { gap: 12px; margin: 0; }


/* ── Eyebrow label ── */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 0;
  border-top: 1.5px solid var(--red);
  flex-shrink: 0;
  align-self: center;
}
.eyebrow.no-tick::before { display: none; }
.eyebrow.reveal { opacity: 1; transform: none; transition: none; }

/* Section mark — ::before is the line, ::after is the dot */
@keyframes ava-line-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes ava-dot-in {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

h2.wp-block-heading,
.section-head h2,
.hero h2 {
  position: relative;
}

h2.wp-block-heading::before,
.section-head h2::before,
.hero h2::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--red);
  margin-bottom: 14px;
  transform-origin: left center;
  transform: scaleX(0);
}

h2.wp-block-heading::after,
.section-head h2::after,
.hero h2::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 63px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: scale(0);
}

/* Animate when scrolled into view */
h2.wp-block-heading.mark-visible::before,
.section-head h2.mark-visible::before,
.hero h2.mark-visible::before {
  animation: ava-line-in 0.4s ease-out both;
}

h2.wp-block-heading.mark-visible::after,
.section-head h2.mark-visible::after,
.hero h2.mark-visible::after {
  animation: ava-dot-in 0.25s ease-out 0.35s both;
}

@media (prefers-reduced-motion: reduce) {
  h2.wp-block-heading::before,
  .section-head h2::before,
  .hero h2::before { transform: scaleX(1); }
  h2.wp-block-heading::after,
  .section-head h2::after,
  .hero h2::after  { opacity: 1; transform: scale(1); }
}

/* Legacy — keep so any existing span.section-mark in content still renders */
.section-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 12px;
  margin-bottom: 4px;
}
.section-mark .line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--red);
}
.section-mark .dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}


/* ── Hero ── */
.hero {
  padding: clamp(56px, 9vw, 112px) 0 var(--sect);
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 86vh, 880px);
  display: flex;
  align-items: center;
}
.hero > .wrap { width: 100%; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #fff 0%,
    #fff 42%,
    rgba(255,255,255,0.92) 55%,
    rgba(255,255,255,0.4) 70%,
    rgba(255,255,255,0.0) 85%);
  pointer-events: none;
  z-index: 1;
}
.hero-globe {
  --py: 0px;
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(960px, 70vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, calc(-50% + var(--py)), 0);
  will-change: transform;
}
.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}
.hero h1,
.hero .wp-block-heading {
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 24px 0 28px;
  text-wrap: balance;
  text-transform: none;
}
.hero h1 .red { color: var(--red); }
.hero p.lede,
.hero .wp-block-paragraph.lede {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-actions .meta {
  margin-left: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.corridors-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.corridors-inline .lab {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.corridors-inline .lab::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: live-dot 2.6s ease-out infinite;
}
@keyframes live-dot {
  0%   { box-shadow: 0 0 0 0   rgba(223,58,61,0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(223,58,61,0); }
  100% { box-shadow: 0 0 0 0   rgba(223,58,61,0); }
}
.corridors-inline .pair {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.corridors-inline .pair svg { width: 16px; height: 6px; color: var(--red); }
.corridors-inline .sep { color: var(--line-strong); }

/* ── Auto-computed stats strip ── */
.corridor-stats {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.corridor-stats .cstat {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0;
  white-space: nowrap;
}
.corridor-stats .cstat strong {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.corridor-stats .csep { color: var(--line-strong); font-size: 11px; }

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: clamp(48px,8vw,96px) 0 clamp(48px,8vw,80px);
  }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.0) 0%,
      rgba(255,255,255,0.0) 38%,
      rgba(255,255,255,0.88) 72%,
      #fff 100%);
  }
  .hero-globe {
    top: auto;
    bottom: -8%;
    right: -22%;
    width: 130vw;
    transform: translate3d(0, var(--py), 0);
    opacity: 0.7;
  }
}


/* ── Section scaffolding ── */
section { padding: var(--sect) 0; }
section.muted,
.wp-block-group.muted { background: var(--surface); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2,
.section-head .wp-block-heading {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 14px 0 0;
  text-wrap: balance;
  text-transform: none;
}
.section-head .intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}


/* ── Sectors / Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 16px; }
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.pillar:hover { border-color: var(--ink); }
.pillar .num {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-bottom: 28px;
}
.pillar .glyph {
  width: 100%;
  height: 96px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg,
    transparent 0 8px,
    rgba(22,21,20,0.025) 8px 9px);
}
.pillar .glyph svg { width: 56px; height: 56px; }
.pillar h3,
.pillar .wp-block-heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-transform: none;
}
.pillar p,
.pillar .wp-block-paragraph {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.pillar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
}
.pillar ul li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pillar ul li span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.pillar .learn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease, gap .15s ease;
  text-decoration: none;
}
.pillar .learn svg { width: 14px; height: 10px; transition: transform .15s ease; }
.pillar .learn:hover { color: var(--red); border-bottom-color: var(--red); gap: 12px; }
.pillar .learn:hover svg { transform: translateX(2px); }


/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-grid p,
.about-grid .wp-block-paragraph {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 62ch;
}
.about-grid p.muted { color: var(--ink-2); }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 36px;
}
.stats .cell {
  background: #fff;
  padding: 24px 24px 22px;
}
.stats .cell .k {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stats .cell .k .red { color: var(--red); }
.stats .cell .lbl {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.principles {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.principles li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.principles li .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.principles li h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.principles li p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}


/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-info h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.contact-info .block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info .block:last-of-type { border-bottom: 1px solid var(--line); }
.contact-info .block p { margin: 0; font-size: 15.5px; line-height: 1.55; }
.contact-info .block p + p { margin-top: 4px; color: var(--ink-2); }
.contact-info a.email {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
.contact-info a.email:hover { border-bottom-color: var(--red); color: var(--red); }

/* ── Contact list (`.contact-list`) ── */

/* h3 directly before a .contact-list — eyebrow label style */
h3.wp-block-heading:has(+ .contact-list) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 16px;
  line-height: 1;
}
h3.wp-block-heading:has(+ .contact-list)::before { display: none; }

/* Reset — override any inherited section list styles */
ul.contact-list,
.wp-block-list.contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  border-top: 1px solid var(--line);
}

ul.contact-list li,
.wp-block-list.contact-list li {
  display: block !important;      
  padding: 20px 0 !important;
  border-top: none !important;
  border-bottom: 1px solid var(--line) !important;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Items that contain a link: flex row — link left, description right */
ul.contact-list li:has(a),
.wp-block-list.contact-list li:has(a) {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  gap: 0;
  flex-direction: column
}
.contact-list li:has(a) br { display: none; }

.contact-list li a {
  font-size: 15.5px !important;
  color: var(--ink) !important;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: color .15s ease;
  display: inline !important;      /* inline inside flex so it sits in the row */
}
.contact-list li a:hover { color: var(--red) !important; }

/* em siblings (override any inherited styles) */
ul.contact-list li em,
.wp-block-list.contact-list li em { font-style: normal; }

/* Last item: address left, <strong> (HRB/VAT) right */
.contact-list li:has(strong):not(:has(a)) {
  position: relative;
  padding-right: 46% !important;
}

.contact-list li strong {
  top: 20px;
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  line-height: 1.65;
}
.contact-list a {border-bottom: solid 1px #ddd}
.contact-list a:hover {border-bottom: solid 1px #DF3A3D}

@media (max-width: 600px) {
  .contact-list li:has(strong):not(:has(a)) {
    padding-right: 0 !important;
  }
  .contact-list li strong {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}


/* ── AVA section (`.ava-section`) — "How we operate" and similar ── */

/* Children outside .wrap (separator, loose columns) get matching constraints */
.ava-section > .wp-block-separator,
.ava-section > .wp-block-columns {
  max-width: var(--maxw);
  width: 100%;
  padding-left:  var(--pad);
  padding-right: var(--pad);
  margin-left:  auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Separator between main grid and compliance sub-section */
.ava-section > .wp-block-separator {
  border: none;
  border-top: 1px solid var(--line);
  padding: 0;
  margin-top: var(--sect);
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* Column headings inside the data grid */
.ava-section h3.wp-block-heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.3;
}

/* Body copy inside columns */
.ava-section .wp-block-columns:not(.section-head) .wp-block-paragraph,
.ava-section .wp-block-columns:not(.section-head) p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 6px;
}

/* Small footnote paragraphs */
.ava-section .has-sm-font-size,
.ava-section .wp-block-paragraph.has-sm-font-size {
  font-size: 13px !important;
  color: var(--ink-3);
  margin-top: 10px;
}

/* ── Section lists — row style with em right-aligned ── */
.ava-section .wp-block-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}
.ava-section .wp-block-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  gap: 12px;
}
.ava-section .wp-block-list li em {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Horizontal code list (items with no <em> — e.g. Incoterms) ── */
.ava-section .horizontal-list:not(:has(em)) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-top: none;
  margin: 14px 0 12px;
  gap: 0;
}
.ava-section .horizontal-list:not(:has(em)) li {
  border: none;
  padding: 4px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.ava-section .horizontal-list:not(:has(em)) li:not(:last-child)::after {
  content: '·';
  margin: 0 9px;
  color: var(--line-strong);
}

/* ── Compliance h4 items: <strong> = red code tag, rest = description ── */
.ava-section h4.wp-block-heading {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: .6;
  margin: 0;
}
.ava-section h4.wp-block-heading strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
}

@media (max-width: 760px) {
  .ava-section > .wp-block-separator,
  .ava-section > .wp-block-columns {
    padding-left:  var(--pad);
    padding-right: var(--pad);
  }
}


/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-top h5 {
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-top ul a {
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-top ul a:hover { border-bottom-color: var(--red); }
.footer-top .about-foot .ava-logo {
  font-size: 18px;
}
.footer-top .about-foot p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 36ch;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.footer-bot a { color: var(--ink-3); }
.footer-bot a:hover { color: var(--ink); }
.footer-bot .links { display: flex; gap: 22px; }


/* ── Globe SVG component ── */
.ava-globe {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  color: var(--red);
}
.ava-globe .lat,
.ava-globe .mer {
  fill: none;
  stroke: #D6D6D2;
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}
.ava-globe .mer { stroke: #E1E1DD; }
.ava-globe .rim {
  fill: none;
  stroke: #161514;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}
.ava-globe .eq { stroke: #C9C9C5; }
.ava-globe .node { fill: #161514; }
.ava-globe .node.hub { fill: currentColor; }
.ava-globe .node-ring {
  --delay: 0s;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: ag-ping 6s ease-out infinite;
  animation-delay: var(--delay);
}
.ava-globe .node-ring.delay-1 { --delay: -1.2s; }
.ava-globe .node-ring.delay-2 { --delay: -2.4s; }
.ava-globe .node-ring.delay-3 { --delay: -3.6s; }
.ava-globe .node-ring.delay-4 { --delay: -4.8s; }
@keyframes ag-ping {
  0%   { transform: scale(0.4); opacity: 0.6; }
  100% { transform: scale(5);   opacity: 0; }
}
.ava-globe .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  fill: #161514;
}
.ava-globe .label.hub { fill: currentColor; font-weight: 600; }
.ava-globe .label-coord {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  fill: var(--ink-3);
  letter-spacing: 0.04em;
}
.ava-globe .tick { stroke: #8A8987; stroke-width: 0.6; }
.ava-globe .route-base {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
  opacity: .28;
}
.ava-globe .route-pulse {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-dasharray: 18 280;
  animation: ag-trace 4.8s linear infinite;
}
.ava-globe .route-pulse.r2 { animation-delay: -1.0s; animation-duration: 5.4s; }
.ava-globe .route-pulse.r3 { animation-delay: -2.1s; animation-duration: 6.0s; }
.ava-globe .route-pulse.r4 { animation-delay: -3.0s; animation-duration: 4.4s; }
.ava-globe .route-pulse.r5 { animation-delay: -1.6s; animation-duration: 5.2s; }
.ava-globe .route-pulse.r6 { animation-delay: -3.6s; animation-duration: 5.8s; }
@keyframes ag-trace {
  from { stroke-dashoffset: 298; }
  to   { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ava-globe * { animation: none !important; }
}

/* ── Static globe [ava_globe static="1"] ── */
.globe-static {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
}
.globe-static .ava-globe {
  width: 100%;
  height: auto;
  color: var(--ink-3);       /* hub node colour */
}
.globe-static .ava-globe .rim {
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
}
.globe-static .ava-globe .lat,
.globe-static .ava-globe .mer {
  stroke: var(--line);
  stroke-width: 0.5;
  fill: none;
}
.globe-static .ava-globe .eq {
  stroke: var(--line-strong);
  stroke-width: 0.5;
}
.globe-static .ava-globe .route-base {
  stroke: var(--line-strong);
  stroke-width: 0.8;
  fill: none;
  opacity: 0.7;
}
.globe-static .ava-globe .node {
  fill: var(--ink-3);
}
.globe-static .ava-globe .node.hub {
  fill: var(--red);
}


/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ── Gravity Forms ── */

/* Card wrapper */
.gform_wrapper form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
}

/* 2-column field grid */
.gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gfield { min-width: 0; }
.gfield--width-half                         { grid-column: span 1; }
.gfield--width-full                         { grid-column: span 2; }
.gfield--width-two-thirds,
.gfield--width-three-quarter                { grid-column: span 2; }
.gfield--width-third,
.gfield--width-quarter                      { grid-column: span 1; }
.gfield--type-section,
.gfield--type-html                          { grid-column: 1 / -1; }
.gfield--type-honeypot                      { position: absolute; top: -100px; opacity: 0; pointer-events: none; }

/* Complex sub-fields */
.gform_wrapper .ginput_complex { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gform_wrapper .ginput_complex .gform-grid-col--size-auto { grid-column: span 1; }

/* Labels */
.gfield_label,
.gform_wrapper .gfield_label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
  line-height: 1;
}
.gform_wrapper .gform-field-label--type-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
  display: block;
}

/* Required: hide "(Required)" text, style GF's own asterisk */
.gfield_required_text  { display: none; }
.gfield_required_asterisk {
  color: var(--red);
  margin-left: 3px;
  font-weight: 600;
}
.gform_required_legend { display: none; }

/* Inputs, textareas, selects */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="date"],
.gform_wrapper textarea,
.gform_wrapper select {
  all: unset;
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: var(--ink-3); }
.gform_wrapper textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.gform_wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5em;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A5957' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
}
.gform_wrapper input:hover:not(:focus),
.gform_wrapper textarea:hover:not(:focus),
.gform_wrapper select:hover:not(:focus)   { border-color: var(--line-strong); }
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223,58,61,.12);
}

/* Validation errors */
.gfield_error .ginput_container input,
.gfield_error .ginput_container textarea,
.gfield_error .ginput_container select { border-color: var(--red) !important; }
.gfield_description.gfield_validation_message,
.validation_message {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
}
h2.gform_submission_error { font-size: 18px; font-weight: 600; color: var(--red); margin-bottom: 16px; }
.gform_wrapper .gfield_description { font-size: 13px; color: var(--ink-2); margin-top: 6px; }

/* Section headings inside form */
.gsection, .gform_wrapper .gsection { grid-column: 1 / -1; width: 100%; }
.gsection_title,
.gform_wrapper .gsection .gsection_title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0;
  padding: 0;
}

/* Date picker */
.gform_wrapper .ginput_container_date { display: flex; align-items: center; gap: 8px; }

/* Progress bar */
.gf_progressbar { background: var(--line); border-radius: 15px; margin-bottom: 20px; }
.gf_progressbar .percentbar_blue {
  background: var(--red);
  border-radius: 15px;
  color: #fff;
  padding: 1px 15px 0;
  font-size: 0.825rem;
}

/* Footer — submit row */
.gform-footer,
.gform_footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
  padding-top: 0;
  flex-wrap: wrap;
}
.gform-footer::after,
.gform_footer::after {
  content: 'Typical response within 1 business day.';
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}

/* Submit / nav buttons */
.gform_button.button,
.gform_next_button,
.gform_wrapper input[type="submit"] {
  all: unset;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 13px 22px;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 4px;
  transition: background .15s ease;
  box-sizing: border-box;
  white-space: nowrap;
}
.gform_button.button:hover,
.gform_next_button:hover,
.gform_wrapper input[type="submit"]:hover { background: var(--red-dark); }

.gform_previous_button {
  all: unset;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 13px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: background .15s ease, color .15s ease;
  box-sizing: border-box;
}
.gform_previous_button:hover { background: var(--ink); color: #fff; }

/* Consent / checkbox field */
.ginput_container_consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Hide native checkbox, draw custom */
.ginput_container_consent input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px; /* align with first text line */
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.ginput_container_consent input[type="checkbox"]:hover {
  border-color: var(--red);
}
.ginput_container_consent input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223,58,61,.12);
}
.ginput_container_consent input[type="checkbox"]:checked {
  background-color: var(--red);
  border-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1.5 4l2.5 2.5 4.5-5.5' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Consent label — plain prose size, not uppercase */
.gfield_consent_label {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.gfield_consent_label a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gfield_consent_label a:hover { color: var(--red); }

/* Mobile */
@media (max-width: 600px) {
  .gform_wrapper form { padding: 24px; }
  .gform_fields { grid-template-columns: 1fr; }
  .gfield--width-half,
  .gfield--width-full,
  .gfield--width-two-thirds,
  .gfield--width-three-quarter { grid-column: span 1; }
  .gform-footer::after,
  .gform_footer::after { width: 100%; }
}


/* HR divider inside form HTML fields */
.gform_wrapper hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* File upload drop zone */
.gfield--type-fileupload .gfield_label { margin-bottom: 6px; }

.gform_drop_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 8px;
  background: #fafafa;
  transition: border-color .18s ease, background .18s ease;
  text-align: center;
  cursor: default;
}
.gform_drop_area::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238A8987' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5'/%3E%3C/svg%3E") no-repeat center;
  background-size: 36px;
  opacity: .7;
}
.gform_drop_area:hover,
.gform_drop_area.gform-drop-active {
  border-color: var(--red);
  background: #fff5f5;
}
.gform_drop_area:hover::before,
.gform_drop_area.gform-drop-active::before { opacity: 1; }

.gform_drop_instructions {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.gform_button_select_files {
  all: unset;
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 6px 14px;
  border: 1.5px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  box-sizing: border-box;
}
.gform_button_select_files:hover {
  background: var(--red);
  color: #fff;
}

.gform_fileupload_rules {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
  text-align: center;
  display: block;
}

.gfield_description[id*="gfield_description"] {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 6px;
}

/* Uploaded file preview list */
.ginput_preview_list { margin-top: 10px; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.ginput_preview_list .ginput_preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: var(--ink-2);
}
.ginput_preview_list .ginput_preview .gform_delete_file {
  all: unset;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--line);
  transition: border-color .15s, color .15s;
}
.ginput_preview_list .ginput_preview .gform_delete_file:hover { color: var(--red); border-color: var(--red); }

/* ══════════════════════════════════════════════
   Leadership / Staff cards  [ava_leadership]
   ══════════════════════════════════════════════ */

.ava-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

@media (max-width: 720px) {
  .ava-leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Card: horizontal layout ── */
.ava-person-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: none;
  border: none;
}

/* ── Portrait ── */
.ava-person-portrait {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.ava-person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease;
}

.ava-person-card:hover .ava-person-photo {
  filter: grayscale(0) contrast(1);
}

.ava-person-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.ava-person-initials {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.ava-person-silhouette {
  width: 54px;
  height: auto;
  color: var(--line-strong);
}

/* ── Body ── */
.ava-person-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

/* Position eyebrow */
.ava-person-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}

/* Name */
.ava-person-name {
  font-family: inherit;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}

/* Short text */
.ava-person-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}

/* Full bio (hidden until expanded) */
.ava-person-bio {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  overflow: hidden;
  padding-top: 10px;
}

.ava-person-bio p { margin: 0 0 0.75em; }
.ava-person-bio p:last-child { margin-bottom: 0; }

/* ── Divider + actions ── */
.ava-person-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Read full bio button */
.ava-bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.ava-bio-toggle:hover {
  color: var(--ink);
}

.ava-bio-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ava-bio-toggle.is-open .ava-bio-chevron {
  transform: rotate(180deg);
}

/* LinkedIn link */
.ava-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.ava-linkedin-link:hover {
  color: var(--ink);
}
