/* what-we-do.html: page-specific rules plus any override of the shared core */

:root {
      --night: #3A3028;
      --moss: #8C9E8A;
      --sky: #DDD2C4;
      --shadow: #232323;
      --cream: #E8DDD0;
      --warm-white: #F2EAE0;
      --parchment: #EDE3D7;
      --stone: #DED2C3;
      --blush: #E4D8C9;
      --gold: #A0462A;
      --lightgrey: #ABA196;

      --night-deep: #2A231D;
      --font-display: 'Spectral', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --nav-h: 72px;
      --max-w: 1320px;
      --t-hero: clamp(3.6rem, 6vw, 6.8rem);
      --t-4xl: clamp(2.8rem, 4.5vw, 4.8rem);
      --t-3xl: clamp(2.3rem, 3.6vw, 3.8rem);
      --t-2xl: clamp(1.7rem, 2.6vw, 2.6rem);
      --t-xl: clamp(1.35rem, 1.9vw, 1.85rem);
      --t-lg: 1.4rem;
      --t-base: 1.1875rem;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --tr: 300ms var(--ease);
      --tr-slow: 600ms var(--ease)
    }

body {
      font-family: var(--font-body);
      font-size: var(--t-base);
      line-height: 1.72;
      color: var(--shadow);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

.eyebrow {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 0.625rem
    }

#nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: var(--nav-h);
      transition: background var(--tr), box-shadow var(--tr)
    }

#nav.scrolled {
      background: rgba(250, 248, 245, .94);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, .08)
    }

#nav:not(.scrolled) .nav-logo img {
      filter: brightness(0) invert(1)
    }

#nav:not(.scrolled) .nav-links a {
      color: rgba(255, 255, 255, .88)
    }

#nav:not(.scrolled) .nav-links a:hover {
      color: #fff
    }

#nav:not(.scrolled) .nav-cta {
      background: rgba(255, 255, 255, .15);
      color: #fff !important;
      border-color: rgba(255, 255, 255, .35)
    }

#nav:not(.scrolled) .hamburger span {
      background: #fff
    }

.nav-logo img {
      height: 32px;
      width: auto;
      transition: opacity var(--tr)
    }

.nav-logo:hover img {
      opacity: .75
    }

.nav-dropdown {
      position: absolute;
      top: calc(100% + 18px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: var(--warm-white);
      border: 1px solid var(--stone);
      border-radius: 10px;
      padding: .75rem 0;
      min-width: 230px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms var(--ease), transform 220ms var(--ease)
    }

.nav-dropdown a {
      display: block;
      padding: .6rem 1.25rem;
      font-size: 1.01rem;
      color: var(--shadow);
      transition: color var(--tr), padding-left var(--tr)
    }

.nav-dropdown a:hover {
      color: var(--night);
      padding-left: 1.5rem
    }

#nav:not(.scrolled) .nav-links>li>a.nav-active::after {
      background: #A0462A;
    }

.mobile-overlay {
      position: fixed;
      inset: 0;
      z-index: 950;
      background: var(--night-deep);
      display: flex;
      flex-direction: column;
      padding: 0 1.5rem 2rem;
      transform: translateX(100%);
      transition: transform 400ms var(--ease)
    }

.mobile-overlay .nav-logo img {
      filter: brightness(0) invert(1)
    }

.mobile-nav-sub {
      display: flex;
      flex-direction: column;
      padding-left: 1.25rem
    }

.mobile-nav-sub a {
      font-family: var(--font-body);
      font-size: 1.01rem;
      color: rgba(255, 255, 255, .55);
      padding: .35rem 0;
      border-bottom: none
    }

.mobile-cta a {
      display: block;
      text-align: center;
      background: var(--cream);
      color: var(--night);
      padding: 1rem;
      border-radius: 8px;
      font-size: .95rem
    }

.page-hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      display: flex;
      align-items: flex-end;
      padding-top: var(--nav-h);
      padding-bottom: clamp(4rem, 8vw, 7rem);
      overflow: hidden
    }

.hero-bg {
      position: absolute;
      inset: -15% 0;
      width: 100%;
      height: 130%;
      will-change: transform
    }

.hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%
    }

.hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(43, 34, 27, .82) 0%, rgba(43, 34, 27, .65) 50%, rgba(43, 34, 27, .2) 100%)
    }

.hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem)
    }

