/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --offblack:  #111111;
  --charcoal:  #1c1c1c;
  --smoke:     #2a2a2a;
  --midgray:   #666666;
  --silver:    #aaaaaa;
  --mist:      #d8d8d8;
  --offwhite:  #f4f1ec;
  --white:     #ffffff;
  --accent:    #c9a96e;
  --accent-dk: #a0803d;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --ease-smooth: cubic-bezier(.25,.46,.45,.94);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--offwhite);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main img,
.card__img-wrap img,
.featured__image-wrap img,
.hero__bg,
.about__image-main img,
.team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: transparent;
  transition: background 0.4s var(--ease-smooth),
              backdrop-filter 0.4s var(--ease-smooth);
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: opacity 0.4s var(--ease-smooth);
}

.nav__logo,
.nav__links,
.nav__burger {
  position: relative;
  z-index: 1;
}

/*.nav.scrolled::before {*/
/*  opacity: 0;*/
/*}*/

.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 79px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--white); }
.nav__active { color: var(--accent) !important; position: relative; }
.nav__active::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--accent); }

/* ─────────────────────────────────────────
   DROPDOWN (desktop)
───────────────────────────────────────── */
.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease-smooth),
              transform 0.25s var(--ease-smooth),
              visibility 0.25s;
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.nav__dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   BURGER BUTTON
───────────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth),
              opacity 0.3s var(--ease-smooth);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────── */
@media (max-width: 680px) {
  .nav { padding: 0 20px; }

  .nav__burger { display: flex; }

  .nav__links {
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0 28px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.38s var(--ease-smooth),
                opacity 0.3s var(--ease-smooth),
                visibility 0.3s;
    z-index: 99;
    max-height: calc(100svh - 80px);
    overflow-y: auto;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* Arrow hidden on mobile — tap toggles */
  .nav__dropdown > a::after { content: ' ▾'; }

  /* Mobile dropdown: static, toggled by .open class via JS */
  .nav__dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: unset;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s var(--ease-smooth),
                opacity 0.3s var(--ease-smooth),
                visibility 0.3s,
                padding 0.3s;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 4px 0 8px;
  }

  .nav__dropdown-menu a {
    padding: 10px 24px 10px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  /* Remove desktop hover trigger on mobile */
  .nav__dropdown:hover .nav__dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: none;
  }

  .nav__dropdown.open:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-smooth) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 160px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.55) 35%, rgba(10,10,10,0.15) 70%, rgba(10,10,10,0) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 880px;
  animation: heroFadeUp 1.1s 0.2s var(--ease-smooth) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero__headline em { font-style: italic; color: var(--accent); }

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.64);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-smooth);
}

.btn--primary { background: var(--accent); color: var(--black); padding: 16px 36px; }
.btn--primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,0.35); }

.btn--ghost { background: transparent; color: var(--white); padding: 15px 35px; border: 1px solid rgba(255,255,255,0.28); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn--outline { background: transparent; color: var(--black); padding: 14px 32px; border: 1.5px solid var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn svg { transition: transform 0.25s var(--ease-smooth); }
.btn:hover svg { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  bottom: 36px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.36);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: heroFadeUp 1.1s 0.6s var(--ease-smooth) both;
}

.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.36), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.36; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(0.85); }
}

@media (max-width: 680px) {
  .hero__content { padding: 0 24px 60px; }
  .hero__scroll  { right: 24px; }
}

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker { background: var(--accent); overflow: hidden; white-space: nowrap; padding: 12px 0; }
.ticker__track { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker__item { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); padding: 0 36px; }
.ticker__item::after { content: '·'; margin-left: 36px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────
   FEATURED POST
───────────────────────────────────────── */
.featured { padding: 100px 0; background: var(--offwhite); }

.featured .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.featured__image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.featured__image-wrap img { transition: transform 0.8s var(--ease-smooth); }
.featured__image-wrap:hover img { transform: scale(1.04); }

.featured__badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--accent); color: var(--black);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 14px; z-index: 1;
}

.featured__label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--midgray); margin-bottom: 20px; }

.featured__title { font-family: var(--ff-serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.13; color: var(--black); margin-bottom: 24px; letter-spacing: -0.01em; }

.featured__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 0.76rem; color: var(--midgray); letter-spacing: 0.04em; }
.featured__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mist); }

