:root {
  --black: #151515;
  --ink: #202020;
  --muted: #6f6f6f;
  --paper: #ffffff;
  --cream: #f4f4f4;
  --gold: #151515;
  --gold-dark: #151515;
  --line: rgba(32, 32, 32, 0.12);
  --header-height: 92px;
  --container: 1040px;
  --body-font: "Outfit", Arial, sans-serif;
  --heading-font: "Luxury", "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

body.is-nav-open {
  overflow: hidden;
}

body.home-page::before,
body.services-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  width: 40%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/images/architectural-sketch-modern-apartment-interior-concept-home-design-architecture-living-space-planning.webp") center / contain no-repeat;
  opacity: 0.2;
  transform: translateX(-50%);
}

body.home-page::before {
  animation: blueprintDrift 18s ease-in-out infinite alternate;
}

body.home-page .site-header,
body.services-page .site-header {
  position: relative;
  z-index: 1000;
}

body.home-page main,
body.home-page .site-footer,
body.services-page main,
body.services-page .site-footer {
  position: relative;
  z-index: 1;
}

body.home-page main > section,
body.services-page main > section {
  background: transparent;
}

body.home-page .site-header {
  animation: headerReveal 680ms ease both;
}

body.home-page .hero-copy > *,
body.home-page .hero-rail,
body.home-page .hero-visual,
body.home-page .about-media,
body.home-page .about-copy > *,
body.home-page .philosophy-intro > *,
body.home-page .philosophy-item,
body.home-page .services-copy > *,
body.home-page .service-row,
body.home-page .work-header,
body.home-page .work-card,
body.home-page .work-pagination-wrap,
body.home-page .footer-layout,
body.home-page .footer-bottom {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 0.8, 0.22, 1),
    transform 720ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

body.home-page .hero-visual,
body.home-page .about-media {
  transform: translateY(32px) scale(0.985);
}

body.home-page .hero-visual {
  transform: translate(-50%, calc(-50% + 32px)) scale(0.985);
}

