@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --bg: #f7f7f4;
  --ink: #101010;
  --muted: #6a6a68;
  --line: #d8d8d4;
  --dark: #101010;
  --accent: #f94032;
  --ease: cubic-bezier(0.2, 0.7, 0.25, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
a {
  color: inherit !important;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.site-header {
  height: 110px;
  padding: 30px 28px;
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--bg);
  position: relative;
  z-index: 10;
  /* border-top: 3px solid black; */
}
.brand {
  width: 125px;
  display: flex;
  flex-direction: column;
  line-height: 0.73;
  letter-spacing: -2px;
}
.brand-name {
  font-size: 52px;
  font-weight: 500;
  color: #777;
}
.brand-a {
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  transform: scaleX(0.82);
  margin-right: -4px;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 5.4px;
  color: #777;
  margin: 6px 0 0 5px;
}
.archive-label {
  font-size: 11px;
  color: #555;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  height: 100%;
}
.primary-nav a,
.contact-link {
  /* font-size: 12px; */
  font-weight: 700;
  letter-spacing: 0.35px;
  white-space: nowrap;
}
.primary-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}
.primary-nav a:hover,
.primary-nav a.is-active {
  border-color: var(--ink);
}
.contact-link {
  margin-left: 0;
}
.menu-toggle {
  display: none;
}
.featured {
  height: 78vh;
  background: #818181;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.featured:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.04) 55%,
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
  pointer-events: none;
}
.featured-ghost {
  position: absolute;
  left: 0%;
  bottom: 250px;
  font-size: min(52vw, 580px);
  line-height: 0.7;
  font-weight: 800;
  letter-spacing:0.12em !important;
  color: #979797;
  z-index: 0;
}
.featured-copy {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 4%;
  width: 260px;
  color: #090909;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.14;
  opacity: 0.65;
}
.feature-stack {
  height: 100%;
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0px auto;
  left: 3%;
}
.feature-card {
  position: absolute;
  top: 0;
  bottom: 0;
  height: auto;
  display: block;
  overflow: hidden;
  background: #333;
  box-shadow: 0 2px 12px #0004;
}
.feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.feature-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0.2);
}
.feature-card b {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 23px;
  line-height: 1;
  /* font-weight: 800; */
  color: #fff;
  text-shadow: 0 1px 10px #000;
}
.feature-one {
  left: 0%;
  width: 18%;
  box-shadow: 0 10px 200px 0 rgb(0 0 0), 0 100px 30px 0 rgb(0 0 0) !important;
}
.feature-two {
  left: 17.5%;
  width: 18%;
  box-shadow: 0 10px 200px 0 rgb(0 0 0), 0 100px 30px 0 rgb(0 0 0) !important;
}
.feature-three {
  left: 35%;
  width: 18%;
  box-shadow: 0 10px 200px 0 rgb(0 0 0), 0 100px 30px 0 rgb(0 0 0) !important;
}
.feature-four {
  left: 52.3%;
  width: 18%;
  box-shadow: 0 10px 200px 0 rgb(0 0 0), 0 100px 30px 0 rgb(0 0 0) !important;
}
.feature-five {
  right: 12%;
  width: 18%;
  box-shadow: 0 10px 200px 0 rgb(0 0 0), 0 100px 30px 0 rgb(0 0 0) !important;
}
.archive-intro {
  padding: 76px 28px 18px;
  border-bottom: 1px solid var(--line);
}
.archive-about {
  padding: 92px 28px 104px;
  background: #ecece8;
}
.about-layout {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}
.about-image {
  margin: 0;
}
.about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  filter: grayscale(0.35);
  transform: scale(1.06);
  transition: transform 0.9s var(--ease), filter 0.7s ease;
}
.about-image.reveal.is-visible img {
  transform: scale(1);
  filter: grayscale(0.15);
}
.about-image figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.about-copy {
  min-width: 0;
}
.archive-about .intro-row {
  display: block;
}
.archive-about .intro-row h1 {
 
  line-height: 50px;
}
.archive-about .search-box {
  max-width: 360px;
  margin-top: 42px;
}
.about-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 16px;
  background-color: black;
    padding: 10px;
    width: 285px;
    border-radius: 50px;
    text-align: center;
}
.intro-row {
  display: flex;
  align-items: flex-end;
  gap: 5.5vw;
}
.intro-row h1 {
  margin: 0;
  line-height: 0.945;
  
}
.search-box {
  flex: 1;
  max-width: 350px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 3px;
}
.search-box span {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.5px;
}
.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  font-size: 17px;
  font-weight: 500;
}
.search-box input::placeholder {
  color: #777;
}
.category-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.category-heading {
  margin: 0;
  text-align: center;
  color: #000;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 900;
  letter-spacing: 2px;
}
.category-bar button {
  min-height: 36px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, transform 0.25s ease;
}
.category-bar button:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.category-bar button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.project-archive {
  padding: 23px 28px 116px;
}
.architecture-projects {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 78px;
}
.architecture-projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.architecture-projects-heading .eyebrow {
  margin: 0;
}
.architecture-projects-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.result-message {
  height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px 18px;
}
.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.image-wrap {
  height: 215px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.55s var(--ease), filter 0.45s;
}
.project-card:hover .image-wrap img {
  transform: scale(1.04);
  filter: grayscale(0.12);
}
.tag {
  position: absolute;
  bottom: 13px;
  left: 11px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  color: #fff;
}
.orange {
  background: #ff5e22;
}
.green {
  background: #397b4b;
}
.charcoal {
  background: #41494e;
}
.navy {
  background: #223d65;
}
.slate {
  background: #586068;
}
.red {
  background: #eb3442;
}
.pink {
  background: #e6374e;
}
.blue {
  background: #4b94bd;
}
.cyan {
  background: #0098a9;
}
.tan {
  background: #97725b;
}
.project-card strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 10px;
}
.project-card small {
  font-size: 13px;
  line-height: 1.25;
  color: #6d6d6b;
}
.project-card.is-hidden {
  display: none;
}
.site-footer {
  background-color: #f3f6fa;
  background-image: radial-gradient(#d8e2ec 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  color: #18202a;
  padding: 26px 28px 18px;
  position: relative;
  min-height: 0;
}
.footer-cta,
.footer-content,
.footer-bottom {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta {
  min-height: 72px;
  padding: 12px clamp(22px, 3vw, 38px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(38, 68, 96, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-cta strong,
.footer-cta span {
  display: block;
}
.footer-cta strong {
  color: #000;
  font-size: 20px;
  line-height: 1.1;
}
.footer-cta div > span {
  margin-top: 7px;
  color: #737b84;
  font-size: 14px;
}
.footer-cta a {
  flex: 0 0 auto;
  padding: 12px 23px;
  background: #000;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-cta a:hover {
  background: #000;
  transform: translateY(-2px);
}
.footer-content {
  margin-top: 28px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.site-footer h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000;
  margin: 0 0 18px;
  padding-bottom: 13px;
}
.site-footer h2::before {
  content: "";
  width: 52px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.site-footer p {
  color: #20262d;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.site-footer b {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}
.site-footer i {
  display: inline-block;
  width: 18px;
  margin-right: 7px;
  color: #111820;
  font-size: 13px;
  text-align: center;
}
.site-footer .email-list b,
.site-footer .offices b {
  display: flex;
  align-items: center;
}
.site-footer .footer-links nav a,
.site-footer .socials a {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-footer .footer-links nav a i,
.site-footer .socials a i {
  flex: 0 0 18px;
  margin-right: 5px;
}
.site-footer .footer-links nav a i {
  color: #737b84;
  transition: transform 0.25s ease, color 0.25s ease;
}
.site-footer .footer-links nav a:hover i {
  color: #000;
  transform: translateX(3px);
}
.site-footer a {
  display: block;
  color: #fff;
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-quote {
  max-width: 235px;
  margin-bottom: 24px !important;
  color: #6f7479 !important;
  font-size: 16px !important;
  font-style: italic;
  font-weight: 700;
  line-height: 1.8 !important;
}
.email-list {
  display: grid;
  gap: 13px;
}
.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 22px;
}
.office-section .offices {
  grid-template-columns: minmax(0, 1fr);
}
.offices b {
  color: #111820;
}
.socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links nav {
  display: grid;
  gap: 12px;
}
.footer-logo {
  display: block;
  width: 130px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 16px;
}
.socials a:hover,
.site-footer a:hover {
  color: #000;
  transform: translateX(3px);
}
.page-breadcrumb {
  width: min(calc(100% - 56px), 1320px);
  min-height: 270px;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
  background: #000 center 48% / cover;
  color: #fff;
  box-shadow: 0 12px 34px rgba(16, 16, 16, 0.14);
  width: 100%;
}
.page-breadcrumb-inner {
  width: 100%;
  padding: 42px clamp(28px, 6vw, 92px);
}
.page-breadcrumb h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -2px;
}
.page-breadcrumb nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
}
.page-breadcrumb nav a {
  color: #fff !important;
}
.page-breadcrumb nav a:hover {
  color: var(--accent) !important;
}
.page-breadcrumb nav span {
  color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumb nav strong {
  color: #fff;
  font-weight: 700;
}
.site-footer a:hover,
.socials a:hover {
  color: #000;
  transform: translateX(3px);
}
@media (max-width: 680px) {
  .page-breadcrumb {
    width: calc(100% - 36px);
    min-height: 215px;
    margin-top: 18px;
  }
  .page-breadcrumb-inner {
    padding: 34px 22px;
  }
  .page-breadcrumb h1 {
    margin-bottom: 16px;
    font-size: 48px;
  }
}
.to-top {
  border: 1px solid #b9c8d5;
  border-radius: 999px;
  background: transparent;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.to-top:hover {
  border-color: #000;
  color: #000;
}
.copyright {
  color: #77818b !important;
  font-size: 11px !important;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid #d4e0ea;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 85px;
    padding: 14px 20px;
  }
  .brand {
    transform: scale(0.78);
    transform-origin: left center;
    width: 96px;
  }
  .archive-label {
    display: none;
  }
  .primary-nav {
    gap: 16px;
    margin-left: auto;
  }
  .primary-nav a {
    font-size: 10px;
  }
  .featured {
    height: 550px;
  }
  .feature-one,
  .feature-five {
    top: 180px;
    height: 360px;
  }
  .feature-two,
  .feature-four {
    top: 85px;
    height: 360px;
  }
  .feature-three {
    top: 55px;
    height: 460px;
  }
  .featured-copy {
    display: none;
  }
  .intro-row {
    gap: 30px;
  }
  .intro-row h1 {
    letter-spacing: -1.8px;
  }
  .image-wrap {
    height: 170px;
  }
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .to-top {
    bottom: 30px;
  }
  .copyright {
    display: none;
  }
}
@media (max-width: 680px) {
  .site-header {
    height: 72px;
    padding: 12px 18px;
  }
  .brand {
    transform: scale(0.62);
    width: 77px;
  }
  .contact-link {
    font-size: 10px;
    margin-right: 43px;
  }
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 17px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    background: var(--ink);
    height: 2px;
    width: 25px;
    transition: transform 0.25s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: auto;
    margin: 0;
    padding: 15px 18px 23px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: 0 14px 22px #0001;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .primary-nav a {
    height: auto;
    width: 100%;
    padding: 12px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--line);
  }
  .featured {
    height: 500px;
  }
  .featured-ghost {
    font-size: 80vw;
    bottom: -75px;
    left: 8%;
  }
  .feature-one {
    left: 5%;
    top: 162px;
    width: 27%;
    height: 310px;
  }
  .feature-two {
    left: 34%;
    top: 55px;
    width: 31%;
    height: 320px;
  }
  .feature-three {
    left: 67%;
    top: 125px;
    width: 28%;
    height: 345px;
  }
  .feature-four,
  .feature-five {
    display: none;
  }
  .feature-card b {
    left: 9px;
    bottom: 9px;
    font-size: 15px;
  }
  .archive-intro {
    padding: 47px 18px 18px;
  }
  .archive-about {
    padding: 58px 18px 66px;
  }
  .about-layout {
    display: block;
  }
  .about-image {
    margin-bottom: 42px;
  }
  .about-image img {
    aspect-ratio: 1.15;
  }
  .about-note {
    margin-top: 28px;
    font-size: 15px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .intro-row {
    display: block;
  }
  .intro-row h1 {
    font-size: clamp(42px, 12.3vw, 58px);
    line-height: 0.94;
    letter-spacing: -1.9px;
  }
  .intro-row h1 br {
    display: none;
  }
  .search-box {
    max-width: none;
    margin-top: 35px;
  }
  .category-bar {
    gap: 13px 17px;
    margin-top: 24px;
  }
  .category-bar button {
    font-size: 12px;
  }
  .project-archive {
    padding: 18px 18px 66px;
  }
  .architecture-projects {
    padding-top: 54px;
  }
  .architecture-projects-heading {
    display: block;
  }
  .architecture-projects-heading h2 {
    margin-top: 12px;
  }
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }
  .image-wrap {
    height: calc((100vw - 48px) / 2 * 0.77);
  }
  .tag {
    width: 32px;
    height: 32px;
    bottom: 8px;
    left: 8px;
    font-size: 9px;
  }
  .project-card strong {
    font-size: 15px;
    margin-top: 7px;
  }
  .project-card small {
    font-size: 11px;
  }
  .site-footer {
    padding: 30px 18px 22px;
  }
  .footer-content {
    margin-top: 24px;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 18px;
  }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-cta a {
    align-self: flex-start;
  }
  .offices {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .site-footer h2 {
    margin-bottom: 15px;
  }
  .site-footer p,
  .site-footer a {
    font-size: 12px;
  }
  .site-footer b {
    font-size: 13px;
  }
  .to-top {
    right: 18px;
    bottom: 28px;
  }
  .copyright {
    display: block;
    max-width: 160px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 14px;
    margin-top: 22px;
  }
  .socials {
    gap: 9px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .feature-card img,
  .image-wrap img,
  .about-image img {
    transition: none;
    transform: none;
  }
}

/* Supplied logo, initial motion, gallery, and page transition details */
.site-header .brand {
  width: 125px;
  height: 75px;
  overflow: hidden;
  position: relative;
  flex: none;
  opacity: 1;
  transform: none;
}
.site-header .brand img {
  display: block;
}
body[data-page="home"] .site-header .brand {
  opacity: 0;
  transform: translateY(-18px) scale(0.88);
  animation: logo-arrival 0.55s 1.55s var(--ease) forwards;
}
.site-header .brand img {
  width: 125px;
  height: 125px;
  position: absolute;
  top: -30px;
  left: 0;
  object-fit: contain;
}
@keyframes logo-arrival {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  pointer-events: none;
  --loader-target-x: 83px;
  --loader-target-y: 37.5px;
  --loader-final-scale: 0.2292;
  animation: loader-out 0.25s 1.85s ease forwards;
}
.loader-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 260px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.72);
  animation: loader-logo-move 1.75s 0.05s var(--ease) forwards;
}
.loader-logo img {
  width: 480px;
  height: 480px;
  position: absolute;
  top: -117px;
  left: 0;
  object-fit: contain;
}
@keyframes loader-logo-move {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  28.6% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  75% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate(
        calc(-50% + var(--loader-target-x) - 50vw),
        calc(-50% + var(--loader-target-y) - 50vh)
      )
      scale(var(--loader-final-scale));
  }
}

@media (max-width: 900px) {
  .site-loader {
    --loader-target-x: 75px;
    --loader-target-y: 33px;
  }
}

@media (max-width: 680px) {
  .site-loader {
    --loader-target-x: 73px;
    --loader-target-y: 31px;
  }
}

@keyframes loader-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.featured-ghost {
  animation: ghost-awake 2.4s 1.1s var(--ease) both;
}
@keyframes ghost-awake {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.92);
    letter-spacing: -0.2em;
  }
  55% {
    opacity: 0.72;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -0.13em;
  }
}
.header-search {
  margin-left: auto;
  width: 174px;
  height: 36px;
  padding: 4px 5px 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 4px 14px rgba(16, 16, 16, 0.08);
}
.header-search input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.header-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.header-search button {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  padding: 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.header-search button:hover {
  background: var(--accent);
  transform: translateX(1px);
}
.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;
}
@media (max-width: 1100px) and (min-width: 681px) {
  .archive-label {
    display: none;
  }
  .primary-nav {
    gap: 13px;
    margin-left: auto;
  }
  .primary-nav a {
    font-size: 11px;
  }
  .header-search {
    width: 140px;
  }
}
.feature-card {
  opacity: 0;
  transform: translateY(34px);
  animation: card-arrival 0.75s var(--ease) forwards;
}
.feature-one {
  animation-delay: 2.15s;
}
.feature-two {
  animation-delay: 2.25s;
}
.feature-three {
  animation-delay: 2.35s;
}
.feature-four {
  animation-delay: 2.45s;
}
.feature-five {
  animation-delay: 2.55s;
}
@keyframes card-arrival {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.project-card.is-visible {
  opacity: 1;
  transform: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(9, 9, 9, 0.96);
  display: none;
  place-items: center;
  padding: 76px 100px;
  color: #fff;
}
.lightbox.is-open {
  display: grid;
  animation: fade-in 0.25s ease;
}
.lightbox figure {
  margin: 0;
  max-width: min(100%, 1040px);
  max-height: calc(100vh - 135px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 175px);
  object-fit: contain;
  animation: zoom-in 0.35s var(--ease);
}
.lightbox figcaption {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 14px;
}
.lightbox button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  right: 29px;
  top: 17px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 47px;
  font-weight: 300;
  padding: 20px;
}
.lightbox-arrow:hover,
.lightbox-close:hover {
  color: var(--accent);
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoom-in {
  from {
    opacity: 0.3;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 680px) {
  .lightbox {
    padding: 68px 42px;
  }
  .lightbox-close {
    right: 14px;
    top: 13px;
  }
  .lightbox-arrow {
    font-size: 34px;
    padding: 9px;
  }
  .lightbox-prev {
    left: 3px;
  }
  .lightbox-next {
    right: 3px;
  }
  .header-search {
    width: min(150px, calc(100vw - 145px));
    margin-right: 43px;
  }
  .header-search input {
    font-size: 9px;
  }
}
@media (max-width: 560px) {
  .site-loader {
    --loader-final-scale: 0.3333;
  }
  .loader-logo {
    width: 330px;
    height: 180px;
  }
  .loader-logo img {
    width: 330px;
    height: 330px;
    top: -80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }
  body[data-page="home"] .site-header .brand,
  .project-card,
  .feature-card,
  .featured-ghost {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Shared content pages */
.content-page {
  min-height: calc(100vh - 160px);
}
.page-hero {
  padding: 85px 7vw 90px;
  min-height: 450px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  column-gap: 8vw;
  align-content: center;
}
.page-hero .eyebrow {
  grid-column: 1/-1;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.87;
  letter-spacing: -0.07em;
}
.page-lede {
  align-self: end;
  max-width: 350px;
  font-size: 18px;
  line-height: 1.35;
  color: #444;
  margin: 0;
}
.editorial-grid {
  padding: 85px 7vw;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;
  align-items: center;
}
.editorial-grid.reverse {
  grid-template-columns: 0.65fr 1.35fr;
}
.editorial-grid.reverse img {
  order: 2;
}
.editorial-grid img {
  width: 100%;
  height: min(48vw, 540px);
  object-fit: cover;
  filter: grayscale(1);
}
.editorial-grid h2 {
  font-size: clamp(32px, 4vw, 55px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}
/* .editorial-grid p {
  font-size: 17px;
  line-height: 1.45;
  color: #4d4d4b;
} */
.text-link {
  display: inline-block;
  font-weight: 700;
  margin-top: 18px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.statement {
  padding: 85px 7vw;
  max-width: 1100px;
}
.statement p {
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}
.contact-grid {
  padding: 75px 7vw 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  border-bottom: 1px solid var(--line);
}
.contact-grid a,
.contact-grid p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}
.contact-grid a:hover {
  text-decoration: underline;
}
.article-list {
  padding: 15px 7vw 90px;
}
.article-list article {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 25px;
}
.article-list span {
  font-size: 11px;
  font-weight: 700;
  color: #666;
}
.article-list h2 {
  font-size: clamp(25px, 3vw, 44px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin: 0;
}
.article-list p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}
.mini-footer {
  background: var(--dark);
  color: #fff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}
.mini-footer a:hover {
  text-decoration: underline;
}
@media (max-width: 680px) {
  .page-hero {
    display: block;
    padding: 56px 18px 58px;
    min-height: 0;
  }
  .page-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }
  .page-lede {
    margin-top: 30px;
    font-size: 16px;
  }
  .editorial-grid,
  .editorial-grid.reverse {
    padding: 48px 18px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .editorial-grid.reverse img {
    order: 0;
  }
  .editorial-grid img {
    height: 330px;
  }
  .statement {
    padding: 55px 18px;
  }
  .contact-grid {
    padding: 50px 18px 65px;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 18px;
  }
  .article-list {
    padding: 0 18px 60px;
  }
  .article-list article {
    display: block;
    padding: 29px 0;
  }
  .article-list h2 {
    margin: 12px 0;
  }
  .article-list p {
    font-size: 14px;
  }
  .mini-footer {
    padding: 20px 18px;
  }
}

/* Project detail pages */
.project-detail {
  padding: 42px 28px 110px;
  max-width: 1320px;
  margin: 0 auto;
}
.project-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}
.project-back:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
}
.project-detail-heading {
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--line);
}
.project-detail-heading h1 {
  margin: 12px 0 0;
  max-width: 850px;
  line-height: 0.92;
}
.project-gallery {
  columns: 3 280px;
  column-gap: 18px;
  padding-top: 24px;
}
.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  break-inside: avoid;
  background: #e1e1dd;
}

/* Blog detail page */
.blog-detail {
  padding: 42px 28px 110px;
  max-width: 860px;
  margin: 0 auto;
}
.blog-detail-heading {
  padding: 42px 0 36px;
}
.blog-detail-heading h1 {
  margin: 12px 0 0;
  line-height: 0.98;
}
.blog-detail-cover {
  margin: 0 0 40px;
}
.blog-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  background: #e1e1dd;
}
.blog-detail-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.blog-detail-body p {
  margin: 0 0 22px;
}
.blog-detail-body h2,
.blog-detail-body h3 {
  margin: 40px 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.blog-detail-body h2 {
  font-size: 32px;
}
.blog-detail-body h3 {
  font-size: 24px;
}
.blog-detail-body blockquote {
  margin: 28px 0;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  color: var(--muted);
  font-style: italic;
}
.blog-detail-body ul,
.blog-detail-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.blog-detail-body li {
  margin-bottom: 8px;
}
.blog-detail-body a {
  color: var(--accent);
  text-decoration: underline;
}
.about-page .page-hero h1 {
  max-width: 850px;
  text-wrap: balance;
}
.about-section {
  max-width: 1420px;
  margin: 0 auto;
}
.about-section-copy {
  max-width: 500px;
}
.about-section-copy h2,
.about-values-heading h2,
.about-connect h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
}
.about-section-copy p:not(.eyebrow),
.about-connect p:not(.eyebrow) {
  max-width: 510px;
  color: #4d4d4b;
  font-size: 17px;
  line-height: 1.5;
}
.about-section-image {
  margin: 0;
}
.about-section-image img {
  display: block;
  width: 100%;
  height: min(48vw, 540px);
  object-fit: cover;
  filter: grayscale(0.18);
}
.about-section-image figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.about-trust {
  padding-top: 88px;
  padding-bottom: 88px;
  align-items: center;
}
.about-collage {
  position: relative;
  min-height: 520px;
  margin: 0;
}
.about-collage::before {
  content: "";
  position: absolute;
  top: 7%;
  right: 4%;
  bottom: 8%;
  left: 18%;
  border: 4px solid #202020;
  pointer-events: none;
}
.about-collage img {
  position: absolute;
  display: block;
  object-fit: cover;
  filter: grayscale(0.08);
  box-shadow: 0 8px 20px #0002;
}
.about-collage .collage-main {
  top: 0;
  left: 8%;
  width: 58%;
  height: 78%;
}
.about-collage .collage-top {
  top: 24%;
  right: 4%;
  width: 43%;
  height: 31%;
  z-index: 2;
}
.about-collage .collage-bottom {
  right: 4%;
  bottom: 0;
  width: 43%;
  height: 40%;
  z-index: 2;
}
.about-collage .collage-side {
  bottom: 0;
  left: 8%;
  width: 36%;
  height: 28%;
  z-index: 3;
}
.about-trust .about-section-copy {
  padding-left: 12px;
}
.about-trust h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  margin: 12px 0 24px;
}
.about-trust .about-section-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #777;
  font-size: 16px;
  line-height: 1.55;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 28px 0 30px;
}
.trust-stat strong {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 4px solid #202020;
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}
.trust-stat span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.trust-button {
  display: inline-block;
  padding: 15px 26px;
  background: #111;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.trust-button:hover {
  background: #444;
  transform: translateY(-2px);
}
.about-mission {
  padding-top: 100px;
  padding-bottom: 100px;
}
.mission-reference {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 28px 104px;
  background: #f1f1ef;
}
.mission-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
}
.mission-reference .about-section-copy {
  max-width: 570px;
}
.mission-reference .about-section-copy h2 {
  margin-top: 18px;
}
.mission-reference .about-section-copy p:not(.eyebrow) {
  color: #555;
}
.mission-image {
  position: relative;
  height: 350px;
  margin: 0;
}
.mission-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(0.05);
  box-shadow: 0 16px 30px rgba(31, 46, 58, 0.12);
}
.mission-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(34, 47, 58, 0.12);
}
.mission-badge strong {
  color: #111;
  font-size: 27px;
  line-height: 1;
}
.mission-badge small {
  color: #666;
  font-size: 11px;
  line-height: 1.3;
}
.mission-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}
.mission-features article {
  min-height: 178px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 46, 58, 0.07);
}
.mission-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.mission-features h3 {
  margin: 17px 0 9px;
  font-size: 17px;
}
.mission-features p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.about-vision {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
}
.vision-reference {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 28px 104px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.vision-lead {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
}
.vision-image {
  position: relative;
  height: 350px;
  margin: 0;
}
.vision-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(0.05);
  box-shadow: 0 16px 30px rgba(31, 46, 58, 0.12);
}
.vision-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 164px;
  padding: 17px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 22px rgba(34, 47, 58, 0.12);
}
.vision-badge strong {
  color: #111;
  font-size: 27px;
  line-height: 1;
}
.vision-badge small {
  color: #666;
  font-size: 11px;
}
.vision-reference .about-section-copy h2 {
  margin-top: 18px;
}
.vision-reference .about-section-copy p:not(.eyebrow) {
  color: #555;
}
.vision-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}
.vision-features article {
  min-height: 178px;
  padding: 24px;
  border-radius: 16px;
  background: #f8fafb;
  box-shadow: 0 12px 28px rgba(31, 46, 58, 0.06);
}
.vision-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.vision-features h3 {
  margin: 17px 0 9px;
  font-size: 17px;
}
.vision-features p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.about-values {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 7vw;
  padding: 86px 7vw 98px;
  border-top: 1px solid var(--line);
}
.about-values-heading h2 {
  max-width: 430px;
  margin-top: 12px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.about-values-grid article {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}
.about-values-grid article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.about-values-grid h3 {
  margin: 38px 0 12px;
  font-size: 22px;
  line-height: 1;
}
.about-values-grid p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.about-connect {
  max-width: 1020px;
  padding-top: 105px;
  padding-bottom: 105px;
}
.about-connect h2 {
  max-width: 760px;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}
.about-links a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.about-start {
  padding-top: 100px;
  padding-bottom: 112px;
  border-top: 1px solid var(--line);
}
.dream-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  max-width: 1320px;
  min-height: 310px;
  margin: 0 auto 96px;
  padding: 54px clamp(28px, 5vw, 62px);
  overflow: hidden;
  border-radius: 24px;
  background: #171717;
  color: #fff;
  box-shadow: 0 18px 34px rgba(54, 68, 18, 0.16);
}
.dream-cta-content,
.dream-cta-actions {
  position: relative;
  z-index: 1;
}
.dream-cta-content {
  max-width: 720px;
}
.dream-cta .eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.dream-cta h2 {
  margin: 24px 0 20px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.dream-cta-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}
