/* ============================================================
   Taibjee & Bhalla Advocates LLP
   Light, editorial redesign — burgundy & champagne on ivory
   ============================================================ */

:root {
  /* Brand */
  --burgundy:    #4E102F;
  --burgundy-2:  #6B1D42;
  --wine:        #892F55;
  --gold:        #C9B197;
  --gold-deep:   #9A7A4C;
  --gold-line:   #D8C4A6;

  /* Neutrals */
  --ink:         #2A2320;
  --muted:       #6E645D;
  --ivory:       #FAF6F0;
  --ivory-2:     #F3EBDF;
  --white:       #FFFFFF;
  --line:        rgba(42, 35, 32, 0.10);
  --line-strong: rgba(42, 35, 32, 0.18);

  /* Type */
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:    'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shell: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--burgundy); color: #fff; }

.shell { width: min(var(--shell), 100% - var(--gutter) * 2); margin-inline: auto; }

/* ---- shared type ---- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; color: var(--burgundy); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold-deep); opacity: 0.8;
}
.eyebrow--center { justify-content: center; }

.script { font-style: italic; color: var(--wine); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.06em;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--burgundy);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }
.btn--solid { background: var(--burgundy); color: #fff; }
.btn--solid:hover { background: var(--burgundy-2); border-color: var(--burgundy-2); }
.btn--ghost { background: transparent; color: var(--burgundy); }
.btn--ghost:hover { background: var(--burgundy); color: #fff; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--burgundy); }
.btn--gold:hover { background: var(--gold-line); border-color: var(--gold-line); }
.btn--light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--light:hover { background: #fff; color: var(--burgundy); border-color: #fff; }

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--burgundy);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
}
.topbar__inner {
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 42px; gap: 1.5rem;
}
.topbar a:hover { color: var(--gold); }
.topbar__group { display: flex; align-items: center; gap: 1.5rem; }
.topbar__group span, .topbar__group a { display: inline-flex; align-items: center; gap: 0.45em; white-space: nowrap; }
.topbar .sep { width: 1px; height: 13px; background: rgba(255,255,255,0.25); }
.topbar svg { width: 13px; height: 13px; opacity: 0.85; }
@media (max-width: 800px) { .topbar__group--hours { display: none; } .topbar__inner { justify-content: center; } }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: 0 8px 30px rgba(42,16,30,0.07); }
.nav__inner {
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav__logo { display: flex; align-items: center; gap: 0.9rem; }
.nav__logo img { height: 42px; width: auto; }
.nav__logo .nav__logo-text { line-height: 1.15; }
.nav__logo .firm { font-family: var(--display); font-size: 1.18rem; font-weight: 600; color: var(--burgundy); letter-spacing: 0.01em; }
.nav__logo .sub { font-family: var(--body); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
@media (max-width: 560px) { .nav__logo .nav__logo-text { display: none; } }

.nav__menu { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav__menu a {
  font-family: var(--body); font-size: 0.9rem; font-weight: 500;
  color: var(--ink); position: relative; padding: 0.4rem 0;
  transition: color .25s;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--gold-deep); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav__menu a:hover { color: var(--burgundy); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__cta { font-size: 0.82rem !important; padding: 0.7rem 1.35rem; }

.nav__toggle { display: none; background: none; border: 0; width: 42px; height: 42px; color: var(--burgundy); }
.nav__toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: .3s; }

@media (max-width: 940px) {
  .nav__menu, .nav__inner > .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem; box-shadow: 0 12px 24px rgba(42,16,30,0.08);
  }
  .nav.is-open .nav__menu a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { background: var(--ivory); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -8%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,177,151,0.20), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(3.5rem, 6vw, 6rem);
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.02;
}
.hero h1 em { font-style: italic; color: var(--wine); font-weight: 500; }
.hero__lead {
  margin-top: 1.6rem; color: var(--muted); font-size: 1.12rem; max-width: 42ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero__meta {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; gap: clamp(1.5rem,4vw,3rem); flex-wrap: wrap;
}
.hero__meta div { line-height: 1.2; }
.hero__meta .n { font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--burgundy); }
.hero__meta .n sup { font-size: 0.5em; color: var(--gold-deep); }
.hero__meta .l { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* founders card */
.founders {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(42,16,30,0.30);
  padding: 1.5rem;
  position: relative;
}
.founders::before {
  content: ""; position: absolute; inset: 9px; border: 1px solid var(--gold-line); pointer-events: none;
}
.founders__head { text-align: center; padding: 0.4rem 0 1.2rem; position: relative; z-index: 1; }
.founders__head .k { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.founders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.founder figure { margin: 0; }
.founder img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top center;
  filter: grayscale(0.15) contrast(1.02);
  background: var(--ivory-2);
}
.founder figcaption { text-align: center; padding-top: 0.8rem; }
.founder .nm { font-family: var(--display); font-size: 1.18rem; font-weight: 600; color: var(--burgundy); line-height: 1.1; }
.founder .ti { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.3rem; font-weight: 600; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .founders { max-width: 460px; }
}

/* ============================================================
   Credentials marquee
   ============================================================ */
.creds {
  background: var(--burgundy);
  padding: 1.15rem 0;
}
.creds__inner {
  width: min(var(--shell), 100% - var(--gutter) * 2); margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1.9rem;
}
.creds__item { font-family: var(--display); font-style: italic; font-size: clamp(1.05rem,2vw,1.4rem); color: #fff; font-weight: 500; }
.creds__dot { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: clamp(4rem, 7vw, 7.5rem) 0; }
.section--ivory { background: var(--ivory); }
.section--tint { background: var(--ivory-2); }

.head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head .eyebrow { margin-bottom: 1.3rem; }
.head h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 500; letter-spacing: -0.01em; }
.head h2 em { font-style: italic; color: var(--wine); }
.head p { margin-top: 1.2rem; color: var(--muted); font-size: 1.1rem; max-width: 56ch; }
.head--center p { margin-inline: auto; }

/* ============================================================
   About / story
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.about__lead { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.28; color: var(--burgundy); }
.about__body p { color: var(--ink); margin-bottom: 1.2rem; opacity: 0.9; }
.about__body p.muted { color: var(--muted); }

.pillars { margin-top: 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.2rem; }
.pillar { border-top: 2px solid var(--gold); padding-top: 1rem; }
.pillar h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.95rem; color: var(--muted); }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   Practice areas
   ============================================================ */
.practice__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.practice__item {
  display: block; padding: 1.5rem 0.4rem 1.5rem 1.3rem;
  border-bottom: 1px solid var(--line); position: relative;
  transition: padding-left .3s;
}
.practice__item::before {
  content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
}
.practice__item:hover { padding-left: 1.7rem; }
.practice__item:hover::before { transform: scaleY(1); }
.practice__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.practice__name { font-family: var(--display); font-size: clamp(1.3rem, 2.3vw, 1.65rem); font-weight: 600; color: var(--burgundy); transition: color .25s; }
.practice__item:hover .practice__name { color: var(--wine); }
.practice__arr { color: var(--gold-deep); opacity: 0; transform: translateX(-6px); transition: .3s; font-size: 0.95rem; }
.practice__item:hover .practice__arr { opacity: 1; transform: translateX(0); }
.practice__desc { color: var(--muted); font-size: 0.95rem; margin-top: 0.3rem; max-width: 46ch; }
@media (max-width: 760px) { .practice__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Team
   ============================================================ */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.member {
  background: var(--white); border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.member:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -22px rgba(42,16,30,0.32); border-color: var(--gold-line); }
.member__photo { position: relative; overflow: hidden; background: var(--ivory-2); }
.member__photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center;
  filter: grayscale(0.12); transition: filter .4s, transform .6s;
}
.member:hover .member__photo img { filter: grayscale(0); transform: scale(1.04); }
.member__body { padding: 1.3rem 1.3rem 1.5rem; border-top: 2px solid var(--gold); }
.member__name { font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--burgundy); line-height: 1.1; }
.member__role { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-top: 0.45rem; }
.member__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--burgundy); }
.member__link .arr { transition: transform .3s; }
.member:hover .member__link .arr { transform: translateX(4px); }
.team__note { margin-top: 2.6rem; text-align: center; color: var(--muted); font-style: italic; font-family: var(--display); font-size: 1.25rem; }
.team__note a { color: var(--burgundy); border-bottom: 1px solid var(--gold); font-style: normal; font-family: var(--body); font-size: 0.92rem; font-weight: 600; }
@media (max-width: 940px) { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Values (burgundy band)
   ============================================================ */
.values { background: var(--burgundy); color: #fff; position: relative; overflow: hidden; }
.values::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 100% 0%, rgba(137,47,85,0.45), transparent 60%);
}
.values .shell { position: relative; }
.values .head h2 { color: #fff; }
.values .head h2 em { color: var(--gold); }
.values .head .eyebrow { color: var(--gold); }
.values .head .eyebrow::before { background: var(--gold); }
.values .head p { color: rgba(255,255,255,0.78); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.16); }
.value { background: var(--burgundy); padding: 2rem 1.6rem; }
.value__k { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--gold); }
.value h4 { color: #fff; font-size: 1.45rem; font-weight: 600; margin: 0.8rem 0 0.6rem; }
.value p { color: rgba(255,255,255,0.74); font-size: 0.92rem; }
@media (max-width: 820px) { .values__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .values__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--ivory); }
.cta__card {
  background:
    linear-gradient(160deg, var(--burgundy) 0%, #380b20 100%);
  color: #fff; text-align: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.cta__card::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201,177,151,0.35); pointer-events: none;
}
.cta__card .eyebrow { color: var(--gold); justify-content: center; margin-bottom: 1.3rem; }
.cta__card .eyebrow::before { background: var(--gold); }
.cta__card h2 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 500; }
.cta__card h2 em { font-style: italic; color: var(--gold); }
.cta__card p { color: rgba(255,255,255,0.82); max-width: 48ch; margin: 1.2rem auto 2.2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #2C0816; color: rgba(255,255,255,0.66); padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.footer__brand img { height: 46px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__brand .firm { font-family: var(--display); font-size: 1.5rem; color: #fff; font-weight: 600; }
.footer__brand p { margin-top: 0.9rem; font-size: 0.9rem; max-width: 34ch; line-height: 1.7; }
.footer__brand .desig { margin-top: 1.1rem; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); line-height: 1.9; }
.footer h4 { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer a { font-size: 0.9rem; transition: color .25s; }
.footer a:hover { color: var(--gold); }
.footer__contact .row { margin-bottom: 1rem; }
.footer__contact .lbl { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.25rem; }
.footer__contact .val { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.footer__rule { height: 1px; background: rgba(255,255,255,0.12); margin: 2.8rem 0 1.6rem; }
.footer__disc { font-size: 0.74rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 92ch; }
.footer__disc strong { color: var(--gold); font-weight: 600; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   Floating consult button
   ============================================================ */
.floater {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--burgundy); color: #fff;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: 0 14px 30px -8px rgba(42,16,30,0.5);
  transition: background .3s, transform .3s;
}
.floater:hover { background: var(--burgundy-2); transform: translateY(-3px); }
.floater svg { width: 16px; height: 16px; }
@media (max-width: 560px) { .floater span { display: none; } .floater { padding: 0.95rem; } }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

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

/* ============================================================
   Hero — photography version
   ============================================================ */
.hero { background: #1a0510; }
.hero::before { display: none; }

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(20,4,12,0.90) 42%, rgba(20,4,12,0.18) 100%);
}
.hero__inner { position: relative; z-index: 2; }

.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold); }
.hero .hero__lead { color: rgba(255,255,255,0.82); }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero .hero__meta { border-top-color: rgba(255,255,255,0.18); }
.hero .hero__meta .n { color: #fff; }
.hero .hero__meta .l { color: rgba(255,255,255,0.6); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn--ghost:hover { background: #fff; color: var(--burgundy); border-color: #fff; }

/* Founders card — dark glass on photo */
.founders {
  background: rgba(15,4,9,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,177,151,0.35);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.60);
}
.founders::before { border-color: rgba(201,177,151,0.18); }
.founders__head .k { color: var(--gold); }
.founder .nm { color: #fff; }
.founder .ti { color: var(--gold); }

/* ============================================================
   Image strips
   ============================================================ */
.img-strip {
  height: clamp(320px, 40vw, 520px);
  overflow: hidden;
  position: relative;
  display: block;
}
.img-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 8s ease;
  display: block;
}
.img-strip:hover img { transform: scale(1.04); }
.img-strip__caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(20,4,12,0.80), transparent);
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
}
.img-strip__caption .eyebrow { color: var(--gold); margin-bottom: 0.8rem; }
.img-strip__caption .eyebrow::before { background: var(--gold); }
.img-strip__caption p {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2rem); color: #fff; max-width: 55ch;
}

/* ============================================================
   Team page
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: #1a0510;
  padding: clamp(5rem, 9vw, 9rem) 0;
  color: #fff; text-align: center;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,4,12,0.90), rgba(70,18,42,0.78));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); justify-content: center; margin-bottom: 1.3rem; }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
.page-hero h1 em { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.80); font-size: 1.12rem; max-width: 52ch; margin: 1.4rem auto 0; }

/* Full team cards (team.html — more detail) */
.team-full .team__grid { grid-template-columns: repeat(4, 1fr); }
.team-full .member__photo img { aspect-ratio: 3 / 4; }
.team-full .member__bio { color: var(--muted); font-size: 0.92rem; margin-top: 0.7rem; line-height: 1.6; }
.team-full .tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-full .tag {
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ivory-2); color: var(--gold-deep); padding: 0.3rem 0.65rem; font-weight: 600;
}
@media (max-width: 1000px) { .team-full .team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .team-full .team__grid { grid-template-columns: 1fr; } }

/* Support staff */
.support { background: var(--ivory-2); padding: clamp(3.5rem, 6vw, 6rem) 0; }
.support__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.8rem; }
.support__card { background: var(--white); padding: 2rem 1.8rem; border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.support__card .sc-k { font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--gold-deep); display: block; margin-bottom: 0.9rem; }
.support__card h4 { font-size: 1.5rem; font-weight: 600; color: var(--burgundy); margin-bottom: 0.6rem; }
.support__card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
@media (max-width: 760px) { .support__grid { grid-template-columns: 1fr; } }

/* Culture */
.culture {
  position: relative; overflow: hidden;
  background: #1a0510; color: #fff;
  padding: clamp(4rem, 8vw, 8rem) 0; text-align: center;
}
.culture__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.culture__overlay { position: absolute; inset: 0; background: rgba(20,4,12,0.84); }
.culture__inner { position: relative; z-index: 2; }
.culture .eyebrow { color: var(--gold); justify-content: center; margin-bottom: 1.4rem; }
.culture .eyebrow::before { background: var(--gold); }
.culture blockquote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); color: #fff;
  max-width: 24ch; margin: 0 auto; line-height: 1.28;
}
.culture blockquote em { color: var(--gold); font-style: normal; }
.culture blockquote footer {
  font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 1.6rem; font-style: normal;
}

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