:root {
  --ink: #20201c;
  --muted: #747064;
  --paper: #f7f2e8;
  --wash: #ebe2d3;
  --stone: #c6b9a2;
  --olive: #c9b698;
  --terracotta: #9b4f39;
  --charcoal: #151512;
  --deep-green: #d8c5a6;
  --moss: #d9cbb3;
  --clay: #b45f45;
  --white: #fffdf8;
  --line: rgba(32, 32, 28, 0.16);
  --shadow: 0 24px 80px rgba(25, 22, 18, 0.16);
}

/* Bright refinement pass */
body {
  background: #fffaf1;
}

.studio,
.gallery-carousel,
.site-footer {
  background: #f2eadb;
  color: var(--ink);
}

.studio-copy p,
.studio-copy .eyebrow,
.stats p,
.feature-strip .eyebrow,
.feature-strip p,
.site-footer p {
  color: var(--muted);
}

.studio .section-label,
.contact .section-label {
  color: var(--clay);
}

.button-link.light {
  color: var(--ink);
}

.button-link.light:hover {
  background: var(--ink);
  color: var(--white);
}

.intro,
.intro-points,
.section-start,
.project-section-title,
.service-list,
.process-steps,
.process-steps article,
.case-notes article,
.site-footer {
  border: 0;
}

.section-start,
.section-heading {
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.86fr);
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 0;
}

.section-start h2,
.section-heading h2 {
  font-size: clamp(52px, 6.4vw, 92px);
}

.section-start p,
.section-heading > p {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px;
}

.project-section + .project-section {
  margin-top: clamp(30px, 4vw, 52px);
}

.project-section-title {
  align-items: center;
  background: rgba(255, 253, 248, 0.76);
  min-height: 0;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 34px);
}

.project-section-title h3 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.95;
}

.project-grid,
.commercial-grid,
.ongoing-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ongoing-project-grid .project-card.large {
  grid-column: span 2;
}

.services {
  background: #fffdf8;
}

.service-list {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  background: #f4ecdf;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  text-align: left;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover,
.service-card.active {
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(32, 32, 28, 0.1);
  transform: translateY(-6px);
}

.service-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0;
}

.service-card p {
  font-size: 14px;
  grid-column: auto;
  line-height: 1.55;
  margin: 0;
}

.service-projects {
  background: #f6efe4;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  margin-top: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.service-projects h3 {
  font-size: clamp(34px, 4vw, 56px);
}

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

.service-project-tile {
  background: var(--white);
  display: grid;
  gap: 12px;
}

.service-project-tile img {
  aspect-ratio: 1.25 / 1;
  width: 100%;
}

.service-project-tile span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0 16px;
  text-transform: uppercase;
}

.service-project-tile h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
  padding: 0 16px 18px;
}

.feature-strip > div:not(.feature-slideshow) {
  background: #d9cbb3;
  color: var(--ink);
}

.signature-rotator {
  color: var(--ink);
  font-size: clamp(56px, 7vw, 112px);
}

.signature-static {
  color: var(--clay);
}

.contact {
  background: #efe4d2;
}

.site-nav {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-projects,
  .service-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-start,
  .section-heading,
  .service-list,
  .service-projects,
  .service-project-grid,
  .project-grid,
  .commercial-grid,
  .ongoing-project-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    background: #f2eadb;
    color: var(--ink);
  }

  .service-card {
    min-height: 0;
  }

  .project-card.large,
  .ongoing-project-grid .project-card.large {
    grid-column: auto;
  }
}

/* Final homepage polish overrides */
.studio,
.gallery-carousel,
.site-footer {
  background: #f2eadb;
  color: var(--ink);
}

.studio-copy p,
.studio-copy .eyebrow,
.stats p,
.feature-strip .eyebrow,
.feature-strip p,
.site-footer p {
  color: var(--muted);
}

.intro,
.intro-points,
.section-start,
.project-section-title,
.service-list,
.process-steps,
.process-steps article,
.case-notes article,
.site-footer {
  border: 0;
}

