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

    :root {
      --white:   #faf8f5;
      --offwhite:#f2ede6;
      --stone1:  #e8e0d4;
      --stone2:  #c9bfb0;
      --stone3:  #9a8f80;
      --stone4:  #6b6055;
      --ink:     #1c1814;
      --ink2:    #2e2820;
      --terra:   #8b4a2f;
      --terra2:  #a55a3a;
      --warm:    #c17f4e;
      --display: 'Barlow Condensed', sans-serif;
      --prose:   'Crimson Pro', Georgia, serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--prose);
      font-size: 18px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* KEYFRAMES */
    @keyframes up   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
    @keyframes in   { from { opacity:0; } to { opacity:1; } }
    @keyframes wipe { from { transform:scaleX(0); } to { transform:scaleX(1); } }

    .au { animation: up  0.8s cubic-bezier(.16,1,.3,1) both; }
    .ai { animation: in  0.9s ease both; }
    .d1 { animation-delay:.1s; } .d2 { animation-delay:.22s; }
    .d3 { animation-delay:.36s; } .d4 { animation-delay:.5s; }
    .d5 { animation-delay:.65s; } .d6 { animation-delay:.8s; }

    /* SHELL */
    .shell { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

    /* HEADER */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--stone1);
    }
    .header-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2.5rem;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
    .brand-logo { height: 38px; width: auto; }
    .brand-wordmark {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink);
      line-height: 1.15;
    }
    .brand-wordmark span {
      display: block;
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: var(--stone3);
    }

    .site-nav { display: flex; align-items: center; gap: 0; }
    .site-nav a {
      font-family: var(--display);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--stone4);
      text-decoration: none;
      padding: 0.5rem 0.9rem;
      position: relative;
      transition: color 0.2s;
    }
    .site-nav a::after {
      content: '';
      position: absolute;
      bottom: 6px; left: 0.9rem; right: 0.9rem;
      height: 1.5px;
      background: var(--terra);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s cubic-bezier(.16,1,.3,1);
    }
    .site-nav a:hover { color: var(--ink); }
    .site-nav a:hover::after,
    .site-nav a[aria-current]::after { transform: scaleX(1); }
    .site-nav a[aria-current] { color: var(--ink); }

    .menu-toggle {
      display: none;
      background: none;
      border: 1.5px solid var(--stone2);
      color: var(--ink);
      font-family: var(--display);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      min-height: calc(100vh - 68px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    /* Left: full-bleed image panel */
    .hero-image-panel {
      position: relative;
      background: var(--stone1);
      overflow: hidden;
    }
    .hero-image-panel .img-ph {
      position: absolute; inset: 0;
      border: none; border-radius: 0;
      height: 100%;
    }
    /* decorative cross overlay on image panel */
    .hero-image-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--white) 100%);
      pointer-events: none;
      z-index: 1;
    }

    /* Right: copy panel */
    .hero-copy-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 3rem;
    }

    .hero-eyebrow {
      font-family: var(--display);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px; height: 1.5px;
      background: var(--terra);
    }

    .hero-h1 {
      font-family: var(--display);
      font-size: clamp(3.5rem, 7vw, 6.5rem);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 2rem;
    }
    .hero-h1 .accent {
      display: block;
      color: var(--terra);
      font-weight: 300;
      font-style: normal;
      letter-spacing: 0.04em;
    }

    .hero-sub {
      font-family: var(--prose);
      font-size: 1.05rem;
      color: var(--stone4);
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 2.5rem;
    }

    .hero-actions { display: flex; flex-direction: column; gap: 0; }

    /* large text-style CTAs */
    .cta-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 0;
      border-top: 1px solid var(--stone1);
      text-decoration: none;
      color: var(--ink);
      transition: padding-left 0.25s cubic-bezier(.16,1,.3,1);
    }
    .cta-item:last-child { border-bottom: 1px solid var(--stone1); }
    .cta-item:hover { padding-left: 0.75rem; }
    .cta-item:hover .cta-arrow { transform: translateX(5px); color: var(--terra); }
    .cta-label {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .cta-desc {
      font-family: var(--prose);
      font-size: 0.82rem;
      color: var(--stone3);
      font-style: italic;
      margin-top: 0.1rem;
    }
    .cta-arrow {
      font-size: 1.2rem;
      color: var(--stone2);
      transition: transform 0.25s cubic-bezier(.16,1,.3,1), color 0.2s;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    /* service times strip */
    .times-strip {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--stone1);
      flex-wrap: wrap;
    }
    .time-item { }
    .time-label {
      font-family: var(--display);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone3);
      margin-bottom: 0.15rem;
    }
    .time-val {
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 0.03em;
    }

    /* SECTION BASE */
    .section { padding: 6rem 0; }
    .section-sm { padding: 4rem 0; }

    .eyebrow {
      font-family: var(--display);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .eyebrow::before {
      content: '';
      width: 24px; height: 1.5px;
      background: var(--terra);
      flex-shrink: 0;
    }

    .display-h2 {
      font-family: var(--display);
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .display-h2 .thin { font-weight: 300; }

    /* ABOUT SPLIT */
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: 6rem;
      align-items: center;
    }
    .about-copy p {
      font-size: 1.1rem;
      color: var(--stone4);
      line-height: 1.85;
      margin-bottom: 1.25rem;
    }
    .about-copy p strong {
      color: var(--ink2);
      font-weight: 600;
    }
    .about-copy .btn { margin-top: 1rem; }

    /* BUTTON */
    .btn {
      display: inline-block;
      font-family: var(--display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-terra {
      background: var(--terra);
      color: var(--white);
    }
    .btn-terra:hover { background: var(--terra2); }
    .btn-outline {
      border: 1.5px solid var(--ink);
      color: var(--ink);
      background: transparent;
    }
    .btn-outline:hover { background: var(--ink); color: var(--white); }

    /* PILLARS (horizontal scroll of numbered items) */
    .pillars-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1.5px solid var(--stone1);
    }
    .pillar {
      padding: 2.5rem 2rem 2.5rem 0;
      border-right: 1px solid var(--stone1);
      position: relative;
    }
    .pillar:last-child { border-right: none; padding-right: 0; }
    .pillar:first-child { padding-left: 0; }
    .pillar-num {
      font-family: var(--display);
      font-size: 5rem;
      font-weight: 800;
      line-height: 1;
      color: var(--stone1);
      margin-bottom: 0.5rem;
      letter-spacing: -0.04em;
      transition: color 0.3s;
    }
    .pillar:hover .pillar-num { color: var(--terra); }
    .pillar h3 {
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--ink);
      margin-bottom: 0.75rem;
      line-height: 1.1;
    }
    .pillar p {
      font-family: var(--prose);
      font-size: 0.95rem;
      color: var(--stone4);
      line-height: 1.75;
    }

    /* FULL-BLEED QUOTE */
    .quote-section {
      background: var(--offwhite);
      border-top: 1px solid var(--stone1);
      border-bottom: 1px solid var(--stone1);
      padding: 6rem 2.5rem;
      text-align: left;
      position: relative;
      overflow: hidden;
    }
    .quote-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4rem;
      align-items: start;
    }
    .quote-mark {
      font-family: var(--display);
      font-size: 12rem;
      font-weight: 800;
      line-height: 0.75;
      color: var(--stone1);
      user-select: none;
      margin-top: -1rem;
    }
    .quote-text {
      font-family: var(--prose);
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--ink2);
      margin-bottom: 1.25rem;
    }
    .quote-text em { font-style: normal; font-weight: 600; color: var(--terra); }
    .quote-ref {
      font-family: var(--display);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone3);
    }

    /* PRIORITIES */
    .priorities-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .priority-list { list-style: none; margin-top: 2rem; }
    .priority-list li {
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--stone1);
      font-family: var(--prose);
      font-size: 1rem;
      color: var(--stone4);
      line-height: 1.5;
      counter-increment: pri;
      align-items: baseline;
    }
    .priority-list li::before {
      content: counter(pri);
      font-family: var(--display);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--terra);
      padding-top: 0.15rem;
    }
    .priority-list { counter-reset: pri; }

    .priority-right { padding-top: 3rem; }
    /* photo on right side of priorities */

    /* PATHS */
    .paths-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1px;
      background: var(--stone1);
      border: 1px solid var(--stone1);
      margin-top: 3.5rem;
    }
    .path-card {
      background: var(--white);
      padding: 2.75rem 2.25rem;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: background 0.2s;
      position: relative;
    }
    .path-card:hover { background: var(--offwhite); }

    .path-tag {
      font-family: var(--display);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 1.5rem;
    }
    .path-card h3 {
      font-family: var(--display);
      font-size: 1.6rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .path-card p {
      font-family: var(--prose);
      font-size: 0.92rem;
      color: var(--stone4);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 2rem;
    }
    .path-link {
      font-family: var(--display);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: auto;
    }
    .path-link::after {
      content: '’';
      transition: transform 0.2s;
    }
    .path-card:hover .path-link::after { transform: translateX(4px); }
    .path-card:hover .path-link { color: var(--terra); }

    /* IMAGE PLACEHOLDER */
    .img-ph {
      width: 100%;
      background: var(--stone1);
      border: 2px dashed var(--stone2);
      border-radius: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--stone3);
      font-family: sans-serif;
      font-size: 0.72rem;
      text-align: center;
      padding: 2rem;
    }
    .img-ph strong { font-size: 0.7rem; color: var(--stone4); font-weight: 600; }
    .img-ph span   { font-size: 0.64rem; color: var(--stone2); }

    /* FOOTER */
    .site-footer {
      background: var(--ink);
      padding: 5rem 2.5rem 3rem;
    }
    .footer-top {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: 0.8; }
    .footer-brand p {
      font-family: var(--prose);
      font-size: 0.9rem;
      color: rgba(255,255,255,0.4);
      margin-top: 1.25rem;
      line-height: 1.75;
      max-width: 280px;
    }
    .footer-col h4 {
      font-family: var(--display);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--warm);
      margin-bottom: 1.25rem;
    }
    .footer-col a,
    .footer-col address,
    .footer-col p {
      font-family: var(--prose);
      font-size: 0.9rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      line-height: 2;
      display: block;
      font-style: normal;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      padding-top: 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-bottom p {
      font-family: var(--display);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.2);
      text-transform: uppercase;
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-image-panel { height: 50vw; min-height: 280px; }
      .hero-image-panel::after { background: linear-gradient(to bottom, transparent 60%, var(--white) 100%); }
      .hero-copy-panel { padding: 3rem 2.5rem 4rem; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .pillars-grid { grid-template-columns: 1fr; }
      .pillar { border-right: none; border-bottom: 1px solid var(--stone1); padding: 2rem 0; }
      .priorities-layout { grid-template-columns: 1fr; gap: 3rem; }
      .paths-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .quote-inner { grid-template-columns: 1fr; gap: 1rem; }
      .quote-mark { display: none; }
    }
    @media (max-width: 600px) {
      .site-nav { display: none; }
      .menu-toggle { display: block; }
      .hero-h1 { font-size: 3rem; }
      .footer-top { grid-template-columns: 1fr; }
      .times-strip { gap: 1.25rem; }
    }
