:root {
  --navy: #131f2d;
  --ink: #0b1218;
  --slate: #52606a;
  --line: #d9e0e4;
  --paper: #f5f3ef;
  --white: #ffffff;
  --champagne: #c9a96e;
  --green: #2d7d46;
  --logo-blue: #194255;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  width: 100%;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 96px;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

main {
  width: 100%;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(11, 18, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand-logo,
.hero-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

.brand-logo strong,
.hero-logo strong {
  font-family: "Trajan Pro", Cinzel, Georgia, serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-logo strong {
  font-size: 30px;
}

.brand-logo small,
.hero-logo small {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Marcellus, Georgia, serif;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo i,
.hero-logo i {
  display: block;
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.58);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-disabled,
.nav-disabled:hover {
  color: rgba(255, 255, 255, 0.42);
  cursor: default;
  pointer-events: none;
}

.nav .nav-disabled::after {
  display: none;
}

.mobile-menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.header-tools {
  display: flex;
  min-width: 214px;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.social-link {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a.social-link:hover {
  color: var(--champagne);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-button {
  display: grid;
  min-width: 28px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-button[hidden] {
  display: none;
}

.language-button:hover {
  border-color: var(--champagne);
  color: var(--white);
  transform: translateY(-1px);
}

.language-button.is-active {
  border-color: var(--champagne);
  color: var(--white);
}

.language-button:disabled {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
}

.language-button:disabled:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.42);
  transform: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 19, 0.86) 0%, rgba(7, 14, 19, 0.66) 42%, rgba(7, 14, 19, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 14, 19, 0.25) 0%, rgba(7, 14, 19, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92vh;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 126px 0 74px;
}

.hero-logo {
  margin-bottom: 34px;
}

.hero-logo strong {
  font-size: clamp(64px, 10vw, 118px);
}

.hero-logo small {
  gap: 14px;
  margin-top: 10px;
  font-size: clamp(15px, 2vw, 22px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(48px, 9vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--champagne);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p,
.method-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.services {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.card-number {
  display: block;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.timeline-item h3 {
  margin: 48px 0 12px;
  color: var(--navy);
  font-family: Marcellus, Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.timeline-item p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.project-section {
  display: grid;
  gap: 44px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 92px;
}

.project-copy {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 18px;
  text-align: center;
}

.project-copy h2 {
  max-width: 620px;
}

.project-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.project-feature {
  display: grid;
  grid-template-rows: 210px auto;
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(19, 31, 45, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-carousel {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 44px auto 0;
  padding: 0 64px;
}

.project-portfolio {
  overflow: hidden;
  transition: height 180ms ease;
}

.project-track {
  --project-gap: clamp(18px, 2.2vw, 30px);
  display: flex;
  gap: var(--project-gap);
  transition: transform 420ms cubic-bezier(0.6, 0, 0.2, 1);
  will-change: transform;
}

.project-card {
  flex: 0 0 calc((100% - (var(--project-gap) * 2)) / 3);
  min-height: 560px;
}

.project-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 64px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--champagne);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease;
}

.project-arrow:hover {
  color: var(--navy);
  transform: translateY(-50%) scale(1.05);
}

.project-arrow span {
  display: block;
  width: 32px;
  height: 32px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
}

.project-arrow-prev {
  left: 0;
}

.project-arrow-prev span {
  transform: rotate(-45deg);
}

.project-arrow-next {
  right: 0;
}

.project-arrow-next span {
  transform: rotate(135deg);
}

.project-feature:hover {
  border-color: var(--champagne);
  box-shadow: 0 28px 72px rgba(19, 31, 45, 0.12);
  transform: translateY(-3px);
}

.project-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.project-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 31, 45, 0.02), rgba(19, 31, 45, 0.1));
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-feature:hover .project-visual img {
  transform: scale(1.035);
}

.project-feature-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.project-feature-body > span {
  margin-bottom: 26px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-feature h3 {
  margin: 0;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}

.project-feature p {
  margin: 18px 0 0;
  color: var(--slate);
  line-height: 1.65;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta div {
  padding: 16px 14px;
}

.project-meta div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.project-meta strong,
.project-meta small {
  display: block;
}

.project-meta strong {
  color: var(--navy);
  font-family: Marcellus, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.project-meta small {
  margin-top: 7px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-feature em {
  display: inline-flex;
  width: max-content;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  color: var(--champagne);
  font-style: normal;
  font-weight: 800;
}

.builder-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 92px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.builder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 180ms ease, transform 180ms ease;
}

.builder-link:hover {
  color: var(--champagne);
  transform: translateY(-2px);
}

.builder-link img {
  width: 64px;
  height: 70px;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.builder-link:hover img {
  opacity: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
  padding: 110px clamp(20px, 5vw, 64px);
  background: var(--navy);
  color: var(--white);
}

.method-copy {
  max-width: 560px;
  justify-self: end;
}

.method-copy h2 {
  line-height: 1.12;
}

.method-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 620px;
  padding-left: 34px;
}

.timeline::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 12px;
  width: 1px;
  content: "";
  background: rgba(201, 168, 106, 0.24);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 0 38px;
  border: 0;
  background: transparent;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  position: absolute;
  top: 36px;
  bottom: 12px;
  left: -22px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--champagne), rgba(201, 168, 106, 0.34));
}

.timeline-item span {
  position: absolute;
  top: 3px;
  left: -34px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(201, 168, 106, 0.82);
  border-radius: 50%;
  background: var(--navy);
  color: var(--champagne);
  font-family: Marcellus, Georgia, serif;
  font-size: 13px;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 25px;
}

.timeline-item p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.contact-copy {
  max-width: 730px;
}

.contact-section h2 {
  max-width: 700px;
  font-size: clamp(38px, 6vw, 70px);
}

.contact-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  min-width: 224px;
  gap: 10px;
  margin-top: 0;
  align-self: center;
}

.contact-actions .button {
  width: 100%;
  min-height: 50px;
}

.contact-actions .button.dark {
  border: 1px solid rgba(20, 37, 50, 0.18);
  background: transparent;
  color: var(--navy);
}

.contact-actions .button.dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.projects-page .site-header,
.blog-page .site-header {
  background: rgba(11, 18, 24, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.projects-page .brand,
.blog-page .brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-active,
.nav-active:hover {
  color: var(--white);
}

.nav .nav-active::after {
  transform: scaleX(1);
}

.project-hero-architectural {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0;
  overflow: hidden;
  color: var(--navy);
  background: var(--paper);
}

.project-hero-architectural > img,
.project-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-hero-architectural > img {
  object-fit: cover;
}

.project-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 14, 19, 0.88) 0%, rgba(7, 14, 19, 0.58) 43%, rgba(7, 14, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 14, 19, 0.1) 0%, rgba(7, 14, 19, 0.68) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: auto;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: end;
  padding: 112px 0 28px;
}

.project-hero-content h1 {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 7vw, 76px);
  font-weight: 700;
  line-height: 0.9;
}

.project-logo-title img {
  width: min(540px, 82vw);
  height: auto;
}

.project-hero-content > dl,
.project-hero-content > table,
.project-hero-content > output {
  display: none;
}

.project-hero-content p {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.project-page-card span {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-showcase,
.project-notes {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.project-feature-row,
.project-gallery,
.other-projects,
.project-contact-band {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.project-showcase {
  padding: 0 0 72px;
}

.project-showcase-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1.1fr);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(19, 31, 45, 0.08);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(19, 31, 45, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-showcase-card:hover,
.project-showcase-card:focus-visible {
  box-shadow: 0 24px 54px rgba(19, 31, 45, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.project-showcase-card.is-static {
  cursor: default;
}

.project-showcase-card.is-static:hover {
  box-shadow: 0 18px 42px rgba(19, 31, 45, 0.12);
  transform: none;
}

.project-showcase-copy {
  display: flex;
  min-height: 386px;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 40px 34px;
}

.project-showcase-logo {
  width: min(260px, 78%);
  height: auto;
}

.project-showcase-rule {
  width: 90px;
  height: 1px;
  margin: 24px 0 18px;
  background: rgba(201, 169, 110, 0.58);
}

.project-showcase-copy h2 {
  max-width: 380px;
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 700;
  line-height: 1.05;
}

.project-showcase-copy p,
.project-feature-row p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.62;
}

.project-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--champagne);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-showcase-link span {
  font-size: 17px;
  line-height: 1;
}

.project-showcase-image {
  min-height: 386px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.project-showcase-image img,
.project-gallery img,
.project-feature-row img,
.project-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.project-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.project-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 42px;
  padding: 10px 0 22px;
  border-bottom: 1px solid rgba(19, 31, 45, 0.12);
}

.project-notes article {
  min-height: 112px;
  padding: 14px 28px 4px;
}

.project-notes article:not(:last-child) {
  border-right: 1px solid rgba(19, 31, 45, 0.1);
}

.project-notes span {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
}

.project-note-body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 16px;
}

.project-note-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(19, 31, 45, 0.06);
  color: var(--ink);
}

.project-note-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.project-notes h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: Marcellus, Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.project-notes p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.55;
}

.project-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 0 0 98px;
}

.project-feature-row img {
  aspect-ratio: 4 / 3;
}

.project-feature-row h2 {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 62px);
}

.project-feature-row p {
  margin-top: 22px;
}

body.is-project-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  overscroll-behavior: contain;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 24, 0.62);
  backdrop-filter: blur(3px);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100dvh - 44px));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(26px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.project-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(19, 31, 45, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(19, 31, 45, 0.14);
}

.project-modal .project-feature-row,
.project-modal .project-gallery {
  width: 100%;
  margin: 0;
}

.project-modal .project-feature-row {
  padding: 0 0 62px;
}

.project-modal .project-gallery {
  padding: 0;
}

.project-modal .project-gallery-grid {
  width: 100%;
}

.project-gallery {
  padding: 0 0 96px;
}

.project-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.project-gallery-heading h2 {
  max-width: 700px;
}

.project-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.project-gallery-grid figure {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
}

.project-gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.other-projects {
  padding: 0 0 96px;
}

.project-showcase-list {
  display: grid;
  gap: 34px;
}

.project-page-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.project-page-card img {
  aspect-ratio: 16 / 10;
}

.project-page-card div {
  padding: 28px;
}

.project-page-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

.project-page-card p {
  margin: 16px 0 0;
  color: var(--slate);
  line-height: 1.65;
}

.project-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px 0 96px;
  border-top: 1px solid var(--line);
}

.project-contact-band h2 {
  max-width: 720px;
  margin-top: 8px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.6vw, 30px);
  bottom: clamp(18px, 2.6vw, 30px);
  z-index: 60;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 18, 24, 0.78);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(11, 18, 24, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  border-color: rgba(201, 169, 110, 0.62);
  background: rgba(11, 18, 24, 0.9);
  color: var(--champagne);
  box-shadow: 0 16px 30px rgba(11, 18, 24, 0.22);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.blog-page {
  background:
    radial-gradient(circle at 15% 24%, rgba(201, 169, 110, 0.12), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(25, 66, 85, 0.08), transparent 30%),
    var(--paper);
}

.blog-shell {
  display: grid;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  gap: clamp(34px, 4.5vw, 64px);
  padding: 108px 0 66px;
}

.blog-heading {
  max-width: 760px;
}

.blog-heading h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 5.2vw, 66px);
  font-weight: 700;
  line-height: 0.96;
}

.blog-heading p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

.blog-search h2,
.blog-categories h2 {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-empty {
  margin-top: 48px;
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(19, 31, 45, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 42px rgba(19, 31, 45, 0.08);
}

.blog-empty h2 {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.blog-empty p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

.blog-sidebar {
  padding-top: 100px;
}

.blog-search h2,
.blog-categories h2 {
  margin: 0 0 14px;
}

.blog-search label {
  position: relative;
  display: block;
}

.blog-search label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.blog-search input {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.blog-search input:focus {
  border-color: rgba(201, 169, 110, 0.92);
  background: var(--white);
}

.blog-search svg {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.blog-categories {
  margin-top: 42px;
}

.blog-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(19, 31, 45, 0.1);
  color: var(--slate);
  font-size: 14px;
  transition: color 180ms ease;
}

.blog-categories a:hover,
.blog-categories strong {
  color: var(--navy);
}

.blog-categories strong {
  font-size: 13px;
}

.blog-newsletter {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  margin-top: 46px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.48);
}

.newsletter-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(19, 31, 45, 0.09);
  color: var(--navy);
}

.newsletter-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.blog-newsletter h2 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.blog-newsletter p {
  margin: 12px 0 20px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .hero,
  .section,
  .project-section,
  .builder-section,
  .split-section,
  .contact-section {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav {
    display: none;
  }

  .brand {
    grid-column: 1;
  }

  .mobile-menu-button {
    grid-column: 4;
    display: flex;
    width: 40px;
    height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
  }

  .mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: auto;
    display: grid;
    width: min(280px, calc(100vw - 28px));
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    background: rgba(11, 18, 24, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
    backdrop-filter: blur(14px);
  }

  .site-header.is-menu-open .mobile-nav {
    max-height: 260px;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 800;
  }

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

  .mobile-nav-socials {
    display: none;
  }

  .header-tools {
    grid-column: 3;
    justify-self: end;
    min-width: 0;
    gap: 14px;
  }

  .social-links {
    display: none;
  }

  .social-link {
    width: 18px;
    height: 18px;
  }

  .hero,
  .hero-content {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 14, 19, 0.88) 0%, rgba(7, 14, 19, 0.64) 100%),
      linear-gradient(180deg, rgba(7, 14, 19, 0.12) 0%, rgba(7, 14, 19, 0.78) 100%);
  }

  .hero-content {
    width: 100%;
    padding-top: 118px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .intro-grid,
  .service-grid,
  .project-section,
  .builder-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section,
  .project-section,
  .builder-section,
  .split-section,
  .contact-section {
    padding-block: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .builder-section {
    margin-bottom: 0;
  }

  .service-card {
    min-height: 230px;
  }

  .project-carousel {
    width: min(560px, calc(100% - 28px));
    margin-top: 36px;
    padding: 0 42px;
  }

  .project-track {
    --project-gap: 18px;
  }

  .project-feature {
    grid-template-rows: 190px auto;
  }

  .project-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .project-feature-body {
    padding: 24px;
  }

  .project-feature h3 {
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .project-arrow {
    width: 34px;
    height: 54px;
  }

  .project-arrow span {
    width: 21px;
    height: 21px;
    border-width: 3px;
  }

  .contact-section {
    display: grid;
  }

  .project-hero-architectural,
  .project-hero-content {
    min-height: auto;
  }

  .project-hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 14, 19, 0.88) 0%, rgba(7, 14, 19, 0.56) 100%),
      linear-gradient(180deg, rgba(7, 14, 19, 0.08) 0%, rgba(7, 14, 19, 0.76) 100%);
  }

  .project-hero-content {
    width: 100%;
    padding: 86px 24px 42px;
  }

  .project-hero-content h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

  .project-hero-content p {
    font-size: 16px;
  }

  .project-showcase-card,
  .project-notes,
  .project-feature-row,
  .project-showcase-list,
  .project-contact-band,
  .blog-shell {
    grid-template-columns: 1fr;
  }

  .project-notes article:not(:last-child) {
    border-right: 0;
  }

  .project-showcase,
  .project-notes,
  .project-feature-row,
  .project-gallery,
  .other-projects,
  .project-contact-band {
    width: min(100% - 32px, 620px);
  }

  .project-showcase {
    padding-bottom: 64px;
  }

  .project-showcase-copy {
    min-height: auto;
    padding: 26px 24px 28px;
  }

  .project-showcase-image {
    min-height: 240px;
    order: -1;
  }

  .project-showcase-logo {
    width: min(210px, 84%);
  }

  .project-showcase-link {
    margin-top: 24px;
  }

  .project-showcase-copy p,
  .project-feature-row p {
    font-size: 16px;
  }

  .project-gallery-grid {
    width: min(100% - 32px, 620px);
    gap: 12px;
  }

  .project-gallery-grid figure,
  .project-gallery-grid .wide {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .project-notes {
    margin-bottom: 34px;
    padding: 0 0 18px;
  }

  .project-notes article {
    min-height: 0;
    padding: 16px 0;
    border-bottom: 0;
  }

  .project-notes article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .project-notes h3 {
    margin-top: 0;
  }

  .project-feature-row {
    padding-bottom: 66px;
  }

  .project-feature-row img {
    aspect-ratio: 4 / 3;
  }

  .project-gallery {
    padding-bottom: 66px;
  }

  .project-gallery-heading {
    display: block;
  }

  .project-showcase-list {
    gap: 28px;
  }

  .project-contact-band {
    padding: 34px 0 68px;
  }

  .project-contact-band .button {
    width: 100%;
  }

  .blog-shell {
    width: min(100% - 32px, 620px);
    gap: 46px;
    padding: 96px 0 58px;
  }

  .blog-heading h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .blog-heading p {
    font-size: 16px;
  }

  .blog-sidebar {
    padding-top: 0;
  }

  .blog-newsletter {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-logo strong {
    font-size: 24px;
  }

  .brand-logo small {
    font-size: 9px;
  }

  .hero-logo strong {
    font-size: 58px;
  }

  .hero-logo small {
    font-size: 14px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .header-tools {
    display: none;
  }

  .mobile-menu-button {
    position: fixed;
    top: 14px;
    right: 8px;
    left: auto;
    z-index: 32;
    width: 36px;
    height: 34px;
    padding: 7px;
  }

  .social-links {
    display: none;
    gap: 8px;
  }

  .social-links svg {
    width: 15px;
    height: 15px;
  }

  .language-switcher {
    gap: 8px;
  }

  .language-button {
    min-width: 24px;
    height: 20px;
    font-size: 11px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .project-copy h2 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(29px, 8.5vw, 33px);
    line-height: 1.08;
    text-align: left;
  }

  .project-copy {
    width: 100%;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
  }

  .project-copy p {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: break-word;
    text-align: left;
  }

  .project-section {
    gap: 26px;
    padding: 44px 16px 58px;
  }

  .project-carousel {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 18px;
  }

  .project-track {
    align-items: flex-start;
  }

  .project-feature {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .project-visual {
    aspect-ratio: 16 / 9;
  }

  .project-feature p {
    font-size: 15px;
    line-height: 1.55;
  }

  .project-feature-body {
    min-height: 0;
    padding: 22px 20px 30px;
  }

  .project-feature-body > span {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .project-feature h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .project-arrow-prev {
    left: -1px;
  }

  .project-arrow-next {
    right: -1px;
  }

  .project-arrow {
    top: 32%;
    width: 30px;
    height: 46px;
    background: rgba(245, 243, 239, 0.76);
  }

  .project-arrow span {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .button {
    width: 100%;
  }

  .blog-shell {
    width: min(100% - 28px, 420px);
    padding-top: 88px;
  }

  .blog-heading h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .blog-newsletter {
    padding: 22px 20px;
  }
}

@media (max-width: 430px) and (max-aspect-ratio: 9 / 19) {
  .project-section {
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .project-copy {
    max-width: 286px;
  }

  .project-copy h2 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .project-copy p {
    margin-top: 14px;
    font-size: 15px;
  }

  .project-carousel {
    max-width: 342px;
    padding: 0 14px;
  }

  .project-visual {
    aspect-ratio: 1.85 / 1;
  }

  .project-feature-body {
    padding: 20px 20px 24px;
  }

  .project-feature-body > span {
    margin-bottom: 14px;
  }

  .project-feature h3 {
    font-size: clamp(27px, 7.6vw, 32px);
  }

  .project-arrow {
    top: 31%;
  }
}
