/* ============================================
   ROI Development Agency — Site Styles
   Editorial Confidence Design System
============================================ */

:root {
  --dark-cyan: #205050;
  --dark-cyan-deep: #163838;
  --greyish-cyan: #AFC4C0;
  --cool-gray: #D9D9D9;
  --super-white: #F4F4F4;
  --paper: #F6F4EF;
  --paper-warm: #EFEBE3;
  --ink: #0F2424;
  --gold: #E4B83C;
}

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

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ============= INTRO ============= */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-cyan);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: introExit 0.9s cubic-bezier(0.7, 0, 0.3, 1) 3.4s forwards;
}

.intro-anchor-wrap {
  position: relative;
  width: 260px;
  height: 320px;
  margin-bottom: 50px;
}

.intro-anchor {
  position: absolute;
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 320px;
  animation: anchorDrop 1.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.4s forwards,
             anchorSway 3s ease-in-out 2s infinite;
}

.intro-anchor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.intro-text {
  font-family: 'Fraunces', serif;
  color: var(--super-white);
  font-size: 22px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  animation: textFadeIn 0.9s ease-out 2s forwards;
  text-align: center;
}

.intro-tagline {
  font-family: 'Fraunces', serif;
  color: var(--greyish-cyan);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  margin-top: 14px;
  opacity: 0;
  animation: textFadeIn 0.9s ease-out 2.4s forwards;
}

@keyframes anchorDrop {
  0% { top: -500px; transform: translateX(-50%) rotate(-8deg); }
  55% { top: 30px; transform: translateX(-50%) rotate(5deg); }
  75% { top: -10px; transform: translateX(-50%) rotate(-3deg); }
  100% { top: 0; transform: translateX(-50%) rotate(0deg); }
}

@keyframes anchorSway {
  0%, 100% { transform: translateX(-50%) rotate(-2.5deg); }
  50% { transform: translateX(-50%) rotate(2.5deg); }
}

@keyframes textFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introExit {
  to { opacity: 0; pointer-events: none; transform: scale(1.08); }
}

/* ============= NAVIGATION ============= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(246, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, border-color 0.3s ease;
}

nav.has-intro { opacity: 0; animation: navFadeIn 1s ease-out 4s forwards; }

nav.scrolled {
  border-bottom-color: rgba(32, 80, 80, 0.1);
  padding: 14px 60px;
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

nav.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--dark-cyan);
  padding: 11px 24px;
  border: 1px solid var(--dark-cyan);
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--dark-cyan);
  color: var(--super-white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
}

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

.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid rgba(32, 80, 80, 0.12);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-cta {
  margin-top: 30px;
  background: var(--dark-cyan);
  color: var(--super-white) !important;
  text-align: center;
  padding: 18px !important;
  border-radius: 100px;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
}

/* ============= UTILITY ============= */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--dark-cyan);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--dark-cyan);
}

.section-label.light { color: var(--greyish-cyan); }
.section-label.light::before { background: var(--greyish-cyan); }

.section-label.center {
  justify-content: center;
}
.section-label.center::before { display: none; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 19px 34px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 1px solid var(--dark-cyan);
}

.btn-primary:hover {
  background: var(--dark-cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(32, 80, 80, 0.25);
}

.btn-primary .arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

button.btn-primary, button.btn-text {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
button.btn-text { background: none; border: none; }

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-text:hover::after { transform-origin: left; transform: scaleX(0); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--super-white);
  color: var(--dark-cyan);
  padding: 22px 42px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--super-white);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 244, 244, 0.3);
}

.btn-outline:hover {
  border-color: var(--super-white);
  background: rgba(255,255,255,0.08);
}

/* ============= PAGE HERO (sub-pages) ============= */
.page-hero {
  padding: 200px 60px 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-anchor {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 580px;
  opacity: 0.06;
  pointer-events: none;
  animation: gentleFloat 9s ease-in-out infinite;
}

.page-hero-anchor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.page-hero .section-label { margin-bottom: 40px; }

.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 124px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1200px;
  margin-bottom: 36px;
}

.page-hero-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.page-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.72);
  max-width: 640px;
}

