:root {
  --app-rule: rgba(18, 21, 19, 0.16);
  --app-rule-light: rgba(238, 234, 225, 0.25);
  --app-red-wash: #b34732;
  --app-max: 1500px;
}

.application-page {
  color: var(--ink);
  background: var(--paper);
}

.application-page .site-header {
  color: var(--paper);
}

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

.application-page--bathroom .site-header .brand img {
  filter: invert(1);
}

.application-page main {
  overflow: hidden;
}

.application-page figure {
  margin: 0;
}

.app-hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  height: min(820px, 88svh);
  min-height: 0;
  padding-top: 92px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.app-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 78px) clamp(24px, 6vw, 96px) clamp(44px, 5vw, 76px);
}

.app-breadcrumb,
.app-kicker,
.app-section-label,
.app-index,
.app-project-type,
.app-reference-label,
.app-hero-caption,
.app-hero-note,
.app-map-label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.app-breadcrumb {
  margin: 0 0 20px;
  color: rgba(238, 234, 225, 0.68);
}

.app-breadcrumb a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(238, 234, 225, 0.44);
  text-underline-offset: 4px;
}

.app-kicker {
  color: rgba(238, 234, 225, 0.62);
}

.app-hero h1 {
  max-width: 12ch;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.app-hero-lede {
  max-width: 39ch;
  margin: 26px 0 0;
  color: rgba(238, 234, 225, 0.86);
  font-size: clamp(1rem, 1.32vw, 1.16rem);
  line-height: 1.58;
  text-wrap: pretty;
}

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

.app-hero-actions .button {
  min-height: 50px;
}

.app-hero-media {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  background: #292f2b;
}

.app-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 21, 19, 0.26), transparent 48%), linear-gradient(0deg, rgba(18, 21, 19, 0.3), transparent 42%);
  content: "";
  pointer-events: none;
}

.app-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: rgba(238, 234, 225, 0.76);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.app-hero-note {
  width: min(100%, 30ch);
  max-width: 30ch;
  margin-top: 32px;
  padding-top: 16px;
  color: rgba(238, 234, 225, 0.48);
  border-top: 1px solid rgba(238, 234, 225, 0.25);
}

.app-section {
  padding: clamp(78px, 10vw, 148px) clamp(24px, 7vw, 120px);
}

.app-section-inner {
  width: min(100%, var(--app-max));
  margin: 0 auto;
}

.app-section--paper {
  color: var(--ink);
  background: var(--paper);
}

.app-section--ink {
  color: var(--paper);
  background: var(--ink-soft);
}

.app-section--red {
  color: var(--paper);
  background: var(--app-red-wash);
}

.app-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 9vw, 150px);
  align-items: start;
  border-top: 1px solid var(--app-rule);
}

.app-intro > .app-section-inner {
  display: contents;
}

.app-intro-heading {
  max-width: 14ch;
}

.app-intro h2,
.app-section-heading h2,
.app-projects-heading h2,
.app-showroom h2,
.app-cta h2,
.app-route h2,
.app-surface-map h2,
.app-archive h2 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.99;
  text-wrap: balance;
}

.app-intro-copy {
  max-width: 55ch;
}

.app-intro-copy p,
.app-section-copy p,
.app-showroom-copy p,
.app-cta-copy p,
.app-archive-copy p {
  max-width: 54ch;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.app-intro-copy p + p,
.app-section-copy p + p,
.app-showroom-copy p + p,
.app-cta-copy p + p,
.app-archive-copy p + p {
  margin-top: 20px;
}

.app-consider {
  border-top: 1px solid var(--app-rule);
}

.app-consider-heading,
.app-projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 8vw, 130px);
  align-items: end;
  margin: 0 auto 50px;
}

.app-consider-heading h2,
.app-projects-heading h2 {
  max-width: 13ch;
}

.app-consider-heading > p,
.app-projects-heading > p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.62;
}

.app-factor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--app-rule);
}

.app-factor {
  min-height: 190px;
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid var(--app-rule);
}

.app-factor + .app-factor {
  padding-left: 24px;
  border-left: 1px solid var(--app-rule);
}