.featured__excerpt { font-size: 1.02rem; font-weight: 300; line-height: 1.76; color: #444; margin-bottom: 36px; border-left: 2px solid var(--accent); padding-left: 20px; }

.shimmer { position: relative; overflow: hidden; background: #e8e4de; }
.shimmer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%); animation: shimmerMove 1.4s infinite; }
@keyframes shimmerMove { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

@media (max-width: 860px) {
  .featured .container { grid-template-columns: 1fr; gap: 40px; }
  .featured { padding: 72px 0; }
}

/* ─────────────────────────────────────────
   LATEST POSTS
───────────────────────────────────────── */
.latest { padding: 96px 0 120px; background: var(--white); }

.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }

.section-title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--black); letter-spacing: -0.01em; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 2px; background: var(--accent); }

.section-link { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--midgray); transition: color 0.2s; white-space: nowrap; }
.section-link:hover { color: var(--black); }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.card { display: flex; flex-direction: column; background: var(--offwhite); transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth); cursor: pointer; }
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }

.card__img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.card__img-wrap img { transition: transform 0.6s var(--ease-smooth); }
.card:hover .card__img-wrap img { transform: scale(1.06); }

.card__body { padding: 24px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 12px; }
.card__title { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: var(--black); margin-bottom: 12px; }
.card__excerpt { font-size: 0.87rem; font-weight: 300; line-height: 1.65; color: var(--midgray); margin-bottom: 20px; flex: 1; }
.card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--mist); }
.card__date { font-size: 0.72rem; color: var(--silver); letter-spacing: 0.04em; }
.card__read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); transition: gap 0.2s var(--ease-smooth); }
.card:hover .card__read-more { gap: 10px; }
.card__read-more svg { flex-shrink: 0; }

.card--skeleton .card__img-wrap { background: #e8e4de; }
.card--skeleton .card__img-wrap img { display: none; }
.sk-line { background: #ddd9d2; border-radius: 2px; margin-bottom: 10px; }
.sk-line.w80  { width: 80%; height: 10px; }
.sk-line.w60  { width: 60%; height: 10px; }
.sk-line.w100 { width: 100%; height: 10px; }
.sk-line.h24  { height: 24px; margin-bottom: 12px; }

@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .latest { padding: 64px 0 80px; }
}

/* ─────────────────────────────────────────
   QUOTE STRIP
───────────────────────────────────────── */
.quote-strip { background: var(--offblack); padding: 88px 0; text-align: center; }
.quote-strip blockquote { font-family: var(--ff-serif); font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.5; max-width: 820px; margin: 0 auto 24px; letter-spacing: 0.01em; }
.quote-strip cite { font-size: 0.78rem; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--black); padding: 60px 0 36px; }

.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.36); margin-top: 8px; font-weight: 300; }

.footer__nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__nav-col h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.36); margin-bottom: 16px; }
.footer__nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__nav-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__nav-col a:hover { color: var(--white); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 0.76rem; color: rgba(255,255,255,0.24); letter-spacing: 0.04em; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.73rem; color: rgba(255,255,255,0.24); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 760px) { .footer__top { flex-direction: column; } .footer__nav { gap: 32px; } }

/* ─────────────────────────────────────────
   ERROR / EMPTY STATE
───────────────────────────────────────── */
.error-state { text-align: center; padding: 60px 20px; color: var(--midgray); font-size: 0.9rem; }

/* ─────────────────────────────────────────
   FADE-IN ON SCROLL
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   WHAT WE DO
───────────────────────────────────────── */
.what-we-do { padding: 108px 0; background: var(--black); position: relative; overflow: hidden; }

.what-we-do::before {
  content: '01';
  position: absolute; top: -40px; right: -20px;
  font-family: var(--ff-serif);
  font-size: clamp(160px, 20vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none;
}

.what-we-do .section-title { color: var(--white); }
.what-we-do .section-title::after { background: var(--accent); }

.wwd__intro { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.wwd__intro-left { padding-top: 8px; }
.wwd__intro-body { font-size: clamp(1.05rem, 1.6vw, 1.22rem); font-weight: 300; line-height: 1.82; color: rgba(255,255,255,0.62); }
.wwd__intro-body strong { color: var(--white); font-weight: 500; }

.wwd__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.wwd__pillar { background: var(--charcoal); padding: 40px 36px 44px; position: relative; overflow: hidden; transition: background 0.3s var(--ease-smooth); }
.wwd__pillar:hover { background: var(--smoke); }

.wwd__pillar-num { font-family: var(--ff-serif); font-size: 0.72rem; font-weight: 400; color: var(--accent); letter-spacing: 0.18em; margin-bottom: 28px; display: block; }
.wwd__pillar-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--accent); }
.wwd__pillar-title { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.wwd__pillar-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.72; color: rgba(255,255,255,0.5); }