/* ============= MARQUEE ============= */
.marquee-divider {
  background: var(--dark-cyan);
  color: var(--paper);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(175, 196, 192, 0.18);
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: marquee 32s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
}

.marquee-content > span {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--greyish-cyan);
  border-radius: 50%;
}

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

@keyframes gentleFloat {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50% { transform: translateY(calc(-50% - 18px)) rotate(3deg); }
}

/* ============= FOOTER ============= */
footer {
  background: var(--dark-cyan-deep);
  color: var(--super-white);
  padding: 100px 60px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(175, 196, 192, 0.15);
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--greyish-cyan);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 28px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244, 244, 244, 0.62);
  max-width: 360px;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--greyish-cyan);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: var(--super-white);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 12px;
  color: rgba(244, 244, 244, 0.5);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 26px;
}

.footer-socials a {
  color: rgba(244, 244, 244, 0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.footer-socials a:hover { color: var(--super-white); }

/* ============= SCROLL REVEAL ============= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* ============= HOMEPAGE: HERO ============= */
.hero {
  min-height: 100vh;
  padding: 180px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--dark-cyan);
  margin-bottom: 44px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s ease-out 4.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--dark-cyan);
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 8.4vw, 132px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1500px;
  margin-bottom: 56px;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.hero-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline .word:nth-child(1) > span { animation-delay: 4.3s; }
.hero-headline .word:nth-child(2) > span { animation-delay: 4.38s; }
.hero-headline .word:nth-child(3) > span { animation-delay: 4.46s; }
.hero-headline .word:nth-child(4) > span { animation-delay: 4.54s; }
.hero-headline .word:nth-child(5) > span { animation-delay: 4.62s; }
.hero-headline .word:nth-child(6) > span { animation-delay: 4.7s; }
.hero-headline .word:nth-child(7) > span { animation-delay: 4.78s; }
.hero-headline .word:nth-child(8) > span { animation-delay: 4.86s; }

.hero-headline .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

@keyframes wordReveal { to { transform: translateY(0); } }

.hero-sub {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.7);
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 1s ease-out 5.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease-out 5.7s forwards;
}

.hero-anchor-bg {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 540px;
  height: 660px;
  opacity: 0.07;
  pointer-events: none;
  animation: heroFloat 9s ease-in-out infinite;
}

.hero-anchor-bg img { width: 100%; height: 100%; object-fit: contain; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= STATEMENT ============= */
.statement {
  padding: 160px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.statement .section-label { margin-bottom: 50px; }

.statement-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 1200px;
}

.statement-text strong {
  font-weight: 500;
  font-style: italic;
  color: var(--dark-cyan);
}

/* ============= SERVICES SECTION ============= */
.services {
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

.services-header {
  max-width: 1400px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
}

.services-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.services-title .italic {
  font-style: italic;
  color: var(--greyish-cyan);
  font-weight: 300;
}

.services-list {
  max-width: 1400px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 70px 1fr 2fr 60px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid rgba(175, 196, 192, 0.22);
  cursor: pointer;
  transition: padding 0.4s ease;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(175, 196, 192, 0.22);
}

.service-item:hover { padding-left: 24px; }

.service-num {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--greyish-cyan);
  font-weight: 300;
  padding-top: 8px;
}

.service-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.72);
  max-width: 500px;
}

.service-arrow {
  font-size: 26px;
  color: var(--greyish-cyan);
  transition: transform 0.4s ease, color 0.3s ease;
  text-align: right;
  padding-top: 6px;
}

.service-item:hover .service-arrow {
  transform: translateX(10px) rotate(-45deg);
  color: var(--super-white);
}

/* ============= DIAGNOSTIC CTA ============= */
.diagnostic-cta-section {
  padding: 160px 60px;
  background: var(--paper-warm);
  position: relative;
}

.diagnostic-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.diagnostic-cta-section .section-label {
  justify-content: center;
  margin-bottom: 36px;
}

.diagnostic-cta-section .section-label::before { display: none; }

.diagnostic-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 36px;
}

.diagnostic-headline .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.diagnostic-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 36, 36, 0.7);
  max-width: 660px;
  margin: 0 auto 56px;
}

.diagnostic-meta {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(15, 36, 36, 0.55);
  letter-spacing: 0.02em;
}