.section-start,
.section-heading {
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.86fr);
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 0;
}

.section-start h2,
.section-heading h2 {
  font-size: clamp(52px, 6.4vw, 92px);
}

.section-start p,
.section-heading > p {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px;
}

.project-section-title {
  background: #fffdf8;
  padding: 0;
}

.project-section-title h3 {
  font-size: clamp(42px, 5vw, 72px);
}

.project-grid,
.commercial-grid,
.ongoing-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ongoing-project-grid .project-card.large {
  grid-column: span 2;
}

.services {
  background: #fffdf8;
}

.service-list {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  background: #f4ecdf;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  text-align: left;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover,
.service-card.active {
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(32, 32, 28, 0.1);
  transform: translateY(-6px);
}

.service-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0;
}

.service-card p {
  font-size: 14px;
  grid-column: auto;
  line-height: 1.55;
  margin: 0;
}

.service-projects {
  background: #f6efe4;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  margin-top: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.service-projects h3 {
  font-size: clamp(34px, 4vw, 56px);
}

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

.service-project-tile {
  background: var(--white);
  display: grid;
  gap: 12px;
}

.service-project-tile img {
  aspect-ratio: 1.25 / 1;
  width: 100%;
}

.service-project-tile span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0 16px;
  text-transform: uppercase;
}

.service-project-tile h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
  padding: 0 16px 18px;
}

.feature-strip > div:not(.feature-slideshow) {
  background: #d9cbb3;
  color: var(--ink);
}

.signature-rotator {
  color: var(--ink);
  font-size: clamp(56px, 7vw, 112px);
}

.signature-static {
  color: var(--clay);
}

.contact {
  background: #efe4d2;
}

.site-nav {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-projects,
  .service-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-start,
  .section-heading,
  .service-list,
  .service-projects,
  .service-project-grid,
  .project-grid,
  .commercial-grid,
  .ongoing-project-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    background: #f2eadb;
    color: var(--ink);
  }

  .service-card {
    min-height: 0;
  }

  .project-card.large,
  .ongoing-project-grid .project-card.large {
    grid-column: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 1px 0 rgba(32, 32, 28, 0.08);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(20px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 240ms ease, color 240ms ease, padding 240ms ease;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  padding-block: 14px;
}

.site-header.menu-open {
  color: var(--white);
}

.brand {
  display: grid;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 0.88;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  background: currentColor;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  display: none;
  height: 32px;
  position: relative;
  width: 34px;
}

.menu-toggle span {
  background: currentColor;
  height: 1px;
  left: 3px;
  position: absolute;
  right: 3px;
  transition: transform 200ms ease, top 200ms ease;
}

.menu-toggle span:first-child {
  top: 10px;
}

.menu-toggle span:last-child {
  top: 20px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 16px;
  transform: rotate(42deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 16px;
  transform: rotate(-42deg);
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  width: 100%;
}

.hero-slideshow img {
  opacity: 0;
  transform: scale(1);
  transition: opacity 620ms ease, transform 3600ms ease;
}

.hero-slideshow img.active {
  opacity: 1;
  transform: scale(1.045);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 16, 13, 0.72), rgba(15, 16, 13, 0.18) 55%, rgba(15, 16, 13, 0.44)),
    linear-gradient(0deg, rgba(15, 16, 13, 0.4), rgba(15, 16, 13, 0));
}

.hero-property-location {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.56);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding: 8px 10px;
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  text-transform: uppercase;
  top: clamp(112px, 14vh, 150px);
  z-index: 2;
}

.hero-content {
  color: var(--white);
  display: grid;
  justify-items: start;
  min-height: 94vh;
  padding: 23vh clamp(22px, 6vw, 86px) 10vh;
  place-content: center start;
  position: relative;
  width: min(900px, 88vw);
  z-index: 1;
}

