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

:root {
      
      --sandstone: #E8DDD0;
      --iron-bark: #3A3028;
      --red-earth: #A0462A;
      --fig: #6B3050;
      --gum-leaf: #8C9E8A;
      --navy: #2C3160;

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


      --font-display: 'Spectral', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --nav-h: 72px;
      --max-w: 1320px;

      --t-hero: clamp(3.4rem, 5.2vw, 5.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;
      --t-sm: 0.875rem;
      --t-xs: 0.7rem;

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in: cubic-bezier(0.4, 0, 1, 1);
      --tr: 300ms var(--ease);
      --tr-slow: 600ms var(--ease);
    }

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

html {
      scroll-behavior: smooth;
    }

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;
    }

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

ul {
      list-style: none;
    }

img,
    svg {
      display: block;
    }

.container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
    }

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

.eyebrow-light {
      color: rgba(255, 255, 255, 0.55);
    }

.eyebrow-light::before {
      background: rgba(255, 255, 255, 0.4);
    }

#nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-h);
      background: rgba(250, 248, 245, 0.94);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
      transition: background var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
    }

.nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-h);
    }

.nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

.nav-links li {
      position: relative;
    }

.nav-links a {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: var(--shadow);
      transition: color var(--tr);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

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

.nav-chevron {
      transition: transform var(--tr);
    }

.nav-links li:hover .nav-chevron {
      transform: rotate(180deg);
    }

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

.nav-links li:hover .nav-dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

.nav-dropdown-label {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--moss);
      padding: 0.25rem 1.25rem 0.75rem;
      display: block;
      border-bottom: 1px solid var(--stone);
      margin-bottom: 0.5rem;
    }

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

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

.nav-cta {
      font-size: 0.87rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      border: 1px solid rgba(58, 48, 40, 0.4);
      color: var(--night) !important;
      padding: 0.6rem 1.25rem;
      border-radius: 8px;
      transition: background var(--tr), border-color var(--tr), color var(--tr);
    }

.nav-cta:hover {
      background: var(--night);
      color: #fff !important;
      border-color: var(--night);
    }

.nav-links>li>a.nav-active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
    }

.nav-dropdown-active {
      color: var(--gold) !important;
      font-weight: 500 !important;
    }

.hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

.hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--shadow);
      transition: var(--tr);
    }

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

.mobile-overlay.open {
      transform: translateX(0);
    }

.mobile-overlay-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-h);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.mobile-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      line-height: 1;
    }

.mobile-nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.25rem;
    }

.mobile-nav a {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 6vw, 2.4rem);
      font-weight: 300;
      color: rgba(255, 255, 255, 0.9);
      padding: 0.5rem 0;
      transition: color var(--tr);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

.mobile-nav a:hover {
      color: #fff;
    }

.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;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.55);
      padding: 0.35rem 0;
      border-bottom: none;
    }

.mobile-cta {
      padding-top: 1.5rem;
    }

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

.nav-tagline {
      display: none;
    }

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

.btn:hover {
      transform: translateY(-1px);
    }

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

.btn-solid:hover {
      background: var(--night-deep);
    }

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

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

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

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

#hero {
      margin-top: var(--nav-h);
      min-height: calc(100vh - var(--nav-h));
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--cream);
    }

.hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
      padding-right: clamp(2rem, 4vw, 4rem);
      max-width: 680px;
      margin-left: auto;
    }

.hero-heading {
      font-family: var(--font-display);
      font-size: var(--t-hero);
      font-weight: 300;
      line-height: 1.05;
      color: var(--night);
      margin-bottom: 1.25rem;
    }

.hero-heading em {
      font-style: italic;
      font-weight: 500;
      color: var(--gold);
      font-size: 0.7em;
      display: block;
      margin-top: 0.15em;
    }

.hero-sub1 {
      font-family: var(--font-body);
      font-size: clamp(1.15rem, 1.6vw, 1.35rem);
      font-weight: 500;
      color: var(--shadow);
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }

.hero-sub2 {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.2vw, 1.1rem);
      font-weight: 300;
      color: var(--night);
      line-height: 1.65;
      margin-bottom: 1.75rem;
    }

.hero-image {
      position: relative;
      overflow: hidden;
      max-height: calc(100vh - var(--nav-h));
    }

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

#approach {
      padding: clamp(4rem, 8vw, 6rem) 0;
      background: var(--warm-white);
    }

.approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 5rem);
      align-items: center;
    }

.approach-img {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--stone);
    }

.approach-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.approach-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--moss);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

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

.approach-body {
      font-size: 1.2rem;
      line-height: 1.75;
      color: #4a4a4a;
      font-weight: 300;
      margin-bottom: 0.75rem;
    }

.approach-body strong {
      font-weight: 300;
      color: var(--shadow);
    }

.approach-services-label {
      font-size: 0.82rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2rem;
      margin-bottom: 1.25rem;
    }

.approach-services {
      display: flex;
      flex-direction: column;
    }

.approach-service-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
      border-top: 1px solid var(--stone);
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--night);
      transition: color var(--tr), padding-left var(--tr);
    }

