/* ============================================
   LAND BANK ACCOUNTING — SHARED STYLES
   ============================================ */

:root {
  --green-darkest: #0F2A1C;
  --green-primary: #1B3D2A;
  --green-secondary: #2D5C40;
  --green-accent: #4A8C5F;
  --green-light: #C8DFD0;
  --green-mist: #EAF2EC;
  --cream: #F8F5EE;
  --paper: #FDFCF8;
  --ink: #1A1F1B;
  --ink-soft: #4A554C;
  --rule: #D8D3C4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

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

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-primary);
}

.logo-mark {
  height: 42px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--green-primary); }

.nav-links a.active {
  color: var(--green-primary);
}

/* Override .nav-links a defaults for the Schedule a Call button.
   Without this, the dark text color from .nav-links a wins over .btn's cream. */
.nav-links a.btn {
  color: var(--cream);
}

.nav-links a.btn:hover { color: var(--cream); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-accent);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--green-primary);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--green-darkest); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: var(--cream);
}

/* ============ MOBILE MENU ============ */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  transition: all 0.2s;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 90px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-mist) 0%, transparent 70%);
  z-index: 0;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-secondary);
  margin-bottom: 24px;
}

.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green-secondary);
}

.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--green-darkest);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-header h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-secondary);
}

.page-header p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
}

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-secondary);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green-secondary);
}

/* ============ HERO (HOME) ============ */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--green-mist) 0%, transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  color: var(--green-darkest);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-secondary);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-side {
  background: var(--green-primary);
  color: var(--cream);
  padding: 48px 40px;
  position: relative;
}

.hero-side::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--green-accent);
  transform: translate(12px, 12px);
  z-index: -1;
}

.hero-side-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}

.hero-side-quote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 32px;
}

.hero-side-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--green-secondary);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--green-light);
  line-height: 1.4;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--green-darkest);
  color: var(--green-light);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}

.ticker-content {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  animation: scroll 40s linear infinite;
}

.ticker-content span {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ticker-content span::after {
  content: '✦';
  color: var(--green-accent);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
section { padding: 110px 0; }

.section-head {
  margin-bottom: 70px;
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--green-darkest);
  margin-bottom: 20px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--green-secondary);
  font-weight: 300;
}

.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ THE LAYER ============ */
.layer-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.layer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.layer-item {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}

.layer-item:last-child { border-right: none; }

.layer-item.middle {
  background: var(--green-primary);
  color: var(--cream);
}

.layer-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--green-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.layer-item.middle .layer-num { color: var(--green-light); }

.layer-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--green-darkest);
}

.layer-item.middle h3 { color: var(--cream); }

.layer-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.layer-item.middle p { color: var(--green-light); }

.layer-item .layer-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-secondary);
  margin-top: 24px;
  padding: 6px 12px;
  border: 1px solid var(--green-secondary);
}

.layer-item.middle .layer-tag {
  color: var(--green-light);
  border-color: var(--green-light);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--green-primary);
  color: var(--cream);
  border-color: var(--green-primary);
}

.service-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 36px;
  background: var(--green-accent);
  color: var(--cream);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.service-tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-secondary);
  margin-bottom: 12px;
}

.service-card.featured .service-tier { color: var(--green-light); }

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--green-darkest);
  line-height: 1.1;
}

.service-card.featured h3 { color: var(--cream); }

.service-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

.service-card.featured .service-desc { color: var(--green-light); }

.service-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-list li {
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-card.featured .service-list li {
  border-color: var(--green-secondary);
  color: var(--cream);
}

.service-list li::before {
  content: '→';
  color: var(--green-accent);
  font-weight: 600;
  flex-shrink: 0;
}

.addon-card {
  margin-top: 28px;
  background: var(--cream);
  border: 1px dashed var(--green-secondary);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.addon-label {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--green-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-right: 1px solid var(--rule);
  padding-right: 28px;
}

.addon-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 6px;
}

.addon-content p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ PROCESS ============ */
.process-section {
  background: var(--green-darkest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--green-secondary);
  border-radius: 50%;
  opacity: 0.3;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--green-secondary);
  border-radius: 50%;
  opacity: 0.2;
}

.process-section .section-head h2 { color: var(--cream); }
.process-section .section-head h2 em { color: var(--green-accent); }
.process-section .section-head p { color: var(--green-light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.process-step {
  border-top: 1px solid var(--green-secondary);
  padding-top: 24px;
}

.process-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--green-accent);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--cream);
}

.process-step p {
  font-size: 14px;
  color: var(--green-light);
  line-height: 1.6;
}