.app-factor strong {
  display: block;
  max-width: 15ch;
  margin-top: 17px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-factor > p:last-child {
  max-width: 30ch;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.55;
}

.app-index {
  color: var(--muted);
}

.app-section--ink .app-index {
  color: rgba(238, 234, 225, 0.46);
}

.app-route {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(36px, 9vw, 150px);
}

.app-route > .app-section-inner {
  display: contents;
}

.app-route-list,
.app-material-list,
.app-guide-list,
.app-cross-list {
  border-top: 1px solid var(--app-rule-light);
}

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

.app-route-item {
  min-height: 178px;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--app-rule-light);
}

.app-route-item:nth-child(2n) {
  padding-left: 24px;
  border-left: 1px solid var(--app-rule-light);
}

.app-route-item strong {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-route-item p:last-child {
  max-width: 28ch;
  margin: 12px 0 0;
  color: rgba(238, 234, 225, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
}

.app-materials {
  border-top: 1px solid var(--app-rule);
}

.app-materials .app-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(36px, 9vw, 150px);
}

.app-material-list {
  counter-reset: material;
}

.app-material-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--app-rule-light);
}

.app-material-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-material-item h3 a {
  text-decoration: underline;
  text-decoration-color: rgba(238, 234, 225, 0.35);
  text-underline-offset: 6px;
}

.app-material-item h3 a:hover,
.app-material-item h3 a:focus-visible {
  text-decoration-color: currentColor;
}

.app-material-item > div > p {
  max-width: 50ch;
  margin: 12px 0 0;
  color: rgba(238, 234, 225, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.app-reference-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.app-reference {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.app-reference-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.28;
  background: #282d2a;
}

.app-reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

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

.app-reference-name {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.app-reference-name span:last-child {
  color: rgba(238, 234, 225, 0.54);
  text-align: right;
}

.app-projects {
  border-top: 1px solid var(--app-rule);
}

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

.app-project {
  min-width: 0;
}

.app-project figure {
  margin: 0;
}

.app-project-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.22;
  background: #d6d0c4;
}

.app-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease-out), filter 450ms ease;
}

.app-project a:hover .app-project-image img,
.app-project a:focus-visible .app-project-image img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.app-project figcaption {
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.75rem;
  line-height: 1.45;
}

.app-project-copy {
  padding-top: 17px;
}

.app-project h3 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-project-copy > p:not(.app-project-type) {
  max-width: 31ch;
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 0.91rem;
  line-height: 1.52;
}

.app-project-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.app-archive {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: end;
  border-top: 1px solid var(--app-rule);
}

.app-archive-copy h2 {
  max-width: 12ch;
}

.app-archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.app-guide-section {
  border-top: 1px solid var(--app-rule-light);
}

.app-guide-section .app-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 8vw, 130px);
}

.app-guide-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--app-rule-light);
}