.dream-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 14px;
}
.dream-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.dream-cta-primary {
  background: #fff;
  color: #111 !important;
}
.dream-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
}
.dream-cta-actions a:hover {
  transform: translateY(-2px);
}
.dream-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.dream-cta-orb-one {
  width: 230px;
  height: 230px;
  top: -128px;
  right: 2%;
}
.dream-cta-orb-two {
  width: 180px;
  height: 180px;
  bottom: -118px;
  left: -26px;
}
@media (max-width: 680px) {
  .about-mission,
  .about-vision,
  .about-start {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .mission-reference {
    padding: 58px 18px 64px;
  }
  .mission-lead {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .mission-image {
    width: 100%;
    height: 280px;
  }
  .mission-features {
    display: block;
    margin-top: 42px;
  }
  .mission-features article + article {
    margin-top: 16px;
  }
  .vision-reference {
    padding: 58px 18px 64px;
  }
  .vision-lead {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .vision-image {
    width: 100%;
    height: 280px;
  }
  .vision-features {
    display: block;
    margin-top: 42px;
  }
  .vision-features article + article {
    margin-top: 16px;
  }
  .about-section-copy h2,
  .about-values-heading h2,
  .about-connect h2 {
    font-size: clamp(34px, 10vw, 52px);
  }
  .about-section-copy p:not(.eyebrow),
  .about-connect p:not(.eyebrow) {
    font-size: 15px;
  }
  .about-section-image img {
    height: 330px;
  }
  .about-trust {
    padding-top: 56px;
    padding-bottom: 58px;
  }
  .about-collage {
    min-height: 350px;
  }
  .about-trust .about-section-copy {
    padding-left: 0;
  }
  .trust-stat strong {
    width: 92px;
    height: 92px;
    font-size: 44px;
  }
  .trust-stat span {
    font-size: 15px;
  }
  .about-values {
    display: block;
    padding: 58px 18px 64px;
  }
  .dream-cta {
    display: block;
    min-height: 0;
    margin: 0 18px 64px;
    padding: 38px 24px 42px;
    border-radius: 18px;
  }
  .dream-cta h2 {
    margin-top: 20px;
    font-size: clamp(34px, 10vw, 50px);
  }
  .dream-cta-content > p:not(.eyebrow) {
    font-size: 14px;
  }
  .dream-cta-actions {
    margin-top: 28px;
  }
  .dream-cta-actions a {
    width: 100%;
  }
  .about-values-grid {
    display: block;
    margin-top: 42px;
  }
  .about-values-grid article + article {
    margin-top: 34px;
  }
  .about-values-grid h3 {
    margin-top: 24px;
  }
  .about-connect {
    padding-top: 62px;
    padding-bottom: 68px;
  }
}
@media (max-width: 680px) {
  .project-detail {
    padding: 28px 18px 72px;
  }
  .project-detail-heading {
    padding: 52px 0 30px;
  }
  .project-detail-heading h1 {
    letter-spacing: -2px;
  }
  .project-gallery {
    columns: 2 145px;
    column-gap: 10px;
  }
  .project-gallery img {
    margin-bottom: 10px;
  }
  .blog-detail {
    padding: 28px 18px 72px;
  }
  .blog-detail-heading {
    padding: 30px 0 26px;
  }
  .blog-detail-body {
    font-size: 16px;
  }
  .blog-detail-body h2 {
    font-size: 26px;
  }
  .blog-detail-body h3 {
    font-size: 21px;
  }
}

/* About page editorial layout */
.about-redesign > section:not(.about-redesign-content) {
  display: none;
}
.about-redesign-content {
  display: block;
  overflow: hidden;
}
.about-intro {
  max-width: 1220px;
  padding: 112px 7vw 126px;
}
.about-intro h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(46px, 7.4vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.about-intro-note {
  max-width: 390px;
  margin: 46px 0 0 39%;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.about-cover {
  position: relative;
  height: min(68vw, 760px);
  min-height: 460px;
  background: #222;
}
.about-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}
.about-cover div {
  position: absolute;
  left: 7vw;
  bottom: 7vw;
  max-width: 500px;
  color: #fff;
}
.about-cover span,
.about-cover strong {
  display: block;
}
.about-cover span {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.about-cover strong {
  font-size: clamp(30px, 4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.about-category,
.about-team {
  padding: 104px 7vw 112px;
  border-bottom: 1px solid var(--line);
}
/* .category-heading {
  max-width: 1220px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 7vw;
  align-items: end;
} */
.category-heading h2 {
  margin: 0 px auto;
  /* font-size: clamp(38px, 5.2vw, 76px); */
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.category-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.project-slider {
  max-width: 1220px;
  margin: 0 auto;
}
.project-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.project-slider-track::-webkit-scrollbar {
  display: none;
}
.project-slider-track:active {
  cursor: grabbing;
}
.about-project-card {
  flex: 0 0 clamp(220px, 26vw, 330px);
  scroll-snap-align: start;
}
.about-project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter 0.3s ease, transform 0.4s var(--ease);
}
.about-project-card:hover img {
  filter: grayscale(0);
  transform: translateY(-5px);
}
.about-project-card span {
  display: block;
  padding-top: 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}
.slider-controls button:hover {
  background: var(--ink);
  color: #fff;
}
.slider-controls span {
  margin: 0 auto 0 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.category-dark {
  background: #f7f7f7;
  color: #fff;
  border-color: #333;
}
.category-dark .category-heading > p,
.category-dark .slider-controls span {
  color: #aaa;
}
.category-dark .eyebrow {
  color: #aaa;
}
.category-dark .about-project-card span {
  color: #fff;
}
.category-dark .slider-controls button:hover {
  background: #fff;
  color: var(--ink);
}
.about-team {
  background: #ecece8;
}
.team-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #d7d0c4;
  overflow: hidden;
}
.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: left center;
}
.team-card div {
  padding: 16px;
}
.team-card strong,
.team-card span {
  display: block;
}
.team-card strong {
  font-size: 17px;
  line-height: 1.1;
}
.team-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
@media (max-width: 800px) {
  .about-intro {
    padding: 78px 18px 84px;
  }
  .about-intro-note {
    margin: 34px 0 0;
  }
  .about-cover {
    height: 68vh;
    min-height: 420px;
  }
  .about-cover div {
    left: 18px;
    right: 18px;
    bottom: 42px;
  }
  .about-category,
  .about-team {
    padding: 72px 18px 78px;
  }
  .category-heading {
    display: block;
    margin-bottom: 38px;
  }
  .category-heading > p {
    max-width: 440px;
    margin-top: 25px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-card:last-child {
    grid-column: span 2;
    max-width: calc(50% - 7px);
  }
}
@media (max-width: 480px) {
  .about-cover {
    height: 62vh;
  }
  .about-project-card {
    flex-basis: 78vw;
  }
  .team-grid {
    display: block;
  }
  .team-card,
  .team-card:last-child {
    max-width: none;
    margin-bottom: 14px;
  }
}

/* Team profile rows */
.about-redesign .team-grid {
  max-width: 1220px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.about-redesign .team-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 330px;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: 40px 6vw 40px 38px;
  background: #fff;
  border: 1px solid #d7b98d;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
}
.about-redesign .team-portrait {
  width: 100%;
  height: 242px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7e1d7;
}
.about-redesign .team-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.55);
  transform-origin: 20% center;
}
.about-redesign .team-details {
  min-width: 0;
  padding: 0;
}
.about-redesign .team-designation {
  display: block;
  margin: 0;
  color: #ae7b3b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.25;
}
.about-redesign .team-details h3 {
  margin: 14px 0 7px;
  color: #2c2b2b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 0.95;
}
.about-redesign .team-qualifications {
  display: block;
  margin: 0;
  color: #696969;
  font-size: 16px;
  line-height: 1.4;
}
.about-redesign .team-details i {
  display: block;
  width: 55px;
  height: 2px;
  margin: 14px 0 17px;
  background: #ae7b3b;
}
.about-redesign .team-details p {
  max-width: 670px;
  margin: 0;
  color: #595959;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .about-redesign .team-card {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 0;
    gap: 20px;
    padding: 24px 20px 26px;
    border-radius: 14px 0 14px 0;
  }
  .about-redesign .team-portrait {
    height: 154px;
    border-radius: 8px;
  }
  .about-redesign .team-designation {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .about-redesign .team-details h3 {
    margin: 9px 0 5px;
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.8px;
  }
  .about-redesign .team-qualifications,
  .about-redesign .team-details p {
    font-size: 13px;
  }
  .about-redesign .team-details i {
    width: 42px;
    margin: 10px 0 11px;
  }
}
@media (max-width: 430px) {
  .about-redesign .team-card {
    grid-template-columns: 1fr;
  }
  .about-redesign .team-portrait {
    width: 150px;
    height: 170px;
  }
}

/* Editorial blog collection */
.blogs-page {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 7vw 110px;
}
.blog-collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 50px;
  align-items: end;
  padding: 94px 0 78px;
  border-bottom: 1px solid var(--line);
}
.blog-collection-intro h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}
.blog-collection-meta {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding-bottom: 4px;
}
.blog-collection-meta strong {
  font-size: 58px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
}
.blog-collection-meta span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 25px 0 34px;
}
.blog-filters button {
  border: 1px solid #cfcfca;
  border-radius: 999px;
  padding: 9px 18px;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.blog-filters button:hover,
.blog-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 22px;
}
.blog-card {
  min-width: 0;
}
.blog-card-image {
  display: block;
  overflow: hidden;
  background: #deded9;
  aspect-ratio: 1.28;
}
.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
  transition: transform 0.65s var(--ease), filter 0.4s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.045);
  filter: grayscale(0);
}
.blog-card-copy {
  padding: 19px 2px 0;
}
.blog-card-copy > span {
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.85px;
}
.blog-card-copy h3 {
  max-width: 410px;
  margin: 11px 0 10px;
  font-size: clamp(24px, 2.5vw, 35px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.blog-card-copy h3 a {
  transition: color 0.25s ease;
}
.blog-card-copy h3 a:hover {
  color: var(--accent) !important;
}
.blog-card-copy p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.blog-read-more {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.blog-read-more b {
  font-size: 15px;
  font-weight: 400;
  line-height: 0.6;
}
.blog-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(230px, 0.58fr);
  gap: 25px;
  align-items: end;
}
.blog-card-featured .blog-card-image {
  aspect-ratio: 1.52;
}
.blog-card-featured .blog-card-copy {
  padding-bottom: 3px;
}
.blog-card.is-filtered {
  display: none;
}
.blog-empty {
  margin: 50px 0 0;
  color: var(--muted);
}
@media (max-width: 800px) {
  .blogs-page {
    padding: 0 18px 75px;
  }
  .blog-collection-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 0 58px;
  }
  .blog-collection-meta {
    justify-content: flex-start;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 15px;
  }
  .blog-card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 520px) {
  .blog-collection-intro h2 {
    font-size: clamp(44px, 14vw, 70px);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-featured {
    display: block;
    grid-column: auto;
  }
  .blog-card-featured .blog-card-copy {
    padding-top: 19px;
  }
  .blog-card-copy h3 {
    font-size: 30px;
  }
}

/* Homepage quick contact and project assistant */
.home-float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whatsapp-float,
.chat-float {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.18);
  cursor: pointer;
  font-size: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float {
  background: #25d366;
  color: #fff !important;
}
.chat-float {
  background: var(--ink);
  color: #fff;
}
.whatsapp-float:hover,
.chat-float:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 16, 16, 0.24);
}
.project-assistant {
  position: fixed;
  right: 24px;
  bottom: 150px;
  z-index: 29;
  display: flex;
  width: min(380px, calc(100vw - 36px));
  max-height: min(610px, calc(100vh - 180px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d6c4a8;
  border-radius: 16px 0 16px 0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.project-assistant.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.assistant-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 18px;
  background: #f1ebe2;
}
.assistant-heading span {
  display: block;
  color: #ae7b3b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.assistant-heading strong {
  display: block;
  margin-top: 6px;
  color: #2b2b2b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}
.assistant-close {
  width: 30px;
  height: 30px;
  border: 1px solid #bcae99;
  border-radius: 50%;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}
.assistant-messages {
  display: flex;
  min-height: 170px;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  background: #faf9f6;
}
.assistant-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 11px 0 11px 0;
  font-size: 13px;
  line-height: 1.45;
}
.assistant-message-bot {
  align-self: flex-start;
  border: 1px solid #e0d7ca;
  background: #fff;
  color: #4d4d4d;
}
.assistant-message-user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
}
.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 18px 14px;
  background: #faf9f6;
}
.assistant-suggestions button {
  border: 1px solid #d6c4a8;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: #6a5a48;
  cursor: pointer;
  font-size: 10px;
}
.assistant-form {
  display: flex;
  gap: 8px;
  padding: 13px;
  border-top: 1px solid #e1ddd5;
  background: #fff;
}
.assistant-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: #f3f3ef;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}
.assistant-form button {
  width: 40px;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}
@media (max-width: 680px) {
  .home-float-actions {
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-float,
  .chat-float {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .project-assistant {
    right: 16px;
    bottom: 130px;
  }
}

/* Contact brief modal */
.contact-modal[hidden],
.contact-modal-success[hidden] {
  display: none;
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(16 16 16 / 62%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.contact-modal.is-open {
  opacity: 1;
}
.contact-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(840px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 36px clamp(24px, 5vw, 58px) 42px;
  background: var(--bg);
  box-shadow: 0 18px 70px rgb(0 0 0 / 22%);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s var(--ease);
}
.contact-modal.is-open .contact-modal-panel {
  transform: none;
}
.contact-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.contact-modal-header {
  padding-right: 44px;
}
.contact-modal-error {
  margin: 18px 0 0;
  color: #b64235;
  font-size: 13px;
  font-weight: 700;
}
.contact-modal-header h2,
.contact-modal-success h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.contact-modal-header > p:last-child,
.contact-modal-success > p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.contact-modal-form {
  margin-top: 40px;
}
.contact-modal-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.contact-modal .form-field-wide {
  grid-column: span 2;
}
.contact-modal .form-field input,
.contact-modal .form-field select,
.contact-modal .form-field textarea {
  padding-top: 8px;
  background: transparent;
}
.contact-modal .form-field textarea {
  min-height: 94px;
}
.contact-modal .contact-submit {
  margin-top: 30px;
}
.contact-modal input[type="file"] {
  padding: 10px 0;
  cursor: pointer;
}
.contact-modal input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}
.file-help {
  display: block;
  padding-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.contact-modal-success {
  padding: 56px 0 22px;
}
.contact-modal-success .contact-submit {
  margin-top: 36px;
}
@media (max-width: 620px) {
  .contact-modal {
    padding: 0;
    place-items: stretch;
  }
  .contact-modal-panel {
    width: 100%;
    max-height: none;
    min-height: 100%;
    padding: 28px 20px 34px;
  }
  .contact-modal-fields {
    display: block;
  }
  .contact-modal .form-field,
  .contact-modal .contact-submit {
    margin-bottom: 20px;
  }
  .contact-modal .form-field-wide {
    grid-column: auto;
  }
  .contact-modal-close {
    top: 17px;
    right: 16px;
  }
}

/* Contact page */
.contact-page {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 7vw 112px;
}
.contact-intro {
  max-width: 850px;
  padding: 98px 0 78px;
}
.contact-intro h2,
.contact-form-copy h2,
.contact-map-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.contact-intro > p:last-child {
  max-width: 390px;
  margin: 34px 0 0 32%;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-info-card {
  min-height: 240px;
  padding: 30px 28px 32px;
  border-right: 1px solid var(--line);
}
.contact-info-card:last-child {
  border-right: 0;
}
.contact-info-card > i {
  display: block;
  margin-bottom: 32px;
  color: #ae7b3b;
  font-size: 23px;
}
.contact-info-card > span,
.contact-form-note span {
  display: block;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.contact-info-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.contact-info-card a,
.contact-form-note a {
  color: var(--ink) !important;
  text-decoration: underline;
  text-decoration-color: #c9a56e;
  text-underline-offset: 4px;
}
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.contact-form-copy {
  max-width: 430px;
}
.contact-form-copy h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.4vw, 64px);
}
.contact-form-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.contact-form-note {
  margin-top: 40px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}
.contact-form-note a {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
  align-content: start;
}
.form-field {
  min-width: 0;
}
.form-field-wide {
  grid-column: span 2;
}
.form-field label {
  display: block;
  margin-bottom: 9px;
  color: #565656;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc0bc;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0 13px;
  font: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-field select {
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
}
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #b64235;
}
.field-error {
  display: block;
  min-height: 16px;
  padding-top: 5px;
  color: #b64235;
  font-size: 11px;
}
.contact-submit {
  grid-column: span 2;
  justify-self: start;
  border: 0;
  padding: 16px 23px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.contact-submit span {
  margin-left: 22px;
  font-size: 16px;
}
.contact-submit:hover {
  background: #ae7b3b;
  transform: translateY(-2px);
}
.form-status {
  grid-column: span 2;
  min-height: 20px;
  margin: -10px 0 0;
  color: #39734a;
  font-size: 13px;
}
.contact-map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 120px);
  padding: 110px 0 0;
  align-items: end;
}
.contact-map-heading h2 {
  margin-top: 15px;
  font-size: clamp(38px, 4.5vw, 64px);
}
.contact-map-heading > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.contact-map-heading > a {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.contact-map-heading > a span {
  margin-left: 15px;
  font-size: 15px;
}
.contact-map {
  min-height: 410px;
  background: #e2e2de;
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 410px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}
@media (max-width: 800px) {
  .contact-page {
    padding: 0 18px 76px;
  }
  .contact-intro {
    padding: 72px 0 58px;
  }
  .contact-intro > p:last-child {
    margin-left: 0;
  }
  .contact-info-cards,
  .contact-form-section,
  .contact-map-section {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-info-card:last-child {
    border-bottom: 0;
  }
  .contact-form-section {
    gap: 58px;
    padding: 76px 0;
  }
  .contact-map-section {
    gap: 45px;
    padding-top: 76px;
  }
}
@media (max-width: 520px) {
  .contact-form {
    display: block;
  }
  .form-field,
  .contact-submit,
  .form-status {
    margin-bottom: 20px;
  }
  .contact-submit {
    margin-top: 7px;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 330px;
  }
}

.service-card {
                position: relative;
                border: 1px solid #e5e5e5;
                transition: all 0.35s ease;
                overflow: hidden;
                box-shadow: 5px 5px 5px #dcdcdc;
              }

              .service-card::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 3px;
                height: 0;
                background: #111;
                transition: height 0.35s ease;
              }

              .service-card:hover {
                transform: translateY(-8px);
                border-color: #111;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
              }

              .service-card:hover::before {
                height: 100%;
              }

              .service-number {
                font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
    background-color: black;
    padding: 20px;
    border-radius: 50px;
    margin: 0px auto;
    display: block;
    text-align: center;
    width: 60px;
              }

              .service-title {
               font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 15px;
    text-align: center;
              }

              .service-text {
                font-size: 15px;
                color: #666;

              }

              .service-link {
                display: inline-block;
                color: #111;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 1px;
                text-decoration: none;
                transition: transform 0.3s ease;
              }

              .service-link:hover {
                transform: translateX(5px);
                color: #111;
              }

              @media (max-width: 767px) {
                .service-card {
                  padding: 30px !important;
                }

                .service-number {
                  margin-bottom: 25px;
                }
              }
.service_heading{
  margin-top: 0px;
}

/* About page sections */
.about-overview {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 7vw 108px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
}
.about-overview-image {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.about-overview-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  filter: grayscale(0.12);
}
.about-overview .about-section-copy {
  max-width: 620px;
}
.about-overview .about-section-copy h2,
.about-belief h2,
.about-conversion h2,
.about-process-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.about-overview .about-section-copy > p:not(.eyebrow),
.about-belief > p:not(.eyebrow),
.about-conversion-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.about-counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}
.about-counter {
  min-width: 0;
}
.about-counter strong {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.about-counter span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.3;
  text-transform: uppercase;
}
.about-beliefs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 8vw, 130px);
  padding: 94px 7vw 104px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ecece8;
}
.about-belief {
  max-width: 560px;
}
.about-belief + .about-belief {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 5vw, 80px);
}
.about-belief h2 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 58px);
}
.about-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 125px);
  align-items: center;
  padding: 112px 7vw;
}
.about-conversion-copy {
  max-width: 540px;
}
.about-conversion h2 {
  font-size: clamp(36px, 4.7vw, 66px);
}
.about-conversion-image {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.about-conversion-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  filter: grayscale(0.1);
}
.about-process {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 125px);
  padding: 104px 7vw 120px;
  border-top: 1px solid var(--line);
  background: #f1f1ef;
}
.about-process-heading h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4vw, 58px);
}
.about-process-list {
  border-top: 1px solid var(--ink);
}
.about-process-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0 25px;
  border-bottom: 1px solid var(--line);
}
.about-process-item > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}
.about-process-item h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.2px;
}
.about-process-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .about-overview,
  .about-conversion,
  .about-process {
    display: block;
    padding: 64px 18px 76px;
  }
  .about-overview-image {
    margin-bottom: 48px;
  }
  .about-overview-image img {
    aspect-ratio: 1.15;
  }
  .about-overview .about-section-copy h2,
  .about-belief h2,
  .about-conversion h2,
  .about-process-heading h2 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .about-counters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
    margin-top: 38px;
  }
  .about-beliefs {
    display: block;
    padding: 64px 18px 72px;
  }
  .about-belief + .about-belief {
    margin-top: 56px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 56px;
    padding-left: 0;
  }
  .about-conversion-image {
    margin-top: 42px;
  }
  .about-process-heading {
    margin-bottom: 46px;
  }
  .about-process-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