.hero .eyebrow {
  color: #fffdf8;
  margin: 10px 0 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.section-label {
  color: var(--terracotta);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(72px, 12vw, 170px);
  line-height: 0.82;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  margin-left: 0;
  max-width: 560px;
}

h2 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.96;
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero-line {
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(18px, 2vw, 25px);
  margin-left: 0;
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
}

.text-link.light {
  color: var(--white);
}

.button-link {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.13em;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
  width: fit-content;
}

.button-link.light {
  color: var(--white);
}

.button-link:hover {
  background: var(--ink);
  color: var(--white);
}

.button-link.light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.section-pad {
  padding: clamp(70px, 10vw, 135px) clamp(20px, 5vw, 72px);
}

.intro {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  padding-bottom: clamp(64px, 8vw, 104px);
  padding-top: clamp(72px, 8vw, 108px);
}

.intro-aside {
  display: grid;
  gap: 28px;
}

.intro-aside img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
}

.intro-copy {
  max-width: 1060px;
}

.intro-copy p {
  max-width: 680px;
}

.philosophy-panels {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.philosophy-panels article {
  background: rgba(255, 253, 248, 0.66);
  border-top: 2px solid var(--terracotta);
  padding: 22px;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.philosophy-panels article:hover {
  box-shadow: 0 18px 48px rgba(32, 32, 28, 0.12);
  transform: translateY(-8px);
}

.philosophy-panels span {
  color: var(--ink);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 10px;
}

.philosophy-panels p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.intro-points {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  padding-top: 22px;
}

.intro-points span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projects {
  padding-top: clamp(60px, 7vw, 92px);
}

.section-start {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.78fr);
  margin-bottom: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.section-start h2,
.section-heading h2 {
  font-size: clamp(64px, 7.2vw, 112px);
  line-height: 0.9;
  margin: 0;
  max-width: 680px;
}

.section-start p,
.section-heading > p {
  align-self: end;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  margin: 0;
  max-width: 620px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.78fr);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading .text-link {
  align-self: end;
  grid-column: 2;
}

.project-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-section {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
}

.project-section + .project-section {
  margin-top: clamp(32px, 5vw, 64px);
}

.project-section-title {
  align-items: center;
  background: rgba(255, 253, 248, 0.82);
  border-top: 0;
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 3vw, 34px);
}

.project-section-title span {
  color: var(--terracotta);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-section-title h3 {
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.95;
  margin: 0;
}

.project-section-title p {
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.45;
  margin: 0 0 0 auto;
  max-width: 420px;
}

.commercial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  background: var(--wash);
  min-height: 360px;
  overflow: hidden;
}

.project-card.large {
  grid-column: span 2;
  min-height: 440px;
}

.project-card a {
  display: grid;
  height: 100%;
  min-height: inherit;
  position: relative;
}

.project-card img {
  height: 100%;
  position: absolute;
  transition: transform 700ms ease;
  width: 100%;
}

.project-card a::after {
  background: linear-gradient(0deg, rgba(16, 15, 12, 0.78), rgba(16, 15, 12, 0.04) 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.project-card div {
  align-self: end;
  color: var(--white);
  padding: 28px;
  position: relative;
  z-index: 1;
}

.project-card p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 0;
}

.project-card:hover img {
  transform: scale(1.05);
}

.studio {
  background:
    linear-gradient(135deg, rgba(248, 239, 224, 0.98), rgba(216, 197, 166, 0.94)),
    var(--deep-green);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  padding-bottom: clamp(54px, 6vw, 86px);
  padding-top: clamp(54px, 6vw, 86px);
}

.studio-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  width: 100%;
}

.studio-slideshow {
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  position: relative;
}

.studio-slideshow img {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1600ms ease;
}

.studio-slideshow img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.studio-copy {
  align-self: center;
  max-width: 820px;
}

.studio-copy p,
.studio-copy .eyebrow {
  color: #625a4d;
}

.stats {
  border-top: 1px solid rgba(32, 32, 28, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  padding-top: 28px;
}

.button-link.studio-cta {
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  margin-top: 18px;
}

.button-link.studio-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.stats span,
.service-list span,
.process-grid span,
.process-steps span,
.case-notes span {
  color: var(--terracotta);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
}

.stats p {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.94;
  margin: 0;
}

.services {
  background: var(--white);
}

.ongoing {
  background: var(--wash);
}

.ongoing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ongoing-card {
  background: var(--white);
  display: grid;
  grid-template-rows: minmax(320px, 0.92fr) auto;
}

.ongoing-card img {
  aspect-ratio: 1.28 / 1;
  height: 100%;
  width: 100%;
}

.ongoing-card > div {
  padding: clamp(28px, 4vw, 46px);
}

.ongoing-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 16px;
}

.ongoing-card .text-link {
  margin-top: 14px;
}

.service-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list div {
  background: var(--paper);
  border-bottom: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 230px;
  padding: 30px;
}

.service-list h3 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0;
}