.app-guide-list span {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.app-guide-list b {
  color: rgba(238, 234, 225, 0.62);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.app-showroom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  border-top: 1px solid var(--app-rule);
}

.app-showroom h2 {
  max-width: 11ch;
}

.app-showroom address {
  margin-top: 30px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.7;
}

.app-showroom-actions,
.app-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.app-showroom-actions {
  flex-direction: column;
  align-items: flex-start;
}

.app-cta {
  border-top: 1px solid rgba(238, 234, 225, 0.26);
}

.app-cta h2 {
  max-width: 12ch;
}

.app-cta-actions {
  margin-top: 34px;
}

.app-cross {
  border-top: 1px solid var(--app-rule);
}

.app-cross-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.app-cross-heading h2 {
  max-width: 13ch;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.app-cross-heading > p {
  max-width: 30ch;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.58;
}

.app-cross-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.app-cross-list a {
  display: flex;
  min-height: 118px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--app-rule);
  border-top: 1px solid var(--app-rule);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.app-cross-list a span:last-child {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0;
}

/* Villa: residential field study, with the image carrying the spatial proof. */
.application-page--villa .app-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.application-page--villa .app-hero-copy {
  background: #202823;
}

.application-page--villa .app-hero-media img {
  object-position: center 54%;
}

.application-page--villa .app-route {
  color: var(--paper);
  background: var(--ink-soft);
}

.application-page--villa .app-route .app-section-inner {
  display: contents;
}

.application-page--villa .app-project-grid {
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
}

.application-page--villa .app-project:first-child {
  grid-row: span 2;
}

/* Hospitality: image-first proof with a readable overlay rather than a split panel. */
.application-page--hospitality .app-hero {
  display: block;
  min-height: min(820px, 90svh);
  background: #111512;
}

.application-page--hospitality .app-hero-media {
  position: absolute;
  inset: 92px 0 0;
  height: auto;
}

.application-page--hospitality .app-hero-media::after {
  background: linear-gradient(90deg, rgba(18, 21, 19, 0.88), rgba(18, 21, 19, 0.36) 58%, transparent 84%), linear-gradient(0deg, rgba(18, 21, 19, 0.54), transparent 48%);
}

.application-page--hospitality .app-hero-copy {
  width: min(68%, 790px);
  min-height: calc(min(820px, 90svh) - 92px);
  padding-top: clamp(28px, 3.2vw, 48px);
  padding-right: clamp(24px, 5vw, 80px);
  padding-bottom: clamp(28px, 3.2vw, 48px);
}

.application-page--hospitality .app-hero-media img {
  object-position: center 46%;
}

.application-page--hospitality .app-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.application-page--hospitality .app-project:nth-child(1) {
  grid-column: span 2;
}

.application-page--hospitality .app-project:nth-child(2) {
  grid-column: span 2;
}

.application-page--hospitality .app-materials .app-section-inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

/* Kitchen: precise surface map, with material image treated as a slab reference. */
.application-page--kitchen .app-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  min-height: min(920px, 100svh);
  background: #171c19;
}

.application-page--kitchen .app-hero-media {
  order: 1;
  min-height: 610px;
}

.application-page--kitchen .app-hero-media img {
  object-position: center;
}

.application-page--kitchen .app-hero-copy {
  order: 2;
  background: #171c19;
}

.app-hero-surface-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  width: min(100%, 390px);
  margin: 32px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(238, 234, 225, 0.25);
  list-style: none;
}

.app-hero-surface-list li {
  padding: 12px 0;
  color: rgba(238, 234, 225, 0.76);
  border-bottom: 1px solid rgba(238, 234, 225, 0.2);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.app-surface-map {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(36px, 9vw, 150px);
  border-top: 1px solid var(--app-rule);
}

.app-surface-map-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--app-rule);
}

.app-surface-map-item {
  min-height: 180px;
  padding: 24px 24px 26px 0;
  border-bottom: 1px solid var(--app-rule);
}

.app-surface-map-item:nth-child(2n) {
  padding-left: 24px;
  border-left: 1px solid var(--app-rule);
}

.app-surface-map-item strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-surface-map-item p:last-child {
  max-width: 29ch;
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Bathroom: quieter paper field and vertical reading of light, touch and junction. */
.application-page--bathroom .app-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  color: var(--ink);
  background: var(--paper);
}

.application-page--bathroom .app-hero-copy {
  background: var(--paper);
}

.application-page--bathroom .app-breadcrumb {
  color: var(--muted-strong);
}

.application-page--bathroom .app-breadcrumb a {
  color: var(--ink);
  text-decoration-color: rgba(18, 21, 19, 0.38);
}

.application-page--bathroom .app-kicker,
.application-page--bathroom .app-hero-lede,
.application-page--bathroom .app-hero-note {
  color: var(--muted-strong);
}

.application-page--bathroom .app-hero-note {
  border-color: var(--app-rule);
}

.application-page--bathroom .app-hero-media {
  background: #d6d0c4;
}

.application-page--bathroom .app-hero-media::after {
  background: linear-gradient(90deg, rgba(238, 234, 225, 0.12), transparent 48%), linear-gradient(0deg, rgba(18, 21, 19, 0.18), transparent 42%);
}

.application-page--bathroom .app-hero-media img {
  object-position: center;
}

.application-page--bathroom .app-hero-media figcaption {
  color: rgba(18, 21, 19, 0.7);
}

.application-page--bathroom .app-hero-actions .text-link {
  color: var(--ink);
}

.application-page--bathroom .app-hero-actions .button-dark {
  color: var(--paper);
  background: var(--ink);
}

.application-page--bathroom .app-factor-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Feature wall: a full-bleed focal image with copy anchored low, like a gallery label. */
.application-page--feature-wall .app-hero {
  display: block;
  min-height: min(820px, 90svh);
  background: #121513;
}