/* ============= TESTIMONIAL ============= */
.testimonial {
  padding: 160px 60px;
  background: var(--greyish-cyan);
  color: var(--ink);
}

.testimonial-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial .section-label {
  color: var(--dark-cyan);
  margin-bottom: 60px;
}
.testimonial .section-label::before { background: var(--dark-cyan); }

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 44px;
  font-style: italic;
}

.testimonial-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 1.2em;
  color: var(--dark-cyan);
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  margin-right: 8px;
  line-height: 0;
  vertical-align: -0.15em;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.testimonial-divider {
  width: 30px;
  height: 1px;
  background: var(--dark-cyan);
}

.testimonial-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(15, 36, 36, 0.65);
  font-weight: 400;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 12px;
  color: rgba(15, 36, 36, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.google-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 100px;
  padding-top: 70px;
  border-top: 1px solid rgba(15, 36, 36, 0.12);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card-quote {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.003em;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.testimonial-card-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(15, 36, 36, 0.6);
}

/* ============= APPROACH ============= */
.approach {
  padding: 160px 60px;
  background: var(--paper);
}

.approach-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}

.approach-label-block .section-label { margin-bottom: 30px; }

.approach-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.approach-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.approach-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(15, 36, 36, 0.72);
}

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

.approach-card {
  border-top: 1px solid rgba(32, 80, 80, 0.22);
  padding-top: 32px;
}

.approach-num {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--dark-cyan);
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.approach-card-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.12;
}

.approach-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 36, 36, 0.7);
}

/* ============= FINAL CTA ============= */
.cta-final {
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 180px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-anchor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 780px;
  opacity: 0.06;
  pointer-events: none;
}

.cta-final-anchor img { width: 100%; height: 100%; object-fit: contain; }

.cta-final-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.cta-final .section-label {
  color: var(--greyish-cyan);
  margin-bottom: 40px;
  justify-content: center;
}
.cta-final .section-label::before { background: var(--greyish-cyan); }

.cta-final-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: 50px;
}

.cta-final-headline .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--greyish-cyan);
}

.cta-final-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(244, 244, 244, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ============= SERVICES PAGE ============= */
.service-detail {
  padding: 130px 60px;
  border-bottom: 1px solid rgba(32, 80, 80, 0.12);
}

.service-detail:nth-child(even) {
  background: var(--paper-warm);
}

.service-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.service-detail-meta {
  position: sticky;
  top: 120px;
}

.service-detail-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--dark-cyan);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.service-detail-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}

.service-detail-summary {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--dark-cyan);
  font-weight: 300;
}

.service-detail-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 36, 36, 0.78);
  margin-bottom: 22px;
}

.service-detail-body p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--dark-cyan);
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
}

.service-detail-includes {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(32, 80, 80, 0.18);
}

.service-detail-includes-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 22px;
}

.service-detail-includes ul {
  list-style: none;
  columns: 2;
  column-gap: 30px;
}

.service-detail-includes li {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid rgba(32, 80, 80, 0.08);
  break-inside: avoid;
}

/* ============= ABOUT PAGE ============= */
.about-intro {
  padding: 140px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-intro-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 1100px;
}

.about-intro-text strong {
  font-weight: 500;
  font-style: italic;
  color: var(--dark-cyan);
}

.values-section {
  padding: 140px 60px;
  background: var(--paper-warm);
}

.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  margin-bottom: 80px;
}

.values-header .section-label { margin-bottom: 30px; }

.values-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 900px;
}

.values-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
}

.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  align-items: start;
}

.value-num {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.value-title {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}

.value-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 36, 36, 0.72);
}

.story-section {
  padding: 140px 60px;
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.story-inner .section-label { margin-bottom: 30px; }

.story-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 50px;
}

.story-body p {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.85);
  margin-bottom: 24px;
  font-weight: 400;
}

.story-body p strong {
  color: var(--dark-cyan);
  font-weight: 500;
  font-style: italic;
}

/* ============= WORK PAGE ============= */
.work-intro {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.work-intro-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 1000px;
}

.work-intro-text .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 400;
}

.case-studies {
  padding: 60px 60px 140px;
}

.case-studies-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