.approach-service-link:last-child {
      border-bottom: 1px solid var(--stone);
    }

.approach-service-link:hover {
      color: var(--gold);
      padding-left: 0.5rem;
    }

.approach-service-link svg {
      opacity: 0.4;
      transition: opacity var(--tr), transform var(--tr);
    }

.approach-service-link:hover svg {
      opacity: 1;
      transform: translateX(4px);
    }

.approach-service-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      margin-right: 0.75rem;
      flex-shrink: 0;
    }

.approach-service-link-inner {
      font-size: 1.4rem;
      display: flex;
      align-items: center;
    }

#how {
      padding: clamp(4rem, 8vw, 6rem) 0;
      background: var(--parchment);
    }

.how-header {
      max-width: 600px;
      margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

.how-heading {
      font-family: var(--font-display);
      font-size: var(--t-3xl);
      font-weight: 300;
      line-height: 1.15;
      color: var(--night);
    }

.how-steps {
      display: flex;
      flex-direction: column;
      max-width: 780px;
    }

.how-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1.25rem;
      align-items: start;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(58, 48, 40, 0.1);
    }

.how-step:last-child {
      border-bottom: 1px solid rgba(58, 48, 40, 0.1);
    }

.how-step-n {
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 300;
      color: var(--lightgrey);
      padding-top: 0.15rem;
    }

.how-step-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 450;
      color: var(--night);
      margin-bottom: 0.35rem;
      line-height: 1.25;
    }

.how-step-body {
      font-size: 15px;
      line-height: 1.65;
      color: var(--iron-bark);
      font-weight: 300;
    }

.how-closing {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 1.5vw, 1.25rem);
      font-style: italic;
      font-weight: 400;
      color: var(--gold);
      margin-top: 2.5rem;
      line-height: 1.5;
    }

#perspectives {
      padding: clamp(4rem, 8vw, 6rem) 0;
      background: var(--blush);
    }

.perspectives-header {
      max-width: 700px;
      margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

.perspectives-heading {
      font-family: var(--font-display);
      font-size: var(--t-3xl);
      font-weight: 300;
      line-height: 1.2;
      color: var(--night);
    }

.perspectives-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

.perspective-card {
      background: var(--warm-white);
      border-radius: 10px;
      padding: clamp(2rem, 3vw, 2.5rem);
      display: flex;
      flex-direction: column;
    }

.perspective-mark {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 0.7;
      margin-bottom: 1.25rem;
    }

.perspective-text {
      font-family: var(--font-display);
      font-size: 1.09rem;
      font-weight: 500;
      font-style: italic;
      color: var(--night);
      letter-spacing: 0.5px;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.75rem;
    }

.perspective-attr {
      padding-top: 1.25rem;
      border-top: 1px solid var(--stone);
      font-size: 0.88rem;
      color: var(--gold);
      font-weight: 400;
    }

#cta {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--parchment);
      text-align: center;
    }

.cta-inner {
      max-width: 640px;
      margin: 0 auto;
    }

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

.cta-supporting {
      font-family: var(--font-display);
      font-size: var(--t-lg);
      font-style: italic;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--gold);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

.cta-sub {
      font-size: 1.125rem;
      font-weight: 300;
      color: var(--shadow);
      margin-bottom: 2.25rem;
      line-height: 1.65;
    }

footer {
      background: var(--shadow);
      color: rgba(255, 255, 255, 0.6);
      padding: clamp(3.5rem, 6vw, 5rem) 0 0;
    }

.footer-logo-img {
      height: 28px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.7;
      margin-bottom: 1.25rem;
    }

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

.footer-col-label {
      font-size: 0.67rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 1rem;
    }

.footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

.footer-links a {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.55);
      transition: color var(--tr);
    }

.footer-links a:hover {
      color: #fff;
    }

.footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0;
      gap: 1rem;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

.footer-copy {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.25);
    }

.footer-legal {
      display: flex;
      gap: 1.5rem;
    }

.footer-legal a {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.25);
      transition: color var(--tr);
    }

.footer-legal a:hover {
      color: rgba(255, 255, 255, 0.6);
    }

.footer-social a {
      color: rgba(255, 255, 255, 0.45);
      transition: color 300ms var(--ease);
    }

.appear {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 700ms var(--ease), transform 700ms var(--ease);
    }

.appear.in {
      opacity: 1;
      transform: none;
    }

.appear-delay-1 {
      transition-delay: 80ms;
    }

.appear-delay-2 {
      transition-delay: 160ms;
    }

.appear-delay-3 {
      transition-delay: 240ms;
    }

.appear-delay-4 {
      transition-delay: 320ms;
    }

@media (hover: hover) and (pointer: fine) {

      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));
    }

#section-label {
      color: var(--gold);
    }

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

      .hamburger {
        display: flex;
      }

      #hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
      }

      .hero-image {
        aspect-ratio: 16/10;
        max-height: 50vh;
      }

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

      .approach-img {
        aspect-ratio: 16/9;
      }

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

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .footer-locations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      .footer-locations-grid {
        grid-template-columns: 1fr;
      }

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }