@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --canvas: #f3f3f1;
  --paper: #fbfbfa;
  --ink: #101918;
  --body: #6d6d6a;
  --muted: #b7b7b4;
  --brand: #236f65;
  --brand-dark: #175a52;
  --radius: 18px;
  --selected-hero-height: 760px;
  --gallery-hero-image-height: 430px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
em,
strong {
  text-wrap: pretty;
}

.shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: none;
}

.topbar {
  height: 66px;
  display: grid;
  grid-template-columns: 270px 1fr 160px;
  align-items: center;
  padding: 0 40px;
  background: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.mark {
  width: 48px;
  height: 28px;
  background:
    linear-gradient(45deg, transparent 0 26%, var(--brand) 26% 42%, transparent 42% 55%, var(--brand) 55% 71%, transparent 71%),
    linear-gradient(90deg, var(--brand), var(--brand));
  clip-path: polygon(0 0, 78% 0, 100% 100%, 20% 100%);
}

.nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  font-size: 16px;
  font-weight: 600;
}

.nav a.active,
.mobile-panel a.active {
  color: var(--brand);
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f0eb;
  cursor: pointer;
}

.hamburger svg {
  width: 21px;
  height: 21px;
}

.mobile-panel {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(35, 40, 28, 0.12);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 56%),
    var(--brand);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 18px rgba(35, 40, 28, 0.1);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .pill:hover {
    transform: translateY(-1px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 56%),
      var(--brand-dark);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.16),
      0 11px 22px rgba(35, 40, 28, 0.14);
  }
}

.pill:active {
  transform: scale(0.96);
}

.pill:focus-visible {
  outline: 3px solid rgba(93, 90, 61, 0.28);
  outline-offset: 4px;
}

.topbar .pill {
  justify-self: end;
  align-self: center;
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 6px 14px rgba(35, 40, 28, 0.09);
}

.hero-actions .pill,
.cta-content .pill,
.more-wrap .pill {
  min-height: 46px;
  padding-inline: 26px;
  font-size: 16px;
}

.hero {
  position: relative;
  height: 830px;
  overflow: hidden;
}