.case-study {
  background: var(--paper-warm);
  padding: 70px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.case-study:nth-child(even) {
  background: var(--dark-cyan);
  color: var(--super-white);
}

.case-study:nth-child(even) .case-study-meta {
  color: rgba(244, 244, 244, 0.7);
}

.case-study:nth-child(even) .case-study-title { color: var(--super-white); }
.case-study:nth-child(even) .case-study-desc { color: rgba(244, 244, 244, 0.78); }
.case-study:nth-child(even) .case-study-tag {
  background: rgba(244, 244, 244, 0.1);
  color: var(--greyish-cyan);
  border-color: rgba(244, 244, 244, 0.15);
}

.case-study-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 24px;
}

.case-study:nth-child(even) .case-study-eyebrow { color: var(--greyish-cyan); }

.case-study-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 22px;
}

.case-study-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 36, 36, 0.75);
  margin-bottom: 28px;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 7px 14px;
  border: 1px solid rgba(32, 80, 80, 0.2);
  border-radius: 100px;
  color: var(--dark-cyan);
  background: transparent;
}

.case-study-visual {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--dark-cyan);
}

.case-study:nth-child(even) .case-study-visual { color: var(--greyish-cyan); }

.case-study-visual .quote-mark {
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.12em;
}

.case-study-visual .attribution {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-top: 28px;
  font-weight: 500;
}

.case-study:nth-child(even) .case-study-visual .attribution { color: var(--super-white); }

.case-study-coming {
  background: var(--paper-warm);
  padding: 70px;
  text-align: center;
  border: 1px dashed rgba(32, 80, 80, 0.3);
  border-radius: 4px;
}

.case-study-coming-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 22px;
}

.case-study-coming-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.25;
}

/* ============= DIAGNOSTIC PAGE ============= */
.diagnostic-page {
  padding: 80px 60px 140px;
  min-height: 60vh;
}

.diagnostic-page-inner {
  max-width: 880px;
  margin: 0 auto;
}

.diagnostic-step {
  display: none;
}

.diagnostic-step.active {
  display: block;
  animation: fadeStep 0.5s ease-out;
}

@keyframes fadeStep {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.diagnostic-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.diagnostic-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(32, 80, 80, 0.15);
  border-radius: 100px;
  overflow: hidden;
}

.diagnostic-progress-fill {
  height: 100%;
  background: var(--dark-cyan);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.diagnostic-progress-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark-cyan);
  font-weight: 500;
}

.diagnostic-q-eyebrow {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--dark-cyan);
  margin-bottom: 18px;
  font-weight: 300;
}

.diagnostic-q-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 22px;
}

.diagnostic-q-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.7);
  margin-bottom: 50px;
}

.diagnostic-options {
  display: grid;
  gap: 12px;
  margin-bottom: 50px;
}

.diagnostic-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: transparent;
  border: 1px solid rgba(32, 80, 80, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.diagnostic-option:hover {
  border-color: var(--dark-cyan);
  background: rgba(32, 80, 80, 0.04);
  transform: translateX(4px);
}

.diagnostic-option.selected {
  border-color: var(--dark-cyan);
  background: var(--dark-cyan);
  color: var(--super-white);
}

.diagnostic-option-num {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 400;
  min-width: 24px;
}

.diagnostic-option.selected .diagnostic-option-num { color: var(--greyish-cyan); }

.diagnostic-option-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.diagnostic-option.selected .diagnostic-option-text { color: var(--super-white); }

.diagnostic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.diagnostic-back {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(15, 36, 36, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.diagnostic-back:hover { color: var(--ink); }
.diagnostic-back:disabled { opacity: 0.3; cursor: default; }

.diagnostic-next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  transition: all 0.3s ease;
}

.diagnostic-next:hover:not(:disabled) {
  background: var(--dark-cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 80, 80, 0.25);
}

.diagnostic-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Email capture & result */
.diagnostic-email-step,
.diagnostic-result-step {
  text-align: center;
}

.diagnostic-email-step .diagnostic-q-title,
.diagnostic-result-step .diagnostic-q-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.diagnostic-email-step .diagnostic-q-sub {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.diagnostic-form {
  display: grid;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 30px;
}

.diagnostic-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 18px 26px;
  border: 1px solid rgba(32, 80, 80, 0.25);
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease;
}

.diagnostic-input:focus {
  outline: none;
  border-color: var(--dark-cyan);
}

.diagnostic-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.diagnostic-submit:hover {
  background: var(--dark-cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 80, 80, 0.25);
}

.diagnostic-score-display {
  margin: 40px auto 50px;
  max-width: 500px;
}

.diagnostic-score-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--dark-cyan);
  letter-spacing: -0.04em;
}

.diagnostic-score-total {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-style: italic;
  color: rgba(15, 36, 36, 0.4);
  font-weight: 300;
}

.diagnostic-score-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-top: 20px;
}

.diagnostic-tier {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--dark-cyan);
  margin-top: 16px;
  font-weight: 300;
}

/* ============= DIAGNOSTIC REPORT ============= */
.score-bar-wrap {
  max-width: 620px;
  margin: 8px auto 0;
}

.score-bar-track {
  position: relative;
  height: 10px;
  border-radius: 100px;
  background: var(--cool-gray);
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--greyish-cyan), var(--dark-cyan));
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-tier-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.score-tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(15, 36, 36, 0.4);
  flex: 1;
  text-align: center;
}
.score-tier-label:first-child { text-align: left; }
.score-tier-label:last-child { text-align: right; }
.score-tier-label.current {
  color: var(--dark-cyan);
  font-weight: 600;
}

.report-section {
  max-width: 660px;
  margin: 56px auto 0;
  text-align: left;
}

.report-section-label,
.report-focus-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark-cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.report-bar-row { margin-bottom: 20px; }

.report-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.report-bar-area {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.report-bar-score {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--dark-cyan);
}
.report-bar-score .of {
  font-size: 13px;
  color: rgba(15, 36, 36, 0.4);
}

.report-bar-track {
  height: 8px;
  border-radius: 100px;
  background: var(--cool-gray);
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  animation: barGrow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.report-bar-fill.strong { background: var(--dark-cyan); }
.report-bar-fill.medium { background: var(--gold); }
.report-bar-fill.critical { background: #C8654E; }

@keyframes barGrow { from { width: 0; } }

.report-legend {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(15, 36, 36, 0.6);
}
.report-legend .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 7px;
}
.report-legend .dot.strong { background: var(--dark-cyan); }
.report-legend .dot.medium { background: var(--gold); }
.report-legend .dot.critical { background: #C8654E; }

.report-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 660px;
  margin: 52px auto 0;
  text-align: left;
}

.report-col {
  background: var(--paper-warm);
  border-radius: 12px;
  padding: 28px 26px;
}
.report-col.costing { background: rgba(200, 101, 78, 0.08); }

.report-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.report-col.working .report-col-title { color: var(--dark-cyan); }
.report-col.costing .report-col-title { color: #B0492F; }

.report-col ul { list-style: none; }
.report-col li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15, 36, 36, 0.78);
  margin-bottom: 18px;
}
.report-col li:last-child { margin-bottom: 0; }

.report-area-tag {
  display: block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.report-focus {
  max-width: 660px;
  margin: 48px auto 0;
  text-align: left;
  background: var(--dark-cyan);
  border-radius: 14px;
  padding: 36px 34px;
}
.report-focus .report-focus-label { color: var(--greyish-cyan); margin-bottom: 14px; }

.report-focus-area {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--super-white);
  margin-bottom: 12px;
}

.report-focus-note {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 244, 244, 0.85);
  font-weight: 300;
}

@media (max-width: 640px) {
  .report-columns { grid-template-columns: 1fr; gap: 18px; }
  .score-tier-label { font-size: 9.5px; }
  .report-legend { gap: 16px; flex-wrap: wrap; }
}

/* ============= CONTACT PAGE ============= */
.contact-section {
  padding: 60px 60px 140px;
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 14px;
}

.contact-info-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.3;
}

.contact-info-value a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-info-value a:hover { border-bottom-color: var(--dark-cyan); }

.contact-cards {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px 26px;
  background: var(--paper-warm);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-card-icon {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark-cyan);
  line-height: 1;
}

.contact-card-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-card-content p {
  font-size: 14px;
  color: rgba(15, 36, 36, 0.68);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 22px;
  background: var(--paper-warm);
  padding: 50px;
  border-radius: 16px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 16px 20px;
  border: 1px solid rgba(32, 80, 80, 0.18);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--dark-cyan);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--dark-cyan);
  color: var(--super-white);
  padding: 20px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

.contact-submit:hover {
  background: var(--dark-cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(32, 80, 80, 0.25);
}

.contact-success {
  display: none;
  text-align: center;
  padding: 50px 30px;
}

.contact-success.show { display: block; }

.contact-success-icon {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--dark-cyan);
  margin-bottom: 20px;
}

.contact-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.018em;
}

.contact-success p {
  font-size: 16px;
  color: rgba(15, 36, 36, 0.7);
  line-height: 1.6;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 968px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-logo img { height: 44px; }
  nav.scrolled .nav-logo img { height: 38px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }

  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-eyebrow { margin-bottom: 28px; font-size: 11px; letter-spacing: 0.3em; }
  .hero-sub { margin-bottom: 40px; font-size: 16px; }
  .hero-actions { gap: 20px; flex-direction: column; align-items: flex-start; }
  .hero-anchor-bg { width: 340px; height: 420px; right: -100px; bottom: -100px; opacity: 0.05; }

  .page-hero { padding: 130px 24px 70px; }
  .page-hero-anchor { width: 280px; height: 340px; right: -100px; opacity: 0.05; }

  .marquee-content { font-size: 19px; gap: 40px; }
  .marquee-content > span { gap: 40px; }

  .statement, .diagnostic-cta-section, .testimonial, .approach, .services { padding: 80px 24px; }

  .services-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }

  .service-item {
    grid-template-columns: 50px 1fr 28px;
    gap: 14px;
    padding: 32px 0;
  }
  .service-item:hover { padding-left: 0; }
  .service-num { padding-top: 4px; font-size: 14px; }
  .service-desc {
    grid-column: 2 / 4;
    margin-top: 12px;
    max-width: none;
    font-size: 14px;
  }
  .service-arrow { padding-top: 2px; }

  .approach-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; padding-top: 50px; }
  .testimonial-attribution { gap: 12px; }
  .testimonial-source { margin-left: 0; width: 100%; margin-top: 8px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
  .footer-logo { grid-column: 1 / 3; }
  .footer-logo img { height: 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }

  .cta-final { padding: 100px 24px; }
  .cta-final-anchor { width: 360px; height: 440px; }
  footer { padding: 70px 24px 30px; }

  .intro-anchor-wrap { width: 180px; height: 220px; }
  .intro-anchor { width: 180px; height: 220px; }
  .intro-text { font-size: 16px; letter-spacing: 0.3em; }

  /* Service detail page */
  .service-detail { padding: 80px 24px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-meta { position: static; }
  .service-detail-includes ul { columns: 1; }

  /* About */
  .about-intro { padding: 80px 24px; }
  .values-section { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-section { padding: 80px 24px; }
  .story-body p { font-size: 18px; }

  /* Work */
  .work-intro { padding: 60px 24px; }
  .case-studies { padding: 30px 24px 80px; }
  .case-study { grid-template-columns: 1fr; gap: 40px; padding: 44px 28px; }
  .case-study-coming { padding: 50px 28px; }

  /* Diagnostic */
  .diagnostic-page { padding: 130px 24px 100px; }
  .diagnostic-progress { margin-bottom: 44px; }

  /* Contact */
  .contact-section { padding: 30px 24px 80px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 32px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-logo { grid-column: 1; }
  .case-study { padding: 36px 22px; }
}

/* ============= CLIENT WALL (homepage) ============= */
.client-wall {
  padding: 140px 60px;
  background: var(--paper);
  border-top: 1px solid rgba(32, 80, 80, 0.08);
}

.client-wall-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.client-wall-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 90px;
  align-items: end;
}

.client-wall-header .section-label { margin-bottom: 30px; }

.client-wall-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.client-wall-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.client-wall-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(15, 36, 36, 0.72);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(32, 80, 80, 0.15);
  border-left: 1px solid rgba(32, 80, 80, 0.15);
}

.client-cell {
  padding: 56px 40px;
  border-right: 1px solid rgba(32, 80, 80, 0.15);
  border-bottom: 1px solid rgba(32, 80, 80, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background: var(--paper);
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.client-cell:hover {
  background: var(--paper-warm);
  transform: translateY(-2px);
}

.client-cell:hover .client-name {
  color: var(--dark-cyan);
}

.client-cell:hover .client-visit {
  color: var(--dark-cyan);
}

.client-cell:hover .client-visit .arrow {
  transform: translate(3px, -3px);
}

.client-cell-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.client-visit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15, 36, 36, 0.5);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.client-visit .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 12px;
}

.client-logo-wrap {
  height: 80px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.client-logo-wrap img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.client-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.client-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.65);
  margin-bottom: 20px;
  flex-grow: 1;
}