.wwd__pillar::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.4s var(--ease-smooth); }
.wwd__pillar:hover::after { width: 100%; }

@media (max-width: 900px) { .wwd__intro { grid-template-columns: 1fr; gap: 32px; } .wwd__pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wwd__pillars { grid-template-columns: 1fr; } .what-we-do { padding: 72px 0; } }

/* ─────────────────────────────────────────
   ABOUT / TEAM
───────────────────────────────────────── */
.about { padding: 108px 0; background: var(--offwhite); position: relative; }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}

.about__image-wrap { position: relative; }

.about__image-main { aspect-ratio: 4/5; overflow: hidden; }

.about__image-main img { margin-top: 0; object-position: top center; transition: transform 0.8s var(--ease-smooth); }

.about__image-wrap:hover .about__image-main img { transform: scale(1.04); }

.about__stat-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  background: var(--accent);
  padding: 20px 28px;
  margin-top: -2px;
  z-index: 1;
}

.about__stat-num { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 900; color: var(--black); line-height: 1; display: block; }
.about__stat-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--black); opacity: 0.72; margin-top: 4px; display: block; }

.about__ceo-card {
  margin-top: 24px;
  padding: 28px 24px;
  background: var(--white);
  border-left: 3px solid var(--accent);
}

.about__ceo-name { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.about__ceo-role { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 14px; }
.about__ceo-bio { font-size: 0.87rem; font-weight: 300; line-height: 1.75; color: #444; text-align: justify; }

.about__eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 20px; }

.about__heading { font-family: var(--ff-serif); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.13; color: var(--black); margin-bottom: 24px; letter-spacing: -0.01em; }
.about__heading em { font-style: italic; color: var(--accent); }

.about__body { font-size: 1rem; font-weight: 300; line-height: 1.82; color: #444; margin-bottom: 20px; text-align: justify; }

.about__values { margin: 32px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.about__value { display: flex; align-items: flex-start; gap: 14px; }
.about__value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }
.about__value-text { font-size: 0.92rem; font-weight: 400; color: var(--black); line-height: 1.6; }
.about__value-text strong { font-weight: 600; }

/* ── TEAM GRID ── */
.team__header { margin-bottom: 48px; }

.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.team__card { position: relative; cursor: default; }

.team__photo { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 20px; background: #ddd9d2; position: relative; }
.team__photo img { transition: transform 0.6s var(--ease-smooth); filter: grayscale(20%); }
.team__card:hover .team__photo img { transform: scale(1.05); filter: grayscale(0%); }

.team__photo-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.52); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.35s var(--ease-smooth); }
.team__card:hover .team__photo-overlay { opacity: 1; }

.team__social { display: flex; gap: 10px; }
.team__social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background 0.2s, border-color 0.2s; }
.team__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

.team__name { font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team__role { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 10px; }
.team__bio { font-size: 0.83rem; font-weight: 300; line-height: 1.65; color: var(--midgray); text-align: justify; }

/* ── Accordion ───────────────────────── */
.accordion { border: none; overflow: hidden; max-width: 420px; margin-top: 28px; }

.accordion__trigger {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid var(--black); cursor: pointer;
  font-family: var(--ff-sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--black);
  text-align: left;
  transition: background .2s, color .2s, border-color .2s;
}
.accordion__trigger:hover { background: var(--black); color: var(--white); }
.accordion__trigger[aria-expanded="true"] { background: var(--black); color: var(--white); border-color: var(--black); }

.accordion__body { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.accordion__body:not([hidden]) { max-height: 700px; }
.accordion__body[hidden] { display: block !important; visibility: hidden; }

.accordion__inner {
  padding: 24px 20px 20px;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,.08);
}

.acc-section-title {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.acc-list + .acc-section-title { margin-top: 20px; }

.acc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.acc-list li {
  font-family: var(--sans); font-size: .88rem; color: rgba(255,255,255,.7);
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.acc-list li:last-child { border-bottom: none; }

.acc-type { font-weight: 500; color: #fff; }
.acc-range { font-size: .78rem; color: rgba(255,255,255,.4); white-space: nowrap; }

.acc-list--check li { justify-content: flex-start; gap: 10px; }
.acc-list--check li::before {
  content: '';
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%230a0a0a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

@media (max-width: 1060px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 860px) {
  .about__layout { grid-template-columns: 1fr; gap: 60px; }
  .about { padding: 72px 0; }
}

@media (max-width: 560px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}