/* ========================================
   PACE WEALTH PARTNERS — SHARED STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #f8f7f4;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

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

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2vw, 28px) clamp(28px, 5vw, 80px);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 229, 223, 0.5);
  max-width: 100%;
}

.nav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  color: #3a3632;
  letter-spacing: 0.06em;
}

.nav .nav-links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.nav .nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  color: #8a8580;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.nav .nav-links a:hover { color: #3a3632; }
.nav .nav-links a.active { color: #3a3632; font-weight: 500; }

.nav .nav-links .cta-nav {
  color: #3a3632;
  font-weight: 500;
  border-bottom: 1px solid #a89476;
  padding-bottom: 2px;
}

.nav .nav-links .login-link {
  font-weight: 500;
  color: #8a8580;
  padding: 8px 20px;
  border: 1px solid #ddd8d0;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav .nav-links .login-link:hover {
  border-color: #c4b8a5;
  color: #3a3632;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: #3a3632;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f8f7f4;
  border-bottom: 1px solid #e8e5df;
  padding: 20px 28px 28px;
  z-index: 100;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #8a8580;
  padding: 12px 0;
  border-bottom: 1px solid #f0ede8;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: #3a3632; font-weight: 500; }

/* ========================================
   SHARED COMPONENTS
   ======================================== */
.section-break {
  width: 100%;
  height: 1px;
  background: #e8e5df;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  color: #3a3632;
  background: transparent;
  border: 1px solid #c4b8a5;
  padding: clamp(14px, 1.2vw, 20px) clamp(36px, 3.5vw, 56px);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #3a3632;
  color: #f8f7f4;
  border-color: #3a3632;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 3.5vw, 56px);
}

.section-header .sec-divider {
  width: 40px;
  height: 1px;
  background: #c4b8a5;
  margin: 0 auto clamp(20px, 2vw, 32px);
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 400;
  color: #3a3632;
  margin-bottom: 14px;
}

.section-header h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #a89476;
}

.section-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #8a8580;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   PAGE CTA
   ======================================== */
.page-cta {
  padding: clamp(40px, 4.5vw, 72px) clamp(28px, 5vw, 80px);
  text-align: center;
  border-top: 1px solid #e8e5df;
}

.page-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 400;
  color: #3a3632;
  margin-bottom: 16px;
}

.page-cta h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #a89476;
}

.page-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #8a8580;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: clamp(56px, 7vw, 100px) clamp(28px, 5vw, 80px) clamp(56px, 6vw, 88px);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero .divider {
  width: 40px;
  height: 1px;
  background: #c4b8a5;
  margin: 0 auto clamp(28px, 3vw, 44px);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  color: #3a3632;
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #a89476;
}

.hero .subhead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  color: #8a8580;
  max-width: 600px;
  margin: 0 auto clamp(32px, 3.5vw, 52px);
}

/* ========================================
   SPLIT LAYOUT
   ======================================== */
.split-section {
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.split-layout .left-col .sec-div {
  width: 40px;
  height: 1px;
  background: #c4b8a5;
  margin-bottom: clamp(20px, 2vw, 32px);
}

.split-layout .left-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  color: #3a3632;
  margin-bottom: clamp(16px, 2vw, 28px);
  line-height: 1.25;
}

.split-layout .left-col h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #a89476;
}

.split-layout .left-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #8a8580;
  line-height: 1.8;
}

/* Pain points */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
  padding-top: 8px;
}

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-item .pain-line {
  width: 2px;
  min-height: 100%;
  background: #c4b8a5;
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 0.5;
}

.pain-item .pain-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 6px;
}

.pain-item .pain-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
}

/* ========================================
   BRIDGE — PERSONAL CFO
   ======================================== */
.bridge-section {
  padding: clamp(40px, 4.5vw, 68px) clamp(28px, 5vw, 80px);
  text-align: center;
}

.bridge-inner {
  max-width: 720px;
  margin: 0 auto;
}

.bridge-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a89476;
  margin-bottom: 16px;
}

.bridge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  color: #3a3632;
  line-height: 1.4;
}