.client-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark-cyan);
  font-weight: 500;
}

/* Featured class removed — all cells now use the same light background for logo compatibility */

.client-wall-footer {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.client-wall-stat {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(15, 36, 36, 0.72);
  font-weight: 300;
}

.client-wall-stat strong {
  font-weight: 500;
  color: var(--dark-cyan);
  font-style: normal;
}

/* Logo placeholder area (slots in later) */
.client-logo-placeholder {
  display: none;
}

/* When logos are added, they replace the text-only treatment */
.client-cell.has-logo .client-name { display: none; }
.client-cell.has-logo .client-logo {
  height: 60px;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 968px) {
  .client-wall { padding: 80px 24px; }
  .client-wall-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .client-grid { grid-template-columns: 1fr; }
  .client-cell { padding: 40px 28px; min-height: 200px; }
  .client-wall-footer { margin-top: 50px; }
}

/* ============= TESTIMONIAL CAROUSEL (auto-scrolling) ============= */
.testimonial-carousel {
  padding: 120px 0;
  background: var(--paper-warm);
  overflow: hidden;
  position: relative;
}

.testimonial-carousel-header {
  max-width: 1400px;
  margin: 0 auto 70px;
  padding: 0 60px;
}

.testimonial-carousel-header .section-label { margin-bottom: 28px; }

.testimonial-carousel-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 900px;
}

.testimonial-carousel-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.testimonial-carousel-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}

.testimonial-carousel-track {
  display: flex;
  gap: 28px;
  animation: scrollLeft 50s linear infinite;
  width: max-content;
}

.testimonial-carousel:hover .testimonial-carousel-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

.carousel-card {
  background: var(--paper);
  border: 1px solid rgba(32, 80, 80, 0.1);
  border-radius: 12px;
  padding: 36px;
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.carousel-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.carousel-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--greyish-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--dark-cyan);
  font-weight: 500;
  flex-shrink: 0;
}

.carousel-card-meta {
  flex-grow: 1;
}

.carousel-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.carousel-card-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(15, 36, 36, 0.6);
}

.carousel-card-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.carousel-card-quote {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  flex-grow: 1;
}

.carousel-card-source {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(32, 80, 80, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(15, 36, 36, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-card-google-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--paper);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  line-height: 14px;
  font-family: sans-serif;
}

.testimonial-carousel-footer {
  text-align: center;
  margin-top: 50px;
  padding: 0 24px;
}

.testimonial-carousel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--dark-cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid rgba(32, 80, 80, 0.25);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.testimonial-carousel-link:hover {
  background: var(--dark-cyan);
  color: var(--super-white);
  border-color: var(--dark-cyan);
}

@media (max-width: 768px) {
  .testimonial-carousel { padding: 80px 0; }
  .testimonial-carousel-header { padding: 0 24px; margin-bottom: 50px; }
  .carousel-card { width: 320px; padding: 28px; }
  .carousel-card-quote { font-size: 14px; }
}

/* ============= HOMEPAGE ACCENT IMAGE ============= */
.homepage-accent-section {
  padding: 0;
  position: relative;
}

.homepage-accent-img {
  width: 100%;
  display: block;
  max-height: 720px;
  object-fit: cover;
}

/* ============= PAGE HERO IMAGE (services & diagnostic) ============= */
.page-hero-image {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: block;
}

/* ============= DIAGNOSTIC LANDING HERO ============= */
.diagnostic-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 100px;
  background: url('diagnostic-hero.jpg') center/cover no-repeat;
  background-color: var(--dark-cyan-deep);
}