.hero::after,
.cta-banner::after,
.project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero h1 {
  position: absolute;
  z-index: 2;
  left: 110px;
  right: 110px;
  top: 118px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(58px, 5.6vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 46px;
  align-items: center;
  padding: 70px 52px 88px;
  color: #bebebb;
  font-size: 34px;
  font-weight: 800;
}

.logos span {
  text-align: center;
  opacity: 0.84;
}

.section {
  padding: 68px 40px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 84px;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(46px, 3.8vw, 62px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 42px 0 38px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.55;
}

.about-collage {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 26px;
  align-items: stretch;
}

.about-collage .tall {
  min-height: 575px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-stack {
  display: grid;
  gap: 26px;
}

.about-stack .tile {
  min-height: 275px;
  border-radius: var(--radius);
  overflow: hidden;
}

.center-intro {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-intro .eyebrow { margin-bottom: 22px; }
.center-intro p {
  margin: 34px auto 0;
  max-width: 620px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.55;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 40px;
}

.style-card img {
  height: 470px;
  border-radius: var(--radius);
}

.style-card h3 {
  margin: 26px 0 12px;
  font-size: 39px;
  line-height: 1.08;
}

.style-card p {
  margin: 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.45;
}

.project-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
  align-items: end;
  padding-top: 56px;
}

.project-head p {
  color: var(--body);
  font-size: 20px;
  line-height: 1.5;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

.mosaic-col {
  display: grid;
  gap: 24px;
}

.mosaic .tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 16px 34px rgba(35, 40, 28, 0.08);
}

.project-card {
  position: relative;
  min-height: 40px;
  color: #fff;
  transform: translateZ(0);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.project-card img {
  transition: transform 360ms var(--ease-out), filter 360ms var(--ease-out);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 14, 10, 0.02), rgba(12, 14, 10, 0.18) 42%, rgba(12, 14, 10, 0.74)),
    linear-gradient(90deg, rgba(12, 14, 10, 0.25), transparent 62%);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.project-card .caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  color: #fff;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(14px);
  transition: opacity 220ms var(--ease-out), filter 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.caption strong {
  display: block;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.06;
}

.caption span {
  display: block;
  font-size: 17px;
}

.caption em {
  display: block;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.38;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px);
  transition: opacity 220ms var(--ease-out), filter 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.project-card:focus-visible {
  outline: 3px solid rgba(93, 90, 61, 0.34);
  outline-offset: 5px;
}

.project-card:active {
  transform: scale(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover,
  .project-card:focus-visible {
    transform: scale(1.025);
    box-shadow: 0 26px 64px rgba(35, 40, 28, 0.17);
  }

  .project-card:hover img,
  .project-card:focus-visible img {
    transform: scale(1.06);
    filter: saturate(0.96) contrast(1.05);
  }

  .project-card:hover::after,
  .project-card:focus-visible::after,
  .project-card.is-revealed::after {
    opacity: 1;
  }

  .project-card:hover .caption,
  .project-card:focus-visible .caption,
  .project-card.is-revealed .caption {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .project-card:hover .caption em,
  .project-card:focus-visible .caption em,
  .project-card.is-revealed .caption em {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.project-card.is-revealed {
  box-shadow: 0 26px 64px rgba(35, 40, 28, 0.17);
}

.project-card.is-revealed img {
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1.05);
}

.project-card.is-revealed::after {
  opacity: 1;
}

.project-card.is-revealed .caption {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.project-card.is-revealed .caption em {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.more-wrap {
  display: flex;
  justify-content: center;
  padding: 46px 0 90px;
}

.testimonial {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 32px;
  align-items: stretch;
  padding-bottom: 122px;
}

.testimonial-image,
.testimonial-card {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-card {
  padding: 52px 52px 42px;
  background: #fff;
}

.review-stars {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--brand);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 1.8;
}

.testimonial-card h2 {
  font-size: clamp(52px, 4.7vw, 72px);
  transition: opacity 180ms var(--ease-out), filter 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.quote {
  margin: 34px 0;
  color: var(--body);
  font-size: 20px;
  line-height: 1.5;
  transition: opacity 180ms var(--ease-out), filter 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.testimonial-card.is-changing h2,
.testimonial-card.is-changing .quote,
.testimonial-card.is-changing .author-name,
.testimonial-card.is-changing .avatar {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px);
}

.author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8b69b, #456f65);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  transition: opacity 180ms var(--ease-out), filter 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.author-name {
  flex: 1;
  font-weight: 800;
  transition: opacity 180ms var(--ease-out), filter 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.author-name strong {
  display: block;
}

.author-name span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 500;
}

.arrows {
  display: flex;
  gap: 14px;
}

.arrow {
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #d6d6d3;
  color: var(--body);
  background: transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.arrow svg {
  width: 17px;
  height: 17px;
}

.arrow:active {
  transform: scale(0.96);
}

.arrow:focus-visible {
  outline: 3px solid rgba(93, 90, 61, 0.26);
  outline-offset: 3px;
}

.arrow.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.cta-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
}

.cta-banner img {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 32px;
  max-width: 1080px;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(46px, 4.8vw, 76px);
  font-weight: 500;
}

.footer {
  padding: 70px 40px 34px;
  background: #fbfbfa;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.footer p {
  color: var(--body);
  font-size: 19px;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: #c5c5c2;
  font-weight: 800;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-nav {
  justify-self: end;
  display: flex;
  gap: 38px;
  font-size: 18px;
  font-weight: 700;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #d9d9d6;
  color: #555;
}

.legal div {
  display: flex;
  gap: 28px;
}

.variant-b { --brand: #5d5a3d; --brand-dark: #46442f; }
.selected-b { --brand: #5d5a3d; --brand-dark: #46442f; --paper: #fbfaf7; }
.variant-c { --brand: #295f56; --brand-dark: #1e4943; }
.variant-d { --brand: #6d553d; --brand-dark: #51402e; }
.variant-e { --brand: #4c665d; --brand-dark: #394d47; }

.hero-panel,
.hero-mood-copy,
.mood-board,
.hero-notes {
  position: relative;
  z-index: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(93, 90, 61, 0.12);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

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

@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    transform: translateY(-1px);
    border-color: rgba(93, 90, 61, 0.22);
    background: #fff;
  }
}

.hero-plan {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  height: var(--selected-hero-height);
  background: #eeeae1;
}

.hero-plan::after {
  content: none;
}

.hero-plan > img {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding: 74px 58px 74px 64px;
}

.hero-panel .eyebrow {
  margin-bottom: 24px;
}

.hero-panel h1 {
  position: static;
  margin: 0;
  color: var(--ink);
  text-align: left;
  font-size: clamp(50px, 4.3vw, 72px);
  font-weight: 800;
  line-height: 1.03;
}

.hero-panel p:not(.eyebrow) {
  max-width: 500px;
  margin: 34px 0 34px;
  color: var(--body);
  font-size: 21px;
  line-height: 1.48;
}

.hero-notes {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}

.hero-notes span,
.mood-board span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-plan {
  grid-template-columns: 0.84fr 1.16fr;
  background: #fbfaf7;
}

.plan-list {
  display: grid;
  gap: 12px;
  max-width: 580px;
  margin-top: 38px;
}

.plan-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 78px;
  padding: 18px 0;
  border-top: 1px solid #d8d2c6;
}

.plan-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--brand);
  background: #f1efe8;
  box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.12);
}

.plan-badge svg {
  width: 19px;
  height: 19px;
}

.plan-badge em {
  margin-top: -2px;
  color: var(--body);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.plan-list strong {
  display: block;
  font-size: 20px;
}

.plan-list article > div > span {
  display: block;
  margin-top: 7px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.45;
}

.variant-b .category-plan .style-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.variant-b .category-plan .style-card img {
  height: 335px;
}

.variant-b .category-plan .style-card h3 {
  font-size: 30px;
}

.variant-b .projects-plan {
  background: #eeeae1;
  padding-left: 56px;
  padding-right: 56px;
}

.hero-mood {
  height: 850px;
}

.hero-mood::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.34));
}

.hero-mood-copy {
  position: absolute;
  left: 72px;
  bottom: 78px;
  max-width: 780px;
  color: #fff;
}

.hero-mood-copy .eyebrow {
  margin-bottom: 22px;
  color: #fff;
}

.hero-mood-copy h1 {
  position: static;
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: clamp(64px, 6.3vw, 104px);
  line-height: 1.01;
}

.hero-mood-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.5;
}

.mood-board {
  position: absolute;
  right: 48px;
  top: 58px;
  display: grid;
  gap: 12px;
}

.variant-c .about-mood {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
}

.variant-c .about-mood .about-collage {
  order: -1;
}

.variant-c .category-mood {
  background: #f2f4ef;
}

.variant-c .category-mood .style-grid {
  gap: 34px 28px;
}

.variant-c .category-mood .style-card {
  position: relative;
}

.variant-c .category-mood .style-card:nth-child(2),
.variant-c .category-mood .style-card:nth-child(3) {
  margin-top: 44px;
}

.variant-c .projects-mood .mosaic {
  grid-template-columns: 1.1fr 0.86fr 1fr;
  gap: 30px;
}

.variant-c .testimonial-mood {
  grid-template-columns: 0.88fr 1.12fr;
}

.variant-c .testimonial-mood .testimonial-image {
  order: 2;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  height: var(--selected-hero-height);
  background: #eeeae1;
}

.about-hero-copy,
.services-hero-copy {
  align-self: center;
  padding: 74px 64px;
}

.about-hero-copy h1,
.services-hero-copy h1 {
  margin: 0;
  font-size: clamp(50px, 4.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.gallery-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 3.6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-hero-copy p,
.services-hero-copy p,
.gallery-hero > div > p {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--body);
  font-size: 21px;
  line-height: 1.5;
}

.about-hero-media {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 22px;
  padding: 48px;
}

.about-hero-media .tall,
.about-hero-media .about-stack .tile,
.services-hero-image,
.gallery-hero-grid > div,
.page-card img {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-hero-media .tall {
  min-height: 610px;
}

.about-hero-media .about-stack {
  display: grid;
  gap: 22px;
}

.about-hero-media .about-stack .tile {
  min-height: 294px;
}

.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 34px;
}

.method-section {
  padding-top: 38px;
}

.stat-row,
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.stat,
.icon-card,
.service-mini {
  padding: 28px;
  border-radius: var(--radius);
  background: #f1efe8;
}

.stat {
  min-height: 154px;
}

.stat svg {
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  color: var(--brand);
}

.stat strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.stat span,
.icon-card p,
.service-mini p {
  display: block;
  margin-top: 12px;
  color: var(--body);
  line-height: 1.45;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.icon-card svg,
.service-mini svg {
  width: 28px;
  height: 28px;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.1);
}

.icon-card h3,
.service-mini h3 {
  margin: 22px 0 0;
  font-size: 27px;
  line-height: 1.08;
}

.gallery-hero {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 64px;
  align-items: center;
  height: var(--selected-hero-height);
  min-height: var(--selected-hero-height);
  padding: 72px 64px;
  background: #eeeae1;
}

.gallery-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  gap: 24px;
  align-items: end;
}

.gallery-hero-grid > div:nth-child(1),
.gallery-hero-grid > div:nth-child(2),
.gallery-hero-grid > div:nth-child(3) {
  height: var(--gallery-hero-image-height);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gallery-filter span {
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.page-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}

.page-card img {
  height: 100%;
}

.page-card h3 {
  margin: 0;
  font-size: 30px;
}

.page-card p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.45;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  min-height: var(--selected-hero-height);
  padding: 64px;
  background: #eeeae1;
}

.project-detail-copy h1 {
  margin: 0;
  font-size: clamp(50px, 4.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.project-detail-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 20px;
  line-height: 1.5;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.project-meta span {
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-detail-copy .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(168px, 206px));
  align-items: center;
  gap: 12px;
  max-width: 424px;
  margin-top: 18px;
}

.project-detail-copy .hero-actions .pill,
.project-detail-copy .hero-actions .text-link {
  width: 100%;
  min-height: 46px;
  padding-inline: 18px;
  line-height: 1;
  white-space: nowrap;
}

.project-detail-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: 0 24px 64px rgba(35, 40, 28, 0.11);
}

.project-detail-body {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.project-detail-body p {
  margin: 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.6;
}

.services-hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  height: var(--selected-hero-height);
  min-height: var(--selected-hero-height);
  background: #eeeae1;
}

.services-hero-image {
  margin: 48px 48px 48px 0;
}

.services-hero-copy {
  padding: 50px 64px 44px;
}

.services-hero-copy h1 {
  font-size: clamp(48px, 3.8vw, 64px);
}

.services-hero-copy p {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.44;
}

.service-menu {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.07);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.service-row svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
}

.service-row > svg:first-child {
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: #f1efe8;
}

.service-row > svg:last-child {
  justify-self: end;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.service-row > span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.service-row strong {
  display: block;
  font-size: 20px;
  line-height: 1.18;
}

.service-row span {
  color: var(--body);
}

.service-row em {
  display: block;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .service-row:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.12), 0 14px 30px rgba(35, 40, 28, 0.08);
  }
}

.about-collage .tall,
.about-stack .tile,
.style-card img,
.mosaic .tile,
.testimonial-image,
.cta-banner img,
.about-hero-media .tall,
.about-hero-media .about-stack .tile,
.services-hero-image,
.gallery-hero-grid > div,
.page-card img {
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  min-height: var(--selected-hero-height);
  padding: 76px 64px;
  background: #eeeae1;
}

.contact-copy h1 {
  margin: 0;
  font-size: clamp(50px, 4.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: 21px;
  line-height: 1.5;
}

.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.09), 0 22px 60px rgba(35, 40, 28, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(93, 90, 61, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

.dropdown-field {
  position: relative;
}

.room-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(93, 90, 61, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

.room-select-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--brand);
  transition: transform 160ms var(--ease-out);
}

.dropdown-field.is-open .room-select-trigger,
.room-select-trigger:focus-visible {
  border-color: rgba(93, 90, 61, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(93, 90, 61, 0.1);
}

.dropdown-field.is-open .room-select-trigger svg {
  transform: rotate(180deg);
}

.room-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: grid;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(93, 90, 61, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 40, 28, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.dropdown-field.is-open .room-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.room-select-menu button {
  min-height: 40px;
  border: 0;
  border-radius: 11px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.room-select-menu button:hover,
.room-select-menu button:focus-visible,
.room-select-menu button[aria-selected="true"] {
  background: #f1efe8;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(93, 90, 61, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(93, 90, 61, 0.1);
}

.contact-form > button {
  border: 0;
  cursor: pointer;
}

.demo-note {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.5;
}

.emil-experiment {
  --paper: #f8f5ed;
}

.emil-experiment .topbar {
  border-bottom: 1px solid rgba(93, 90, 61, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.emil-experiment .hero-plan {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.7), transparent 34%),
    #eeeae1;
}

.emil-experiment .hero-plan > img,
.emil-experiment .services-hero-image img,
.emil-experiment .gallery-hero-grid img {
  filter: saturate(0.92) contrast(1.03);
}

.emil-experiment .style-card,
.emil-experiment .service-mini,
.emil-experiment .testimonial-card {
  box-shadow: inset 0 0 0 1px rgba(93, 90, 61, 0.07);
}

.emil-experiment .style-card img,
.emil-experiment .mosaic .tile,
.emil-experiment .service-row {
  box-shadow: 0 20px 52px rgba(35, 40, 28, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .emil-experiment .style-card img,
  .emil-experiment .mosaic .tile,
  .emil-experiment .page-card img {
    transition: transform 360ms var(--ease-out), filter 360ms var(--ease-out);
  }

  .emil-experiment .style-card:hover img,
  .emil-experiment .mosaic .tile:hover,
  .emil-experiment .page-card:hover img {
    transform: translateY(-4px);
    filter: saturate(0.98) contrast(1.04);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  transition-duration: 360ms;
  transition-timing-function: var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.process-timeline {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid #d8d2c6;
}

.process-step span {
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.process-step p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .shell { width: 100%; margin: 0; }
  .topbar { grid-template-columns: minmax(0, 1fr) auto auto; height: auto; gap: 10px; padding: 14px; }
  .topbar .pill { width: 108px; min-height: 36px; padding: 0 12px; font-size: 12px; }
  .logo { gap: 8px; font-size: 17px; }
  .mark { width: 34px; height: 20px; }
  .nav { display: none; }
  .hamburger { display: grid; width: 36px; height: 36px; }
  .mobile-panel {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0 4px;
    font-size: 20px;
    font-weight: 800;
  }
  .menu-toggle:checked ~ .mobile-panel {
    display: grid;
  }
  .hero { height: 620px; }
  .hero h1 { left: 24px; right: 24px; top: 120px; font-size: 42px; }
  .logos { grid-template-columns: repeat(2, 1fr); font-size: 25px; padding: 44px 24px; }
  .section { padding: 54px 24px; }
  .about, .style-grid, .project-head, .testimonial, .footer-main { grid-template-columns: 1fr; }
  .about-collage { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; gap: 18px; }
  h2 { font-size: 38px; }
  .style-card img { height: 330px; }
  .footer-nav { justify-self: start; flex-wrap: wrap; }
  .legal { flex-direction: column; }
  .hero-plan { display: flex; flex-direction: column; height: auto; }
  .hero-plan > img { order: 2; height: 390px; }
  .hero-panel { order: 1; padding: 42px 24px 36px; }
  .hero-panel h1, .hero-mood-copy h1 { font-size: 38px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .pill,
  .hero-actions .text-link {
    width: 100%;
    max-width: 342px;
  }
  .hero-notes { order: 3; position: static; grid-template-columns: 1fr; padding: 0 24px 34px; }
  .hero-notes span, .mood-board span { width: max-content; }
  .hero-mood { height: 640px; }
  .hero-mood-copy { left: 24px; right: 24px; bottom: 38px; }
  .mood-board { right: 20px; top: 20px; }
  .variant-b .category-plan .style-grid,
  .variant-c .projects-mood .mosaic,
  .variant-c .testimonial-mood,
  .variant-c .about-mood {
    grid-template-columns: 1fr;
  }
  .variant-c .category-mood .style-card:nth-child(2),
  .variant-c .category-mood .style-card:nth-child(3) {
    margin-top: 0;
  }
  .about-hero,
  .story-band,
  .stat-row,
  .icon-grid,
  .gallery-hero,
  .gallery-list,
  .project-detail-hero,
  .project-detail-body,
  .services-hero,
  .service-strip {
    grid-template-columns: 1fr;
  }
  .about-hero,
  .gallery-hero,
  .project-detail-hero,
  .services-hero {
    height: auto;
    min-height: 0;
  }
  .about-hero-copy,
  .services-hero-copy {
    padding: 44px 24px;
  }
  .about-hero-copy h1,
  .services-hero-copy h1,
  .gallery-hero h1 {
    font-size: 38px;
  }
  .about-hero-media {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .about-hero-media .tall,
  .about-hero-media .about-stack .tile,
  .gallery-hero-grid > div,
  .page-card img,
  .services-hero-image {
    height: 330px;
    min-height: 0;
  }
  .page-card {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .project-detail-hero {
    padding: 44px 24px;
  }
  .project-detail-copy {
    text-align: center;
  }
  .project-detail-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }
  .project-meta {
    justify-content: center;
  }
  .project-detail-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }
  .project-detail-copy .hero-actions .pill {
    width: 100%;
    min-height: 48px;
  }
  .project-detail-copy .hero-actions .text-link {
    width: 100%;
    min-height: 46px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .project-detail-copy h1 {
    font-size: 38px;
  }
  .project-detail-body {
    gap: 28px;
  }
  .gallery-hero {
    padding: 38px 24px;
  }
  .gallery-hero h1 {
    font-size: 36px;
    line-height: 1.06;
  }
  .gallery-hero > div > p {
    font-size: 19px;
    line-height: 1.45;
  }
  .gallery-hero-grid {
    grid-template-columns: 1fr;
  }
  .services-hero-image {
    margin: 0 24px 36px;
  }
  .service-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 94px;
    padding: 18px;
    text-align: left;
  }
  .service-row > svg:first-child {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
  .service-row > svg:last-child { display: none; }
  .service-row em {
    grid-column: auto;
    font-size: 14px;
  }
  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 44px 24px;
  }
  .contact-copy h1 {
    font-size: 38px;
  }
  .contact-copy p:not(.eyebrow) {
    font-size: 19px;
  }
  .contact-panel {
    padding: 20px;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
