    /* ====================== TOKENS ====================== */
    :root {
      --alabaster: #FFFFFF;
      --sand: #E6DCCC;
      --clay: #A8826A;
      --clay-deep: #8C6750;
      --umber: #3A322A;
      --stone: #8A857C;
      --line: #D8CFC0;
      --white-warm: #FBF9F5;
      --display: 'Cormorant Garamond', Georgia, serif;
      --body: 'Mulish', system-ui, sans-serif;
      --maxw: 1200px;
      --measure: 680px;
      --gut: clamp(1.25rem, 5vw, 4rem);
      --section-y: clamp(4.5rem, 9vw, 8.5rem);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%
    }

    @media (prefers-reduced-motion:reduce) {
      html {
        scroll-behavior: auto
      }
    }

    body {
      font-family: var(--body);
      font-weight: 400;
      color: var(--umber);
      background: var(--alabaster);
      line-height: 1.7;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block
    }

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

    /* ====================== TYPE ====================== */
    .display {
      font-family: var(--display);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: .005em
    }

    .eyebrow {
      font-family: var(--body);
      font-weight: 600;
      font-size: .74rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--clay-deep);
    }

    .lede {
      font-size: 1.12rem;
      line-height: 1.75;
      color: #4a4138
    }

    em,
    .ital {
      font-style: italic
    }

    /* ====================== NAV ====================== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(243, 239, 232, .88);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }

    .nav__inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 1rem var(--gut);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      font-family: var(--display);
      font-size: 1.32rem;
      font-weight: 600;
      letter-spacing: .01em;
      line-height: 1
    }

    .brand small {
      display: block;
      font-family: var(--body);
      font-weight: 500;
      font-size: .62rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--stone);
      margin-top: .32rem;
    }

    .navlinks {
      display: flex;
      gap: 1.6rem;
      align-items: center
    }

    .navlinks a {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: #5a5147;
      padding: .3rem 0;
      position: relative;
    }

    .navlinks a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: var(--clay);
      transition: width .3s ease;
    }

    .navlinks a:hover::after,
    .navlinks a:focus-visible::after {
      width: 100%
    }

    .navlinks a.cta {
      border: 1px solid var(--clay);
      color: var(--clay-deep);
      padding: .5rem 1.1rem;
      border-radius: 2px;
      letter-spacing: .06em;
    }

    .navlinks a.cta::after {
      display: none
    }

    .navlinks a.cta:hover {
      background: var(--clay);
      color: var(--white-warm)
    }

    .navtoggle {
      display: none;
      background: none;
      border: 0;
      cursor: pointer;
      padding: .4rem;
      color: var(--umber)
    }

    .navtoggle svg {
      width: 26px;
      height: 26px
    }

    @media (max-width:920px) {
      .navtoggle {
        display: block
      }

      .navlinks {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(82vw, 340px);
        height: 60vh;
        background: var(--white-warm);
        flex-direction: column;
        align-items: flex-start;
        gap: .2rem;
        padding: 1.5rem var(--gut) 2rem;
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -20px 0 60px rgba(58, 50, 42, .12);
      }

      .navlinks.open {
        transform: translateX(0)
      }

      .navlinks a {
        font-size: 1.05rem;
        padding: .7rem 0;
        width: 100%;
        border-bottom: 1px solid var(--line)
      }

      .navlinks a.cta {
        margin-top: 1rem;
        border-bottom: 1px solid var(--clay);
        text-align: center
      }

      .navlinks a::after {
        display: none
      }
    }

    /* ====================== HERO ====================== */
    .hero {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: clamp(3rem, 7vw, 6rem) var(--gut) clamp(3.5rem, 7vw, 6rem);
    }

    .hero__text {
      max-width: 45ch
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4.6vw, 3.5rem);
      margin: 1.4rem 0 1.6rem;
      color: var(--umber);
    }

    .hero h1 em {
      color: var(--clay-deep)
    }

    .hero__meta {
      font-family: var(--body);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .02em;
      line-height: 1.6;
      color: var(--umber);
    }

    .hero__meta span {
      display: block;
      font-weight: 400;
      color: var(--stone)
    }

    .hero__intro {
      margin-top: 1.5rem;
      max-width: 42ch
    }

    /* Portrait frame — the "lived detail" caption is the site signature */
    .portrait {
      position: relative
    }

    .portrait__img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      background: var(--sand);
      border-radius: 2px;
      box-shadow: 0 30px 70px -40px rgba(58, 50, 42, .5);
    }

    .portrait__placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 2px;
      background:
        linear-gradient(135deg, var(--sand), #dcd0bd);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #9a8d78;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 2rem;
    }

    .portrait__note {
      position: absolute;
      left: -1.5rem;
      bottom: 2rem;
      background: var(--white-warm);
      border-left: 2px solid var(--clay);
      padding: .85rem 1.1rem;
      max-width: 230px;
      box-shadow: 0 16px 40px -22px rgba(58, 50, 42, .4);
    }

    .portrait__note span {
      font-family: var(--display);
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.35;
      color: var(--umber)
    }

    @media (max-width:920px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 2.5rem
      }

      .hero__media {
        order: -1
      }

      .portrait__note {
        left: .75rem;
        max-width: 60%
      }
    }

    /* ====================== SIGNATURE STATEMENT BAND ====================== */
    .band {
      background: var(--umber);
      color: var(--white-warm)
    }

    .band__inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: var(--section-y) var(--gut);
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .band p {
      font-family: var(--display);
      font-size: clamp(1.5rem, 3.1vw, 2.35rem);
      line-height: 1.34;
      font-weight: 400;
      max-width: 24ch;
      color: #f1e9dc;
    }

    .band p em {
      color: var(--clay)
    }

    .band .signoff {
      font-family: var(--body);
      font-size: .78rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #b6a98f;
    }

    /* ====================== INDEX (section gateways) ====================== */
    .index {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: var(--section-y) var(--gut)
    }

    .index__head {
      max-width: 46ch;
      margin-bottom: clamp(2.5rem, 5vw, 4rem)
    }

    .index__head h2 {
      font-size: clamp(1.8rem, 3.4vw, 2.6rem);
      margin-top: .8rem
    }

    .gateways {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line)
    }

    .gw {
      background: var(--alabaster);
      padding: clamp(1.6rem, 3vw, 2.4rem);
      display: flex;
      flex-direction: column;
      gap: .6rem;
      min-height: 200px;
      transition: background .3s ease;
    }

    .gw:hover {
      background: var(--white-warm)
    }

    .gw__num {
      font-family: var(--display);
      font-style: italic;
      font-size: 1rem;
      color: var(--clay)
    }

    .gw h3 {
      font-family: var(--display);
      font-size: 1.55rem;
      font-weight: 600
    }

    .gw p {
      font-size: .9rem;
      color: #5a5147;
      max-width: 34ch
    }

    .gw__go {
      margin-top: auto;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--clay-deep);
      display: inline-flex;
      align-items: center;
      gap: .4rem;
    }

    .gw__go::after {
      content: "→";
      transition: transform .3s ease
    }

    .gw:hover .gw__go::after {
      transform: translateX(4px)
    }

    @media (max-width:720px) {
      .gateways {
        grid-template-columns: 1fr
      }
    }

    /* ====================== FD DESIGN STRIP ====================== */
    .fd {
      background: var(--sand)
    }

    .fd__inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: var(--section-y) var(--gut);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .fd h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.4rem);
      margin: .7rem 0 1.2rem
    }

    .fd p {
      max-width: 46ch;
      color: #4a4138
    }

    .linkline {
      margin-top: 1.6rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-weight: 600;
      font-size: .85rem;
      letter-spacing: .05em;
      color: var(--clay-deep);
      border-bottom: 1px solid var(--clay);
      padding-bottom: .25rem;
    }

    @media (max-width:720px) {
      .fd__inner {
        grid-template-columns: 1fr
      }
    }

    /* ====================== FOOTER ====================== */
    .foot {
      background: var(--umber);
      color: #c8bca6
    }

    .foot__inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) var(--gut) 2.5rem;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 2.5rem;
    }

    .foot .brand {
      color: var(--white-warm);
      font-size: 1.5rem;
    }

    .foot .brand small {
      color: #9a8d78
    }

    .foot h4 {
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #9a8d78;
      margin-bottom: 1rem;
      font-weight: 600
    }

    .foot a {
      display: block;
      font-size: .9rem;
      padding: .28rem 0;
      color: #d6cab4
    }

    .foot a:hover {
      color: var(--white-warm)
    }

    .foot__base {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 1.5rem var(--gut);
      border-top: 1px solid rgba(216, 207, 192, .18);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: .78rem;
      color: #9a8d78;
    }

    @media (max-width:720px) {
      .foot__inner {
        grid-template-columns: 1fr;
        gap: 2rem
      }
    }

    /* ====================== UTILITIES / A11Y ====================== */
    .fade {
      opacity: 1;
      transform: translateY(14px);
      transition: opacity .8s ease, transform .8s ease
    }

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

    @media (prefers-reduced-motion:reduce) {
      .fade {
        opacity: 1;
        transform: none;
        transition: none
      }
    }

    :focus-visible {
      outline: 2px solid var(--clay-deep);
      outline-offset: 3px
    }

    .skip {
      position: absolute;
      left: -999px;
      top: 0;
      background: var(--umber);
      color: #fff;
      padding: .7rem 1rem;
      z-index: 100
    }

    .skip:focus {
      left: .5rem;
      top: .5rem
    }

    .scrim {
      position: fixed;
      inset: 0;
      background: rgba(58, 50, 42, .35);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      z-index: 50
    }

    .scrim.show {
      opacity: 1;
      pointer-events: auto
    }


    /* ====================== ABOUT PAGE CSS ====================== */

    /* page head */
    .phead {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5.5rem) var(--gut) clamp(2rem, 4vw, 3rem)
    }

    .phead h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      margin: 1rem 0;
      max-width: 18ch
    }

    .phead .lede {
      max-width: 52ch
    }

    .about {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y);
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(2rem, 5vw, 4.5rem);
      align-items: start
    }

    .about__portrait {
      position: relative;
      position: sticky;
      top: 6rem
    }

    .portrait__img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      background: var(--sand);
      border-radius: 2px;
      box-shadow: 0 30px 70px -40px rgba(58, 50, 42, .5)
    }

    .portrait__placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 2px;
      background: linear-gradient(135deg, var(--sand), #dcd0bd);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #9a8d78;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 2rem
    }

    .about__body p {
      margin-bottom: 1.3rem;
      max-width: 58ch
    }

    .about__body p.lede {
      margin-bottom: 1.8rem
    }

    /* facts list */
    .facts {
      margin: 2.5rem 0;
      border-top: 1px solid var(--line)
    }

    .facts dl {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0
    }

    .facts dt {
      font-weight: 600;
      font-size: .74rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--clay-deep);
      padding: 1.05rem 1.5rem 1.05rem 0;
      border-bottom: 1px solid var(--line);
      white-space: nowrap
    }

    .facts dd {
      padding: 1.05rem 0;
      border-bottom: 1px solid var(--line);
      font-size: .96rem;
      color: #4a4138
    }

    .pull {
      font-family: var(--display);
      font-style: italic;
      font-size: clamp(1.35rem, 2.6vw, 1.9rem);
      line-height: 1.4;
      color: var(--umber);
      border-left: 2px solid var(--clay);
      padding: .3rem 0 .3rem 1.4rem;
      margin: 2.5rem 0
    }

    @media (max-width:820px) {
      .about {
        grid-template-columns: 1fr
      }

      .about__portrait {
        position: relative;
        top: 0;
        max-width: 380px
      }

      .facts dt {
        white-space: normal
      }
    }


    /* ====================== APPROACH PAGE CSS ====================== */


    /* principles */
    .principles {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y)
    }

    .principle {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(1.5rem, 5vw, 4rem);
      padding: clamp(2.5rem, 5vw, 3.8rem) 0;
      border-top: 1px solid var(--line)
    }

    .principle:last-child {
      border-bottom: 1px solid var(--line)
    }

    .principle__no {
      font-family: var(--display);
      font-style: italic;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--clay);
      line-height: 1
    }

    .principle h2 {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      margin-bottom: 1rem;
      font-weight: 600
    }

    .principle p {
      max-width: 56ch;
      margin-bottom: 1rem;
      color: #4a4138
    }

    .principle p:last-child {
      margin-bottom: 0
    }

    .principle .obs {
      font-family: var(--display);
      font-style: italic;
      font-size: 1.18rem;
      line-height: 1.5;
      color: var(--umber);
      border-left: 2px solid var(--clay);
      padding-left: 1.2rem;
      margin-top: 1.4rem
    }

    @media (max-width:680px) {
      .principle {
        grid-template-columns: 1fr;
        gap: .6rem
      }

      .principle__no {
        font-size: 1.3rem
      }
    }


    /* ====================== SELECTED WORK PAGE CSS ====================== */


    /* category filter (non-JS-critical, just anchors/labels) */
    .cats {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut);
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-bottom: 2.5rem
    }

    .cats span {
      font-size: .76rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #6a5c4a;
      border: 1px solid var(--line);
      padding: .45rem .9rem;
      border-radius: 2px;
      background: var(--white-warm)
    }

    /* project grid */
    .work {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y)
    }

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

    .card {
      display: flex;
      flex-direction: column;
      background: var(--white-warm);
      border: 1px solid var(--line);
      border-radius: 2px;
      overflow: hidden;
      transition: box-shadow .3s, transform .3s
    }

    .card:hover {
      box-shadow: 0 24px 50px -34px rgba(58, 50, 42, .45);
      transform: translateY(-2px)
    }

    .card__img {
      aspect-ratio: 3/2;
      background: linear-gradient(135deg, var(--sand), #dcd0bd);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9a8d78;
      font-size: .74rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-align: center;
      padding: 1.5rem
    }

    .card__body {
      padding: clamp(1.3rem, 2.5vw, 1.8rem)
    }

    .card__cat {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--clay-deep);
      font-weight: 600
    }

    .card h2 {
      font-family: var(--display);
      font-size: 1.5rem;
      font-weight: 600;
      margin: .5rem 0 .4rem
    }

    .card__meta {
      font-size: .82rem;
      color: var(--stone);
      margin-bottom: .7rem
    }

    .card p {
      font-size: .9rem;
      color: #5a5147;
      max-width: 42ch
    }

    .card__go {
      margin-top: 1rem;
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--clay-deep);
      display: inline-flex;
      gap: .4rem;
      align-items: center
    }

    .card__go::after {
      content: "→";
      transition: transform .3s
    }

    .card:hover .card__go::after {
      transform: translateX(4px)
    }

    .tag-await {
      display: inline-block;
      margin-top: .8rem;
      font-size: .68rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #9a7b50;
      background: var(--sand);
      padding: .25rem .55rem;
      border-radius: 2px
    }

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


    /* ====================== MATERIAL DETAILS PAGE CSS ====================== */


    /* material rows: alternating image/text */
    .materials {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y)
    }

    .mrow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.5rem, 4vw, 3.5rem);
      align-items: center;
      padding: clamp(2.5rem, 5vw, 4rem) 0;
      border-top: 1px solid var(--line)
    }

    .mrow:nth-child(even) .mrow__media {
      order: 2
    }

    .mrow__media {
      aspect-ratio: 5/4;
      background: linear-gradient(135deg, var(--sand), #dcd0bd);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9a8d78;
      font-size: .74rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-align: center;
      padding: 1.5rem
    }

    .mrow__no {
      font-family: var(--display);
      font-style: italic;
      color: var(--clay);
      font-size: 1.1rem
    }

    .mrow h2 {
      font-family: var(--display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 600;
      margin: .4rem 0 1rem
    }

    .mrow p {
      max-width: 46ch;
      color: #4a4138
    }

    .mrow .insight {
      font-family: var(--display);
      font-style: italic;
      font-size: 1.15rem;
      line-height: 1.5;
      color: var(--umber);
      border-left: 2px solid var(--clay);
      padding-left: 1.2rem;
      margin-top: 1.3rem
    }

    @media (max-width:760px) {
      .mrow {
        grid-template-columns: 1fr;
        gap: 1.5rem
      }

      .mrow:nth-child(even) .mrow__media {
        order: 0
      }
    }

    /* secondary materials — compact editorial list, not a moodboard grid of images */
    .more {
      background: var(--sand)
    }

    .more__inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: var(--section-y) var(--gut)
    }

    .more__inner h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.4rem);
      margin: .7rem 0 2.5rem;
      max-width: 24ch
    }

    .notes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line)
    }

    .note {
      background: var(--alabaster);
      padding: clamp(1.4rem, 2.5vw, 2rem)
    }

    .note h3 {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: .5rem
    }

    .note p {
      font-size: .9rem;
      color: #5a5147;
      max-width: 40ch
    }

    @media (max-width:680px) {
      .notes {
        grid-template-columns: 1fr
      }
    }


    /* ====================== WRITING PAGE CSS ====================== */



    /* writing list */
    .writing {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y)
    }

    .entry {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: clamp(1rem, 3vw, 2.5rem);
      align-items: baseline;
      padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
      border-top: 1px solid var(--line);
      transition: background .3s
    }

    .entry:last-child {
      border-bottom: 1px solid var(--line)
    }

    .entry__no {
      font-family: var(--display);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--clay)
    }

    .entry h2 {
      font-family: var(--display);
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      font-weight: 600;
      line-height: 1.2
    }

    .entry p {
      font-size: .92rem;
      color: #5a5147;
      max-width: 52ch;
      margin-top: .5rem
    }

    .entry__status {
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #9a7b50;
      background: var(--sand);
      padding: .3rem .6rem;
      border-radius: 2px;
      white-space: nowrap;
      align-self: center
    }

    @media (max-width:720px) {
      .entry {
        grid-template-columns: auto 1fr;
        gap: .8rem 1.2rem
      }

      .entry__status {
        grid-column: 2;
        justify-self: start;
        margin-top: .6rem
      }
    }



    /* ====================== FD DESIGN PAGE CSS ====================== */



    .body {
      max-width: var(--measure);
      margin: 0 auto;
      padding: 0 var(--gut)
    }

    .body p {
      margin-bottom: 1.4rem;
      color: #4a4138
    }

    .body .pull {
      font-family: var(--display);
      font-style: italic;
      font-size: clamp(1.4rem, 2.7vw, 1.95rem);
      line-height: 1.4;
      color: var(--umber);
      border-left: 2px solid var(--clay);
      padding-left: 1.4rem;
      margin: 2.2rem 0
    }

    .distinct {
      background: var(--sand);
      margin: clamp(3rem, 6vw, 4.5rem) 0 0
    }

    .distinct__inner {
      max-width: var(--measure);
      margin: 0 auto;
      padding: clamp(2.5rem, 5vw, 3.5rem) var(--gut)
    }

    .distinct h2 {
      font-family: var(--display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 600;
      margin-bottom: 1.2rem
    }

    .distinct dl {
      display: grid;
      gap: 0
    }

    .distinct dt {
      font-family: var(--display);
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 1.2rem
    }

    .distinct dd {
      font-size: .95rem;
      color: #5a5147;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--line);
      max-width: 48ch
    }

    .distinct dd:last-child {
      border-bottom: 0
    }

    .cta-strip {
      max-width: var(--measure);
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 4.5rem) var(--gut) var(--section-y);
      text-align: left
    }

    .cta-strip a.big {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-family: var(--display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--clay-deep);
      border-bottom: 2px solid var(--clay);
      padding-bottom: .3rem
    }

    .cta-strip p {
      font-size: .9rem;
      color: var(--stone);
      margin-top: 1rem
    }



    /* ====================== FD DESIGN PAGE CSS ====================== */


    /* contact layout */
    .contact {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--gut) var(--section-y);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start
    }

    .cinfo h2 {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: .4rem
    }

    .cinfo .block {
      padding: 1.5rem 0;
      border-top: 1px solid var(--line)
    }

    .cinfo .block:first-of-type {
      border-top: 0;
      padding-top: 0
    }

    .cinfo .label {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--clay-deep);
      font-weight: 600;
      margin-bottom: .5rem
    }

    .cinfo a.line,
    .cinfo p.line {
      font-size: 1.05rem;
      color: var(--umber)
    }

    .cinfo a.line:hover {
      color: var(--clay-deep)
    }

    .social {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-top: .4rem
    }

    .social a {
      font-size: .9rem;
      color: var(--clay-deep);
      border-bottom: 1px solid var(--clay);
      padding-bottom: .2rem
    }

    /* ==========================
   CONTACT FORM
========================== */

    .form {
      background: var(--white-warm);
      border: 1px solid var(--line);
      border-radius: 3px;
      padding: clamp(1.6rem, 3vw, 2.4rem);
    }

    .form h2 {
      font-family: var(--display);
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.3rem;
    }

    /* Contact Form 7 */

    .wpcf7 {
      width: 100%;
    }

    .wpcf7 form {
      margin: 0;
    }

    .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }

    /* Fields */

    .field {
      margin-bottom: 1.1rem;
    }

    .field label {
      display: block;
      font-size: .76rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #6a5c4a;
      font-weight: 600;
      margin-bottom: .4rem;
    }

    .field input,
    .field textarea,
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea {
      width: 100%;
      box-sizing: border-box;
      font-family: var(--body);
      font-size: .95rem;
      color: var(--umber);
      background: var(--alabaster);
      border: 1px solid var(--line);
      border-radius: 2px;
      padding: .75rem .85rem;
      transition: border-color .2s;
    }

    .field input:focus,
    .field textarea:focus,
    .wpcf7 input:focus,
    .wpcf7 textarea:focus {
      outline: none;
      border-color: var(--clay);
    }

    .field textarea,
    .wpcf7 textarea {
      min-height: 70px;
      resize: vertical;
    }

    /* Submit Button */

    .submit,
    .wpcf7-submit {
      font-family: var(--body);
      font-weight: 600;
      font-size: .85rem;
      letter-spacing: .06em;
      color: var(--white-warm);
      background: var(--clay-deep);
      border: 0;
      border-radius: 2px;
      padding: .85rem 1.6rem;
      cursor: pointer;
      transition: background .25s;
    }

    .submit:hover,
    .wpcf7-submit:hover {
      background: var(--umber);
    }

    /* Form Note */

    .formnote {
      font-size: .78rem;
      color: var(--stone);
      margin-top: 1rem;
    }

    /* Validation */

    .wpcf7-not-valid-tip {
      color: #dc3232;
      font-size: .8rem;
      margin-top: .35rem;
    }

    /* Response Messages */

    .wpcf7-response-output {
      margin: 1rem 0 0 !important;
      padding: .8rem 1rem !important;
      border-radius: 2px;
      font-size: .85rem;
    }

    .wpcf7 form.sent .wpcf7-response-output {
      background: #edf8ef;
      color: #2e7d32;
      border: 1px solid #2e7d32;
    }

    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.failed .wpcf7-response-output,
    .wpcf7 form.spam .wpcf7-response-output {
      background: #fff3f3;
      color: #c62828;
      border: 1px solid #c62828;
    }

    /* Spinner */

    .wpcf7-spinner {
      margin-left: 10px;
      vertical-align: middle;
    }

    /* Hidden Honeypot */

    .hidden-field {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    /* Mobile */

    @media (max-width: 768px) {

      .wpcf7 input,
      .wpcf7 textarea {
        font-size: 16px;
      }

      .submit,
      .wpcf7-submit {
        width: 100%;
        text-align: center;
      }

    }

    @media (max-width:820px) {
      .contact {
        grid-template-columns: 1fr
      }
    }