body.home-page .hero-section.is-visible .hero-copy > *,
body.home-page .hero-section.is-visible .hero-rail,
body.home-page .hero-section.is-visible .hero-visual,
body.home-page .about-section.is-visible .about-media,
body.home-page .about-section.is-visible .about-copy > *,
body.home-page .philosophy-section.is-visible .philosophy-intro > *,
body.home-page .philosophy-section.is-visible .philosophy-item,
body.home-page .services-section.is-visible .services-copy > *,
body.home-page .services-section.is-visible .service-row,
body.home-page .work-section.is-visible .work-header,
body.home-page .work-section.is-visible .work-card,
body.home-page .work-section.is-visible .work-pagination-wrap,
body.home-page .site-footer.is-visible .footer-layout,
body.home-page .site-footer.is-visible .footer-bottom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.home-page .hero-section.is-visible .hero-visual {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.home-page .hero-section.is-visible .hero-copy > :nth-child(1),
body.home-page .about-section.is-visible .about-copy > :nth-child(1),
body.home-page .philosophy-section.is-visible .philosophy-intro > :nth-child(1),
body.home-page .services-section.is-visible .services-copy > :nth-child(1) {
  transition-delay: 80ms;
}

body.home-page .hero-section.is-visible .hero-copy > :nth-child(2),
body.home-page .about-section.is-visible .about-copy > :nth-child(2),
body.home-page .philosophy-section.is-visible .philosophy-intro > :nth-child(2),
body.home-page .services-section.is-visible .services-copy > :nth-child(2) {
  transition-delay: 160ms;
}

body.home-page .hero-section.is-visible .hero-copy > :nth-child(3),
body.home-page .about-section.is-visible .about-copy > :nth-child(3),
body.home-page .philosophy-section.is-visible .philosophy-intro > :nth-child(3),
body.home-page .services-section.is-visible .services-copy > :nth-child(3) {
  transition-delay: 240ms;
}

body.home-page .hero-section.is-visible .hero-copy > :nth-child(4),
body.home-page .about-section.is-visible .about-copy > :nth-child(4),
body.home-page .philosophy-section.is-visible .philosophy-intro > :nth-child(4),
body.home-page .services-section.is-visible .services-copy > :nth-child(4) {
  transition-delay: 320ms;
}

body.home-page .philosophy-section.is-visible .philosophy-item:nth-child(1),
body.home-page .services-section.is-visible .service-row:nth-child(1),
body.home-page .work-section.is-visible .work-card:nth-child(1) {
  transition-delay: 120ms;
}

body.home-page .philosophy-section.is-visible .philosophy-item:nth-child(2),
body.home-page .services-section.is-visible .service-row:nth-child(2),
body.home-page .work-section.is-visible .work-card:nth-child(2) {
  transition-delay: 190ms;
}

body.home-page .philosophy-section.is-visible .philosophy-item:nth-child(3),
body.home-page .services-section.is-visible .service-row:nth-child(3),
body.home-page .work-section.is-visible .work-card:nth-child(3) {
  transition-delay: 260ms;
}

body.home-page .philosophy-section.is-visible .philosophy-item:nth-child(4),
body.home-page .services-section.is-visible .service-row:nth-child(4),
body.home-page .work-section.is-visible .work-card:nth-child(4) {
  transition-delay: 330ms;
}

body.home-page .services-section.is-visible .service-row:nth-child(5),
body.home-page .work-section.is-visible .work-card:nth-child(5) {
  transition-delay: 400ms;
}

body.home-page .services-section.is-visible .service-row:nth-child(6),
body.home-page .work-section.is-visible .work-card:nth-child(6) {
  transition-delay: 470ms;
}

body.home-page .services-section.is-visible .service-row:nth-child(7) {
  transition-delay: 540ms;
}

body.home-page .hero-section.is-visible .hero-visual img {
  animation: heroFloat 7s ease-in-out infinite alternate;
}

body.home-page .about-section.is-visible .about-image--left {
  animation: imageFloatLeft 6.5s ease-in-out infinite alternate;
}

body.home-page .about-section.is-visible .about-image--right {
  animation: imageFloatRight 7s ease-in-out infinite alternate;
}

body.standard-page .site-header {
  animation: headerReveal 680ms ease both;
}

body.standard-page .hero-copy > *,
body.standard-page .hero-rail,
body.standard-page .hero-visual,
body.standard-page .service-detail-copy > *,
body.standard-page .service-detail-card figure,
body.standard-page .about-page-media,
body.standard-page .about-page-copy > *,
body.standard-page .contact-info-panel > .section-kicker,
body.standard-page .contact-info-panel > h2,
body.standard-page .contact-info-panel > p,
body.standard-page .contact-info-list article,
body.standard-page .contact-form,
body.standard-page .project-tile,
body.standard-page .footer-layout,
body.standard-page .footer-bottom {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 0.8, 0.22, 1),
    transform 720ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

body.standard-page .hero-visual {
  transform: translate(-50%, calc(-50% + 32px)) scale(0.985);
}

body.standard-page .hero-section.is-visible .hero-copy > *,
body.standard-page .hero-section.is-visible .hero-rail,
body.standard-page .hero-section.is-visible .hero-visual,
body.standard-page .service-detail-card.is-visible .service-detail-copy > *,
body.standard-page .service-detail-card.is-visible figure,
body.standard-page .about-page-section.is-visible .about-page-media,
body.standard-page .about-page-section.is-visible .about-page-copy > *,
body.standard-page .contact-page-section.is-visible .contact-info-panel > .section-kicker,
body.standard-page .contact-page-section.is-visible .contact-info-panel > h2,
body.standard-page .contact-page-section.is-visible .contact-info-panel > p,
body.standard-page .contact-page-section.is-visible .contact-info-list article,
body.standard-page .contact-page-section.is-visible .contact-form,
body.standard-page .projects-gallery-section.is-visible .project-tile,
body.standard-page .site-footer.is-visible .footer-layout,
body.standard-page .site-footer.is-visible .footer-bottom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.standard-page .hero-section.is-visible .hero-visual {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.standard-page .hero-section.is-visible .hero-visual img {
  animation: heroFloat 7s ease-in-out infinite alternate;
}

body.standard-page .hero-section.is-visible .hero-copy > :nth-child(1),
body.standard-page .service-detail-card.is-visible .service-detail-copy > :nth-child(1),
body.standard-page .about-page-section.is-visible .about-page-copy > :nth-child(1),
body.standard-page .contact-page-section.is-visible .contact-info-panel > .section-kicker {
  transition-delay: 80ms;
}

body.standard-page .hero-section.is-visible .hero-copy > :nth-child(2),
body.standard-page .service-detail-card.is-visible .service-detail-copy > :nth-child(2),
body.standard-page .about-page-section.is-visible .about-page-copy > :nth-child(2),
body.standard-page .contact-page-section.is-visible .contact-info-panel > h2 {
  transition-delay: 160ms;
}

body.standard-page .hero-section.is-visible .hero-copy > :nth-child(3),
body.standard-page .service-detail-card.is-visible .service-detail-copy > :nth-child(3),
body.standard-page .about-page-section.is-visible .about-page-copy > :nth-child(3),
body.standard-page .contact-page-section.is-visible .contact-info-panel > p,
body.standard-page .service-detail-card.is-visible figure {
  transition-delay: 240ms;
}

body.standard-page .hero-section.is-visible .hero-copy > :nth-child(4),
body.standard-page .about-page-section.is-visible .about-page-copy > :nth-child(4),
body.standard-page .contact-page-section.is-visible .contact-info-list article:nth-child(1),
body.standard-page .contact-page-section.is-visible .contact-form {
  transition-delay: 320ms;
}

body.standard-page .contact-page-section.is-visible .contact-info-list article:nth-child(2),
body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(2) {
  transition-delay: 190ms;
}

body.standard-page .contact-page-section.is-visible .contact-info-list article:nth-child(3),
body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(3) {
  transition-delay: 260ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(1) {
  transition-delay: 120ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(4) {
  transition-delay: 330ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(5) {
  transition-delay: 400ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(6) {
  transition-delay: 470ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(7) {
  transition-delay: 540ms;
}

body.standard-page .projects-gallery-section.is-visible .project-tile:nth-child(8) {
  transition-delay: 610ms;
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blueprintDrift {
  from {
    transform: translateX(-50%) translateY(-12px) scale(0.98);
  }

  to {
    transform: translateX(-50%) translateY(12px) scale(1.02);
  }
}

@keyframes heroFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px);
  }
}

@keyframes imageFloatLeft {
  from {
    transform: translateY(-25px);
  }

  to {
    transform: translateY(-38px);
  }
}

@keyframes imageFloatRight {
  from {
    transform: translateY(25px);
  }

  to {
    transform: translateY(38px);
  }
}

main > section {
  scroll-snap-align: start;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 224px;
  color: var(--black);
}

.brand-mark {
  position: relative;
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.brand-roof {
  position: absolute;
  top: 14px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
  transform: rotate(45deg);
}

.brand-house {
  position: absolute;
  bottom: 14px;
  width: 24px;
  height: 18px;
  border: 2px solid var(--black);
  border-top: 0;
}

.brand-text {
  display: grid;
  font-size: 17px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
   letter-spacing: 0em;
}

.primary-nav a {
  position: relative;
  padding: 36px 0 32px;
  transition: color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--black);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--black);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  width: 46px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.28);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  min-width: 158px;
  padding: 0 22px;
  color: var(--black);
  background: transparent;
  border-color: var(--black);
  box-shadow: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: var(--black);
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.icon-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
}

.icon-arrow::before,
.icon-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.icon-arrow::before {
  top: 8px;
  left: 3px;
  width: 12px;
  height: 1.5px;
  transform-origin: center;
}

.icon-arrow::after {
  top: 4px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  background: transparent;
}

.icon-arrow-right::after {
  transform: rotate(45deg);
}

.icon-arrow-left::before {
  transform: rotate(180deg);
}

.icon-arrow-left::after {
  left: 3px;
  right: auto;
  transform: rotate(-135deg);
}

.icon-arrow-up-right::before {
  top: 8px;
  left: 4px;
  width: 11px;
  transform: rotate(-45deg);
}

.icon-arrow-up-right::after {
  top: 3px;
  right: 2px;
  transform: rotate(0deg);
}

.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #ffffff;
  min-height: 100vh;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  align-items: center;
  padding: 46px 0 62px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 500px;
  padding-top: 82px;
  background: rgba(255, 255, 255, 0.5);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-copy h1,
.about-copy h2,
.services-copy h2,
.work-copy h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.1vw, 48px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1 span,
.about-copy h2 span,
.services-copy h2 span,
.work-copy h2 span {
  display: block;
}

.hero-copy h1 span:last-child,
.about-copy h2 span:last-child,
.services-copy h2 span:last-child,
.work-copy h2 span:last-child {
  color: var(--ink);
}

.hero-intro {
  max-width: 390px;
  margin: 26px 0 26px;
  color: #3c3b38;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-outline {
  min-width: 190px;
  padding: 0 24px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(21, 21, 21, 0.28);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-dark);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 80%;
  width: 100vw;
  height: 700px;
  min-height: 0;
  margin-left: 0;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.blueprint-panel {
  display: none;
}

.dimension {
  display: none;
}

.dimension-top {
  top: 0;
  left: 48%;
}

.dimension-right {
  right: 2%;
  top: 30%;
}

.dimension-bottom {
  bottom: 2%;
  left: 30%;
}

.hero-rail {
  position: absolute;
  z-index: 4;
  left: 34px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2f2c28;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.rail-line {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.rail-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background:
    linear-gradient(rgba(32, 32, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 32, 32, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px;
}

.about-section::before {
  content: "5.30 m";
  position: absolute;
  top: 6px;
  left: 44%;
  color: rgba(32, 32, 32, 0.22);
  font-size: 11px;
  letter-spacing: 0.1em;
}



.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: clamp(44px, 5.5vw, 72px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 28px;
  align-items: center;
}

.leaf-line {
  position: absolute;
  left: -48px;
  top: -18px;
  width: 120px;
  height: 330px;
  opacity: 0.38;
}

.leaf-line::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(rgba(21, 21, 21, 0.34), transparent);
  transform: rotate(8deg);
}

.leaf-line::after {
  content: "";
  position: absolute;
  inset: 14px 0 auto 16px;
  width: 84px;
  height: 245px;
  border-left: 2px solid rgba(21, 21, 21, 0.3);
  border-radius: 50%;
  transform: rotate(13deg);
  box-shadow:
    22px 44px 0 -16px transparent,
    28px 44px 0 -15px var(--paper),
    36px 88px 0 -16px transparent;
}

.about-image {
  position: relative;
  margin: 0;
  aspect-ratio: 0.56 / 1;
  background: #ededed;
  border: 1px solid rgba(21, 21, 21, 0.14);
  box-shadow:
    12px 13px 0 rgba(21, 21, 21, 0.08),
    0 16px 28px rgba(32, 32, 32, 0.12);
  overflow: hidden;
}

.about-image--left {
  transform: translateY(-25px);
}

.about-image--right {
  transform: translateY(25px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) sepia(0.18) contrast(0.88) brightness(1.12);
  opacity: 0.88;
}

.about-copy {
  max-width: 585px;
}

.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(21, 21, 21, 0.28);
}

.about-copy h2 span {
  white-space: nowrap;
}

.about-text {
  max-width: 560px;
  margin: 28px 0 34px;
  color: #373633;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 34px;
}

.feature-item {
  position: relative;
  min-height: 146px;
  padding-right: 20px;
}

.feature-item + .feature-item {
  padding-left: 28px;
  border-left: 1px solid rgba(21, 21, 21, 0.16);
}

.feature-item h3 {
  margin: 14px 0 8px;
  color: #2d2b28;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.line-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 48px;
  color: #3c3832;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.line-icon--home::before {
  left: 12px;
  top: 17px;
  width: 30px;
  height: 24px;
  border: 2px solid currentColor;
  border-top: 0;
}

.line-icon--home::after {
  left: 14px;
  top: 6px;
  width: 26px;
  height: 26px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.line-icon--tools::before,
.line-icon--tools::after {
  left: 24px;
  top: 4px;
  width: 4px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 8px;
  transform: rotate(42deg);
}

.line-icon--tools::after {
  transform: rotate(-42deg);
}

.line-icon--badge::before {
  left: 11px;
  top: 4px;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon--badge::after {
  left: 20px;
  bottom: 4px;
  width: 14px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.about-btn {
  min-width: 158px;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 78px 0;
  background: #ffffff;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 92px;
  width: 1px;
  background: rgba(32, 32, 32, 0.08);
  pointer-events: none;
}

.philosophy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.98fr 1.12fr;
  gap: clamp(58px, 8vw, 112px);
  align-items: start;
}

.philosophy-rail {
  position: absolute;
  z-index: 2;
  left: 36px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 38px;
  color: #2f2c28;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.56em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.philosophy-intro {
  max-width: 430px;
}

.philosophy-intro .section-kicker {
  margin-bottom: 42px;
  color: var(--gold-dark);
}

.philosophy-intro h2 {
  margin: 0 0 34px;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.philosophy-intro h2 span {
  display: block;
}

.philosophy-intro h2 span:last-child {
  color: var(--gold-dark);
}

.philosophy-intro p {
  margin: 0 0 22px;
  max-width: 390px;
  color: #242424;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 500;
}

.philosophy-lead {
  font-size: 19px;
  line-height: 1.55;
}

.philosophy-list {
  border-left: 1px solid rgba(32, 32, 32, 0.14);
  padding-left: clamp(44px, 5vw, 66px);
}

.philosophy-item {
  display: grid;
  grid-template-columns: 58px 1px 1fr;
  gap: 28px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.14);
}

.philosophy-item + .philosophy-item {
  padding-top: 30px;
}

.philosophy-number {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.philosophy-rule {
  width: 1px;
  min-height: 86px;
  background: rgba(21, 21, 21, 0.32);
}

.philosophy-item h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.philosophy-item p {
  margin: 0;
  max-width: 390px;
  color: #222;
  font-size: 13px;
  line-height: 1.68;
  font-weight: 500;
}

.services-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1fr);
  gap: clamp(42px, 5vw, 70px);
  align-items: end;
}

.services-label {
  margin: 0 0 32px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.services-copy {
  min-width: 0;
}

.services-intro {
  max-width: 420px;
  margin: 32px 0 34px;
  color: #3f4450;
  font-size: 16px;
  line-height: 1.65;
}

.service-preview {
  margin: 0;
  height: clamp(460px, 52vh, 610px);
  overflow: hidden;
  background: #e8e8e8;
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.service-preview.is-changing img {
  opacity: 0;
}

.service-preview figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(340px, calc(100% - 56px));
  padding: 22px 26px;
  color: #fff;
  background: rgba(21, 21, 21, 0.82);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-preview figcaption span,
.service-preview figcaption strong {
  display: block;
}

.service-preview figcaption strong {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.services-list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service-row {
  display: grid;
  grid-template-columns: 44px 1fr 42px;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: var(--black);
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-row span {
  color: #9aa0a8;
  font-size: 14px;
  font-weight: 700;
}

.service-row strong {
  font-family: var(--heading-font);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-row em {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  font-style: normal;
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-row:hover,
.service-row:focus-visible,
.service-row.is-active {
  padding-left: 10px;
}

.service-row:hover em,
.service-row:focus-visible em,
.service-row.is-active em {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.service-row.is-active span {
  color: var(--black);
}

.work-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: block;
  padding: 44px 0 40px;
  background: var(--paper);
}

.work-layout {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.work-header {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  text-align: center;
}

.work-label {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.work-copy {
  min-width: 0;
}

.work-copy h2 {
  grid-column: auto;
}

.work-intro {
  max-width: 500px;
  margin: 22px auto 0;
  color: #3f4450;
  font-size: 16px;
  line-height: 1.65;
}

.work-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-width: 0;
  overflow: hidden;
}

.work-track {
  --work-card-width: clamp(300px, 21.5vw, 410px);
  --work-gap: 24px;
  display: flex;
  gap: 24px;
  padding: 0 clamp(28px, 4vw, 64px);
  transform: translateX(0);
  transition: transform 520ms cubic-bezier(0.22, 0.8, 0.22, 1);
  will-change: transform;
}

.work-card {
  flex: 0 0 var(--work-card-width);
  min-width: 0;
}

.work-card img {
  width: 100%;
  height: clamp(310px, 43vh, 430px);
  object-fit: cover;
  border-radius: 8px;
  background: #f1f1f1;
}

.work-card-body {
  padding-top: 18px;
}

.work-card-body span {
  display: inline-block;
  margin-bottom: 10px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.work-card-body h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card-body p {
  margin: 10px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

.work-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.work-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.work-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  color: var(--black);
  background: transparent;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.work-arrow:hover,
.work-arrow:focus-visible {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.work-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.work-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--black);
  border-color: var(--black);
}

.site-footer {
  scroll-snap-align: start;
  color: #f5f5f5;
  background: #111;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(34px, 5vw, 70px);
  padding: 48px 0 34px;
}

.footer-logo {
  display: grid;
  gap: 2px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0 0;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-column address,
.footer-column a,
.footer-column li {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.75;
  font-style: normal;
}

.footer-column a {
  display: block;
  width: fit-content;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-column ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav {
  align-content: start;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.standard-page main > section {
  scroll-snap-align: none;
}

.page-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--black);
  background: #fff;
}

.page-hero > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 80%;
  width: 100vw;
  height: 700px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: translate(-50%, -50%);
}

.page-hero-overlay {
  display: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 70px 0 90px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb {
  margin: 24px 0 0;
  color: #3c3b38;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--black);
}

.page-hero-text {
  max-width: 430px;
  margin: 30px 0 0;
  color: #3c3b38;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.service-page-hero .page-hero-inner > div {
  max-width: 520px;
  padding-top: 82px;
  background: rgba(255, 255, 255, 0.5);
}

.service-detail-list {
  padding: 0;
  background: #ffffff;
}

.service-detail-grid {
  width: min(calc(100% - 48px), 1400px);
  display: grid;
  gap: 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  scroll-snap-align: start;
}

.service-detail-card--reverse {
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
}

.service-detail-card--reverse .service-detail-copy {
  grid-column: 2;
}

.service-detail-card--reverse figure {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-copy span {
  display: block;
  margin-bottom: 18px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.service-detail-copy h2 {
  max-width: 480px;
  margin: 0 0 22px;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-copy p {
  max-width: 430px;
  margin: 0;
  color: #4f4f4f;
  font-size: 18px;
  line-height: 1.8;
}

.service-detail-card figure {
  margin: 0;
  overflow: hidden;
  background: #e9e9e9;
}

.service-detail-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: none;
}

.about-page-section {
  padding: 84px 0;
  background: #fff;
}

.about-page-layout {
  width: min(calc(100% - 48px), 1400px);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.about-page-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-page-media figure {
  margin: 0;
  overflow: hidden;
  background: #ededed;
}

.about-page-media figure:first-child {
  transform: translateY(-18px);
}

.about-page-media figure:last-child {
  transform: translateY(24px);
}

.about-page-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: none;
}

.about-page-copy h2,
.about-info-heading h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-page-copy h2 span,
.about-info-heading h2 span {
  display: block;
}

.about-page-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.78;
}

.about-page-copy .about-placeholder {
  color: #777;
  font-size: 14px;
}

.about-info-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f6f6;
}

.about-info-grid {
  width: min(calc(100% - 48px), 1400px);
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 60%);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.about-info-list {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.about-info-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.about-info-list span {
  color: #777;
  font-size: 15px;
  font-weight: 700;
}

.about-info-list h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-info-list p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.75;
}

.contact-page-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 82px 0;
  background: #fff;
}

.contact-page-layout {
  width: min(calc(100% - 48px), 1400px);
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.contact-info-panel h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-info-panel h2 span {
  display: block;
}

.contact-info-panel > p {
  max-width: 480px;
  margin: 28px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.78;
}

.contact-info-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.contact-info-list article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.contact-info-list span {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-info-list p,
.contact-info-list a {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f6f6f6;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row--full,
.contact-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--black);
  background: #fff;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.24);
  outline-offset: 2px;
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  width: fit-content;
  margin-top: 8px;
  background: #fff;
}

.projects-gallery-section {
  padding: 64px 0 86px;
  background: #fff;
}

.projects-gallery-grid {
  width: min(calc(100% - 48px), 1400px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.project-tile {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #fff;
}

body.projects-page .project-tile {
  opacity: 1;
  transform: none;
}

.project-tile img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: none;
  opacity: 1;
  transition: transform 420ms ease;
}

.project-tile:hover img,
.project-tile:focus-within img {
  transform: scale(1.035);
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand {
    min-width: 200px;
  }

  .brand-mark {
    width: 54px;
    height: 50px;
  }

  .brand-text {
    font-size: 14px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 12px;
  }

  .header-cta {
    min-width: auto;
    padding: 0 18px;
  }

  .hero-rail {
    display: none;
  }

  .hero-layout {
    display: block;
  }

  .hero-copy {
    max-width: 500px;
  }

  .hero-visual {
    margin-left: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-copy {
    max-width: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--black);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    background: #fff;
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    background: #fff;
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .primary-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 0;
    width: 100vw;
    height: 100dvh;
    padding: 92px 30px 48px;
    overflow-y: auto;
    background: #111;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 0.8, 0.22, 1), visibility 260ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .primary-nav a {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 22px 0 22px 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(26px, 9vw, 42px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    opacity: 0.82;
    transition: opacity 180ms ease, padding-left 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .primary-nav a::before {
    position: absolute;
    left: 0;
    top: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .primary-nav a:nth-child(1)::before {
    content: "01";
  }

  .primary-nav a:nth-child(2)::before {
    content: "02";
  }

  .primary-nav a:nth-child(3)::before {
    content: "03";
  }

  .primary-nav a:nth-child(4)::before {
    content: "04";
  }

  .primary-nav a:nth-child(5)::before {
    content: "05";
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    padding-left: 58px;
  }

  .primary-nav a:hover::before,
  .primary-nav a:focus-visible::before {
    color: #fff;
  }

  .primary-nav a.active {
    color: #fff;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    opacity: 0.82;
    padding-left: 46px;
  }

  .primary-nav a.active::before {
    color: rgba(255, 255, 255, 0.5);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-layout {
    min-height: auto;
    padding: 50px 0 64px;
  }

  .hero-copy {
    max-width: 430px;
    padding-top: 200px;
  }

  .hero-copy h1,
  .about-copy h2,
  .services-copy h2,
  .work-copy h2 {
    font-size: 32px;
    letter-spacing: 0.14em;
  }

  .hero-intro {
    margin: 24px 0 26px;
  }

  .about-section {
    min-height: auto;
    display: block;
    padding: 62px 0;
  }

  .about-media {
    min-height: auto;
    gap: 22px;
  }

  .leaf-line {
    left: -30px;
    height: 260px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-item {
    min-height: auto;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.14);
  }

  .feature-item + .feature-item {
    padding-left: 0;
    border-left: 0;
  }

  .philosophy-section {
    min-height: auto;
    display: block;
    padding: 58px 0;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    max-width: 620px;
    row-gap: 42px;
  }

  .philosophy-rail {
    display: none;
  }

  .philosophy-section::before {
    display: none;
  }

  .philosophy-intro h2 {
    font-size: clamp(34px, 8vw, 52px);
    letter-spacing: 0.2em;
  }

  .philosophy-list {
    padding-left: 0;
    border-left: 0;
  }

  .philosophy-item {
    grid-template-columns: 52px 1px 1fr;
    gap: 20px;
  }

  .services-section {
    min-height: auto;
    padding: 58px 0;
  }

  .work-section {
    min-height: auto;
    padding: 58px 0;
  }

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

  .services-intro {
    margin-bottom: 32px;
  }

  .service-preview {
    height: clamp(360px, 56vw, 500px);
    margin-bottom: 34px;
  }

  .work-track {
    --work-card-width: min(360px, 44vw);
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    padding-top: 56px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }



  .service-detail-card,
  .service-detail-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-card--reverse .service-detail-copy,
  .service-detail-card--reverse figure {
    grid-column: auto;
    grid-row: auto;
  }

  .about-page-layout,
  .about-info-grid,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .about-page-media img {
    height: 430px;
  }
}

@media (max-width: 560px) {

  .hero-visual img {
  margin-top: 90px;
}

  body.home-page::before,
body.services-page::before {

  width: 100%;

}


  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 42px;
  }

  .brand-roof {
    width: 22px;
    height: 22px;
    top: 10px;
  }

  .brand-house {
    width: 20px;
    height: 14px;
    bottom: 10px;
  }

  .brand-text {
    font-size: 12px;
    letter-spacing: 0.11em;
  }

.hero-visual {
  top: 0%;
  left: 50%;

}

  .eyebrow {
    margin-bottom: 20px;
    letter-spacing: 0.2em;
  }

  .hero-copy h1,
  .about-copy h2,
  .services-copy h2,
  .work-copy h2 {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    gap: 16px;
  }

  .btn-outline {
    width: 100%;
  }

  .about-media {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-image {
    aspect-ratio: 0.56 / 1;
  }

  .work-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .work-copy h2,
  .work-intro {
    grid-column: auto;
  }

  .work-track {
    --work-card-width: min(300px, 82vw);
    gap: 18px;
  }

  .work-card img {
    height: 360px;
  }

  .section-kicker {
    letter-spacing: 0.32em;
  }

  .about-copy h2 span {
    white-space: normal;
  }

  .philosophy-intro .section-kicker {
    margin-bottom: 28px;
  }

  .philosophy-intro h2 {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: 0.12em;
  }

  .philosophy-lead {
    font-size: 17px;
  }

  .philosophy-item {
    grid-template-columns: 44px 1px 1fr;
    gap: 16px;
  }

  .philosophy-number {
    font-size: 28px;
  }

  .philosophy-item h3 {
    letter-spacing: 0.12em;
  }

  .service-row {
    grid-template-columns: 34px 1fr 34px;
    gap: 14px;
    min-height: 68px;
  }

  .service-row strong {
    font-size: 18px;
  }

  .service-row em {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .service-preview figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
    font-size: 14px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .page-hero-inner {
    padding: 54px 0 70px;
  }

  .page-hero > img {
    left: 70%;
    height: 700px;
  }

  .service-page-hero .page-hero-inner > div {
    max-width: 430px;
    padding-top: 44px;
  }

  .service-detail-list {
    padding: 0;
  }

  .service-detail-grid {
    gap: 0;
  }

  .service-detail-card {
    min-height: 100px;
    align-content: center;
    margin-bottom: 100px;
  }

  .service-detail-card img {
    height: 260px;
  }

  .about-page-section {
    padding: 58px 0;
  }

  .about-page-layout,
  .about-info-grid,
  .contact-page-layout {
    width: min(calc(100% - 28px), 1400px);
  }

  .about-page-media {
    gap: 14px;
  }

  .about-page-media img {
    height: 320px;
  }

  .about-page-copy h2,
  .about-info-heading h2 {
    font-size: 30px;
    letter-spacing: 0.1em;
  }

  .about-info-list article {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .contact-page-section {
    padding: 58px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (min-width: 821px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero-section,
  .about-section,
  .philosophy-section,
  .services-section,
  .work-section {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
  }

  .about-section,
  .philosophy-section,
  .services-section,
  .work-section {
    padding-top: clamp(42px, 5vh, 64px);
    padding-bottom: clamp(42px, 5vh, 64px);
  }

  .service-preview {
    height: clamp(340px, 40vh, 500px);
  }

  .work-header {
    margin-bottom: clamp(24px, 4vh, 36px);
  }

  .work-card img {
    height: clamp(300px, 40vh, 430px);
  }
}

@media (max-width: 1080px) {
  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .projects-gallery-section {
    padding: 48px 0 62px;
  }

  .projects-gallery-grid {
    width: min(calc(100% - 28px), 1400px);
    gap: 18px;
  }

  .project-tile,
  .project-tile img {
    min-height: 360px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.home-page .site-header,
  body.home-page .hero-copy > *,
  body.home-page .hero-rail,
  body.home-page .hero-visual,
  body.home-page .about-media,
  body.home-page .about-copy > *,
  body.home-page .philosophy-intro > *,
  body.home-page .philosophy-item,
  body.home-page .services-copy > *,
  body.home-page .service-row,
  body.home-page .work-header,
  body.home-page .work-card,
  body.home-page .work-pagination-wrap,
  body.home-page .footer-layout,
  body.home-page .footer-bottom,
  body.standard-page .hero-copy > *,
  body.standard-page .hero-rail,
  body.standard-page .hero-visual,
  body.standard-page .service-detail-copy > *,
  body.standard-page .service-detail-card figure,
  body.standard-page .about-page-media,
  body.standard-page .about-page-copy > *,
  body.standard-page .contact-info-panel > .section-kicker,
  body.standard-page .contact-info-panel > h2,
  body.standard-page .contact-info-panel > p,
  body.standard-page .contact-info-list article,
  body.standard-page .contact-form,
  body.standard-page .project-tile,
  body.standard-page .footer-layout,
  body.standard-page .footer-bottom {
    opacity: 1 !important;
  }

  body.home-page .hero-visual,
  body.standard-page .hero-visual {
    transform: translate(-50%, -50%) scale(1) !important;
  }
}