/* ========================================
   SERVICE CARDS (homepage)
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}

.service-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 6px;
  padding: clamp(24px, 2.5vw, 40px) clamp(20px, 2vw, 32px);
  transition: border-color 0.3s;
}

.service-card:hover { border-color: #c4b8a5; }

.service-card .card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 300;
  color: #d4cec4;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.7;
}

.section-footer-link {
  text-align: center;
  margin-top: clamp(28px, 3vw, 48px);
}

.section-footer-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: #3a3632;
  border-bottom: 1px solid #c4b8a5;
  padding-bottom: 2px;
  letter-spacing: 0.04em;
}

/* ========================================
   STEPS
   ======================================== */
.simple-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.simple-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: clamp(20px, 2vw, 32px);
}

.simple-step:last-child { padding-bottom: 0; }

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: clamp(28px, 2.5vw, 36px);
}

.step-num {
  width: clamp(28px, 2.5vw, 36px);
  height: clamp(28px, 2.5vw, 36px);
  border-radius: 50%;
  border: 1px solid #c4b8a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  color: #a89476;
  background: #f8f7f4;
  z-index: 2;
}

.step-line {
  width: 1px;
  flex: 1;
  background: #ddd8d0;
  margin-top: 6px;
}

.step-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 6px;
  padding-top: 5px;
}

.step-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
}

/* ========================================
   RIGHT FIT CHECKMARKS
   ======================================== */
.fit-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 20px);
  padding-top: 8px;
}

.fit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fit-check {
  width: clamp(22px, 1.8vw, 28px);
  height: clamp(22px, 1.8vw, 28px);
  border-radius: 50%;
  border: 1px solid #c4b8a5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fit-check svg {
  width: 12px;
  height: 12px;
  stroke: #a89476;
  stroke-width: 2;
  fill: none;
}

.fit-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  color: #6a6560;
  line-height: 1.65;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8e5df;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 600;
  color: #3a3632;
  padding: clamp(20px, 1.8vw, 28px) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.faq-q:hover { opacity: 0.8; }

.faq-toggle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.5vw, 24px);
  color: #c4b8a5;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  color: #8a8580;
  line-height: 1.75;
  padding: 0 36px 24px 0;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ========================================
   EXPANDABLE SERVICES (services page)
   ======================================== */
.svc-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.svc-item { border-bottom: 1px solid #e8e5df; }
.svc-item:last-child { border-bottom: none; }

.svc-header-row {
  display: flex;
  align-items: center;
  padding: clamp(20px, 2vw, 32px) 0;
  cursor: pointer;
  gap: 20px;
  transition: opacity 0.2s;
}

.svc-header-row:hover { opacity: 0.8; }

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 300;
  color: #d4cec4;
  width: 40px;
  flex-shrink: 0;
}

.svc-header-text { flex: 1; }

.svc-header-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 4px;
}

.svc-header-text .svc-oneliner {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.5;
}

.svc-toggle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 28px);
  color: #c4b8a5;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
  transition: transform 0.3s;
}

.svc-item.open .svc-toggle {
  transform: rotate(45deg);
}

.svc-expanded {
  padding: 0 0 32px 60px;
  display: none;
}

.svc-item.open .svc-expanded {
  display: block;
}

.svc-approach {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #6a6560;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 720px;
}

.svc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a89476;
  margin-bottom: 12px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-list:last-child { margin-bottom: 0; }

.svc-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.svc-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b8a5;
  flex-shrink: 0;
  margin-top: 8px;
}

.svc-list-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #6a6560;
  line-height: 1.6;
}

/* ========================================
   ONGOING TIMELINE (services page)
   ======================================== */
.ongoing {
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.timeline-v {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline-v::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 18px;
  width: 1px;
  background: #ddd8d0;
}

.tl-item {
  position: relative;
  margin-bottom: clamp(28px, 3vw, 48px);
}

.tl-item:last-child { margin-bottom: 0; }

.tl-item .tl-dot {
  position: absolute;
  left: -50px;
  top: 0;
  width: clamp(32px, 2.8vw, 42px);
  height: clamp(32px, 2.8vw, 42px);
  border-radius: 50%;
  border: 1px solid #c4b8a5;
  background: #f8f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-left: calc((clamp(32px, 2.8vw, 42px) / -2) + 18px);
}

.tl-item .tl-dot .dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4b8a5;
}