.hero-heading {
      font-family: var(--font-display);
      font-size: var(--t-hero);
      font-weight: 300;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 1.5rem;
      max-width: 840px
    }

.hero-eyebrow {
      font-size: .73rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 0.625rem;
      display: block
    }

.hero-sub {
      max-width: 480px;
      font-size: 1.125rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, .7);
      font-weight: 300;
      margin-bottom: 2rem
    }

.hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: clamp(1.5rem, 4vw, 3.5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      z-index: 2
    }

.hero-scroll-line {
      width: 1px;
      height: 56px;
      background: rgba(255, 255, 255, .3);
      animation: scrollPulse 2s ease-in-out infinite
    }

.hero-scroll-text {
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      writing-mode: vertical-lr
    }

@keyframes scrollPulse {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

.section {
      padding: clamp(2.5rem, 5vw, 4.5rem) 0
    }

.s-warm {
      background: var(--warm-white)
    }

.s-parchment {
      background: var(--parchment)
    }

.s-blush {
      background: var(--blush)
    }

.s-night {
      background: var(--night-deep);
      color: #fff
    }

.s-cream {
      background: var(--cream)
    }

.two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 4vw, 4.5rem);
      align-items: start
    }

.sec-heading {
      font-family: var(--font-display);
      font-size: var(--t-3xl);
      font-weight: 300;
      color: var(--night);
      line-height: 1.1;
      margin-bottom: 1.5rem
    }

.sec-heading em {
      font-style: italic
    }

.sec-heading-light {
      color: #fff
    }

.body-text {
      font-size: 1.125rem;
      line-height: 1.75;
      color: var(--night);
      font-weight: 300
    }

.body-text p+p {
      margin-top: 1.25rem
    }

.rule {
      width: 40px;
      height: 1px;
      background: var(--moss);
      margin: 2rem 0
    }

.svc-intro-grid {
      display: grid;
      grid-template-columns: 52fr 48fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center
    }

.svc-img-wrap {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/5
    }

.svc-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center
    }

.svc-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: var(--stone);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 2.5rem
    }

.svc-list-item {
      background: var(--warm-white);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: start;
      gap: 1rem;
      transition: background var(--tr-slow)
    }

.svc-list-item:hover {
      background: var(--parchment)
    }

.svc-list-num {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--night);
      min-width: 32px;
      padding-top: .05em
    }

.svc-list-text {
      font-size: 1.03rem;
      line-height: 1.6;
      color: var(--night)
    }

.pull-quote {
      font-family: var(--font-display);
      font-size: var(--t-3xl);
      font-weight: 300;
      font-style: italic;
      color: var(--night);
      line-height: 1.25;
      max-width: 680px
    }

.pull-quote-light {
      color: #fff
    }

.cta-bar {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 3rem
    }

.cta-heading-el {
      font-family: var(--font-display);
      font-size: var(--t-4xl);
      font-weight: 300;
      color: #fff;
      line-height: 1.1
    }

.cta-heading-el em {
      font-style: italic;
      color: var(--sky)
    }

.btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-body);
      font-size: .92rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .9rem 1.75rem;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      transition: background var(--tr), color var(--tr), transform 200ms
    }

.btn-night {
      background: var(--night);
      color: #fff
    }

.btn-night:hover {
      background: var(--sky);
      color: var(--night)
    }

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

.btn-outline:hover {
      background: var(--sky);
      color: var(--night)
    }

.btn-gl {
      background: transparent;
      color: rgba(255, 255, 255, .75);
      border: 1px solid rgba(255, 255, 255, .25)
    }

.btn-gl:hover {
      background: rgba(255, 255, 255, .1);
      color: #fff
    }

.footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      padding-bottom: 2.5rem
    }

.footer-tagline {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 300;
      font-style: italic;
      color: rgba(255, 255, 255, .4);
      line-height: 1.55
    }

.d1 {
      transition-delay: 80ms
    }

.d2 {
      transition-delay: 160ms
    }

.d3 {
      transition-delay: 240ms
    }

.d4 {
      transition-delay: 320ms
    }

@media(max-width:900px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .two-col,
      .svc-intro-grid,
      .cta-bar {
        grid-template-columns: 1fr
      }

      .svc-img-wrap {
        aspect-ratio: 16/9
      }
    }

@media(max-width:600px) {
      .footer-top {
        grid-template-columns: 1fr
      }
    }

.wwd-hero-bg img {
      object-position: center 30%
    }

