
    :root {
      --bg: #f4f1eb;
      --surface: #e8e1d8;
      --text: #1b1b19;
      --muted: #706d66;
      --line: rgba(27, 27, 25, 0.18);
      --inverse: #f8f6f1;
      --accent: #b49b82;
      --header-bg: rgba(244, 241, 235, 0.78);
      --shadow: 0 24px 80px rgba(0,0,0,0.12);
      --max: 1480px;
      --radius: 2px;
      --ease: cubic-bezier(.2,.7,.2,1);
    }

    body.dark {
      --bg: #11110f;
      --surface: #1b1b18;
      --text: #f4f1eb;
      --muted: #aaa69e;
      --line: rgba(255,255,255,0.16);
      --inverse: #11110f;
      --accent: #c2a98d;
      --header-bg: rgba(17,17,15,0.82);
      --shadow: 0 24px 80px rgba(0,0,0,0.4);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "DM Sans", Arial, sans-serif;
      line-height: 1.6;
      transition: background .35s ease, color .35s ease;
    }

    body.menu-open,
    body.lightbox-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      color: inherit;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2 {
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 500;
      line-height: 1.03;
      letter-spacing: -0.045em;
    }

    h1 {
      font-size: clamp(4rem, 10vw, 9.5rem);
      margin-bottom: 1.6rem;
    }

    h2 {
      font-size: clamp(2.8rem, 6vw, 6.6rem);
      margin-bottom: 1.5rem;
    }

    h3 {
      font-size: 1.25rem;
      line-height: 1.25;
    }

    .page {
      overflow: hidden;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin-inline: auto;
    }

    .section {
      padding-block: clamp(5.5rem, 11vw, 11rem);
    }

    .eyebrow {
      margin-bottom: 1.25rem;
      color: var(--muted);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .section-head p:last-child {
      max-width: 28rem;
      color: var(--muted);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.4rem;
      padding: .85rem 1.4rem;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-light {
      background: #fff;
      color: #111;
    }

    .button-light:hover {
      border-color: #fff;
      background: transparent;
      color: #fff;
    }

    .button-dark {
      background: var(--text);
      color: var(--bg);
    }

    .button-dark:hover {
      opacity: .82;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      padding-bottom: .2rem;
      border-bottom: 1px solid currentColor;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    /* HEADER */
    .site-header {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      border-bottom: 1px solid transparent;
      transition: background .25s ease, border-color .25s ease, color .25s ease;
    }

    .site-header.scrolled {
      background: var(--header-bg);
      border-color: var(--line);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      color: #fff;
    }

    .site-header.scrolled .header-inner {
      color: var(--text);
    }

    .logo {
      position: relative;
      z-index: 60;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.28rem;
      line-height: 1;
    }

    .logo small {
      display: block;
      margin-top: .3rem;
      font-family: "DM Sans", Arial, sans-serif;
      font-size: .52rem;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      font-size: .88rem;
    }

    .main-nav a {
      opacity: .9;
    }

    .main-nav a:hover {
      opacity: .58;
    }

    .nav-cta {
      padding: .65rem 1rem;
      border: 1px solid currentColor;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .icon-button,
    .menu-button {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .menu-button {
      display: none;
      position: relative;
      z-index: 60;
    }

    .menu-button span {
      position: absolute;
      width: 21px;
      height: 1px;
      background: currentColor;
      transition: transform .25s ease, top .25s ease;
    }

    .menu-button span:first-child { top: 17px; }
    .menu-button span:last-child { top: 24px; }

    .menu-button.active span:first-child {
      top: 21px;
      transform: rotate(45deg);
    }

    .menu-button.active span:last-child {
      top: 21px;
      transform: rotate(-45deg);
    }

    /* HERO */
    .hero {
      position: relative;
      display: grid;
      align-items: end;
      min-height: 100svh;
      color: #fff;
      overflow: hidden;
    }

    .hero-bg,
    .hero-shade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .hero-bg {
      object-fit: cover;
      transform: scale(1.04);
      animation: heroZoom 14s ease-out forwards;
    }

    @keyframes heroZoom {
      to { transform: scale(1); }
    }

    .hero-shade {
      background:
        linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.03) 70%),
        linear-gradient(to right, rgba(0,0,0,.25), transparent 62%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-bottom: clamp(3rem, 8vw, 7rem);
    }

    .hero-content h1 {
      max-width: 1120px;
    }

    .hero-content em {
      font-weight: 500;
    }

    .hero-bottom {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 2rem;
    }

    .hero-copy {
      max-width: 38rem;
      margin-bottom: 0;
      font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .scroll-note {
      display: flex;
      align-items: center;
      gap: .7rem;
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .scroll-note::before {
      content: "";
      width: 48px;
      height: 1px;
      background: currentColor;
    }

    /* INTRO */
    .intro-grid {
      display: grid;
      grid-template-columns: 90px minmax(0, 1.5fr) minmax(280px, .7fr);
      gap: 3rem;
      align-items: start;
    }

    .intro-number {
      color: var(--muted);
    }

    .intro-copy {
      padding-top: 2rem;
      color: var(--muted);
      font-size: 1.08rem;
    }

    /* PORTFOLIO */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-bottom: 2rem;
    }

    .filter-button {
      padding: .65rem 1rem;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
    }

    .filter-button.active,
    .filter-button:hover {
      background: var(--text);
      color: var(--bg);
    }

    .masonry {
      columns: 3 320px;
      column-gap: 1rem;
    }

    .photo-card {
      position: relative;
      margin: 0 0 1rem;
      overflow: hidden;
      break-inside: avoid;
      cursor: zoom-in;
      background: var(--surface);
    }

    .photo-card img {
      transition: transform .65s var(--ease), filter .35s ease;
    }

    .photo-card:hover img {
      transform: scale(1.025);
      filter: brightness(.84);
    }

    .photo-card figcaption {
      position: absolute;
      inset: auto 0 0;
      padding: 1.2rem;
      color: #fff;
      background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .3s ease, transform .3s ease;
    }

    .photo-card:hover figcaption {
      opacity: 1;
      transform: none;
    }

    .photo-card.hidden {
      display: none;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(320px, .78fr);
      gap: clamp(3rem, 8vw, 8rem);
      align-items: center;
    }

    .about-photo {
      aspect-ratio: 4 / 5;
      object-fit: cover;
      box-shadow: var(--shadow);
    }

    .about-copy {
      max-width: 37rem;
    }

    .about-copy .lead {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.8rem;
      line-height: 1.35;
    }

    .about-copy p:not(.eyebrow):not(.lead) {
      color: var(--muted);
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .service {
      min-height: 360px;
      padding: 2rem;
      border-right: 1px solid var(--line);
    }

    .service:last-child {
      border-right: 0;
    }

    .service-number {
      display: block;
      margin-bottom: 6rem;
      color: var(--muted);
      font-size: .8rem;
    }

    .service p {
      color: var(--muted);
    }

    /* PROCESS */
    .process-list {
      border-top: 1px solid var(--line);
    }

    .process-row {
      display: grid;
      grid-template-columns: 90px 1fr auto;
      gap: 2rem;
      align-items: start;
      padding-block: 2rem;
      border-bottom: 1px solid var(--line);
    }

    .process-row > span {
      color: var(--muted);
    }

    .process-row p {
      max-width: 40rem;
      margin-bottom: 0;
      color: var(--muted);
    }

    .process-arrow {
      font-size: 1.4rem;
    }

    /* TESTIMONIAL */
    .testimonial {
      padding-block: clamp(6rem, 13vw, 12rem);
      background: var(--text);
      color: var(--bg);
    }

    .testimonial-inner {
      max-width: 1100px;
      margin-inline: auto;
      text-align: center;
    }

    .quote {
      margin: 0;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.3rem, 5vw, 5rem);
      line-height: 1.18;
      letter-spacing: -.035em;
    }

    .quote-name {
      margin-top: 2rem;
      margin-bottom: 0;
      color: color-mix(in srgb, var(--bg) 65%, transparent);
    }

    /* FAQ */
    .faq {
      border-top: 1px solid var(--line);
    }

    details {
      border-bottom: 1px solid var(--line);
    }

    summary {
      padding-block: 1.7rem;
      list-style: none;
      cursor: pointer;
      font-size: 1.15rem;
      font-weight: 500;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      float: right;
      content: "+";
      font-size: 1.6rem;
      font-weight: 400;
    }

    details[open] summary::after {
      content: "−";
    }

    details p {
      max-width: 52rem;
      padding-bottom: 1.6rem;
      color: var(--muted);
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
      gap: clamp(4rem, 10vw, 10rem);
      border-top: 1px solid var(--line);
      padding-top: clamp(5rem, 10vw, 9rem);
    }

    .contact-copy p:not(.eyebrow) {
      max-width: 34rem;
      color: var(--muted);
    }

    .contact-email {
      display: inline-block;
      margin-top: 1.8rem;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.7rem;
      color: var(--text) !important;
      border-bottom: 1px solid currentColor;
    }

    .contact-form {
      display: grid;
      gap: 1.35rem;
    }

    .contact-form label {
      display: grid;
      gap: .5rem;
      font-size: .84rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      outline: none;
      background: transparent;
      color: var(--text);
      padding: .8rem 0;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--text);
    }

    .contact-form textarea {
      min-height: 130px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-status {
      min-height: 1.5rem;
      margin-bottom: 0;
      color: var(--muted);
    }

    /* FOOTER */
    .site-footer {
      margin-top: clamp(5rem, 10vw, 10rem);
      padding: 4rem 0;
      background: #0f0f0d;
      color: #f7f4ee;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 2rem;
      align-items: end;
    }

    .footer-grid p {
      margin-bottom: 0;
      color: rgba(255,255,255,.62);
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .copyright {
      grid-column: 1 / -1;
      padding-top: 3rem;
      font-size: .8rem;
    }

    /* LIGHTBOX */
    .lightbox {
      position: fixed;
      z-index: 100;
      inset: 0;
      display: none;
      place-items: center;
      padding: 2rem;
      background: rgba(0,0,0,.94);
    }

    .lightbox.open {
      display: grid;
    }

    .lightbox img {
      max-width: min(92vw, 1500px);
      max-height: 86vh;
      object-fit: contain;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      border: 1px solid rgba(255,255,255,.3);
      background: rgba(0,0,0,.18);
      color: #fff;
      cursor: pointer;
    }

    .lightbox-close { top: 1.5rem; right: 1.5rem; }
    .lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
    .lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

    .lightbox-caption {
      position: absolute;
      left: 50%;
      bottom: 1.3rem;
      transform: translateX(-50%);
      width: min(90%, 700px);
      color: rgba(255,255,255,.8);
      text-align: center;
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .main-nav {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.4rem;
        padding: 2rem;
        background: var(--bg);
        color: var(--text);
        font-family: "Playfair Display", Georgia, serif;
        font-size: 2.7rem;
      }

      .main-nav.open {
        display: flex;
      }

      .menu-button {
        display: inline-grid;
      }

      .header-actions .icon-button {
        position: relative;
        z-index: 60;
      }

      .site-header:not(.scrolled) .menu-button,
      .site-header:not(.scrolled) .icon-button {
        color: #fff;
      }

      .intro-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .intro-copy {
        padding-top: 0;
      }

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

      .service {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .service:last-child {
        border-bottom: 0;
      }

      .service-number {
        margin-bottom: 3rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }
    }

    @media (max-width: 640px) {
      .section-head,
      .hero-bottom {
        display: block;
      }

      .hero-copy {
        margin-bottom: 2rem;
      }

      .scroll-note {
        display: none;
      }

      .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .process-row {
        grid-template-columns: 42px 1fr;
      }

      .process-arrow {
        display: none;
      }

      .lightbox-prev,
      .lightbox-next {
        top: auto;
        bottom: 1.2rem;
        transform: none;
      }

      .lightbox-caption {
        bottom: 5.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }
  
.custom-logo-link img{max-height:56px;width:auto}.custom-logo-link{display:block}.hero-eyebrow{color:#fff}.honeypot{position:absolute!important;left:-9999px!important}.content-page{max-width:960px}.content-page>h1,.content-page article>h1{margin-top:3rem}.content-page img{height:auto}.main-nav .menu-item{list-style:none}.main-nav ul{display:contents}
