/* ============================================================
   SOVEREIGN STONE CAPITAL PARTNERS — Global Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0B132B;
  --slate: #2C303A;
  --cream: #FBFBFB;
  --gold: #C5A880;
  --gold-light: #d4bc9a;
  --gold-dark: #a8895e;
  --text-primary: #FBFBFB;
  --text-dark: #1a1a2e;
  --text-muted: #8a8a9a;
  --border-subtle: rgba(197,168,128,0.15);
  --border-gold: rgba(197,168,128,0.4);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--sans); font-weight:400; line-height:1.7; color:var(--text-dark); background:var(--cream); -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition:color var(--transition); }

h1,h2,h3,h4,h5 { font-family:var(--serif); font-weight:500; line-height:1.2; letter-spacing:-0.01em; }
h1 { font-size:clamp(2.2rem,5vw,3.6rem); }
h2 { font-size:clamp(1.8rem,3.5vw,2.6rem); }
h3 { font-size:clamp(1.25rem,2.5vw,1.6rem); }
h4 { font-size:1.15rem; }
p { font-size:1rem; line-height:1.75; }
.text-gold { color:var(--gold); }
.text-muted { color:var(--text-muted); }

.container { max-width:var(--max-width); margin:0 auto; padding:0 2rem; }
.section { padding:6rem 0; }
.section--dark { background:var(--navy); color:var(--text-primary); }
.section--dark p, .section--dark h2, .section--dark h3, .section--dark h4 { color:var(--text-primary); }
.section--slate { background:var(--slate); color:var(--text-primary); }
.section--slate p, .section--slate h2, .section--slate h3 { color:var(--text-primary); }
.section-label { font-family:var(--sans); font-size:0.75rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; display:block; }
.section-title { margin-bottom:1.5rem; }
.gold-line { width:60px; height:2px; background:var(--gold); margin-bottom:2rem; }
.gold-line--center { margin-left:auto; margin-right:auto; }
.text-center { text-align:center; }

/* ══════════════════════════════════════════════
   NAVIGATION — 2.5x enlarged logo (38px × 2.5 = 95px)
   Nav bar height increased to 110px to accommodate
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,19,43,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo {
  height: 95px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251,251,251,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn--gold { background:var(--gold); color:var(--navy); }
.btn--gold:hover { background:var(--gold-light); transform:translateY(-1px); box-shadow:0 4px 20px rgba(197,168,128,0.3); }
.btn--outline { background:transparent; color:var(--cream); border:1px solid var(--border-gold); }
.btn--outline:hover { background:rgba(197,168,128,0.1); border-color:var(--gold); color:var(--gold); }
.btn--outline-dark { background:transparent; color:var(--navy); border:1px solid var(--navy); }
.btn--outline-dark:hover { background:var(--navy); color:var(--cream); }

/* ══════════════════════════════════════════════
   HERO — Static background images with overlay
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 43, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

/* Inner pages: shorter hero (80vh) */
.hero--inner {
  min-height: 80vh;
}
.hero--inner .hero-overlay {
  background: rgba(44, 48, 58, 0.75);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { color: var(--cream); margin-bottom: 1.5rem; max-width: 750px; }
.hero__subtitle {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(251,251,251,0.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__metrics { display:flex; gap:3rem; margin-bottom:3rem; flex-wrap:wrap; }
.hero__metric { text-align:left; }
.hero__metric-value { font-family:var(--serif); font-size:1.8rem; font-weight:600; color:var(--gold); display:block; line-height:1.2; }
.hero__metric-label { font-family:var(--sans); font-size:0.78rem; font-weight:400; color:rgba(251,251,251,0.5); letter-spacing:0.04em; margin-top:0.25rem; }
.hero__actions { display:flex; gap:1rem; flex-wrap:wrap; }

.hero--inner h1 { color:var(--cream); margin-bottom:1rem; }
.hero--inner .hero__page-desc { color:rgba(251,251,251,0.6); max-width:600px; font-size:1.05rem; }

/* ── Pillars ── */
.pillars-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:3rem; }
.pillar-card { padding:2.5rem 2rem; border:1px solid var(--border-subtle); transition:all var(--transition); position:relative; }
.pillar-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform var(--transition); }
.pillar-card:hover::before { transform:scaleX(1); }
.pillar-card:hover { border-color:var(--border-gold); transform:translateY(-2px); }
.pillar-card__icon { font-size:1.6rem; margin-bottom:1.25rem; color:var(--gold); }
.pillar-card h4 { font-family:var(--serif); font-size:1.1rem; margin-bottom:1rem; }
.section--dark .pillar-card h4 { color:var(--cream); }
.pillar-card p { font-size:0.9rem; line-height:1.65; color:rgba(251,251,251,0.65); }

/* ── Approach Grid ── */
.approach-grid { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; margin-top:3rem; }
.approach-card { padding:2.5rem; border:1px solid var(--border-subtle); transition:all var(--transition); }
.approach-card:hover { border-color:var(--border-gold); }
.approach-card h4 { font-family:var(--serif); margin-bottom:0.75rem; color:var(--cream); }
.approach-card p { font-size:0.92rem; color:rgba(251,251,251,0.6); line-height:1.7; }

/* ── Team Grid ── */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin-top:3rem; }
.team-card { background:#fff; border:1px solid #e8e6e1; transition:all var(--transition); overflow:hidden; }
.team-card:hover { border-color:var(--gold); box-shadow:0 8px 40px rgba(11,19,43,0.08); transform:translateY(-3px); }
.team-card__img { width:100%; aspect-ratio:3/4; background:linear-gradient(135deg,#e8e6e1,#d5d1ca); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.team-card__img img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.team-card__body { padding:2rem; }
.team-card__name { font-family:var(--serif); font-size:1.25rem; font-weight:600; color:var(--navy); margin-bottom:0.25rem; }
.team-card__title { font-family:var(--sans); font-size:0.8rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.team-card__blurb { font-size:0.9rem; color:#555; line-height:1.7; }
.team-card__expand-btn { display:inline-block; margin-top:1rem; font-family:var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); cursor:pointer; background:none; border:none; padding:0; transition:color var(--transition); }
.team-card__expand-btn:hover { color:var(--gold-dark); }

/* ── Modal ── */
.modal-overlay { position:fixed; inset:0; background:rgba(11,19,43,0.85); backdrop-filter:blur(4px); z-index:2000; display:none; align-items:center; justify-content:center; padding:2rem; }
.modal-overlay.active { display:flex; }
.modal { background:#fff; max-width:680px; width:100%; max-height:85vh; overflow-y:auto; padding:3rem; position:relative; animation:modalIn 0.3s ease; }
@keyframes modalIn { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }
.modal__close { position:absolute; top:1.5rem; right:1.5rem; background:none; border:none; font-size:1.5rem; color:var(--text-muted); cursor:pointer; line-height:1; }
.modal__close:hover { color:var(--navy); }
.modal__name { font-family:var(--serif); font-size:1.6rem; color:var(--navy); margin-bottom:0.25rem; }
.modal__title { font-family:var(--sans); font-size:0.8rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:1.5rem; }
.modal__bio { font-size:0.95rem; line-height:1.8; color:#444; }

/* ── Tombstones ── */
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin-top:3rem; }
.tombstone { background:#fff; border:1px solid #e8e6e1; transition:all var(--transition); overflow:hidden; }
.tombstone:hover { border-color:var(--gold); box-shadow:0 8px 40px rgba(11,19,43,0.08); transform:translateY(-3px); }
.tombstone__img { width:100%; aspect-ratio:16/10; background:linear-gradient(135deg,var(--navy),var(--slate)); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.tombstone__img-text { font-family:var(--serif); font-size:1.4rem; color:var(--gold); opacity:0.7; text-align:center; padding:1rem; }
.tombstone__body { padding:2rem; }
.tombstone__tag { font-family:var(--sans); font-size:0.72rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:0.75rem; display:block; }
.tombstone__name { font-family:var(--serif); font-size:1.2rem; font-weight:600; color:var(--navy); margin-bottom:0.75rem; }
.tombstone__desc { font-size:0.9rem; color:#666; line-height:1.7; margin-bottom:1rem; }
.tombstone__link { font-family:var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); }
.tombstone__link:hover { color:var(--gold-dark); }

/* ── Fund ── */
.fund-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin:3rem 0; }
.fund-metric { padding:2rem; border:1px solid var(--border-subtle); text-align:center; }
.fund-metric__value { font-family:var(--serif); font-size:2rem; font-weight:600; color:var(--gold); display:block; line-height:1.2; margin-bottom:0.5rem; }
.fund-metric__label { font-family:var(--sans); font-size:0.85rem; color:rgba(251,251,251,0.55); }
.fund-terms { width:100%; margin:2rem 0; border-collapse:collapse; }
.fund-terms th,.fund-terms td { padding:1rem 1.5rem; text-align:left; font-size:0.92rem; border-bottom:1px solid var(--border-subtle); }
.fund-terms th { font-family:var(--sans); font-weight:600; color:var(--gold); width:35%; }
.fund-terms td { color:rgba(251,251,251,0.75); }

/* ── LP Login ── */
.lp-gate { max-width:420px; margin:0 auto; padding:3rem; border:1px solid #e8e6e1; background:#fff; }
.lp-gate h3 { text-align:center; margin-bottom:0.5rem; color:var(--navy); }
.lp-gate__subtitle { text-align:center; font-size:0.88rem; color:var(--text-muted); margin-bottom:2rem; }
.lp-gate__logo { height:90px; width:auto; margin:0 auto 1.5rem; display:block; }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-family:var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--slate); margin-bottom:0.5rem; }

/* ── Insights Toolbar ── */
.insights-toolbar { display:flex; gap:1.5rem; margin-bottom:3rem; flex-wrap:wrap; align-items:center; }
.insights-toolbar input,
.insights-toolbar select { padding:0.75rem 1rem; border:1px solid var(--border-subtle); background:#fff; color:var(--text-dark); font-family:var(--sans); font-size:0.9rem; border-radius:4px; transition:border-color var(--transition); }
.insights-toolbar input:focus,
.insights-toolbar select:focus { outline:none; border-color:var(--gold); }
.insights-toolbar input { flex:1; min-width:200px; }
.insights-toolbar select { min-width:150px; }

/* ── Insights Grid ── */
.insights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin-top:3rem; }
.insight-card { background:#fff; border:1px solid #e8e6e1; transition:all var(--transition); overflow:hidden; }
.insight-card:hover { border-color:var(--gold); box-shadow:0 8px 40px rgba(11,19,43,0.08); transform:translateY(-3px); }
.insight-card__date { font-family:var(--sans); font-size:0.75rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:0.5rem; display:block; }
.insight-card__category { font-family:var(--sans); font-size:0.7rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:rgba(11,19,43,0.5); margin-bottom:0.75rem; display:inline-block; padding:0.25rem 0.75rem; background:rgba(197,168,128,0.1); border-radius:3px; }
.insight-card__title { font-family:var(--serif); font-size:1.1rem; font-weight:600; color:var(--navy); margin-bottom:0.75rem; }
.insight-card__excerpt { font-size:0.9rem; color:#666; line-height:1.7; margin-bottom:1rem; }
.insight-card__link { font-family:var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); }
.insight-card__link:hover { color:var(--gold-dark); }

/* ── Legal Content ── */
.legal-content { max-width:800px; margin:0 auto; }
.legal-content h2 { margin-top:3rem; margin-bottom:1.5rem; color:var(--cream); border-bottom:1px solid var(--border-subtle); padding-bottom:1rem; }
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 { margin-top:2rem; margin-bottom:1rem; color:var(--text-primary); font-size:1.2rem; }
.legal-content p { margin-bottom:1rem; color:rgba(251,251,251,0.8); font-size:0.95rem; line-height:1.8; }
.legal-content ul { margin:1rem 0 1rem 2rem; }
.legal-content li { margin-bottom:0.5rem; color:rgba(251,251,251,0.8); font-size:0.95rem; line-height:1.7; }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:12px 16px; font-family:var(--sans); font-size:0.92rem; border:1px solid #ddd; background:#fafafa; color:var(--text-dark); transition:border-color var(--transition); outline:none; }
.form-group input:focus,.form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { resize:vertical; min-height:120px; }
.lp-gate .btn { width:100%; margin-top:0.5rem; }

/* ── Contact Form ── */
.contact-form { max-width:560px; }
.contact-form .form-group input,.contact-form .form-group textarea { background:rgba(255,255,255,0.05); border-color:var(--border-subtle); color:var(--cream); }
.contact-form .form-group input::placeholder,.contact-form .form-group textarea::placeholder { color:rgba(251,251,251,0.35); }
.contact-form .form-group input:focus,.contact-form .form-group textarea:focus { border-color:var(--gold); }
.contact-form .form-group label { color:rgba(251,251,251,0.6); }

/* ── Split layout ── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }

/* ── Benefits ── */
.benefits-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:3rem; }
.benefit-card { padding:2rem; border:1px solid #e8e6e1; transition:all var(--transition); }
.benefit-card:hover { border-color:var(--gold); transform:translateY(-2px); }
.benefit-card h4 { font-family:var(--serif); color:var(--navy); margin-bottom:0.75rem; }
.benefit-card p { font-size:0.9rem; color:#666; line-height:1.65; }

/* ══════════════════════════════════════════════
   FOOTER — 2.5x enlarged logo (30px × 2.5 = 75px)
   ══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { max-width: 340px; }
.footer-logo {
  height: 75px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}
.footer__desc { font-size:0.88rem; color:rgba(251,251,251,0.45); line-height:1.7; }
.footer__heading { font-family:var(--sans); font-size:0.75rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.footer__links { list-style:none; }
.footer__links li { margin-bottom:0.6rem; }
.footer__links a { font-size:0.88rem; color:rgba(251,251,251,0.5); transition:color var(--transition); }
.footer__links a:hover { color:var(--cream); }
.footer__contact-info p { font-size:0.88rem; color:rgba(251,251,251,0.5); margin-bottom:0.4rem; }
.footer__contact-info a { color:var(--gold); }
.footer__contact-info a:hover { color:var(--gold-light); }
.footer__bottom { border-top:1px solid var(--border-subtle); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer__bottom p { font-size:0.78rem; color:rgba(251,251,251,0.35); }
.footer__disclaimer { font-size:0.72rem; color:rgba(251,251,251,0.25); max-width:700px; line-height:1.6; margin-top:1.5rem; }

/* ══════════════════════════════════════════════
   SCROLL-REVEAL — starts at opacity:0, JS adds .is-visible
   ══════════════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page reveal utility (used for initial page load stagger) */
.page-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Tombstone images should cover their container */
.tombstone__img img { width:100%; height:100%; object-fit:cover; display:block; }

/* LinkedIn floating action button */
.linkedin-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(11,19,43,0.2);
}
.linkedin-fab i { color: var(--navy); font-size:18px; }

.fade-in-up:nth-child(2) { transition-delay: 0.12s; }
.fade-in-up:nth-child(3) { transition-delay: 0.24s; }
.fade-in-up:nth-child(4) { transition-delay: 0.36s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .pillars-grid { grid-template-columns:repeat(2,1fr); }
  .footer__inner { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav__inner { height:80px; }
  .nav-logo { height:65px; }
  .nav__links { display:none; position:absolute; top:80px; left:0; right:0; background:rgba(11,19,43,0.98); flex-direction:column; padding:2rem; gap:1.5rem; border-bottom:1px solid var(--border-subtle); }
  .nav__links.active { display:flex; }
  .nav__toggle { display:flex; }
  .hero { min-height:90vh; }
  .hero-content { padding:7rem 1.5rem 4rem; }
  .hero--inner { min-height:60vh; }
  .hero--inner .hero-content { padding:7rem 1.5rem 3.5rem; }
  .hero__metrics { gap:2rem; }
  .pillars-grid { grid-template-columns:1fr; }
  .approach-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }
  .portfolio-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .insights-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .insights-toolbar { flex-direction:column; }
  .insights-toolbar input { min-width:auto; width:100%; }
  .fund-metrics { grid-template-columns:1fr; max-width:360px; margin-left:auto; margin-right:auto; }
  .benefits-grid { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; gap:2.5rem; }
  .footer-logo { height:55px; }
  .footer__inner { grid-template-columns:1fr; }
  .footer__bottom { flex-direction:column; text-align:center; }
  .section { padding:4rem 0; }
}

/* ── Owner Criteria Checklist ── */
.criteria-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.criteria-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; background: #fff; border: 1px solid var(--border-subtle); border-left: 4px solid var(--gold); border-radius: 4px; transition: all var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.criteria-item:hover { transform: translateX(5px); border-color: var(--border-gold); box-shadow: 0 8px 25px rgba(11,19,43,0.06); }
.criteria-item__icon { font-size: 1.4rem; color: var(--gold); margin-top: 0.1rem; }
.criteria-item__text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.criteria-item__text strong { color: var(--navy); font-weight: 600; display: block; margin-bottom: 0.2rem; font-family: var(--sans); }