.services-overview {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px;
      background: var(--stone);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 2rem
    }

.svo-card {
      background: var(--warm-white);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 440px;
      position: relative;
      overflow: hidden;
      transition: background var(--tr-slow)
    }

.svo-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 400ms var(--ease)
    }

.svo-card:hover::after {
      transform: scaleX(1)
    }

.svo-card:hover {
      background: var(--parchment)
    }

.svo-card-has-img {
      padding: 0;
      overflow: hidden;
      position: relative;
      align-self: stretch
    }

.svo-card-has-img::after {
      display: none
    }

.svo-card-has-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%
    }

.svo-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 10px;
      color: var(--lightgrey)
    }

.svo-title {
      font-family: var(--font-display);
      font-size: var(--t-xl);
      font-weight: 400;
      color: var(--shadow);
      margin-bottom: .75rem
    }

.svo-desc {
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--shadow);
      font-weight: 400;
      opacity: 0.75;
    }

.svo-arrow {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--night);
      margin-top: 1.5rem;
      transition: gap var(--tr)
    }

.svo-card:hover .svo-arrow {
      gap: .7rem
    }

.bringing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      margin-top: clamp(2rem, 4vw, 3.5rem)
    }

@media(max-width:900px) {
      .services-overview {
        grid-template-columns: 1fr 1fr
      }

      .bringing-grid {
        grid-template-columns: 1fr
      }
    }

@media(max-width:600px) {
      .services-overview {
        grid-template-columns: 1fr
      }
    }

body,
    a,
    button {
      cursor: none !important;
    }

#custom-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 44px;
      height: 44px;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%) scale(0.7);
      opacity: 0;
      transition: opacity 200ms ease, transform 280ms cubic-bezier(.34, 1.56, .64, 1);
      filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
    }

#nav:not(.scrolled) .nav-logo-img {
      filter: brightness(0) invert(1);
    }

#nav .nav-tagline {
      display: none;
    }

#nav .nav-dropdown a {
      color: var(--shadow) !important;
    }

#nav .nav-dropdown a:hover {
      color: var(--night) !important;
    }

p {
      line-height: 1.72;
    }

.intro-label,
    .section-sub-label,
    .practice-sub-label {
      font-size: 0.8rem !important;
    }

.intro-body,
    .body-lg {
      font-size: var(--t-lg) !important;
      line-height: 1.72;
    }

.practice-heading {
      font-size: clamp(2.4rem, 4vw, 4rem) !important;
    }

.practice-row p {
      font-size: 1.1rem !important;
      line-height: 1.72;
    }

.section-heading {
      font-size: var(--t-3xl) !important;
    }

.hero-bg {
      z-index: 0 !important;
    }

.hero-overlay,
    .hero-overlay-bottom {
      z-index: 1 !important;
    }

.hero-inner {
      z-index: 2 !important;
    }

.svc-subnav {
      background: var(--warm-white);
      border-bottom: 1px solid var(--stone);
      position: relative;
      z-index: 10
    }

.svc-subnav-inner {
      display: flex;
      align-items: center;
      gap: 0;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
      flex-wrap: wrap
    }

.svc-subnav a {
      font-size: .85rem;
      letter-spacing: .04em;
      color: var(--night);
      padding: 1rem 1.25rem;
      white-space: nowrap;
      transition: color var(--tr);
      position: relative
    }

.svc-subnav a:hover {
      color: var(--night)
    }

.svc-subnav a.svc-subnav-active {
      color: var(--night);
      font-weight: 500
    }

.svc-subnav a.svc-subnav-active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1.25rem;
      right: 1.25rem;
      height: 2px;
      background: #A0462A
    }

@media(max-width:680px) {
      .svc-subnav-inner {
        flex-wrap: wrap;
        gap: .5rem;
        padding-top: .75rem;
        padding-bottom: .75rem
      }

      .svc-subnav a {
        font-size: .75rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: .5rem 1.1rem;
        border-radius: 8px;
        border: 1px solid var(--stone);
        background: transparent;
        color: #5a5a5a
      }

      .svc-subnav a:hover {
        background: var(--night);
        color: #fff;
        border-color: var(--night)
      }

      .svc-subnav a.svc-subnav-active {
        background: var(--night);
        color: #fff;
        border-color: var(--night)
      }

      .svc-subnav a.svc-subnav-active::after {
        display: none
      }
    }