/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --ink:        #1a1814;
  --ink-light:  #3d3a34;
  --parchment:  #f5f2ec;
  --warm-white: #faf8f4;
  --gold:       #b8922a;
  --gold-light: #d4aa4e;
  --mid:        #7a756e;
  --border:     rgba(26,24,20,0.12);
  --border-dark: rgba(255,255,255,0.09);
  --radius:     2px;
  --nav-h:      68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--gold); display: block; margin-bottom: 0.85rem;
}
.eyebrow-light { color: rgba(212,170,78,0.9); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  font-weight: 300; line-height: 1.18; color: var(--ink);
}
.section-title-light { color: var(--parchment); }

.btn {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border: 1px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-dark  { background: var(--ink);  color: var(--warm-white); border-color: var(--ink); }
.btn-dark:hover  { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-gold  { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--parchment); border-color: var(--border-dark); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); }

.text-link {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border);
  padding-bottom: 1px; transition: color 0.2s, border-color 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }
.text-link-light { color: var(--parchment); border-color: var(--border-dark); }
.text-link-light:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,24,20,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--ink);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.77rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--ink); color: var(--warm-white);
  padding: 0.55rem 1.35rem; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink); transition: all 0.22s;
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold); color: var(--ink) !important; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.25s;
}

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 199; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-light); padding: 1rem 0;
  border-bottom: 1px solid var(--border); font-weight: 400;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  position: relative;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 55% 60% at 65% 50%, rgba(184,146,42,0.055) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(26,24,20,0.025) 79px, rgba(26,24,20,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(26,24,20,0.025) 79px, rgba(26,24,20,0.025) 80px);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem 5rem 3rem; position: relative; z-index: 2;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 4.2vw, 4rem);
  font-weight: 300; line-height: 1.13; margin-bottom: 1.75rem;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; line-height: 1.8; color: var(--ink-light);
  font-weight: 300; max-width: 430px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(10%) contrast(1.04) brightness(0.97);
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,248,244,0.18) 0%, transparent 45%);
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; background: rgba(26,24,20,0.87);
  backdrop-filter: blur(6px);
}
.hero-stat {
  flex: 1; padding: 1.2rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600; color: var(--gold-light);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,242,236,0.5); margin-top: 0.3rem; display: block;
}

/* ============================================================
   POSITIONING STRIP
   ============================================================ */
.strip {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.strip-divider { background: rgba(255,255,255,0.08); }
.strip-item { padding: 2.5rem 3rem; }
.strip-item:first-child { padding-left: 3rem; }
.strip-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 0.65rem; opacity: 0.85;
}
.strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; color: var(--parchment); line-height: 1.45;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 7rem 3rem; background: var(--warm-white); }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
}
.service-card {
  background: var(--warm-white); padding: 3.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--parchment); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; color: rgba(26,24,20,0.055);
  position: absolute; top: 1.25rem; right: 2rem; line-height: 1;
  pointer-events: none; user-select: none;
}
.service-icon {
  width: 2.4rem; height: 2.4rem; margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 1rem; height: 1rem; color: var(--gold); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem; font-weight: 300; line-height: 1.2; margin-bottom: 1.1rem;
}
.service-desc {
  font-size: 0.9rem; line-height: 1.82; color: var(--ink-light);
  font-weight: 300; margin-bottom: 1.75rem;
}
.service-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.55rem; margin-bottom: 2.25rem;
}
.service-list li {
  font-size: 0.82rem; color: var(--ink-light);
  display: flex; align-items: baseline; gap: 0.7rem; font-weight: 300;
}
.service-list li::before {
  content: ''; display: block; width: 1.1rem; height: 1px;
  background: var(--gold); flex-shrink: 0; margin-top: 0.55em;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how { background: var(--parchment); padding: 7rem 3rem; }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.how-body {
  font-size: 0.93rem; line-height: 1.87; color: var(--ink-light);
  font-weight: 300; margin-bottom: 1.6rem;
}
.how-quote {
  border-left: 2px solid var(--gold); padding-left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; line-height: 1.55;
  color: var(--ink); margin-top: 2.5rem;
}
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: grid; grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem; padding: 1.65rem 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--gold); line-height: 1.2;
}
.how-step-title {
  font-size: 0.87rem; font-weight: 500; margin-bottom: 0.35rem; letter-spacing: 0.01em;
}
.how-step-desc {
  font-size: 0.81rem; line-height: 1.72; color: var(--mid); font-weight: 300;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--ink); padding: 6rem 3rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem); font-weight: 300;
  font-style: italic; color: var(--parchment); line-height: 1.45;
  max-width: 780px; margin-bottom: 2rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); }
.testimonial-attr {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,242,236,0.45);
}
.testimonial-attr strong {
  color: rgba(245,242,236,0.75); font-weight: 500; display: block;
  margin-bottom: 0.25rem; letter-spacing: 0.06em;
}

/* ============================================================
   WHO WE WORK WITH
   ============================================================ */
.who { background: var(--warm-white); padding: 7rem 3rem; }
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border); margin-top: 3.5rem;
}
.who-card {
  background: var(--warm-white); padding: 2.75rem;
  transition: background 0.3s;
}
.who-card:hover { background: var(--parchment); }
.who-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--gold);
  display: block; margin-bottom: 1rem; line-height: 1;
}
.who-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; margin-bottom: 0.85rem; line-height: 1.3;
}
.who-card-desc {
  font-size: 0.82rem; line-height: 1.75; color: var(--ink-light);
  font-weight: 300;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.clients { padding: 5rem 3rem; background: var(--parchment); }
.clients-header { text-align: center; margin-bottom: 3rem; }
.clients-header .section-title { font-size: 1.5rem; margin-top: 0.5rem; }
.clients-header p {
  font-size: 0.88rem; color: var(--mid); font-weight: 300;
  margin-top: 0.75rem; line-height: 1.6;
}
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 2.5rem 4rem;
  filter: grayscale(100%); opacity: 0.5;
}
.logo-strip img { height: 26px; width: auto; object-fit: contain; }

.client-logos{
    padding:20px 0;        /* space above and below section */
    background:#fff;
    overflow:hidden;
    text-align:center;     /* centers the title */
}

/* Title styling */
.client-logos h2 {
    font-weight: 700;
    font-size: 40px;
    color: #424034;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 80px; /* correct spacing between title and logos */
    text-align: center;  /* centers the title */
}
/* Slider wrapper */
.logo-slider{
    width:100%;
    overflow:hidden;
}

/* Moving row */
.logo-track{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;
    animation:scroll 35s linear infinite;
}

/* Pause animation when hovered */
.logo-track:hover{
    animation-play-state:paused;
    opacity:1;
}

/* Logo styling */
.logo-track img{
    height:50px;
    width:auto;
    transition:transform 0.3s ease;
}


.logo-track img:hover{
opacity:1;
}
/* Zoom effect */
.logo-track img:hover{
    transform:scale(1.2);
}

/* Animation */
@keyframes scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}


/* ============================================================
   INSIGHTS
   ============================================================ */
.insights { background: var(--warm-white); padding: 7rem 3rem; }
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border); margin-top: 3.5rem;
}
.insight-card {
  background: var(--warm-white); padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.insight-card:hover { background: var(--parchment); }
.insight-tag {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem; display: block;
}
.insight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; line-height: 1.3;
  margin-bottom: 0.9rem; flex: 1;
}
.insight-excerpt {
  font-size: 0.81rem; line-height: 1.75; color: var(--mid);
  font-weight: 300; margin-bottom: 1.75rem;
}
.insight-meta {
  font-size: 0.7rem; letter-spacing: 0.08em; color: var(--mid);
  border-top: 1px solid var(--border); padding-top: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  background: var(--ink); padding: 7rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.cta-left .section-title-light { margin-bottom: 1.25rem; }
.cta-left p {
  font-size: 0.93rem; line-height: 1.82; color: rgba(245,242,236,0.6);
  font-weight: 300; margin-bottom: 2rem;
}
.cta-left-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-right { border-left: 1px solid var(--border-dark); padding-left: 5rem; }
.cta-right-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; color: var(--parchment);
  margin-bottom: 1.5rem;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-list-label {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); width: 4rem; flex-shrink: 0; padding-top: 0.1rem;
}
.contact-list-value {
  font-size: 0.85rem; color: rgba(245,242,236,0.65); font-weight: 300; line-height: 1.6;
}
.contact-list-value a { color: inherit; transition: color 0.2s; }
.contact-list-value a:hover { color: var(--parchment); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--parchment); display: block; margin-bottom: 1rem;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.82rem; color: rgba(245,242,236,0.4); font-weight: 300;
  line-height: 1.72; max-width: 250px;
}
.footer-tagline {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-style: italic;
  color: rgba(245,242,236,0.25);
}
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 1.25rem; opacity: 0.8;
}
.footer-col a {
  display: block; font-size: 0.81rem; color: rgba(245,242,236,0.45);
  margin-bottom: 0.65rem; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.7rem; color: rgba(245,242,236,0.25); font-weight: 300;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.65s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }

/* ============================================================
   RESPONSIVE — 900px breakpoint
   ============================================================ */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.5rem 3rem; }
  .hero-right { height: 340px; }
  .hero-headline { font-size: 2.5rem; }

  .strip { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .strip-item { padding: 1.75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .strip-item:last-child { border-bottom: none; }

  .services,
  .how,
  .who,
  .clients,
  .insights { padding: 4.5rem 1.5rem; }

  .services-grid,
  .who-grid,
  .insights-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem 2rem; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .how-grid { grid-template-columns: 1fr; gap: 3rem; }

  .testimonial { padding: 4rem 1.5rem; }

  .contact-cta { grid-template-columns: 1fr; padding: 4.5rem 1.5rem; gap: 3rem; }
  .cta-right { border-left: none; border-top: 1px solid var(--border-dark); padding-left: 0; padding-top: 3rem; }

  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================================
   capabilities
   ============================================================ */
      /* page container */
    .page-container { max-width: 1280px; margin: 0 auto; padding: 120px 2rem 4rem; }
    /* capability grid */
    .capability-hero { margin-bottom: 3rem; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
    .capability-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; margin-top: 3rem; }
    .capability-card { background: var(--warm-white); border: 1px solid var(--border); padding: 2.5rem; transition: all 0.25s; }
    .capability-card:hover { background: var(--parchment); transform: translateY(-4px); }
    .capability-icon { font-size: 2.2rem; margin-bottom: 1.25rem; color: var(--gold); }
    .capability-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; }
    .capability-card p { color: var(--ink-light); line-height: 1.65; margin-bottom: 1.5rem; }
    .capability-list { list-style: none; margin-top: 1rem; }
    .capability-list li { font-size: 0.85rem; margin-bottom: 0.6rem; display: flex; align-items: baseline; gap: 0.6rem; color: var(--mid); }
    .capability-list li::before { content: "—"; color: var(--gold); }

     /* ========== UTILITIES ========== */
    .eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      display: block;
      margin-bottom: 0.85rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.75rem);
      font-weight: 300;
      line-height: 1.18;
      color: var(--ink);
    }
    .btn {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: 1px solid transparent;
      transition: all 0.22s;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-dark {
      background: var(--ink);
      color: var(--warm-white);
      border-color: var(--ink);
    }
    .btn-dark:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }
    .btn-outline {
      background: transparent;
      color: var(--ink);
      border-color: var(--border);
    }
    .btn-outline:hover {
      border-color: var(--ink);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      border-color: var(--gold);
    }
    .btn-gold:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
    }
    .text-link {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--ink);
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .text-link:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    /* ========== CAPABILITY DETAIL PAGE STYLES ========== */
    .page-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 120px 2rem 4rem;
    }
    .capability-detail-hero {
      margin-bottom: 3rem;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .capability-detail-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      line-height: 1.2;
      margin: 1rem 0;
      color: var(--ink);
    }
    .hero-image {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      margin: 2rem 0;
      border-radius: 4px;
    }
    .detail-section {
      margin-bottom: 4rem;
    }
    .detail-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
      border-left: 3px solid var(--gold);
      padding-left: 1.2rem;
    }
    .detail-section p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--ink-light);
      margin-bottom: 1.2rem;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 2rem 0;
    }
    .process-step {
      background: var(--parchment);
      padding: 2rem;
      text-align: center;
      transition: transform 0.25s;
    }
    .process-step:hover {
      transform: translateY(-5px);
    }
    .step-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--gold);
      display: block;
      margin-bottom: 1rem;
    }
    .process-step h3 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }
    .process-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 0;
    }
    .service-list-detailed {
      list-style: none;
      margin: 1.5rem 0;
    }
    .service-list-detailed li {
      font-size: 0.9rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
    }
    .service-list-detailed li::before {
      content: "✓";
      color: var(--gold);
      font-weight: 600;
    }
    .two-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin: 2rem 0;
    }
    .case-card {
      background: var(--parchment);
      padding: 2rem;
      border-radius: 2px;
    }
    .case-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }
    .case-card .quote {
      font-style: italic;
      font-size: 0.9rem;
      color: var(--mid);
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }