﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.g-recaptcha {
  max-width: 100%;
}

.g-recaptcha > div {
  max-width: 100%;
}

footer .footer-grid {
  align-items: start;
}

footer .footer-right {
  width: 100%;
}

footer .footer-right > div,
footer .footer-grid > div {
  min-width: 0;
}

footer .footer-list,
footer .footer-contact {
  display: grid;
  gap: 18px;
}

@media (max-width: 768px) {
  footer .footer-top {
    padding: 48px 18px !important;
  }

  footer .container.footer-grid {
    width: min(calc(100% - 36px), 1220px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    justify-items: stretch !important;
  }

  footer .footer-brand,
  footer .footer-right,
  footer .footer-right > div,
  footer .footer-grid > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  footer .footer-brand {
    transform: none !important;
  }

  footer .footer-brand p {
    max-width: 100% !important;
  }

  footer .footer-right {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    justify-self: stretch !important;
  }

  footer .footer-right > div,
  footer .footer-grid > div:not(.footer-brand):not(.footer-right) {
    display: grid !important;
    gap: 18px !important;
    justify-items: start !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  footer .footer-title {
    margin-bottom: 0 !important;
  }

  footer .footer-title::after {
    margin-left: 0 !important;
  }

  footer .footer-list,
  footer .footer-contact {
    gap: 18px !important;
    justify-items: start !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  footer .footer-contact-item {
    width: 100% !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 0.7rem !important;
    align-items: start !important;
  }

  footer .footer-contact-item p,
  footer .footer-list a,
  footer .footer-list p {
    overflow-wrap: anywhere !important;
  }

  footer .footer-list a,
  footer .footer-list p,
  footer .footer-contact p {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}


/* index.html */
body.page-home{
      --bg: #f4f0e8;
      --surface: rgba(255, 255, 255, 0.92);
      --surface-soft: rgba(255, 252, 247, 0.76);
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --line: rgba(74, 58, 39, 0.1);
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --radius-lg: 34px;
      --radius-md: 24px;
      --radius-sm: 18px;
      --max-width: 1220px;
    }

    body.page-home *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-home{
      scroll-behavior: smooth;
    }

    body.page-home{
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.5), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
      color: var(--ink);
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.page-home img{
      display: block;
      max-width: 100%;
    }

    body.page-home a{
      color: inherit;
      text-decoration: none;
    }

    body.page-home button, body.page-home input, body.page-home select, body.page-home textarea{
      font: inherit;
    }

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

    body.page-home h1, body.page-home h2, body.page-home h3{
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.04;
    }

    body.page-home h2{
      font-size: clamp(2.1rem, 3vw, 3.2rem);
    }

    body.page-home p{
      color: var(--muted);
    }

    body.page-home .section-heading{
      text-align: center;
      margin-bottom: 2.5rem;
    }

    body.page-home .eyebrow{
      display: inline-block;
      margin-bottom: 0.8rem;
      color: var(--gold-deep);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    body.page-home header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
    }

    body.page-home header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-home .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      align-items: center;
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-home .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-home .brand img{
      height: 178px;
      width: auto;
      object-fit: contain;
    }

    body.page-home nav{
      grid-area: nav;
      justify-self: center;
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: -0.55rem;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      background: rgba(9, 14, 20, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      position: relative;
    }

    body.page-home nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.98);
      padding-bottom: 0.4rem;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-home nav a::after{
      content: "";
      position: absolute;
      left: 50%;
      bottom: -0.18rem;
      width: 68%;
      height: 2px;
      background: var(--gold);
      border-radius: 999px;
      transform: scaleX(0);
      transform-origin: center;
      translate: -50% 0;
      opacity: 0;
      transition: transform 0.25s ease;
    }

    body.page-home nav a:hover::after, body.page-home nav a:focus-visible::after, body.page-home nav a.active::after{
      transform: scaleX(1);
      opacity: 1;
    }

    body.page-home nav a:hover, body.page-home nav a:focus-visible, body.page-home nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-home .nav-cta{
      grid-area: cta;
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: white;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-home .nav-cta:hover, body.page-home .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-home .hero{
      position: relative;
      height: 100svh;
      min-height: 820px;
      color: white;
      overflow: hidden;
    }

    body.page-home .hero-slider, body.page-home .hero-slide{
      position: absolute;
      inset: 0;
    }

    body.page-home .hero-slide{
      opacity: 0;
      transition: opacity 1s ease;
    }

    body.page-home .hero-slide.active{
      opacity: 1;
    }

    body.page-home .hero-slide img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.02);
    }

    body.page-home .hero-overlay{
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(12, 16, 23, 0.74) 0%, rgba(12, 16, 23, 0.54) 22%, rgba(12, 16, 23, 0.24) 46%, rgba(12, 16, 23, 0.04) 68%, rgba(12, 16, 23, 0) 82%),
        linear-gradient(180deg, rgba(14, 19, 26, 0.18) 0%, rgba(14, 19, 26, 0.02) 24%, rgba(10, 12, 16, 0.22) 100%);
      z-index: 1;
    }

    body.page-home .hero-overlay::before{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 12, 17, 0.24) 0%, rgba(8, 12, 17, 0.08) 14%, rgba(8, 12, 17, 0) 28%);
    }

    body.page-home .hero-content{
      position: relative;
      z-index: 2;
      min-height: 820px;
      display: flex;
      align-items: center;
      padding: 11.5rem 0 6rem;
    }

    body.page-home .hero-copy{
      max-width: 720px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 0;
    }

    body.page-home .hero-copy h1{
      font-size: clamp(3.35rem, 5.4vw, 5.6rem);
      line-height: 1;
      letter-spacing: -0.04em;
      max-width: 11ch;
      font-weight: 800;
      text-wrap: balance;
      text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
      margin: 0;
    }

    body.page-home .hero-copy h1 span{
      color: #d2a048;
      display: inline-block;
    }

    body.page-home .hero-copy p{
      margin-top: 1.6rem;
      max-width: 40rem;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.08rem;
      line-height: 1.5;
      font-weight: 500;
      text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    }

    body.page-home .hero-actions{
      margin-top: 2.2rem;
      display: flex;
      gap: 1rem;
    }

    body.page-home .hero-actions .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 999px;
      padding: 1rem 1.75rem;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-weight: 700;
    }

    body.page-home .hero-actions .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    }

    body.page-home .hero-actions .btn-secondary, body.page-home .hero-actions .btn-primary{
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: var(--shadow-soft);
    }

    body.page-home .slider-controls{
      position: absolute;
      left: 50%;
      bottom: 2.2rem;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 0.55rem;
      opacity: 0.92;
    }

    body.page-home .slider-dot{
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.32);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    body.page-home .slider-dot.active{
      background: rgba(255, 255, 255, 0.9);
      transform: scale(1.08);
    }

    body.page-home section{
      padding: 3.2rem 0 5rem;
    }

    body.page-home .soft-panel{
      position: relative;
      padding: 3.2rem 0 3.8rem;
    }

    body.page-home .soft-panel::before{
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 38px;
      background:
        radial-gradient(circle at right center, rgba(210, 226, 239, 0.42), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: var(--shadow-soft);
      z-index: -1;
    }

    body.page-home .services-layout{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.3rem;
    }

    body.page-home .service-feature{
      position: relative;
      min-height: 280px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    body.page-home .service-feature img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    body.page-home .service-feature:hover img{
      transform: scale(1.05);
    }

    body.page-home .service-feature::after{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.62) 100%);
      z-index: 0;
    }

    body.page-home .service-copy{
      position: absolute;
      left: 1.4rem;
      right: 1.4rem;
      bottom: 1.35rem;
      z-index: 1;
      color: white;
    }

    body.page-home .service-copy h3{
      font-size: 1.95rem;
      margin-bottom: 0.35rem;
    }

    body.page-home .service-copy p{
      color: rgba(255, 255, 255, 0.84);
      max-width: 24rem;
    }

    body.page-home .service-stack{
      display: grid;
      gap: 1rem;
    }

    body.page-home .service-mini{
      display: grid;
      grid-template-columns: 170px 1fr;
      align-items: stretch;
      overflow: hidden;
      min-height: 135px;
      border-radius: 22px;
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: var(--shadow-soft);
    }

    body.page-home .service-mini-image{
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    body.page-home .service-mini img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    body.page-home .service-mini-copy{
      padding: 1.25rem 1.25rem 1.1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    body.page-home .service-mini-copy h3{
      font-size: 1.45rem;
      margin-bottom: 0.25rem;
    }

    body.page-home .process-band{
      position: relative;
      padding: 3.5rem 0 4.2rem;
      margin: 2rem 0 4.8rem;
      color: white;
      overflow: hidden;
      isolation: isolate;
    }

    body.page-home .process-band::before{
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(20, 20, 20, 0.76), rgba(39, 36, 32, 0.88)),
        url("images/14.webp") center/cover no-repeat;
      z-index: -2;
      transform: scale(1.02);
    }

    body.page-home .process-band::after{
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 22%);
      z-index: -1;
    }

    body.page-home .process-row{
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1.2rem;
      align-items: stretch;
    }

    body.page-home .process-card{
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-soft);
    }

    body.page-home .process-card img{
      width: 100%;
      height: 175px;
      object-fit: cover;
    }

    body.page-home .card-label{
      padding: 0.95rem 1rem 1.05rem;
      text-align: center;
      font-size: 1rem;
      font-weight: 600;
      color: #403b36;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.94));
    }

    body.page-home .process-more{
      margin-top: 1.6rem;
      display: flex;
      justify-content: center;
    }

    body.page-home .process-more a{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.45rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: white;
      font-weight: 800;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-home .process-more a:hover, body.page-home .process-more a:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
    }

    body.page-home .work-layout{
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.4rem;
      align-items: start;
    }

    body.page-home .work-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    body.page-home .work-card{
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: white;
    }

    body.page-home .work-card img{
      width: 100%;
      height: 255px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    body.page-home .work-card:hover img{
      transform: scale(1.04);
    }

    body.page-home .contact-panel{
      overflow: hidden;
      padding: 2rem;
      border-radius: 26px;
      background:
        radial-gradient(circle at right top, rgba(207, 223, 238, 0.42), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 245, 240, 0.92));
      box-shadow: var(--shadow);
    }

    body.page-home .contact-panel h3{
      font-size: 2rem;
      margin-bottom: 0.4rem;
    }

    body.page-home .contact-grid{
      display: grid;
      gap: 1.5rem;
    }

    body.page-home .contact-info{
      display: grid;
      gap: 1rem;
    }

    body.page-home .info-item{
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 0.9rem;
      align-items: start;
    }

    body.page-home .info-icon{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(207, 223, 238, 0.55);
      color: var(--gold-deep);
      font-size: 1.1rem;
      font-weight: 700;
    }

    body.page-home .info-icon svg{
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    body.page-home .info-item strong{
      display: block;
      margin-bottom: 0.2rem;
      color: #3f3a36;
    }

    body.page-home .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    body.page-home .contact-form{
      display: grid;
      gap: 0.9rem;
      margin-top: 0.5rem;
    }

    body.page-home .recaptcha-wrap{
      margin-top: 0.15rem;
    }

    body.page-home .recaptcha-wrap .g-recaptcha{
      transform-origin: left top;
    }

    body.page-home .contact-form input, body.page-home .contact-form select, body.page-home .contact-form textarea{
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.95rem 1rem;
      background: rgba(255, 255, 255, 0.96);
      color: #3e3935;
      outline: none;
    }

    body.page-home .contact-form textarea{
      min-height: 130px;
      resize: vertical;
      border-radius: 24px;
    }

    body.page-home .contact-form .btn-primary{
      width: 100%;
      border: none;
      border-radius: 999px;
      padding: 1.05rem 1.5rem;
      background: linear-gradient(135deg, #c89a4d, #b3833d);
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(184, 142, 79, 0.24);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-home .contact-form .btn-primary:hover, body.page-home .contact-form .btn-primary:focus-visible{
      background: linear-gradient(135deg, #d2a75f, #bc8b45);
      transform: translateY(-1px);
      box-shadow: 0 20px 38px rgba(184, 142, 79, 0.28);
    }

    body.page-home footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-home .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-home .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-home .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-home .footer-logo-box{
      width: 190px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-home .footer-logo-box img{
      width: 100%;
      height: auto;
      margin: 0;
      object-fit: contain;
    }

    body.page-home .footer-brand p{
      max-width: 24rem;
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-home .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    body.page-home .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }


    body.page-home .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-home .footer-title{
      margin-bottom: 1rem;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: white;
    }

    body.page-home .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-home .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-home .footer-list a, body.page-home .footer-list p, body.page-home .footer-location, body.page-home .footer-contact p{
      color: rgba(255, 255, 255, 0.72) !important;
    }


    body.page-home .footer-list a, body.page-home .footer-list p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-home .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-home .footer-list a:hover, body.page-home .footer-list a:focus-visible{
      color: var(--gold) !important;
    }

    body.page-home .footer-contact{
      display: grid;
      gap: 1rem;

    }

    body.page-home .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-home .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-home .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-home .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-home .footer-socials a:hover, body.page-home .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-home .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-home .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 1100px) {
      body.page-home .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        padding: 0.75rem 0 1rem;
        gap: 0 1rem;
      }

      body.page-home .brand img{
        height: 152px;
      }

      body.page-home nav{
        gap: 1.3rem;
        font-size: 0.96rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }


      body.page-home .services-layout, body.page-home .work-layout, body.page-home .footer-grid{
        grid-template-columns: 1fr;
      }

      body.page-home .process-row{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

    }

    @media (max-width: 760px) {
      body.page-home .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-home header{
        position: absolute;
        background: transparent;
        border-bottom: none;
      }

      body.page-home header::after{
        height: 210px;
      }

      body.page-home .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav nav";
        align-items: center;
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-home .brand{
        grid-area: brand;
        justify-self: center;
      }

      body.page-home nav{
        grid-area: nav;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        font-size: 0.88rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-home nav a{
        font-size: 0.88rem;
      }


      body.page-home .brand img{
        height: 100px;
      }

      body.page-home .hero, body.page-home .hero-content{
        min-height: 700px;
      }

      body.page-home .hero{
        height: 100svh;
      }

      body.page-home .hero-content{
        align-items: flex-end;
        padding: 13rem 0 5.25rem;
      }

      body.page-home .hero-copy{
        max-width: 100%;
      }

      body.page-home .hero-copy h1{
        font-size: clamp(2.15rem, 9.6vw, 3.35rem);
        max-width: 9.5ch;
      }

      body.page-home .hero-copy p{
        max-width: 100%;
        font-size: 0.94rem;
      }

      body.page-home .slider-controls{
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%);
      }

      body.page-home .slider-dot{
        width: 12px;
        height: 12px;
      }

      body.page-home .service-mini{
        grid-template-columns: 1fr;
      }

      body.page-home .service-mini img{
        height: 180px;
      }

      body.page-home .process-row, body.page-home .work-grid, body.page-home .footer-right{
        grid-template-columns: 1fr;
      }

      body.page-home .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-home .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-home .contact-panel{
        padding: 1.4rem;
      }

      body.page-home .recaptcha-wrap{
        overflow: hidden;
      }

      body.page-home .recaptcha-wrap .g-recaptcha{
        transform: scale(0.9);
      }
    }


/* about.html */
body.page-about{
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --line: rgba(74, 58, 39, 0.1);
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --max-width: 1220px;
    }

    body.page-about *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-about{
      font-family: "Inter", "Segoe UI", sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.45), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
    }

    body.page-about a{
      color: inherit;
      text-decoration: none;
    }

    body.page-about img{
      display: block;
      max-width: 100%;
    }

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

    body.page-about h1, body.page-about h2, body.page-about h3{
      font-family: "Playfair Display", Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.08;
    }

    body.page-about p{
      font-family: "Inter", "Segoe UI", sans-serif;
      color: var(--muted);
      font-weight: 400;
      line-height: 1.7;
    }

    body.page-about header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }

    body.page-about .nav-wrap{
      min-height: 122px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    body.page-about .brand{
      justify-self: start;
    }

    body.page-about .brand img{
      height: 164px;
      width: auto;
      object-fit: contain;
    }

    body.page-about nav{
      justify-self: center;
      display: flex;
      gap: 2.1rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      background: rgba(10, 14, 20, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    body.page-about nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.88);
      padding-bottom: 0.4rem;
    }

    body.page-about nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.05rem;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    body.page-about nav a:hover::after, body.page-about nav a.active::after{
      transform: scaleX(1);
    }

    body.page-about .nav-cta{
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-about .nav-cta:hover, body.page-about .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-about .hero{
      position: relative;
      height: 100svh;
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.52), rgba(10, 10, 12, 0.24)),
        url("images/sasa14.webp") center/cover no-repeat;
    }

    body.page-about .hero::after{
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(242, 237, 230, 0.98));
      z-index: 1;
    }

    body.page-about .hero-copy{
      position: relative;
      z-index: 2;
      max-width: 1120px;
      width: fit-content;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 12.75rem;
    }

    body.page-about .eyebrow{
      display: inline-block;
      margin-bottom: 22px;
      margin-left: 0;
      color: rgba(196, 147, 64, 0.95);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      line-height: 1;
      align-self: center;
      text-align: center;
    }

    body.page-about .hero h1{
      max-width: none;
      font-size: clamp(3.2rem, 5.4vw, 5.6rem);
      line-height: 1.03;
      font-weight: 500;
      letter-spacing: -0.04em;
      text-align: center;
      text-wrap: balance;
      align-self: center;
    }

    body.page-about .hero p{
      max-width: 780px;
      width: 100%;
      margin-top: 1.4rem;
      margin-left: auto;
      margin-right: auto;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      line-height: 1.55;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    body.page-about main section{
      padding: 3rem 0;
    }

    body.page-about .story-wrap{
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1.4rem;
      align-items: stretch;
    }

    body.page-about .story-panel, body.page-about .feature-panel, body.page-about .values-panel{
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    body.page-about .story-panel{
      padding: 2.3rem;
      background:
        radial-gradient(circle at top right, rgba(210, 226, 238, 0.34), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 240, 0.94));
    }

    body.page-about .section-tag{
      display: inline-block;
      margin-bottom: 0.9rem;
      color: var(--gold-deep);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    body.page-about .story-panel h2, body.page-about .values-panel h2{
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      line-height: 1.02;
      margin-bottom: 0.9rem;
    }

    body.page-about .story-panel p+p{
      margin-top: 0.9rem;
    }

    body.page-about .feature-panel{
      position: relative;
      min-height: 100%;
      background: #111;
    }

    body.page-about .feature-panel img{
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    body.page-about .feature-panel::after{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.58));
    }

    body.page-about .feature-copy{
      position: absolute;
      left: 1.4rem;
      right: 1.4rem;
      bottom: 1.3rem;
      z-index: 1;
      color: #fff;
    }

    body.page-about .feature-copy h3{
      font-size: 2rem;
      margin-bottom: 0.35rem;
    }

    body.page-about .feature-copy p{
      color: rgba(255, 255, 255, 0.82);
    }

    body.page-about .values-section{
      position: relative;
      margin: 1.4rem 0 0;
      padding: 0;
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.26), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.18), transparent 24%),
        linear-gradient(180deg, #efe6d7, #e6d8c2);
    }

    body.page-about .values-panel{
      width: 100%;
      padding: 4.4rem 0 4rem;
    }

    body.page-about .values-shell{
      width: min(calc(100% - 2rem), 1560px);
      margin: 0 auto;
    }

    body.page-about .values-top{
      text-align: center;
      margin-bottom: 2.8rem;
    }

    body.page-about .values-line{
      display: none;
    }

    body.page-about .values-grid{
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.4rem;
    }

    body.page-about .value-card{
      min-height: 240px;
      padding: 2rem 1.5rem 1.7rem;
      border-radius: 22px;
      background: rgba(255, 252, 247, 0.5);
      border: 1.5px solid rgba(74, 58, 39, 0.26);
      box-shadow: 0 16px 34px rgba(53, 41, 27, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    body.page-about .value-icon{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      margin-bottom: 1.4rem;
      background: rgba(184, 142, 79, 0.16);
      color: var(--gold-deep);
    }

    body.page-about .value-icon svg{
      width: 38px;
      height: 38px;
    }

    body.page-about .value-card h3{
      font-size: 1.2rem;
      margin-bottom: 0.7rem;
      color: var(--ink);
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    body.page-about .value-card p{
      color: #3f3933;
      max-width: 18rem;
    }

    body.page-about .values-panel .section-tag{
      color: var(--gold-deep);
      margin-bottom: 1rem;
      font-size: 0.92rem;
      letter-spacing: 0.18em;
    }

    body.page-about .values-panel h2{
      color: var(--ink);
      font-size: clamp(2.7rem, 5vw, 4.8rem);
      margin-bottom: 0;
    }

    body.page-about .difference-section{
      padding: 2.7rem 0 1.8rem;
    }

    body.page-about .difference-shell{
      position: relative;
      min-height: 980px;
      padding: 5rem 3rem 4.6rem;
      border-radius: 40px;
      background: url("images/brands.webp") center/cover no-repeat;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 34px 70px rgba(24, 18, 13, 0.22);
      overflow: hidden;
    }

    body.page-about .difference-header{
      display: grid;
      gap: 1.15rem;
      text-align: center;
      max-width: 54rem;
      margin: 0 auto 2.7rem;
    }

    body.page-about .difference-kicker{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--gold);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin: 0 auto;
    }

    body.page-about .difference-kicker::before, body.page-about .difference-kicker::after{
      content: "";
      width: 64px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(184, 142, 79, 0.45), rgba(184, 142, 79, 0.9));
    }

    body.page-about .difference-title{
      color: #f7f1e8;
      font-family: "Playfair Display", Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 5.15vw, 4.95rem);
      line-height: 1.06;
      letter-spacing: -0.035em;
      font-weight: 600;
      max-width: none;
      margin: 0 auto;
    }

    body.page-about .difference-title-line{
      display: block;
    }

    body.page-about .difference-title-divider{
      width: 72px;
      height: 2px;
      border-radius: 999px;
      margin: 1.15rem auto 0;
      background: linear-gradient(90deg, rgba(184, 142, 79, 0.28), rgba(184, 142, 79, 0.95), rgba(184, 142, 79, 0.28));
    }

    body.page-about .difference-summary{
      max-width: 41rem;
      margin: 0 auto;
    }

    body.page-about .difference-summary p{
      color: rgba(247, 241, 232, 0.88);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 1.02rem;
      font-weight: 400;
      line-height: 1.7;
    }

    body.page-about .difference-stage{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.15rem;
      align-items: stretch;
    }

    body.page-about .difference-item{
      min-height: 338px;
      padding: 1.55rem 1.35rem 1.6rem;
      border-radius: 0;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(74, 58, 39, 0.08);
      box-shadow: 0 18px 38px rgba(10, 10, 10, 0.16);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    body.page-about .difference-logo{
      display: block;
      width: 100%;
      max-width: 360px;
      height: 196px;
      object-fit: contain;
      object-position: center;
    }

    body.page-about .difference-logo-fb{
      transform: scale(0.69);
      transform-origin: center;
    }

    body.page-about .difference-accent{
      width: 40px;
      height: 2px;
      border-radius: 999px;
      margin: 0.18rem auto 0.52rem;
      background: linear-gradient(90deg, rgba(184, 142, 79, 0.3), rgba(184, 142, 79, 0.82), rgba(184, 142, 79, 0.3));
    }

    body.page-about .difference-item p{
      color: #6f665e;
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 0.92rem;
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    body.page-about .standards{
      margin-top: 1.4rem;
      padding: 4.1rem 0;
      background:
        radial-gradient(circle at top right, rgba(210, 226, 238, 0.3), transparent 24%),
        radial-gradient(circle at bottom left, rgba(184, 142, 79, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 239, 231, 0.96));
    }

    body.page-about .standards-shell{
      width: min(calc(100% - 2rem), 1560px);
      margin: 0 auto;
    }

    body.page-about .standards-head{
      max-width: 48rem;
      margin-bottom: 2.1rem;
    }

    body.page-about .standards-kicker{
      display: inline-block;
      margin-bottom: 0.8rem;
      color: var(--gold-deep);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    body.page-about .standards-head h2{
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      margin-bottom: 0.8rem;
    }

    body.page-about .standards-line{
      width: 52px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
      margin-bottom: 1.2rem;
    }

    body.page-about .standards-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    body.page-about .standard-card{
      padding: 1.35rem 1.4rem 1.45rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(74, 58, 39, 0.08);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      text-align: left;
    }

    body.page-about .standard-icon{
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(210, 226, 238, 0.45);
      color: var(--gold-deep);
      margin-bottom: 0.8rem;
      flex-shrink: 0;
    }

    body.page-about .standard-card h3{
      font-size: 1.48rem;
      line-height: 1.08;
      margin-bottom: 0.55rem;
    }

    body.page-about .standard-card .standard-amp{
      font-family: "Inter", "Segoe UI", sans-serif;
      font-weight: 700;
      font-size: 0.88em;
      letter-spacing: 0;
      display: inline-block;
      margin: 0 0.08em;
      transform: translateY(-0.03em);
    }

    body.page-about .standard-card p{
      line-height: 1.58;
      max-width: 31ch;
    }

    body.page-about .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    body.page-about footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-about .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-about .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-about .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-about .footer-logo-box{
      width: 170px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-about .footer-logo-box img{
      width: 100%;
      height: auto;
      display: block;
    }

    body.page-about .footer-brand p{
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-about .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1.3rem;
    }

    body.page-about .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
    }

    body.page-about .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-about .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-about .footer-socials a:hover, body.page-about .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-about .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-about .footer-title{
      margin-bottom: 1rem;
      color: white;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    body.page-about .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-about .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-about .footer-list a, body.page-about .footer-list p, body.page-about .footer-contact p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-about .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-about .footer-list a:hover, body.page-about .footer-list a:focus-visible{
      color: var(--gold);
    }

    body.page-about .footer-contact{
      display: grid;
      gap: 1rem;
    }

    body.page-about .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-about .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-about .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-about .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-about header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-about .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-about .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-about .brand img{
      height: 178px;
    }

    body.page-about nav{
      grid-area: nav;
      justify-content: center;
      margin-top: -0.55rem;
    }

    body.page-about nav a{
      color: rgba(255, 255, 255, 0.98);
      font-size: 1.05rem;
      font-family: "Inter", "Segoe UI", sans-serif;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-about nav a:hover, body.page-about nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-about .hero-cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-family: "Inter", "Segoe UI", sans-serif;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      margin-top: 2rem;
      align-self: center;
    }

    body.page-about .hero-cta:hover, body.page-about .hero-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    @media (max-width: 1100px) {

      body.page-about .story-wrap, body.page-about .values-top, body.page-about .difference-shell, body.page-about .footer-grid{
        grid-template-columns: 1fr;
        justify-items: center;
      }

      body.page-about .brand, body.page-about .footer-right{
        justify-self: center;
      }

      body.page-about .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        gap: 0 1rem;
        padding: 0.75rem 0 1rem;
      }

      body.page-about .hero-copy{
        padding-top: 8rem;
      }

      body.page-about .brand img{
        height: 152px;
      }

      body.page-about nav{
        gap: 1.3rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }

      body.page-about .values-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      body.page-about .footer-right{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.6rem;
        max-width: none;
      }

      body.page-about .standards-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      body.page-about .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-about header::after{
        height: 210px;
      }

      body.page-about .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav";
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-about .brand img{
        height: 100px;
      }

      body.page-about nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-about nav a{
        font-size: 0.88rem;
      }

      body.page-about .hero{
        min-height: 700px;
      }

      body.page-about .hero-copy{
        padding-top: 7rem;
      }

      body.page-about .hero h1{
        font-size: clamp(2.2rem, 10vw, 3.4rem);
      }

      body.page-about .story-panel, body.page-about .values-panel{
        padding: 1.5rem;
      }

      body.page-about .difference-section{
        padding: 2.6rem 0 0.8rem;
      }

      body.page-about .difference-shell{
        min-height: 0;
        padding: 3rem 1.35rem 2.8rem;
      }

      body.page-about .difference-kicker{
        gap: 0.65rem;
        font-size: 0.76rem;
        letter-spacing: 0.14em;
      }

      body.page-about .difference-kicker::before, body.page-about .difference-kicker::after{
        width: 36px;
      }

      body.page-about .difference-header, body.page-about .difference-stage{
        grid-template-columns: 1fr;
      }

      body.page-about .difference-title{
        max-width: 10ch;
        white-space: normal;
      }

      body.page-about .difference-summary p{
        font-size: 1.02rem;
      }

      body.page-about .difference-item{
        min-height: 0;
        padding: 1.35rem 1.1rem 1.35rem;
      }

      body.page-about .difference-logo{
        height: 154px;
      }

      body.page-about .standards{
        padding: 3rem 0;
      }

      body.page-about .values-grid{
        grid-template-columns: 1fr;
      }

      body.page-about .value-card{
        min-height: 210px;
      }

      body.page-about .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-about .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-about .footer-right, body.page-about .standards-grid{
        grid-template-columns: 1fr;
      }
    }


/* services.html */
body.page-services{
      --bg: #f4f0e8;
      --surface: rgba(255, 255, 255, 0.92);
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --line: rgba(74, 58, 39, 0.1);
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --max-width: 1220px;
    }

    body.page-services *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-services{
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      color: var(--ink);
      line-height: 1.65;
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.46), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
    }

    body.page-services a{
      color: inherit;
      text-decoration: none;
    }

    body.page-services img{
      display: block;
      max-width: 100%;
    }

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

    body.page-services h1, body.page-services h2, body.page-services h3{
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.04;
    }

    body.page-services p{
      color: var(--muted);
    }

    body.page-services header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }

    body.page-services .nav-wrap{
      min-height: 122px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    body.page-services .brand{
      justify-self: start;
    }

    body.page-services .brand img{
      height: 164px;
      width: auto;
      object-fit: contain;
    }

    body.page-services nav{
      justify-self: center;
      display: flex;
      gap: 2.1rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      background: rgba(10, 14, 20, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    body.page-services nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.88);
      padding-bottom: 0.4rem;
    }

    body.page-services nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.05rem;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    body.page-services nav a:hover::after, body.page-services nav a.active::after{
      transform: scaleX(1);
    }

    body.page-services .nav-cta{
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-services .nav-cta:hover, body.page-services .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-services .hero{
      position: relative;
      height: 100svh;
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.52), rgba(12, 12, 14, 0.24)),
        url("images/test.webp") center center / cover no-repeat;
    }

    body.page-services .hero::after{
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(242, 237, 230, 0.98));
      z-index: 1;
    }

    body.page-services .hero-copy{
      position: relative;
      z-index: 2;
      max-width: 980px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: calc(11.5rem + 60px);
      text-align: center;
    }

    body.page-services .eyebrow{
      display: inline-block;
      margin-bottom: 22px;
      margin-left: 0;
      color: rgba(214, 167, 86, 0.98);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      line-height: 1;
      align-self: center;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38), 0 0 1px rgba(0, 0, 0, 0.2);
    }

    body.page-services .hero-title{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.02em;
      margin: 0;
      font-size: clamp(3.8rem, 6.5vw, 6.4rem);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: -0.05em;
      text-align: center;
      text-wrap: balance;
      align-self: center;
    }

    body.page-services .hero-title span{
      display: block;
    }

    body.page-services .hero p{
      max-width: 760px;
      margin: 1.45rem auto 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      line-height: 1.5;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    body.page-services .services-section{
      padding: 3.5rem 0 5rem;
    }

    body.page-services .intro{
      max-width: 58rem;
      margin: 0 auto 2rem;
      text-align: center;
    }

    body.page-services .intro h2{
      font-size: clamp(2.1rem, 3vw, 3.15rem);
      margin-bottom: 0.7rem;
      line-height: 1.18;
      text-wrap: balance;
    }

    body.page-services .intro p{
      max-width: 52rem;
      margin: 0 auto;
      font-size: 1.03rem;
    }

    body.page-services .service-block{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      padding: 2.2rem 0;
      border-top: 1px solid rgba(74, 58, 39, 0.12);
    }

    body.page-services .service-block:nth-child(even) .media{
      order: 2;
    }

    body.page-services .service-block:nth-child(even) .copy{
      order: 1;
    }

    body.page-services .media{
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    body.page-services .media img{
      width: 100%;
      min-height: 370px;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    body.page-services .service-block:hover .media img{
      transform: scale(1.04);
    }

    body.page-services .media-badge{
      position: absolute;
      left: 1.2rem;
      top: 1.2rem;
      padding: 0.55rem 0.8rem;
      border-radius: 999px;
      background: rgba(20, 20, 20, 0.58);
      color: #fff;
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }

    body.page-services .copy{
      padding: 0.5rem 0.5rem 0.5rem 0;
    }

    body.page-services .copy span{
      display: inline-block;
      margin-bottom: 0.75rem;
      color: var(--gold-deep);
      font-weight: 700;
      font-size: 0.84rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    body.page-services .copy h3{
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 0.85rem;
    }

    body.page-services .copy p{
      font-size: 1.03rem;
      margin-bottom: 0.95rem;
      max-width: 32rem;
    }

    body.page-services .bullets{
      display: grid;
      gap: 0.65rem;
      margin-top: 1.1rem;
    }

    body.page-services .bullets b{
      display: flex;
      align-items: center;
      gap: 0.65rem;
      color: #433b34;
      font-weight: 500;
    }

    body.page-services .bullets b::before{
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      flex: 0 0 auto;
    }

    body.page-services footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-services .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-services .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-services .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-services .footer-logo-box{
      width: 170px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-services .footer-logo-box img{
      width: 100%;
      height: auto;
      margin: 0;
      object-fit: contain;
    }

    body.page-services .footer-brand p{
      max-width: 24rem;
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-services .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    body.page-services .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
    }

    body.page-services .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-services .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-services .footer-socials a:hover, body.page-services .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-services .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-services .footer-title{
      margin-bottom: 1rem;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: white;
    }

    body.page-services .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-services .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-services .footer-contact{
      display: grid;
      gap: 1rem;
    }

    body.page-services .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-services .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-services .footer-list a, body.page-services .footer-list p, body.page-services .footer-location, body.page-services .footer-contact p{
      color: rgba(255, 255, 255, 0.72) !important;
    }


    body.page-services .footer-list a, body.page-services .footer-list p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-services .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-services .footer-list a:hover, body.page-services .footer-list a:focus-visible{
      color: var(--gold) !important;
    }

    body.page-services .footer-location{
      margin-top: 0.9rem;
      color: rgba(255, 255, 255, 0.86);
    }

    body.page-services .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-services .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-services header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-services .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-services .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-services .brand img{
      height: 178px;
    }

    body.page-services nav{
      grid-area: nav;
      justify-content: center;
      margin-top: -0.55rem;
    }

    body.page-services nav a{
      color: rgba(255, 255, 255, 0.98);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-services nav a:hover, body.page-services nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-services .hero-cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      margin-top: 2rem;
    }

    body.page-services .hero-cta:hover, body.page-services .hero-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    @media (max-width: 1100px) {

      body.page-services .footer-grid, body.page-services .service-block{
        grid-template-columns: 1fr;
        justify-items: center;
      }

      body.page-services .brand, body.page-services .footer-right{
        justify-self: center;
      }

      body.page-services .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        gap: 0 1rem;
        padding: 0.75rem 0 1rem;
      }

      body.page-services .hero-copy{
        max-width: 760px;
        padding-top: 9.2rem;
      }

      body.page-services .brand img{
        height: 152px;
      }

      body.page-services nav{
        gap: 1.3rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }

      body.page-services .service-block:nth-child(even) .media, body.page-services .service-block:nth-child(even) .copy{
        order: initial;
      }

    }

    @media (max-width: 760px) {
      body.page-services .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-services header::after{
        height: 210px;
      }

      body.page-services .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav";
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-services .brand img{
        height: 100px;
      }

      body.page-services nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-services nav a{
        font-size: 0.88rem;
      }

      body.page-services .hero{
        min-height: 700px;
      }

      body.page-services .hero-copy{
        max-width: 100%;
        padding-top: 8.4rem;
      }

      body.page-services .hero-title{
        font-size: clamp(2.25rem, 10.2vw, 3.5rem);
      }

      body.page-services .hero-copy p{
        font-size: 0.94rem;
      }

      body.page-services .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-services .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-services .footer-right{
        display: grid;
        grid-template-columns: 1fr;
        justify-self: stretch;
        text-align: left;
        gap: 1.7rem;
      }

      body.page-services .footer-grid{
        justify-items: stretch;
        gap: 1.7rem;
      }

      body.page-services .footer-title, body.page-services .footer-list, body.page-services .footer-contact{
        text-align: left;
        justify-items: start;
      }

      body.page-services .footer-title::after{
        margin-left: 0;
      }
    }


/* process.html */
body.page-process{
      --bg: #f4f0e8;
      --surface: rgba(209, 5, 5, 0.92);
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --line: rgba(74, 58, 39, 0.1);
      --soft-line: rgba(184, 142, 79, 0.28);
      --accent: rgba(210, 226, 238, 0.45);
      --accent-ink: #8e6837;
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --max-width: 1220px;
    }

    body.page-process *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-process{
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.5), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
    }

    body.page-process a{
      color: inherit;
      text-decoration: none;
    }

    body.page-process img{
      display: block;
      max-width: 100%;
    }

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

    body.page-process h1, body.page-process h2, body.page-process h3{
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.04;
    }

    body.page-process p{
      color: var(--muted);
    }

    body.page-process header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }

    body.page-process .nav-wrap{
      min-height: 122px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    body.page-process .brand{
      justify-self: start;
    }

    body.page-process .brand img{
      height: 164px;
      width: auto;
      object-fit: contain;
    }

    body.page-process nav{
      justify-self: center;
      display: flex;
      gap: 2.1rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      background: rgba(10, 14, 20, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    body.page-process nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.88);
      padding-bottom: 0.4rem;
    }

    body.page-process nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.05rem;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    body.page-process nav a:hover::after, body.page-process nav a.active::after{
      transform: scaleX(1);
    }

    body.page-process .nav-cta{
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-process .nav-cta:hover, body.page-process .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-process .hero-title{
      text-align: center;
      line-height: 1.03;
      font-weight: 500;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }

    body.page-process .hero-title span{
      display: block;
    }

    body.page-process .hero-title span:nth-child(2){
      font-size: 1em;
      margin: 0;
    }

    body.page-process .hero{
      position: relative;
      height: 100svh;
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.52), rgba(12, 12, 14, 0.24)),
        url("images/200.webp") center center / cover no-repeat;
    }

    body.page-process .hero::after{
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(242, 237, 230, 0.98));
      z-index: 1;
    }

    body.page-process .hero-inner{
      position: relative;
      z-index: 2;
      max-width: 1120px;
      width: fit-content;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transform: translateY(125px);
    }

    body.page-process .eyebrow{
      display: inline-block;
      margin-bottom: 0.85rem;
      color: rgba(214, 167, 86, 0.98);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      line-height: 1;
      align-self: center;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38), 0 0 1px rgba(0, 0, 0, 0.2);
    }

    body.page-process .hero h1{
      max-width: none;
      font-size: clamp(3.2rem, 5.4vw, 5.6rem);
      line-height: 1.03;
      text-align: center;
      text-wrap: balance;
      align-self: center;
    }

    body.page-process .hero p{
      max-width: 900px;
      width: 100%;
      margin-top: 1.4rem;
      color: rgba(255, 255, 255, 0.99);
      font-size: 1.05rem;
      text-align: center;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44), 0 0 2px rgba(0, 0, 0, 0.22);
    }

    body.page-process .process-section{
      padding: 3rem 0 5rem;
    }

    body.page-process .process-shell{
      position: relative;
      min-height: 1620px;
      border-radius: 42px;
      background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(249, 245, 238, 0.84) 55%, rgba(239, 233, 225, 0.7) 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    body.page-process .process-shell::before{
      content: "";
      position: absolute;
      left: 150px;
      right: 150px;
      top: 120px;
      height: 760px;
      border: 2px dashed rgba(184, 142, 79, 0.26);
      border-radius: 50%;
    }

    body.page-process .process-shell::after{
      content: "";
      position: absolute;
      left: 50%;
      top: 420px;
      width: 560px;
      height: 560px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184, 142, 79, 0.08), transparent 64%);
      pointer-events: none;
    }

    body.page-process .centerpiece{
      position: absolute;
      left: 50%;
      top: 420px;
      width: 360px;
      transform: translate(-50%, -50%);
      text-align: center;
      padding: 2.2rem 2rem;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.95));
      box-shadow: var(--shadow-soft);
      z-index: 2;
    }

    body.page-process .step-connector{
      position: absolute;
      left: 50%;
      top: 880px;
      height: 345px;
      transform: translateX(-50%);
      border-left: 2px dashed rgba(184, 142, 79, 0.34);
      z-index: 1;
    }

    body.page-process .centerpiece span{
      display: inline-block;
      margin-bottom: 0.8rem;
      color: var(--gold-deep);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    body.page-process .centerpiece h2{
      font-size: 2.4rem;
      margin-bottom: 0.6rem;
    }

    body.page-process .step-card{
      position: absolute;
      width: 290px;
      padding: 1rem;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-soft);
      z-index: 2;
    }

    body.page-process .step-card img{
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 18px;
      margin-bottom: 1rem;
    }

    body.page-process .step-number{
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    body.page-process .step-card h3{
      font-size: 1.45rem;
      margin-bottom: 0.45rem;
    }

    body.page-process .step-1{
      left: 60px;
      top: 70px;
    }

    body.page-process .step-2{
      right: 60px;
      top: 70px;
    }

    body.page-process .step-3{
      left: 60px;
      top: 560px;
    }

    body.page-process .step-4{
      right: 60px;
      top: 560px;
    }

    body.page-process .step-5{
      left: 50%;
      bottom: 80px;
      transform: translateX(-50%);
    }

    body.page-process .faq-section{
      margin-top: 2.2rem;
      padding: 4rem 1.5rem 4.6rem;
      border-radius: 34px;
      background:
        radial-gradient(circle at top center, rgba(184, 142, 79, 0.09), transparent 26%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 239, 231, 0.97));
      box-shadow: var(--shadow-soft);
    }

    body.page-process .faq-head{
      max-width: 58rem;
      margin: 0 auto 3.4rem;
      text-align: center;
    }

    body.page-process .faq-head h2{
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 0.8rem;
    }

    body.page-process .faq-head p{
      font-size: 1.05rem;
    }

    body.page-process .faq-list{
      width: min(100%, 760px);
      margin: 0 auto;
      display: grid;
      gap: 0.85rem;
    }

    body.page-process .faq-item{
      overflow: hidden;
      border: 1px solid rgba(74, 58, 39, 0.1);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 8px 24px rgba(32, 23, 15, 0.06);
    }

    body.page-process .faq-item summary{
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem 1.35rem;
      color: #15130f;
      font-weight: 800;
      cursor: pointer;
    }

    body.page-process .faq-item summary::-webkit-details-marker{
      display: none;
    }

    body.page-process .faq-item summary::after{
      content: "";
      width: 10px;
      height: 10px;
      border-right: 2px solid var(--gold-deep);
      border-bottom: 2px solid var(--gold-deep);
      transform: rotate(45deg);
      transition: transform 0.2s ease;
      margin-left: 0.35rem;
      flex: 0 0 auto;
    }

    body.page-process .faq-item[open] summary::after{
      transform: rotate(225deg);
    }

    body.page-process .faq-item p{
      padding: 0 1.35rem 1.35rem;
      color: #665f58;
      font-size: 1rem;
    }

    body.page-process .faq-item[open]{
      border-color: rgba(184, 142, 79, 0.24);
      box-shadow: 0 14px 34px rgba(32, 23, 15, 0.09);
    }

    body.page-process footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-process .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-process .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-process .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-process .footer-logo-box{
      width: 170px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-process .footer-logo-box img{
      width: 100%;
      height: auto;
      display: block;
    }

    body.page-process .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-process .footer-logo-box img{
      width: 100%;
      height: auto;
      margin: 0;
      object-fit: contain;
    }

    body.page-process .footer-brand p{
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-process .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1.3rem;
    }

    body.page-process .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
    }

    body.page-process .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-process .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-process .footer-socials a:hover, body.page-process .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-process .footer-title{
      margin-bottom: 1rem;
      color: white;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    body.page-process .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-process .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-process .footer-list a, body.page-process .footer-list p, body.page-process .footer-contact p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-process .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-process .footer-list a:hover, body.page-process .footer-list a:focus-visible{
      color: var(--gold);
    }

    body.page-process .footer-contact{
      display: grid;
      gap: 1rem;
    }

    body.page-process .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-process .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-process .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-process .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-process header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-process .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-process .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-process .brand img{
      height: 178px;
    }

    body.page-process nav{
      grid-area: nav;
      justify-content: center;
      margin-top: -0.55rem;
    }

    body.page-process nav a{
      color: rgba(255, 255, 255, 0.98);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-process nav a:hover, body.page-process nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-process .hero-cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      margin-top: 1.7rem;
      align-self: center;
    }

    body.page-process .hero-cta:hover, body.page-process .hero-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    @media (max-width: 1100px) {

      body.page-process .footer-grid{
        grid-template-columns: 1fr;
        justify-items: center;
      }

      body.page-process .brand{
        justify-self: center;
      }

      body.page-process .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        gap: 0 1rem;
        padding: 0.75rem 0 1rem;
      }

      body.page-process .hero-inner{
        transform: translateY(88px);
      }

      body.page-process .brand img{
        height: 152px;
      }

      body.page-process nav{
        gap: 1.3rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }

      body.page-process .process-shell{
        min-height: auto;
        padding: 2rem;
        display: grid;
        gap: 1rem;
      }

      body.page-process .process-shell::before, body.page-process .process-shell::after, body.page-process .step-connector{
        display: none;
      }

      body.page-process .centerpiece, body.page-process .step-card{
        position: static;
        width: auto;
        transform: none;
      }

      body.page-process .faq-list{
        width: 100%;
      }

    }

    @media (max-width: 760px) {
      body.page-process .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-process header::after{
        height: 210px;
      }

      body.page-process .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav";
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-process .brand img{
        height: 100px;
      }

      body.page-process nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-process nav a{
        font-size: 0.88rem;
      }

      body.page-process .faq-section{
        padding: 3rem 1rem 3.4rem;
      }

      body.page-process .hero{
        min-height: 680px;
      }

      body.page-process .hero-inner{
        width: min(100%, 22rem);
        transform: translateY(82px);
        padding-inline: 0.35rem;
      }

      body.page-process .hero-copy{
        width: 100%;
      }

      body.page-process .hero-title{
        max-width: 100%;
        font-size: clamp(2rem, 9.2vw, 3.2rem);
        line-height: 1.02;
      }

      body.page-process .eyebrow{
        margin-bottom: 0.7rem;
        padding-top: 0.15rem;
      }

      body.page-process .hero-copy p{
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.45;
        margin-top: 0.25rem;
        margin-bottom: 0;
      }

      body.page-process .hero-cta{
        display: inline-flex;
        width: auto;
        min-width: 0;
        max-width: 100%;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
        line-height: 1.2;
        margin-top: 1.55rem;
      }

      body.page-process .faq-item summary{
        padding: 1rem 1.05rem;
      }

      body.page-process .faq-item p{
        padding: 0 1.05rem 1.1rem;
      }

      @media (max-width: 390px) {
        body.page-process .hero-inner{
          transform: translateY(100px);
        }

        body.page-process .hero-copy p{
          font-size: 0.8rem;
          line-height: 1.3;
          margin-top: -0.55rem;
          margin-bottom: -0.15rem;
        }

        body.page-process .hero-cta{
          width: auto;
          min-width: 0;
          max-width: 100%;
          padding: 0.9rem 1.35rem;
          font-size: 0.95rem;
          line-height: 1.2;
          margin-top: 0.85rem;
        }
      }

      body.page-process .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-process .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-process .footer-grid{
        justify-items: stretch;
      }

      body.page-process .footer-right{
        display: grid;
        grid-template-columns: 1fr;
        justify-self: stretch;
        text-align: left;
      }

      body.page-process .footer-title, body.page-process .footer-list, body.page-process .footer-contact{
        text-align: left;
        justify-items: start;
      }

      body.page-process .footer-title::after{
        margin-left: 0;
      }
    }


/* work.html */
body.page-work{
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --max-width: 1220px;
    }

    body.page-work *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-work{
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.12), transparent 18%),
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.46), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
    }

    body.page-work a{
      color: inherit;
      text-decoration: none;
    }

    body.page-work img{
      display: block;
      max-width: 100%;
    }

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

    body.page-work h1, body.page-work h2, body.page-work h3{
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.04;
    }

    body.page-work p{
      color: var(--muted);
    }

    body.page-work header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }

    body.page-work .nav-wrap{
      min-height: 122px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    body.page-work .brand{
      justify-self: start;
    }

    body.page-work .brand img{
      height: 164px;
      width: auto;
      object-fit: contain;
    }

    body.page-work nav{
      justify-self: center;
      display: flex;
      gap: 2.1rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      background: rgba(10, 14, 20, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    body.page-work nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.88);
      padding-bottom: 0.4rem;
    }

    body.page-work nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.05rem;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    body.page-work nav a:hover::after, body.page-work nav a.active::after{
      transform: scaleX(1);
    }

    body.page-work .nav-cta{
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-work .nav-cta:hover, body.page-work .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-work .hero{
      position: relative;
      height: 100svh;
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(8, 10, 14, 0.52), rgba(12, 12, 14, 0.24)),
        url("images/work.webp") center/cover no-repeat;
    }

    body.page-work .hero::after{
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(242, 237, 230, 0.98));
      z-index: 1;
    }

    body.page-work .hero-copy{
      position: relative;
      z-index: 2;
      max-width: 1120px;
      width: fit-content;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 14.2rem;
    }

    body.page-work .eyebrow{
      display: inline-block;
      margin-bottom: 0.85rem;
      color: rgba(214, 167, 86, 0.98);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      line-height: 1;
      align-self: center;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38), 0 0 1px rgba(0, 0, 0, 0.2);
    }

    body.page-work .hero-title{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: max-content;
      max-width: 100%;
      gap: 0.08em;
      margin: 0;
      font-size: clamp(3.6rem, 6.2vw, 6rem);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: -0.05em;
      text-align: center;
      text-wrap: balance;
      align-self: center;
    }

    body.page-work .hero-title span{
      display: block;
      white-space: nowrap;
    }

    body.page-work .hero p{
      max-width: 780px;
      margin: 1.5rem auto 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    body.page-work .gallery-section{
      padding: 3.2rem 0 5rem;
    }

    body.page-work .gallery-shell{
      padding: 1.2rem;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.66);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
    }

    body.page-work .gallery-top{
      margin-bottom: 1.6rem;
      text-align: center;
    }

    body.page-work .gallery-top span{
      display: inline-block;
      margin-bottom: 0.75rem;
      color: var(--gold-deep);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    body.page-work .gallery-top h2{
      font-size: clamp(2.1rem, 3vw, 3.2rem);
      margin-bottom: 0.6rem;
    }

    body.page-work .gallery-top p{
      max-width: 44rem;
      margin: 0 auto;
    }

    body.page-work .gallery-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    body.page-work .tile{
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      box-shadow: var(--shadow-soft);
      cursor: pointer;
      border: none;
      padding: 0;
      appearance: none;
      text-align: left;
    }

    body.page-work .tile::before{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(15, 15, 15, 0.48));
      opacity: 0;
      transition: opacity 0.25s ease;
      z-index: 1;
      pointer-events: none;
    }

    body.page-work .tile::after{
      content: "View";
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(20, 20, 20, 0.58);
      color: #fff;
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s ease;
      z-index: 2;
      pointer-events: none;
    }

    body.page-work .tile:hover::before, body.page-work .tile:hover::after, body.page-work .tile:focus-visible::before, body.page-work .tile:focus-visible::after{
      opacity: 1;
    }

    body.page-work .tile img{
      width: 100%;
      height: 100%;
      min-height: 240px;
      object-fit: cover;
      transition: transform 0.45s ease, filter 0.45s ease;
    }

    body.page-work .tile:hover img, body.page-work .tile:focus-visible img{
      transform: scale(1.05);
      filter: saturate(1.08);
    }

    body.page-work .gallery-grid .tile{
      grid-column: auto;
    }

    body.page-work .gallery-grid .tile:nth-child(3n + 1){
      aspect-ratio: 0.92 / 1;
    }

    body.page-work .gallery-grid .tile:nth-child(3n + 2){
      aspect-ratio: 1 / 1.18;
    }

    body.page-work .gallery-grid .tile:nth-child(3n){
      aspect-ratio: 1.08 / 1;
    }

    body.page-work .feature-quote{
      margin-top: 1.5rem;
      padding: 1.8rem 2rem;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(184, 142, 79, 0.14), rgba(255, 255, 255, 0.88));
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    body.page-work .feature-quote h3{
      font-size: clamp(1.8rem, 2.8vw, 2.8rem);
      margin-bottom: 0.55rem;
    }

    body.page-work .lightbox{
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      background: rgba(6, 6, 6, 0.92);
      z-index: 3000;
    }

    body.page-work .lightbox.open{
      display: flex;
    }

    body.page-work .lightbox-figure{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: min(92vw, 1120px);
      width: 100%;
    }

    body.page-work .lightbox img{
      max-width: 100%;
      max-height: 86vh;
      border-radius: 22px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      background: #fff;
    }

    body.page-work .lightbox-close, body.page-work .lightbox-nav{
      position: absolute;
      width: 54px;
      height: 54px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    body.page-work .lightbox-close svg, body.page-work .lightbox-nav svg{
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    body.page-work .lightbox-close{
      top: 24px;
      right: 24px;
      font-size: 1.6rem;
      z-index: 2;
    }

    body.page-work .lightbox-nav{
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.9rem;
      z-index: 2;
    }

    body.page-work .lightbox-prev{
      left: 24px;
    }

    body.page-work .lightbox-next{
      right: 24px;
    }

    body.page-work footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-work .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-work .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-work .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-work .footer-logo-box{
      width: 170px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-work .footer-logo-box img{
      width: 100%;
      height: auto;
      margin: 0;
      object-fit: contain;
    }

    body.page-work .footer-brand p{
      max-width: 24rem;
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-work .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    body.page-work .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
    }

    body.page-work .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-work .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-work .footer-socials a:hover, body.page-work .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-work .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-work .footer-title{
      margin-bottom: 1rem;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: white;
    }

    body.page-work .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-work .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-work .footer-contact{
      display: grid;
      gap: 1rem;
    }

    body.page-work .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-work .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-work .footer-list a, body.page-work .footer-list p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-work .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-work .footer-list a:hover, body.page-work .footer-list a:focus-visible{
      color: var(--gold) !important;
    }

    body.page-work .footer-list a, body.page-work .footer-list p, body.page-work .footer-location, body.page-work .footer-contact p{
      color: rgba(255, 255, 255, 0.72) !important;
    }


    body.page-work .footer-location{
      margin-top: 0.9rem;
      color: rgba(255, 255, 255, 0.86);
    }

    body.page-work .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-work .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-work header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-work .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-work .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-work .brand img{
      height: 178px;
    }

    body.page-work nav{
      grid-area: nav;
      justify-content: center;
      margin-top: -0.55rem;
    }

    body.page-work nav a{
      color: rgba(255, 255, 255, 0.98);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-work nav a:hover, body.page-work nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-work .hero-cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      margin-top: 1.7rem;
      align-self: center;
    }

    body.page-work .hero-cta:hover, body.page-work .hero-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    @media (max-width: 1100px) {

      body.page-work .footer-grid{
        grid-template-columns: 1fr;
        justify-items: center;
      }

      body.page-work .brand, body.page-work .footer-right{
        justify-self: center;
      }

      body.page-work .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        gap: 0 1rem;
        padding: 0.75rem 0 1rem;
      }

      body.page-work .hero-copy{
        padding-top: 11.2rem;
      }

      body.page-work .brand img{
        height: 152px;
      }

      body.page-work nav{
        gap: 1.3rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }

      body.page-work .gallery-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

    }

    @media (max-width: 760px) {
      body.page-work .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-work header::after{
        height: 210px;
      }

      body.page-work .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav";
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-work .brand img{
        height: 100px;
      }

      body.page-work .hero-copy{
        padding-top: 9.6rem;
      }

      body.page-work .hero{
        min-height: 700px;
      }

      body.page-work nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-work nav a{
        font-size: 0.88rem;
      }

      body.page-work .hero{
        min-height: 620px;
      }

      body.page-work .hero-title{
        width: 100%;
        font-size: clamp(2.2rem, 10vw, 3.4rem);
      }

      body.page-work .hero-title span{
        white-space: normal;
      }

      body.page-work .hero-copy p{
        font-size: 0.94rem;
      }

      body.page-work .gallery-grid{
        grid-template-columns: 1fr;
      }

      body.page-work .gallery-grid{
        grid-template-columns: 1fr;
      }

      body.page-work .span-7, body.page-work .span-5, body.page-work .span-4{
        grid-column: span 1;
      }

      body.page-work .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-work .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-work .footer-right{
        display: grid;
        grid-template-columns: 1fr;
        justify-self: stretch;
        text-align: left;
        gap: 1.7rem;
      }

      body.page-work .footer-grid{
        justify-items: stretch;
        gap: 1.7rem;
      }

      body.page-work .footer-title, body.page-work .footer-list, body.page-work .footer-contact{
        text-align: left;
        justify-items: start;
      }

      body.page-work .footer-title::after{
        margin-left: 0;
      }

      body.page-work .lightbox-prev{
        left: 12px;
      }

      body.page-work .lightbox-next{
        right: 12px;
      }
    }


/* contact.html */
body.page-contact{
      --ink: #211d19;
      --muted: #6f665e;
      --gold: #b88e4f;
      --gold-deep: #8e6837;
      --line: rgba(74, 58, 39, 0.1);
      --shadow: 0 24px 60px rgba(32, 23, 15, 0.14);
      --shadow-soft: 0 14px 34px rgba(32, 23, 15, 0.1);
      --max-width: 1220px;
    }

    body.page-contact *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-contact{
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background:
        radial-gradient(circle at top left, rgba(210, 226, 238, 0.5), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 142, 79, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ede6 100%);
    }

    body.page-contact a{
      color: inherit;
      text-decoration: none;
    }

    body.page-contact img{
      display: block;
      max-width: 100%;
    }

    body.page-contact button, body.page-contact input, body.page-contact select, body.page-contact textarea{
      font: inherit;
    }

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

    body.page-contact h1, body.page-contact h2, body.page-contact h3{
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.04;
    }

    body.page-contact p{
      color: var(--muted);
    }

    body.page-contact .eyebrow{
      display: inline-block;
      margin-bottom: 0.85rem;
      color: rgba(214, 167, 86, 0.98);
      font-family: "Inter", "Segoe UI", sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      line-height: 1;
      align-self: center;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38), 0 0 1px rgba(0, 0, 0, 0.2);
    }

    body.page-contact .panel-eyebrow{
      display: inline-block;
      margin-bottom: 0.8rem;
      color: var(--gold-deep);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    body.page-contact header{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }

    body.page-contact .nav-wrap{
      min-height: 122px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    body.page-contact .brand{
      justify-self: start;
    }

    body.page-contact .brand img{
      height: 164px;
      width: auto;
      object-fit: contain;
    }

    body.page-contact nav{
      justify-self: center;
      display: flex;
      gap: 2.1rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      background: rgba(10, 14, 20, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    body.page-contact nav a{
      position: relative;
      color: rgba(255, 255, 255, 0.88);
      padding-bottom: 0.4rem;
    }

    body.page-contact nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.05rem;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    body.page-contact nav a:hover::after, body.page-contact nav a.active::after{
      transform: scaleX(1);
    }

    body.page-contact .nav-cta{
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.page-contact .nav-cta:hover, body.page-contact .nav-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    body.page-contact .hero{
      position: relative;
      overflow: hidden;
      height: 100svh;
      min-height: 820px;
      display: flex;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(8, 10, 14, 0.52), rgba(12, 12, 14, 0.24)),
        url("images/sasa.webp") center/cover no-repeat;
    }

    body.page-contact .hero::after{
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(242, 237, 230, 0.98));
    }

    body.page-contact .hero-copy{
      position: relative;
      z-index: 2;
      max-width: 1120px;
      width: fit-content;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 1.5rem;
    }

    body.page-contact .hero h1{
      max-width: none;
      font-size: clamp(3.2rem, 5.4vw, 5.6rem);
      line-height: 1.03;
      font-weight: 500;
      letter-spacing: -0.04em;
      text-align: center;
      text-wrap: balance;
      align-self: center;
    }

    body.page-contact .hero p{
      max-width: 900px;
      margin: 1.5rem auto 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }


    body.page-contact .contact-section{
      padding: 3.2rem 0 5rem;
    }

    body.page-contact .contact-shell{
      padding: 1.2rem;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.66);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
    }

    body.page-contact .contact-grid{
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 1.2rem;
    }

    body.page-contact .panel{
      border-radius: 28px;
      padding: 2.2rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 240, 0.94));
      box-shadow: var(--shadow-soft);
    }

    body.page-contact .panel h2{
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 0.5rem;
    }

    body.page-contact .contact-list{
      display: grid;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    body.page-contact .contact-item{
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    body.page-contact .icon{
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(207, 223, 238, 0.55);
      color: var(--gold-deep);
      font-size: 1rem;
      font-weight: 700;
    }

    body.page-contact .icon svg{
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    body.page-contact .contact-item strong{
      display: block;
      margin-bottom: 0.2rem;
      color: #403a35;
    }

    body.page-contact .contact-item > div:last-child{
      flex: 1 1 auto;
      min-width: 0;
    }

    body.page-contact .notes{
      margin-top: 1.7rem;
      padding: 1.2rem 1.3rem;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(184, 142, 79, 0.14), rgba(255, 255, 255, 0.9));
    }

    body.page-contact .notes h3{
      font-size: 1.3rem;
      margin-bottom: 0.35rem;
    }

    body.page-contact .form{
      display: grid;
      gap: 0.95rem;
      margin-top: 1.5rem;
    }

    body.page-contact .recaptcha-wrap{
      margin-top: 0.15rem;
    }

    body.page-contact .recaptcha-wrap .g-recaptcha{
      transform-origin: left top;
    }

    body.page-contact .form input, body.page-contact .form select, body.page-contact .form textarea{
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.96);
      color: #3f3934;
      outline: none;
    }

    body.page-contact .form textarea{
      min-height: 150px;
      resize: vertical;
      border-radius: 24px;
    }

    body.page-contact .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 999px;
      padding: 1rem 1.7rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      cursor: pointer;
    }

    body.page-contact .service-area{
      margin-top: 1.8rem;
      border-radius: 32px;
      padding: 1.7rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 237, 0.97));
      border: 1px solid rgba(74, 58, 39, 0.08);
      box-shadow: 0 24px 54px rgba(32, 23, 15, 0.1);
    }

    body.page-contact .service-area-grid{
      display: grid;
      grid-template-columns: 0.96fr 1.7fr;
      gap: 1.6rem;
      align-items: stretch;
    }

    body.page-contact .service-area-copy{
      padding: 0.3rem 0 0.2rem;
    }

    body.page-contact .service-kicker{
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.95rem;
      color: #cf8f35;
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    body.page-contact .service-kicker svg{
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    body.page-contact .service-area h2{
      max-width: 9ch;
      font-size: clamp(2.55rem, 4vw, 4.15rem);
      color: #183450;
      line-height: 0.96;
      margin-bottom: 1rem;
    }

    body.page-contact .service-area-lead{
      max-width: 32ch;
      font-size: 1.1rem;
      color: #6f7a86;
    }

    body.page-contact .service-feature-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 1.35rem;
      margin-left: -0.45rem;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(74, 58, 39, 0.08);
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 12px 30px rgba(32, 23, 15, 0.07);
    }

    body.page-contact .service-feature{
      min-height: 142px;
      padding: 1.1rem 1rem 1rem;
      border-right: 1px solid rgba(74, 58, 39, 0.07);
      border-bottom: 1px solid rgba(74, 58, 39, 0.07);
    }

    body.page-contact .service-feature:nth-child(2n){
      border-right: none;
    }

    body.page-contact .service-feature:nth-last-child(-n + 2){
      border-bottom: none;
    }

    body.page-contact .service-feature-icon{
      width: 52px;
      height: 52px;
      margin-bottom: 0.85rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(184, 142, 79, 0.1);
      color: #cf8f35;
    }

    body.page-contact .service-feature-icon svg{
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }

    body.page-contact .service-feature-icon img{
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    body.page-contact .service-feature-icon img.service-roll-icon{
      width: 42px;
      height: 42px;
    }

    body.page-contact .service-feature-icon img.service-calendar-icon{
      width: 42px;
      height: 42px;
    }

    body.page-contact .service-feature strong{
      display: block;
      margin-bottom: 0.28rem;
      color: #2b3e55;
      font-size: 1.02rem;
      line-height: 1.25;
    }

    body.page-contact .service-feature p{
      font-size: 0.96rem;
      color: #7d8691;
      line-height: 1.45;
    }

    body.page-contact .service-map{
      position: relative;
      min-height: 540px;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(74, 58, 39, 0.08);
      background: url("images/Map.webp") center/contain no-repeat;
      background-color: #edf2f1;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 18px 36px rgba(32, 23, 15, 0.1);
    }

    body.page-contact .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    body.page-contact .service-communities{
      margin-top: 1.6rem;
    }

    body.page-contact .service-communities-title{
      display: flex;
      align-items: center;
      gap: 0.95rem;
      margin-bottom: 1.1rem;
      color: #cf8f35;
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    body.page-contact .service-communities-title::before, body.page-contact .service-communities-title::after{
      content: "";
      flex: 1;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(207, 143, 53, 0.65), rgba(207, 143, 53, 0.14));
    }

    body.page-contact .service-tags{
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    body.page-contact .service-tags li{
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.72rem 1.2rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(74, 58, 39, 0.08);
      color: #46556a;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(32, 23, 15, 0.06);
    }

    body.page-contact .service-tags svg{
      width: 14px;
      height: 14px;
      stroke: #cf8f35;
      flex: 0 0 auto;
    }

    body.page-contact .service-callout{
      margin-top: 1.5rem;
      display: grid;
      grid-template-columns: 1.5fr 0.95fr;
      gap: 0;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 243, 237, 0.97));
      border: 1px solid rgba(74, 58, 39, 0.08);
      box-shadow: 0 16px 32px rgba(32, 23, 15, 0.07);
    }

    body.page-contact .service-callout-side{
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.5rem;
    }

    body.page-contact .service-callout-side+.service-callout-side{
      border-left: 2px solid rgba(207, 143, 53, 0.3);
      justify-content: flex-end;
      text-align: right;
      padding-left: 2rem;
    }

    body.page-contact .service-callout-icon{
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #d09a44, #b67a2d);
      color: #fff;
      flex: 0 0 auto;
      overflow: hidden;
    }

    body.page-contact .service-callout-icon svg{
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }

    body.page-contact .service-callout-side + .service-callout-side .service-callout-icon{
      color: #000;
    }

    body.page-contact .service-callout-icon img{
      width: 64px;
      height: 64px;
      object-fit: contain;
      object-position: center;
      display: block;
      transform: translateY(-2px);
    }

    body.page-contact .service-callout-copy strong{
      display: block;
      color: #2d4057;
      font-size: 1.05rem;
      margin-bottom: 0.14rem;
    }

    body.page-contact .service-callout-copy p{
      color: #7a8490;
    }

    body.page-contact .service-callout-copy a{
      color: #cf8f35;
      font-weight: 800;
    }

    body.page-contact .service-callout-side+.service-callout-side .service-callout-copy{
      display: flex;
      align-items: baseline;
      justify-content: flex-end;
      gap: 0.75rem;
      white-space: nowrap;
    }

    body.page-contact .service-callout-side+.service-callout-side .service-callout-copy strong, body.page-contact .service-callout-side+.service-callout-side .service-callout-copy p{
      margin: 0;
    }

    body.page-contact footer{
      position: relative;
      margin-top: 2.5rem;
      background:
        radial-gradient(circle at top right, rgba(184, 142, 79, 0.16), transparent 22%),
        linear-gradient(180deg, #252321, #171615);
      color: rgba(255, 255, 255, 0.9);
      padding: 0;
      overflow: hidden;
    }

    body.page-contact .footer-top{
      padding: 4rem 0 2.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-contact .footer-grid{
      display: grid;
      grid-template-columns: 1.15fr 0.9fr 0.95fr 1fr;
      gap: 2.4rem;
      align-items: start;
    }

    body.page-contact .footer-brand{
      justify-self: center;
      text-align: center;
      max-width: 22rem;
      transform: translateX(-28px);
    }

    body.page-contact .footer-logo-box{
      width: 170px;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-contact .footer-logo-box img{
      width: 100%;
      height: auto;
      margin: 0;
      object-fit: contain;
    }

    body.page-contact .footer-brand p{
      max-width: 24rem;
      color: rgba(255, 255, 255, 0.7);
    }

    body.page-contact .brand-socials{
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    body.page-contact .brand-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
    }

    body.page-contact .footer-socials{
      display: flex;
      gap: 0.75rem;
      padding-left: 0;
      margin-top: 0.1rem;
      margin-left: 0;
    }

    body.page-contact .footer-socials a{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--gold);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    body.page-contact .footer-socials a:hover, body.page-contact .footer-socials a:focus-visible{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.12);
    }

    body.page-contact .footer-right{
      justify-self: end;
      width: 100%;
      max-width: none;
      display: contents;
      text-align: left;
    }

    body.page-contact .footer-title{
      margin-bottom: 1rem;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
    }

    body.page-contact .footer-title::after{
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      border-radius: 999px;
      margin-top: 0.9rem;
      background: linear-gradient(90deg, var(--gold), rgba(184, 142, 79, 0.35));
    }

    body.page-contact .footer-list{
      display: grid;
      gap: 0.85rem;
    }

    body.page-contact .footer-contact{
      display: grid;
      gap: 1rem;
    }

    body.page-contact .footer-contact-item{
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.7rem;
      align-items: start;
    }

    body.page-contact .footer-contact-item svg{
      color: var(--gold);
      margin-top: 0.18rem;
    }

    body.page-contact .footer-list a, body.page-contact .footer-list p{
      color: rgba(255, 255, 255, 0.72);
    }

    body.page-contact .footer-list a{
      transition: color 0.25s ease;
    }

    body.page-contact .footer-list a:hover, body.page-contact .footer-list a:focus-visible{
      color: var(--gold) !important;
    }


    body.page-contact .footer-list a, body.page-contact .footer-list p, body.page-contact .footer-location, body.page-contact .footer-contact p{
      color: rgba(255, 255, 255, 0.72) !important;
    }


    body.page-contact .footer-bottom{
      padding: 0 0 1.6rem;
    }

    body.page-contact .footer-wrap{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.page-contact header::after{
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(8, 11, 16, 0.34) 0%, rgba(8, 11, 16, 0.14) 45%, rgba(8, 11, 16, 0) 100%);
      pointer-events: none;
    }

    body.page-contact .nav-wrap{
      position: relative;
      z-index: 1;
      min-height: 172px;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        ". brand ."
        ". nav .";
      gap: 0 1.4rem;
      padding-top: 0.65rem;
    }

    body.page-contact .brand{
      grid-area: brand;
      justify-self: center;
    }

    body.page-contact .brand img{
      height: 178px;
    }

    body.page-contact nav{
      grid-area: nav;
      justify-content: center;
      margin-top: -0.55rem;
    }

    body.page-contact nav a{
      color: rgba(255, 255, 255, 0.98);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
    }

    body.page-contact nav a:hover, body.page-contact nav a.active{
      color: #ffffff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
    }

    body.page-contact .hero-cta{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      margin-top: 1.7rem;
    }

    body.page-contact .hero-cta:hover, body.page-contact .hero-cta:focus-visible{
      background: linear-gradient(135deg, #d7ad6d, #a8793d);
      color: #fff8ec;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(32, 23, 15, 0.18);
    }

    @media (max-width: 1100px) {

      body.page-contact .contact-grid, body.page-contact .footer-grid{
        grid-template-columns: 1fr;
        justify-items: center;
      }

      body.page-contact .brand, body.page-contact .footer-right{
        justify-self: center;
      }

      body.page-contact .nav-wrap{
        min-height: 160px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          ". brand ."
          ". nav .";
        gap: 0 1rem;
        padding: 0.75rem 0 1rem;
      }

      body.page-contact .hero-copy{
        padding-top: 2.5rem;
      }

      body.page-contact .brand img{
        height: 152px;
      }

      body.page-contact nav{
        gap: 1.3rem;
        margin-top: -0.45rem;
        padding: 0.8rem 1.15rem;
      }

      body.page-contact .service-area-grid, body.page-contact .service-callout{
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 760px) {
      body.page-contact .container{
        width: min(calc(100% - 1.25rem), var(--max-width));
      }

      body.page-contact header::after{
        height: 210px;
      }

      body.page-contact .nav-wrap{
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav";
        gap: 0.3rem 1rem;
        padding-top: 0.45rem;
      }

      body.page-contact .brand img{
        height: 100px;
      }

      body.page-contact nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1rem;
        margin-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 22px;
      }

      body.page-contact nav a{
        font-size: 0.88rem;
      }

      body.page-contact .hero{
        min-height: 700px;
      }

      body.page-contact .hero-copy{
        padding-top: 2.6rem;
      }

      body.page-contact .panel{
        width: 100%;
        max-width: 100%;
        padding: 1.25rem;
        overflow: hidden;
      }

      body.page-contact .contact-grid{
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 1rem;
      }

      body.page-contact .panel, body.page-contact .form{
        width: 100%;
      }

      body.page-contact .form input, body.page-contact .form select, body.page-contact .form textarea{
        max-width: 100%;
      }

      body.page-contact .service-area{
        padding: 1.5rem;
      }

      body.page-contact .service-area h2{
        max-width: none;
        font-size: clamp(2rem, 9vw, 2.9rem);
      }

      body.page-contact .service-feature-grid{
        grid-template-columns: 1fr;
      }

      body.page-contact .service-feature{
        border-right: none;
      }

      body.page-contact .service-feature:not(:last-child){
        border-bottom: 1px solid rgba(74, 58, 39, 0.07);
      }

      body.page-contact .service-map{
        min-height: 420px;
      }

      body.page-contact .service-tags{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
      }

      body.page-contact .service-tags li{
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 0.68rem 0.9rem;
        font-size: 0.88rem;
      }

      body.page-contact .service-callout-side+.service-callout-side{
        border-left: none;
        border-top: 1px solid rgba(207, 143, 53, 0.3);
        padding-left: 1rem;
        padding-top: 1.2rem;
      }

      body.page-contact .service-callout-side{
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        min-width: 0;
        align-items: center;
        gap: 0.85rem;
        padding: 1rem 1rem;
      }

      body.page-contact .service-callout-copy{
        min-width: 0;
      }

      body.page-contact .service-callout-copy strong, body.page-contact .service-callout-copy p, body.page-contact .service-callout-copy a{
        overflow-wrap: anywhere;
      }

      body.page-contact .service-callout-side+.service-callout-side .service-callout-copy{
        display: block;
        text-align: left;
        justify-items: start;
        padding-left: 0.8rem;
      }

      body.page-contact .service-callout-icon{
        width: 58px;
        height: 58px;
      }

      body.page-contact .service-callout-icon img{
        width: 58px;
        height: 58px;
      }

      body.page-contact .service-callout-icon svg{
        width: 22px;
        height: 22px;
      }

      body.page-contact .service-callout-copy strong{
        font-size: 0.95rem;
        line-height: 1.25;
      }

      body.page-contact .service-callout-copy p, body.page-contact .service-callout-copy a{
        font-size: 0.9rem;
      }

      body.page-contact .footer-right{
        grid-template-columns: 1fr;
      }

      body.page-contact .footer-brand{
        transform: none;
        justify-self: center;
        max-width: min(100%, 22rem);
      }

      body.page-contact .footer-brand p{
        max-width: none;
        padding: 0 0.2rem;
      }

      body.page-contact .footer-grid{
        justify-items: stretch;
      }

      body.page-contact .recaptcha-wrap{
        overflow: hidden;
      }

      body.page-contact .recaptcha-wrap .g-recaptcha{
        transform: scale(0.78);
      }

      body.page-contact .footer-right{
        display: grid;
        grid-template-columns: 1fr;
        justify-self: stretch;
        text-align: left;
        gap: 1.7rem;
      }

      body.page-contact .footer-title, body.page-contact .footer-list, body.page-contact .footer-contact{
        text-align: left;
        justify-items: start;
      }

      body.page-contact .footer-title::after{
        margin-left: 0;
      }

      body.page-contact .footer-grid{
        gap: 1.7rem;
      }
    }