.diagnostic-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,36,0.72) 0%, rgba(22,56,56,0.82) 100%);
}

.diagnostic-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.diagnostic-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--super-white);
  margin: 22px 0 26px;
}

.diagnostic-hero-title .italic {
  font-style: italic;
  color: var(--greyish-cyan);
}

.diagnostic-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244,244,244,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
}

.diagnostic-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--super-white);
  color: var(--dark-cyan);
  padding: 20px 40px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.diagnostic-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.diagnostic-hero-cta span { transition: transform 0.3s ease; }
.diagnostic-hero-cta:hover span { transform: translateX(5px); }

.diagnostic-hero-meta {
  margin-top: 26px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244,244,244,0.6);
}

@media (max-width: 768px) {
  .diagnostic-hero { min-height: 80vh; padding: 130px 24px 80px; }
}

.page-hero-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  max-height: 560px;
  object-fit: cover;
}

@media (max-width: 968px) {
  .page-hero-image { padding: 0 24px; }
  .homepage-accent-img { max-height: 420px; }
  .page-hero-image img { max-height: 320px; }
}

/* ============= CAROUSEL ARROW CONTROLS ============= */
.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 30px;
  z-index: 10;
}

.carousel-arrow {
  pointer-events: auto;
  background: var(--paper);
  border: 1px solid rgba(32, 80, 80, 0.15);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark-cyan);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
  background: var(--dark-cyan);
  color: var(--super-white);
  border-color: var(--dark-cyan);
  transform: scale(1.08);
}

.carousel-arrow:active { transform: scale(0.96); }

.testimonial-carousel { position: relative; }

@media (max-width: 768px) {
  .carousel-controls { padding: 0 12px; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 18px; }
}

/* ============= CONTACT PAGE REDESIGN ============= */
.contact-sidebar-card {
  background: var(--paper-warm);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}

.contact-sidebar-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dark-cyan);
  font-weight: 500;
  margin-bottom: 14px;
}

.contact-sidebar-card-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-sidebar-card-title .italic {
  font-style: italic;
  color: var(--dark-cyan);
  font-weight: 300;
}

.contact-sidebar-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 36, 36, 0.72);
  margin-bottom: 22px;
}

.contact-sidebar-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--dark-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid var(--dark-cyan);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.contact-sidebar-card-cta:hover {
  background: var(--dark-cyan);
  color: var(--super-white);
}

.contact-sidebar-card.reviews {
  background: var(--dark-cyan);
  color: var(--super-white);
}

.contact-sidebar-card.reviews .contact-sidebar-card-eyebrow { color: var(--greyish-cyan); }
.contact-sidebar-card.reviews .contact-sidebar-card-title { color: var(--super-white); }
.contact-sidebar-card.reviews .contact-sidebar-card-text { color: rgba(244, 244, 244, 0.72); }
.contact-sidebar-card.reviews .contact-sidebar-card-cta {
  color: var(--super-white);
  border-color: var(--greyish-cyan);
}
.contact-sidebar-card.reviews .contact-sidebar-card-cta:hover {
  background: var(--super-white);
  color: var(--dark-cyan);
  border-color: var(--super-white);
}

.contact-stars-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-stars-display .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.contact-stars-display .rating {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 244, 244, 0.85);
}

.contact-response-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(15, 36, 36, 0.72);
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--paper-warm);
  border-radius: 12px;
  border-left: 3px solid var(--dark-cyan);
}

.contact-response-line strong {
  color: var(--dark-cyan);
  font-weight: 500;
}

@media (max-width: 968px) {
  .contact-sidebar-card { padding: 30px 24px; }
}

/* ============= BRAND LINKS IN HERO ============= */
.brand-link {
  color: var(--dark-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 80, 80, 0.3);
  padding-bottom: 1px;
  transition: all 0.25s ease;
  font-weight: 500;
}

.brand-link:hover {
  border-bottom-color: var(--dark-cyan);
  color: var(--dark-cyan-deep);
}

/* Home nav active state */
.nav-links a.active {
  color: var(--dark-cyan);
  font-weight: 500;
}
