/* =========================================================
   Cuz Business Brokers — Global Stylesheet
   Law-firm + investment-firm hybrid aesthetic
   Palette: Deep Navy / Ivory / Gold
   ========================================================= */

:root {
  --navy-900: #08152e;
  --navy-800: #0d1f43;
  --navy-700: #122a59;
  --navy-600: #1b3a72;
  --navy-500: #2a4d8f;
  --gold-500: #c9a449;
  --gold-400: #d8b864;
  --gold-300: #e6cf8a;
  --ivory:    #faf7f1;
  --paper:    #ffffff;
  --ink-900:  #0a0f1a;
  --ink-700:  #2c3344;
  --ink-500:  #5b6577;
  --ink-300:  #aab2c2;
  --line:     #e6e2d8;

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(8,21,46,.06), 0 2px 8px rgba(8,21,46,.05);
  --shadow-md: 0 8px 24px rgba(8,21,46,.10);
  --shadow-lg: 0 24px 60px rgba(8,21,46,.18);

  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-base: 280ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-500); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: inline-block;
}
.lead {
  font-size: 1.18rem;
  color: var(--ink-700);
  max-width: 62ch;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--alt { background: var(--ivory); }
.section--navy {
  background: var(--navy-900);
  color: var(--ivory);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p, .section--navy li { color: rgba(255,255,255,.78); }
.section--navy .eyebrow { color: var(--gold-400); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--navy {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.btn--navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--outline:hover {
  background: var(--navy-800);
  color: #fff;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 4px;
  border: 1px solid var(--gold-500);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  color: var(--gold-500);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
.nav__links {
  display: flex; align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav__links a:hover { color: var(--navy-900); }
.nav__links a.is-active { color: var(--navy-900); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--gold-500);
}
.nav__cta { margin-left: 14px; }
.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px; height: 44px;
  border-radius: 6px;
  align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--navy-900); position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-900);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    padding: 12px 0; display: block; width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a.is-active::after { display: none; }
  .nav__cta { width: 100%; text-align: center; margin: 12px 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(8,21,46,.92) 0%, rgba(13,31,67,.86) 50%, rgba(8,21,46,.92) 100%),
    url('https://images.unsplash.com/photo-1535498730771-e735b998cd64?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: clamp(80px, 14vw, 160px) 0 clamp(80px, 14vw, 140px);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% 20%, rgba(201,164,73,.18), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
  position: relative;
}
.hero p { color: rgba(255,255,255,.85); font-size: 1.2rem; max-width: 60ch; }
.hero__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 42px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  letter-spacing: .04em;
}
.hero__meta strong { color: var(--gold-400); font-weight: 700; display: block; font-size: 1.6rem; font-family: var(--serif); margin-bottom: 4px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(201,164,73,.18), transparent 60%),
    radial-gradient(600px 300px at 80% 100%, rgba(201,164,73,.10), transparent 60%);
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 64ch; margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--navy-800);
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

.card--dark {
  background: var(--navy-800);
  border-color: var(--navy-700);
  color: rgba(255,255,255,.85);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.75); }
.card--dark .card__icon {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-700);
}

/* ---------- Process / Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold-500);
  line-height: 1;
  font-weight: 600;
}
.step h3 { margin-top: 4px; }
.step p { margin-bottom: 0; }
@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__num { font-size: 2.4rem; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Listings ---------- */
.listing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.listing:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.listing__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  background-size: cover; background-position: center;
}
.listing__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
}
.listing__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.listing__industry {
  font-size: .76rem;
  letter-spacing: .15em;
  color: var(--ink-500);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.listing h3 { font-size: 1.2rem; margin-bottom: 8px; }
.listing__location {
  font-size: .9rem; color: var(--ink-500); margin-bottom: 18px;
}
.listing__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: auto;
}
.listing__metric small {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.listing__metric strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-900);
}
.listing__cta { margin-top: 20px; }

/* ---------- Filters ---------- */
.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 40px;
}
.filters label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 6px;
}
.filters select, .filters input {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-900);
}
@media (max-width: 800px) { .filters { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .filters { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form--dark { background: var(--navy-800); border-color: var(--navy-700); color: #fff; }
.form--dark label { color: rgba(255,255,255,.8); }
.form--dark input, .form--dark select, .form--dark textarea {
  background: var(--navy-900); color: #fff; border-color: var(--navy-700);
}
.form--dark input:focus, .form--dark select:focus, .form--dark textarea:focus {
  border-color: var(--gold-400);
}
.field { margin-bottom: 20px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(18,42,89,.10);
}
.form textarea { min-height: 130px; resize: vertical; }
.form-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--ink-500);
}
.form-trust span { display: inline-flex; align-items: center; gap: 6px; }
.form-trust svg { width: 14px; height: 14px; color: var(--gold-500); }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--navy-900);
  line-height: 1.5;
}
.quote::before { content: '“'; font-size: 3rem; color: var(--gold-500); display: block; line-height: 0.3; margin-bottom: 18px; }
.quote__author {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-500);
  margin-top: 18px;
  font-style: normal;
}
.quote__author strong { color: var(--navy-900); display: block; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq__q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--gold-500);
  transition: transform var(--t-base);
}
.faq__item.is-open .faq__q::after { content: '−'; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}
.faq__a-inner { padding: 0 0 24px; color: var(--ink-700); font-size: 1rem; max-width: 70ch; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.72);
  padding: 70px 0 24px;
  font-size: .92rem;
}
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--gold-400); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer__brand p { color: rgba(255,255,255,.6); max-width: 38ch; font-size: .92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--gold-400); }
.footer .brand__mark { background: transparent; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.divider {
  width: 60px; height: 2px; background: var(--gold-500);
  margin: 0 0 24px;
}
.section-head .divider { margin-left: auto; margin-right: auto; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-700);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}
.section--navy .checklist li { color: rgba(255,255,255,.85); }

/* ---------- Two-column hero (Valuation page) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Tag chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 1em; padding: 0; list-style: none; }
.chips li {
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-700);
  background: #fff;
}
.section--navy .chips li { background: transparent; border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); }

/* ---------- Founder cards ---------- */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.founder__photo {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  position: relative;
  overflow: hidden;
}
.founder__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,164,73,.25), transparent 60%);
}
.founder__photo span {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  color: rgba(255,255,255,.4);
  font-size: 3rem;
}
.founder h3 { margin-bottom: 4px; }
.founder__title {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; } .founder__photo { max-width: 220px; } }

/* ---------- Tabs (Services) ---------- */
.tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.tab {
  background: transparent;
  border: 0;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab.is-active { color: var(--navy-900); border-bottom-color: var(--gold-500); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ---------- Blog cards ---------- */
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post__media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.post__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post__meta { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px; }
.post h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post p { font-size: .95rem; }
.post a.read-more { margin-top: auto; font-weight: 600; color: var(--navy-800); }
.post a.read-more:hover { color: var(--gold-500); }

/* ---------- Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}