.service-list p {
  grid-column: 2;
  margin: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 500px;
}

.feature-strip img {
  height: 100%;
  width: 100%;
}

.feature-slideshow {
  min-height: clamp(420px, 48vw, 640px);
  overflow: hidden;
  position: relative;
}

.feature-slideshow img {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.035);
  transition: opacity 620ms ease, transform 2600ms ease;
}

.feature-slideshow img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.feature-strip > div:not(.feature-slideshow) {
  align-content: center;
  background: var(--moss);
  color: var(--white);
  display: grid;
  min-height: clamp(360px, 38vw, 500px);
  padding: clamp(40px, 6vw, 72px);
}

.signature-static {
  display: block;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.signature-rotator {
  color: var(--white);
  display: block;
  min-height: 1em;
}

.signature-rotator.pulse {
  animation: wordFlash 420ms ease;
}

@keyframes wordFlash {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

.feature-strip .eyebrow,
.feature-strip p {
  color: rgba(255, 253, 248, 0.74);
}

.process {
  background: var(--paper);
}

.process-showcase {
  display: grid;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
}

.process-horizontal {
  grid-template-columns: 1fr;
  margin-inline: auto;
  max-width: 1080px;
}

.process-horizontal > img {
  aspect-ratio: 1 / 1;
}

.process-showcase > img {
  aspect-ratio: 4 / 5;
  height: 100%;
  width: 100%;
}

.process-steps {
  align-self: center;
  border-top: 1px solid var(--line);
}

.process-steps article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 72px minmax(220px, 0.42fr) minmax(220px, 1fr);
  padding: 26px 0;
}

.process-steps span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-steps h3 {
  font-size: clamp(30px, 3.5vw, 46px);
  margin: 0;
}

.process-steps p {
  margin: 0;
}

.case-notes {
  background: var(--wash);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-notes-heading {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

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

.case-notes article {
  border-left: 1px solid rgba(32, 32, 28, 0.2);
  padding-left: 28px;
}

.case-notes h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
}

.gallery-carousel {
  background: var(--charcoal);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.gallery-label {
  background: rgba(255, 253, 248, 0.94);
  left: clamp(20px, 5vw, 72px);
  padding: 18px 20px 0;
  position: absolute;
  top: clamp(20px, 4vw, 42px);
  z-index: 2;
}

.gallery-label .section-label {
  margin: 0;
}

.carousel-track {
  display: flex;
  height: 620px;
  transform: translateX(0);
  transition: transform 520ms ease;
  will-change: transform;
}

.carousel-slide {
  color: var(--white);
  flex: 0 0 34vw;
  min-width: 360px;
  overflow: hidden;
  position: relative;
}

.carousel-slide::after {
  background: linear-gradient(0deg, rgba(14, 13, 10, 0.72), rgba(14, 13, 10, 0.02) 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.carousel-slide img {
  height: 100%;
  transition: transform 700ms ease;
  width: 100%;
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.carousel-slide div {
  bottom: 28px;
  left: 28px;
  max-width: calc(100% - 56px);
  position: absolute;
  z-index: 1;
}

.carousel-slide p {
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.carousel-slide h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin: 0;
}

.carousel-controls {
  bottom: 28px;
  display: flex;
  gap: 12px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  z-index: 3;
}

.carousel-button {
  background: rgba(255, 253, 248, 0.92);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

.carousel-button:hover {
  background: var(--terracotta);
  color: var(--white);
}

.enquiry {
  background: #fffaf1;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(58px, 7vw, 92px);
  padding-top: clamp(62px, 8vw, 110px);
}

.enquiry-wrap {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.enquiry .section-heading {
  align-items: end;
  gap: clamp(44px, 7vw, 112px);
  grid-template-columns: minmax(340px, 0.78fr) minmax(360px, 0.82fr);
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.enquiry .section-heading h2 {
  font-size: clamp(60px, 6.7vw, 104px);
  line-height: 0.92;
  max-width: 520px;
}

.enquiry .section-heading > p {
  align-self: center;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
  max-width: 540px;
}

.enquiry-copy {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(242, 234, 219, 0.96)),
    var(--paper);
  display: grid;
  gap: 16px;
  margin-left: clamp(0px, 4vw, 76px);
  max-width: 820px;
  min-height: 330px;
  padding: clamp(34px, 4vw, 56px);
}

.enquiry-copy h3 {
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 0.95;
  margin: 0;
  max-width: 760px;
}

.enquiry-copy p {
  max-width: 620px;
}

.enquiry-button {
  background: var(--ink);
  color: var(--white);
  margin-top: 8px;
}

.enquiry-button:hover {
  background: var(--clay);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.contact {
  background:
    linear-gradient(135deg, rgba(235, 226, 211, 0.98), rgba(198, 185, 162, 0.86)),
    var(--wash);
  color: var(--white);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.contact .eyebrow,
.contact p {
  color: var(--muted);
}

.contact .section-label,
.studio .section-label {
  color: var(--clay);
}

.contact h2,
.contact-card a {
  color: var(--ink);
}

.contact-card {
  align-self: end;
  border-top: 1px solid rgba(32, 32, 28, 0.2);
  display: grid;
  gap: 16px;
  padding-top: 26px;
}

.contact-card a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.site-footer {
  align-items: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
  margin: 0;
}

.project-page {
  background: var(--white);
}

.project-page .site-header {
  color: var(--ink);
}

.project-detail-hero {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  min-height: 88vh;
  padding: 140px clamp(20px, 5vw, 72px) clamp(48px, 8vw, 90px);
}

.project-detail-hero > div {
  align-self: end;
}

.project-detail-hero .text-link {
  margin-bottom: clamp(54px, 9vw, 118px);
}

.project-detail-hero h1 {
  color: var(--ink);
  font-size: clamp(58px, 9vw, 132px);
  max-width: 820px;
}

.project-detail-hero p:not(.eyebrow) {
  font-size: clamp(18px, 2vw, 24px);
  max-width: 620px;
}

.project-detail-hero img {
  align-self: stretch;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 520px;
  width: 100%;
}

.project-meta {
  background: var(--charcoal);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 0;
}

.project-meta div {
  border-left: 1px solid rgba(255, 253, 248, 0.14);
  min-height: 220px;
  padding: clamp(28px, 4vw, 52px);
}

.project-meta span {
  color: var(--stone);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.project-meta p {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  margin: 0;
}

.project-story {
  background: var(--wash);
}

.project-story h2 {
  max-width: 1050px;
}

.project-gallery {
  background: var(--white);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.project-gallery figure {
  margin: 0;
}

.project-gallery figure.wide {
  grid-column: span 2;
}

.project-gallery img {
  aspect-ratio: 1 / 1.15;
  background: var(--wash);
  height: 100%;
  width: 100%;
}

.project-gallery figure.wide img {
  aspect-ratio: 1.55 / 1;
}

.project-next {
  align-items: center;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .section-heading,
  .section-start,
  .intro,
  .studio,
  .feature-strip,
  .enquiry-wrap,
  .contact,
  .project-detail-hero {
    grid-template-columns: 1fr;
  }

  .section-heading .text-link {
    grid-column: auto;
  }

  .project-grid,
  .commercial-grid,
  .ongoing-grid,
  .case-notes,
  .project-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.large {
    grid-column: span 1;
  }

  .service-list div {
    grid-template-columns: 70px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }

  .process-showcase,
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy-panels,
  .service-list {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    grid-template-columns: 56px 1fr;
  }

  .process-steps p {
    grid-column: 2;
  }

  .project-detail-hero img {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 20px;
  }

  .menu-toggle {
    display: block;
    z-index: 22;
  }

  .site-nav {
    background: var(--charcoal);
    color: var(--white);
    display: grid;
    gap: 22px;
    inset: 0 0 auto auto;
    min-height: 100vh;
    padding: 98px 28px 40px;
    position: fixed;
    transform: translateX(100%);
    transition: transform 240ms ease;
    width: min(78vw, 340px);
  }

  .site-nav.open {
    transform: translateX(0);
  }

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

  .hero-content {
    padding-top: 26vh;
  }

  .intro-aside img {
    max-width: none;
  }

  h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .project-grid,
  .commercial-grid,
  .ongoing-grid,
  .case-notes,
  .process-showcase,
  .process-horizontal,
  .stats,
  .project-meta,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .philosophy-panels,
  .service-list,
  .section-start,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-start h2,
  .section-heading h2 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .project-detail-hero {
    min-height: 0;
    padding-top: 118px;
  }

  .project-detail-hero .text-link {
    margin-bottom: 48px;
  }

  .project-detail-hero img {
    min-height: 360px;
  }

  .project-meta div {
    min-height: 0;
  }

  .project-gallery figure.wide {
    grid-column: auto;
  }

  .project-gallery figure.wide img,
  .project-gallery img {
    aspect-ratio: 1 / 1.08;
  }

  .project-next {
    align-items: flex-start;
    display: grid;
    gap: 28px;
  }

  .project-card,
  .project-card a {
    min-height: 390px;
  }

  .project-card.large {
    grid-column: auto;
    min-height: 390px;
  }

  .project-section-title {
    align-items: flex-start;
    display: grid;
    gap: 10px;
  }

  .project-section-title p {
    margin-left: 0;
    max-width: none;
  }

  .process-steps article {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .process-steps p {
    grid-column: auto;
  }

  .service-list div {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }

  .service-list p {
    grid-column: auto;
  }

  .feature-strip {
    min-height: 0;
  }

  .feature-strip img {
    aspect-ratio: 1 / 1;
  }

  .gallery-carousel {
    min-height: 540px;
  }

  .carousel-track {
    height: 540px;
  }

  .carousel-slide {
    flex-basis: 82vw;
    min-width: 280px;
  }

  .carousel-controls {
    bottom: 18px;
    left: 20px;
    right: auto;
  }

  .site-footer {
    align-items: flex-start;
    display: grid;
    gap: 18px;
  }
}

/* Responsive fit pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1180px) {
  .project-grid,
  .commercial-grid,
  .ongoing-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-detail-hero img {
    min-height: clamp(420px, 62vw, 620px);
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 18px clamp(18px, 5vw, 34px);
  }

  .menu-toggle {
    display: block;
    z-index: 22;
  }

  .site-header.menu-open {
    color: var(--ink);
  }

  .site-nav {
    background: rgba(255, 250, 241, 0.98);
    box-shadow: -18px 0 48px rgba(32, 32, 28, 0.12);
    color: var(--ink);
    display: grid;
    align-content: start;
    gap: 18px;
    inset: 0 0 auto auto;
    min-height: 100vh;
    padding: 88px 28px 40px;
    position: fixed;
    transform: translateX(100%);
    transition: transform 240ms ease;
    width: min(82vw, 360px);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .intro,
  .studio,
  .feature-strip,
  .process-showcase,
  .process-horizontal,
  .contact {
    grid-template-columns: 1fr;
  }

  .studio-slideshow {
    min-height: clamp(340px, 72vw, 500px);
  }

  .feature-strip {
    min-height: 0;
  }

  .feature-strip > div:not(.feature-slideshow) {
    min-height: 0;
    padding: clamp(36px, 10vw, 58px) clamp(20px, 7vw, 34px);
  }

  .feature-strip img {
    aspect-ratio: 1.25 / 1;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: clamp(48px, 12vw, 76px) clamp(16px, 5vw, 24px);
  }

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

  .hero-content {
    padding: 22vh 20px 9vh;
    width: 100%;
  }

  .hero-property-location {
    font-size: 9px;
    letter-spacing: 0.08em;
    max-width: 44vw;
    padding: 7px 9px;
    right: 14px;
    text-align: right;
    top: 92px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 66px);
    max-width: 92vw;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 46px);
    max-width: 68vw;
  }

  h2,
  .section-start h2,
  .section-heading h2 {
    font-size: clamp(48px, 13vw, 72px);
    line-height: 0.92;
  }

  .section-start,
  .section-heading,
  .project-grid,
  .commercial-grid,
  .ongoing-project-grid,
  .service-list,
  .service-projects,
  .service-project-grid,
  .philosophy-panels,
  .stats,
  .case-notes,
  .project-meta,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .section-start,
  .section-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-start p,
  .section-heading > p {
    font-size: 16px;
  }

  .project-section-title {
    align-items: flex-start;
    display: grid;
    gap: 8px;
    padding: 18px;
  }

  .project-section-title h3 {
    font-size: clamp(36px, 13vw, 56px);
  }

  .project-section-title p {
    margin-left: 0;
    max-width: none;
  }

  .project-card,
  .project-card a,
  .project-card.large,
  .ongoing-project-grid .project-card.large {
    grid-column: auto;
    min-height: 340px;
  }

  .service-projects,
  .enquiry-copy {
    padding: 28px 20px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .service-card h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .process-steps article {
    gap: 8px;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .process-steps p,
  .service-list p {
    grid-column: auto;
  }

  .contact-card a {
    font-size: clamp(24px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .project-detail-hero {
    padding: 112px 18px 52px;
  }

  .project-detail-hero h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .project-detail-hero img {
    min-height: 360px;
  }

  .project-meta {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 24px;
  }

  .stats {
    gap: 16px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .stats span {
    margin-bottom: 6px;
  }

  .stats p {
    font-size: clamp(28px, 10vw, 42px);
  }

  .hero-actions {
    align-items: stretch;
    display: grid;
    gap: 12px;
  }

  .site-nav {
    gap: 14px;
    padding: 78px 24px 32px;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .button-link,
  .text-link {
    width: 100%;
  }

  .button-link {
    min-height: 48px;
  }

  .studio-slideshow,
  .carousel-track,
  .gallery-carousel {
    min-height: 380px;
  }

  .carousel-track {
    height: 460px;
  }

  .carousel-slide {
    flex-basis: 86vw;
    min-width: 260px;
  }

  .project-card,
  .project-card a,
  .project-card.large,
  .ongoing-project-grid .project-card.large {
    min-height: 300px;
  }

  .enquiry-copy h3 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .contact {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .enquiry {
    gap: 22px;
    padding-bottom: clamp(46px, 10vw, 68px);
    padding-top: clamp(48px, 11vw, 76px);
  }

  .enquiry .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    margin-bottom: 0;
    max-width: 760px;
  }

  .enquiry .section-heading h2 {
    font-size: clamp(52px, 13vw, 86px);
    max-width: 620px;
  }

  .enquiry .section-heading > p {
    font-size: clamp(17px, 4vw, 22px);
    max-width: 620px;
  }

  .enquiry-wrap {
    max-width: 760px;
  }

  .enquiry-copy {
    margin-left: 0;
    min-height: 0;
    padding: clamp(26px, 6vw, 42px);
  }
}

@media (max-width: 560px) {
  .enquiry .section-heading h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .enquiry-copy h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .enquiry-copy p {
    font-size: 15px;
  }
}