/* ============ APPROACH PAGE - DETAILED ============ */
.approach-detailed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.approach-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.approach-row:first-child { padding-top: 0; }
.approach-row:last-child { border-bottom: none; }

.approach-row-num {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--green-accent);
  line-height: 1;
}

.approach-row-num small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-secondary);
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.approach-row-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 16px;
  line-height: 1.1;
}

.approach-row-content p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.approach-row-content p:last-child { margin-bottom: 0; }

/* ============ ABOUT ============ */
.about-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.about-headshot {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-secondary), var(--green-primary));
}

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

.about-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 4px;
}

.about-role {
  font-size: 13px;
  color: var(--green-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-credentials {
  font-size: 13px;
  color: var(--ink-soft);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  line-height: 1.7;
}

.about-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  color: var(--green-darkest);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-content h2 em {
  font-style: italic;
  color: var(--green-secondary);
}

.about-content p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-content p strong {
  color: var(--green-darkest);
  font-weight: 500;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  border-left: 2px solid var(--green-accent);
  padding-left: 20px;
}

.pillar h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-darkest);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--green-primary);
  color: var(--cream);
  padding: 48px 40px;
}

.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 28px;
}

.contact-detail {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--green-secondary);
}

.contact-detail:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--cream);
  font-weight: 400;
}

.contact-detail-value a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--green-secondary);
  transition: border-color 0.2s;
}

.contact-detail-value a:hover { border-color: var(--green-light); }

.calendar-embed {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
  min-height: 600px;
  position: relative;
}

.calendar-embed h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 12px;
}

.calendar-embed p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.6;
}

.calendar-placeholder {
  background: var(--green-mist);
  border: 1px dashed var(--green-secondary);
  padding: 60px 40px;
  text-align: center;
  color: var(--green-secondary);
}

.calendar-placeholder h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 12px;
}

.calendar-placeholder p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--green-primary);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--green-secondary);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--cream);
}

.cta-section h2 em {
  font-style: italic;
  color: var(--green-light);
}

.cta-section p {
  font-size: 18px;
  color: var(--green-light);
  max-width: 580px;
  margin: 0 auto 40px;
}

.cta-section .btn {
  background: var(--cream);
  color: var(--green-darkest);
  padding: 16px 36px;
  font-size: 15px;
}

.cta-section .btn:hover { background: var(--green-light); color: var(--green-darkest); }

/* ============ FAQ (on services page) ============ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}

.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.faq-q::before {
  content: '+';
  color: var(--green-accent);
  font-weight: 300;
  font-size: 28px;
  line-height: 0.8;
  flex-shrink: 0;
}

.faq-a {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-left: 36px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--green-darkest);
  color: var(--green-light);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--green-light);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--green-light);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--green-primary);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--green-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid, .layer-grid, .services-grid, .process-grid,
  .about-grid, .footer-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .layer-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 20px 32px;
    gap: 20px;
  }
  .nav-links.open a.active::after { display: none; }
  .hero { padding: 60px 0; }
  section { padding: 70px 0; }
  .about-card { position: static; }
  .approach-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 700px) {
  .addon-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .addon-label {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 16px;
  }
}

  .hero-side-tagline {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--green-secondary);
  }

  .hero-side-tagline-num {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .hero-side-tagline-text {
    font-size: 13px;
    color: var(--green-light);
    line-height: 1.4;
  }

  /* Hidden visually, available to screen readers and search engines */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero-definition {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-top: -16px;
    margin-bottom: 36px;
    padding: 14px 18px;
    background: rgba(74, 140, 95, 0.06);
    border-left: 2px solid var(--green-accent);
    max-width: 540px;
  }

  .hero-definition-label {
    font-weight: 600;
    color: var(--green-darkest);
  }

/* ============ LINKEDIN CALLOUT (inside about-card) ============ */
.linkedin-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-top: 16px;
  background: var(--cream);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
}

.linkedin-callout:hover {
  border-color: var(--green-primary);
  background: var(--green-mist);
}

.linkedin-icon {
  width: 32px;
  height: 32px;
  color: #0A66C2;
  flex-shrink: 0;
}

.linkedin-content {
  flex: 1;
  min-width: 0;
}

.linkedin-label {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-darkest);
  margin-bottom: 1px;
}

.linkedin-handle {
  font-size: 11px;
  color: var(--ink-soft);
}

.linkedin-arrow {
  color: var(--green-accent);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.linkedin-callout:hover .linkedin-arrow {
  transform: translateX(4px);
}