.application-page--feature-wall .app-hero-media {
  position: absolute;
  inset: 92px 0 0;
  height: auto;
}

.application-page--feature-wall .app-hero-media::after {
  background: linear-gradient(90deg, rgba(18, 21, 19, 0.72), transparent 68%), linear-gradient(0deg, rgba(18, 21, 19, 0.72), transparent 54%);
}

.application-page--feature-wall .app-hero-media img {
  object-position: center;
}

.application-page--feature-wall .app-hero-copy {
  width: min(64%, 760px);
  min-height: calc(min(820px, 90svh) - 92px);
  padding-top: clamp(28px, 3.2vw, 48px);
  padding-right: clamp(24px, 5vw, 80px);
  padding-bottom: clamp(28px, 3.2vw, 48px);
}

.application-page--feature-wall .app-materials .app-section-inner {
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1.5fr);
}

.application-page--feature-wall .app-reference-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Floors: a horizontal image band first, then a measured editorial statement. */
.application-page--floor .app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  height: min(820px, 88svh);
  min-height: 0;
  padding-top: 92px;
  background: var(--ink);
}

.application-page--floor .app-hero-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
}

.application-page--floor .app-hero-media::after {
  background: linear-gradient(0deg, rgba(18, 21, 19, 0.36), transparent 48%);
}

.application-page--floor .app-hero-media img {
  object-position: center;
}

.application-page--floor .app-hero-copy {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  padding: clamp(34px, 5vw, 78px) clamp(28px, 4vw, 64px) clamp(40px, 5vw, 72px);
  background: #202421;
}

.application-page--floor .app-hero-lede {
  max-width: 33ch;
}

.application-page--floor .app-hero-note {
  margin-top: 28px;
}

.application-page--floor .app-materials .app-section-inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.application-page--floor .app-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.application-page--floor .app-project:first-child {
  grid-column: span 2;
}
@media (min-width: 961px) {
  .application-page--floor .app-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
  }
}