.tl-item .tl-label {
  margin-bottom: 6px;
}

.tl-item .tl-content {
  padding-top: 0;
}

.tl-item .tl-label .tl-period {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a89476;
  margin-bottom: 2px;
}

.tl-item .tl-label .tl-months {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  color: #3a3632;
}

.tl-item .tl-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 6px;
}

.tl-item .tl-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
}

.tl-always-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: #3a3632;
  margin-bottom: 6px;
}

.tl-always-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
  margin-bottom: 10px;
}

.tl-always-content .tl-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.tl-always-content .tl-bullet:last-of-type { margin-bottom: 0; }

.tl-always-content .tl-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4b8a5;
  flex-shrink: 0;
  margin-top: 8px;
}

.tl-always-content .tl-bullet span {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
}

.tl-always-footer {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #a89476;
  font-weight: 500;
  margin-top: 14px;
}

/* ========================================
   PRICING (services page)
   ======================================== */
.pricing {
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}

.price-box {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 6px;
  padding: clamp(28px, 2.8vw, 44px) clamp(24px, 2.5vw, 40px);
  transition: border-color 0.3s;
}

.price-box:hover { border-color: #c4b8a5; }

.price-box .box-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a89476;
  margin-bottom: 18px;
}

.price-box .box-label .optional {
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #8a8580;
}

.price-box .price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  color: #3a3632;
  line-height: 1;
  margin-bottom: 4px;
}

.price-box .price-main span {
  font-size: clamp(16px, 1.4vw, 20px);
  color: #8a8580;
}

.price-box .price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 0.9vw, 14px);
  color: #a89476;
  margin-bottom: 20px;
}

.price-box .price-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8580;
  line-height: 1.65;
}

.aum-tiers { margin-top: 20px; }

.aum-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0ede8;
}

.aum-tier:last-child { border-bottom: none; }

.aum-tier .tier-range {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #6a6560;
}

.aum-tier .tier-rate {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  color: #3a3632;
}

.pricing-footer {
  text-align: center;
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  color: #8a8580;
}

/* ========================================
   ABOUT PAGE — FIRM STORY
   ======================================== */
.firm-story {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 5vw, 80px);
  text-align: center;
}

.firm-story p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 19px);
  color: #6a6560;
  line-height: 1.8;
  margin-bottom: 20px;
}

.firm-story p:last-child { margin-bottom: 0; }
.firm-story strong { color: #3a3632; font-weight: 600; }

/* ========================================
   ABOUT PAGE — ADVISOR CARD
   ======================================== */
.card-wrapper { padding: 0 clamp(28px, 5vw, 80px) clamp(48px, 5vw, 72px); }

.advisor-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 8px;
  padding: clamp(40px, 4.5vw, 64px) clamp(28px, 4vw, 56px);
  text-align: center;
}

.advisor-photo {
  width: clamp(160px, 15vw, 220px);
  height: clamp(160px, 15vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-card .advisor-name-line { margin-bottom: 6px; }

.advisor-card .advisor-name-line h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  color: #3a3632;
  display: inline;
}

.advisor-card .advisor-name-line .inline-creds {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #a89476;
}

.advisor-card .advisor-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  color: #8a8580;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.advisor-card .advisor-bio {
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}

.advisor-card .advisor-bio p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #6a6560;
  line-height: 1.8;
  margin-bottom: 16px;
}

.advisor-card .advisor-bio p:last-child { margin-bottom: 0; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: clamp(24px, 2.5vw, 40px) clamp(28px, 5vw, 80px);
  border-top: 1px solid #e8e5df;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 0.85vw, 14px);
  color: #b8b3ab;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .split-layout { grid-template-columns: 1fr; gap: 40px; }

  .cards-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .svc-expanded { padding-left: 0; }

  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}
