/* =========================================================
   Shoreline Street Partners — Shared Styles
   ========================================================= */

/* ---------- Advisory Service Cards ---------- */
.service-card { text-align: center; }
.service-card-icon { width: 34px; height: 34px; margin: 0 auto 18px; display: block; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card-desc { font-size: 14px; line-height: 1.6; color: var(--slate); margin-bottom: 18px; }
.service-divider { border: none; border-top: 1px solid rgba(27,42,74,0.15); margin: 0 0 20px; }
.service-group { text-align: left; margin-bottom: 14px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-label { font-size: 12px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.service-flat-list { text-align: left; }

:root {
  --navy: #1B2A4A;
  --sand: #C4A882;
  --warm-white: #F8F6F1;
  --slate: #6B7280;
  --dark-navy: #0f1a2e;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--slate);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; text-wrap: pretty; }

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

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Section Label (small caps sand label) ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  border-bottom: none;
}

.site-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.site-nav .logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.site-nav .logo-icon {
  height: 26px;
  width: auto;
  display: block;
  margin-right: 10px;
}

.site-footer .footer-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-footer .footer-name img {
  height: 13px;
  width: auto;
  flex-shrink: 0;
}

.site-nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--sand);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav .logo { font-size: 17px; }
  .site-nav .logo-icon { height: 23px; margin-right: 8px; }
  .site-nav .nav-links {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav .nav-links.open {
    max-height: 400px;
    overflow-y: auto;
  }
  .site-nav .nav-links a {
    display: block;
    padding: 16px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 400px) {
  .site-nav .logo span { display: none; }
  .site-nav .logo::after {
    content: "SSP";
    font-size: 19px;
    letter-spacing: 1px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-sand-outline {
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--sand);
}
.btn-sand-outline:hover {
  background: var(--sand);
  color: var(--navy);
}

.btn-navy-outline {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-navy-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Header Banner (every inner page) ---------- */
.page-header {
  position: relative;
  background: var(--navy);
  padding: 90px 0 64px;
  text-align: center;
}

.page-header.spacious {
  padding-top: 160px;
  padding-bottom: 84px;
}

@media (max-width: 640px) {
  .page-header.spacious {
    padding-top: 110px;
    padding-bottom: 56px;
  }
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sand);
}

.page-header .section-label { text-align: center; }

.page-header h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 22px;
}

.page-header .intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Generic Section Padding ---------- */
.section {
  padding: 88px 0;
}

.section.bg-navy {
  background: var(--navy);
}

.section.bg-white {
  background: var(--warm-white);
}

.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.section-heading.navy-bg h2 { color: var(--white); }

.section-subtext {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-subtext.on-navy {
  color: rgba(255,255,255,0.55);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0;
}

.stats-bar .stat {
  position: relative;
  padding: 0 24px;
}

.stats-bar .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 0.5px;
  background: rgba(255,255,255,0.12);
}

.stats-bar .stat .big-num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--sand);
  margin-bottom: 10px;
}

.stats-bar .stat .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ---------- Cards (generic) ---------- */
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

@media (max-width: 820px) {
  .card-grid-2, .card-grid-3, .stats-bar { grid-template-columns: 1fr; }
  .stats-bar .stat:not(:last-child)::after { display: none; }
  .stats-bar .stat { padding: 24px 0; border-bottom: 0.5px solid rgba(255,255,255,0.12); }
  .stats-bar .stat:last-child { border-bottom: none; }
}

.card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  border-radius: 2px;
}

.card-white {
  background: var(--white);
  border: 0.5px solid var(--navy);
  padding: 40px;
  border-radius: 2px;
}

.card-white h3, .card-dark h3 {
  font-size: 19px;
  margin-bottom: 24px;
}
.card-dark h3 { color: var(--white); }

/* ---------- Data rows (Investment Management cards) ---------- */
.data-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.data-row:last-child { border-bottom: none; }
.data-row .row-label { color: rgba(255,255,255,0.55); }
.data-row .row-value { color: var(--sand); font-weight: 600; text-align: right; }

/* ---------- Value list (Investor Services) ---------- */
.value-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.5;
}
.value-list li {
  padding: 9px 0 9px 20px;
  position: relative;
  color: var(--slate);
}
.value-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sand);
}
.card-dark .value-list li { color: rgba(255,255,255,0.7); }

.card-body-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.card-dark .card-body-text { color: rgba(255,255,255,0.7); }
.card-white .card-body-text { color: var(--slate); }

/* ---------- Team Cards ---------- */
.team-card {
  background: var(--white);
  border: 0.5px solid var(--navy);
  padding: 44px;
  border-radius: 2px;
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  font-family: var(--font-heading);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 18px;
}

.team-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: rgba(27,42,74,0.06);
  color: var(--navy);
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 20px;
}

.team-email {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  display: inline-block;
}

.icon-link {
  display: inline-flex;
  padding: 11px;
  margin: -11px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  text-transform: uppercase;
}

.social-link img {
  width: 26px;
  height: 26px;
  display: block;
  transition: opacity 0.2s ease;
}

.social-link:hover img {
  opacity: 0.8;
}

.contact-card .social-link {
  color: var(--white);
}

/* ---------- Pull Quote ---------- */
.pull-quote {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 21px;
  color: var(--white);
  line-height: 1.5;
}

/* ---------- Contact Cards ---------- */
.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--sand);
  padding: 40px;
  text-align: left;
}
.contact-card h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 6px;
}
.contact-card .team-title { margin-bottom: 22px; }
.contact-card .contact-line {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.contact-card a.contact-line:hover { color: var(--sand); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-navy);
  padding: 28px 0;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-name {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--white);
}
.site-footer .footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ---------- Hero (Home page) ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2c4265 0%, #1B2A4A 55%, #0f1a2e 100%);
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0) scale(1.12);
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0.55;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-content .hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sand);
  z-index: 3;
}

/* ---------- Scroll Cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 5;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  line-height: 0;
}

.scroll-cue-line {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.4);
}

.scroll-cue svg {
  width: 15px;
  height: 15px;
  display: block;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 38px; }
  .section { padding: 60px 0; }
  .card-white, .card-dark, .team-card { padding: 28px; }
  .page-header { padding: 70px 0 48px; }
  .page-header h1 { font-size: 30px; }
  .stats-bar .stat .big-num { font-size: 28px; }
}

@media (max-width: 480px) {
  .container,
  .site-nav .nav-inner,
  .site-footer .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content h1 { font-size: 32px; }
  .hero-content .hero-sub { font-size: 15px; }
  .page-header h1 { font-size: 26px; }
  .card-white, .card-dark, .team-card, .contact-card { 