@media (max-width: 960px) {
  .app-hero,
  .application-page--villa .app-hero,
  .application-page--kitchen .app-hero,
  .application-page--bathroom .app-hero,
  .application-page--floor .app-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding-top: 72px;
  }

  .app-hero-copy,
  .application-page--kitchen .app-hero-copy,
  .application-page--bathroom .app-hero-copy {
    order: 1;
    min-height: 540px;
    padding: 40px 24px 52px;
  }

  .app-hero-media,
  .application-page--kitchen .app-hero-media,
  .application-page--bathroom .app-hero-media {
    order: 2;
    min-height: 56vw;
    max-height: 620px;
  }

  .application-page--hospitality .app-hero,
  .application-page--feature-wall .app-hero {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 760px;
  }

  .application-page--hospitality .app-hero-media,
  .application-page--feature-wall .app-hero-media {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    min-height: 760px;
  }

  .application-page--hospitality .app-hero-copy,
  .application-page--feature-wall .app-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    width: 100%;
    min-height: 0;
    max-width: 760px;
    padding: 42px 24px 58px;
  }

  .app-intro,
  .app-route,
  .app-materials .app-section-inner,
  .app-surface-map,
  .app-archive,
  .app-guide-section .app-section-inner,
  .app-showroom,
  .app-consider-heading,
  .app-projects-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .app-intro > .app-section-inner,
  .app-route > .app-section-inner {
    display: block;
  }

  .app-intro-heading,
  .app-intro-copy,
  .app-route h2,
  .app-materials h2,
  .app-surface-map h2,
  .app-archive h2 {
    max-width: 16ch;
  }

  .app-factor-list,
  .application-page--bathroom .app-factor-list,
  .app-project-grid,
  .application-page--villa .app-project-grid,
  .application-page--hospitality .app-project-grid,
  .application-page--floor .app-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-factor + .app-factor,
  .app-route-item:nth-child(2n),
  .app-surface-map-item:nth-child(2n) {
    padding-left: 24px;
    border-left: 1px solid var(--app-rule);
  }

  .app-reference-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .application-page--hospitality .app-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-page--hospitality .app-project:nth-child(1),
  .application-page--hospitality .app-project:nth-child(2) {
    grid-column: auto;
  }

  .application-page--floor .app-hero-media {
    order: 1;
    min-height: 56vw;
    max-height: 620px;
  }
  .application-page--floor .app-hero-media,
  .application-page--floor .app-hero-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .application-page--floor .app-hero-copy {
    order: 2;
    display: block;
    min-height: 430px;
    padding: 40px 24px 52px;
  }

  .application-page--floor .app-breadcrumb {
    margin-bottom: 0;
  }

  .application-page--floor .app-hero-note {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .app-hero-copy,
  .application-page--kitchen .app-hero-copy,
  .application-page--bathroom .app-hero-copy {
    min-height: 500px;
    padding: 34px 24px 44px;
  }

  .app-breadcrumb {
    top: 26px;
    left: 24px;
    right: 24px;
  }

  .app-hero h1 {
    max-width: 10ch;
    margin-top: 14px;
    font-size: clamp(2.8rem, 13.5vw, 4.25rem);
    line-height: 0.99;
  }

  .app-hero-lede {
    max-width: 32ch;
    margin-top: 22px;
    font-size: 0.99rem;
  }

  .app-hero-actions,
  .app-cta-actions {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 19px;
  }

  .app-hero-actions .button,
  .app-cta-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .app-hero-media,
  .application-page--kitchen .app-hero-media,
  .application-page--bathroom .app-hero-media {
    min-height: 82vw;
  }

  .application-page--hospitality .app-hero,
  .application-page--feature-wall .app-hero {
    min-height: 650px;
  }

  .application-page--hospitality .app-hero-media,
  .application-page--feature-wall .app-hero-media {
    min-height: 650px;
  }

  .application-page--hospitality .app-hero-copy,
  .application-page--feature-wall .app-hero-copy {
    min-height: 0;
    padding: 34px 24px 44px;
  }

  .app-section {
    padding: 70px 24px;
  }

  .app-intro h2,
  .app-section-heading h2,
  .app-projects-heading h2,
  .app-showroom h2,
  .app-cta h2,
  .app-route h2,
  .app-surface-map h2,
  .app-archive h2,
  .app-cross-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 11vw, 3.5rem);
    line-height: 1.02;
  }

  .app-factor-list,
  .application-page--bathroom .app-factor-list,
  .app-route-list,
  .app-surface-map-list,
  .app-project-grid,
  .application-page--villa .app-project-grid,
  .application-page--hospitality .app-project-grid,
  .application-page--floor .app-project-grid,
  .app-reference-strip,
  .app-cross-list {
    grid-template-columns: 1fr;
  }

  .app-factor,
  .app-factor + .app-factor,
  .app-route-item,
  .app-route-item:nth-child(2n),
  .app-surface-map-item,
  .app-surface-map-item:nth-child(2n) {
    min-height: 0;
    padding: 22px 0 24px;
    border-left: 0;
  }

  .app-route-item strong,
  .app-surface-map-item strong {
    font-size: 1.85rem;
  }

  .app-material-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 21px 0 23px;
  }

  .app-material-item h3 {
    font-size: 1.8rem;
  }

  .app-reference-strip {
    gap: 28px;
  }

  .app-reference-image {
    aspect-ratio: 1.35;
  }

  .application-page--feature-wall .app-reference-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .app-reference-name {
    display: grid;
    gap: 4px;
    font-size: 0.72rem;
  }

  .app-reference-name span:last-child {
    font-size: 0.67rem;
    text-align: left;
  }

  .app-project-grid {
    gap: 42px 0;
  }

  .application-page--floor .app-project:first-child {
    grid-column: auto;
  }

  .app-guide-list a {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .app-guide-list b {
    text-align: left;
  }

  .app-showroom address {
    margin-top: 24px;
    font-size: 0.93rem;
  }

  .app-cross-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-cross-list {
    gap: 0;
    margin-top: 30px;
  }

  .app-cross-list a {
    min-height: 92px;
    font-size: 1.7rem;
  }

  .app-hero-surface-list {
    margin-top: 26px;
  }

  .application-page--floor .app-hero-media {
    height: 76vw;
    min-height: 270px;
  }

  .application-page--floor .app-hero-copy {
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-reference-image img,
  .app-project-image img {
    transition: none;
  }
}
