:root {
  --bg: #ece7df;
  --bg-elevated: #f5f0e8;
  --surface: rgba(245, 240, 232, 0.62);
  --surface-strong: rgba(245, 240, 232, 0.84);
  --ink: #2b241f;
  --ink-soft: #544b43;
  --ink-muted: #7a7066;
  --line: rgba(43, 36, 31, 0.11);
  --line-strong: rgba(43, 36, 31, 0.24);
  --accent: #55606a;
  --accent-soft: rgba(85, 96, 106, 0.08);
  --shadow: none;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --content: min(1540px, calc(100vw - 1rem));
  --content-wide: min(1700px, calc(100vw - 0.5rem));
  --header-height: 84px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(43, 36, 31, 0.045) calc(50% - 1px), rgba(43, 36, 31, 0.045) calc(50% + 1px), transparent calc(50% + 1px), transparent 100%),
    linear-gradient(180deg, #f0ebe4 0%, #e8e2d9 52%, #eee8e0 100%);
  color: var(--ink);
  font-family: "Kumbh Sans", "Helvetica Neue", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 36, 31, 0.06), transparent);
  opacity: 1;
  transition: opacity var(--transition);
  pointer-events: none;
}

.site-header.is-solid {
  background: rgba(240, 235, 228, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.is-solid::after {
  opacity: 0;
}

.header-inner,
.shell,
.shell-wide {
  width: var(--content);
  margin: 0 auto;
}

.shell-wide {
  width: var(--content-wide);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
  padding: 0 0.4rem;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: min(44vw, 172px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.54rem;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

.brand-mark__slash {
  opacity: 0.72;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(250, 247, 242, 0.7);
  backdrop-filter: blur(10px);
}

.locale-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition), opacity var(--transition);
}

.nav-link {
  padding: 0.85rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: blur(12px);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle::before {
  transform: translateY(-5px);
}

.menu-toggle::after {
  transform: translateY(5px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  inset: calc(100% - 1px) 1rem auto;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(248, 243, 236, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel .nav-link {
  padding: 0.85rem 0.5rem;
}

.mobile-panel .locale-switch {
  margin-top: 0.35rem;
}

.site-main {
  padding-top: calc(var(--header-height) + 1rem);
}

.page-block,
.page-block-tight,
.page-block-wide {
  position: relative;
  padding: 2.5rem 0;
}

.page-block-tight {
  padding: 0.75rem 0 1.8rem;
}

.page-block-wide {
  padding: 3.25rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--line-strong);
}

.hero-grid,
.two-column,
.contact-grid,
.about-grid {
  display: grid;
  gap: 0;
}

.hero-grid {
  align-items: end;
}

.page-title,
.display-title,
.section-title,
.card-title {
  margin: 0;
  font-family: "Kumbh Sans", "Helvetica Neue", sans-serif;
  font-weight: 500;
  line-height: 0.95;
}

.display-title {
  font-size: clamp(3.7rem, 11vw, 8.6rem);
  letter-spacing: -0.028em;
  line-height: 0.88;
}

.page-title {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.section-title {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  letter-spacing: -0.012em;
}

.card-title {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: -0.008em;
}

.subhead,
.intro-copy,
.section-copy,
.body-copy,
.meta-copy,
.small-copy {
  margin: 0;
  color: var(--ink-soft);
}

.subhead {
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  max-width: 32rem;
}

.intro-copy,
.section-copy,
.body-copy {
  max-width: 38rem;
  font-size: 0.98rem;
}

.meta-copy,
.small-copy {
  font-size: 0.88rem;
}

.support-line {
  max-width: 35rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

.button-row,
.chip-row,
.meta-row,
.footer-links,
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border-radius: 0;
  border: 1px solid transparent;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.button {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow,
.brand-mark,
.media-frame__label,
.meta-tag {
  font-family: "Kumbh Sans", "Helvetica Neue", sans-serif;
}

html[lang="he"] body {
  font-family: "Rubik", sans-serif;
}

html[lang="he"] .display-title,
html[lang="he"] .page-title,
html[lang="he"] .section-title,
html[lang="he"] .card-title,
html[lang="he"] .eyebrow,
html[lang="he"] .brand-mark,
html[lang="he"] .media-frame__label,
html[lang="he"] .meta-tag {
  font-family: "Alef", "Rubik", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

html[lang="he"] .nav-link,
html[lang="he"] .button,
html[lang="he"] .filter-chip {
  font-family: "Rubik", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

html[lang="he"] .display-title,
html[lang="he"] .page-title,
html[lang="he"] .section-title,
html[lang="he"] .card-title {
  font-weight: 600;
  line-height: 1.08;
}

.button:hover,
.filter-chip:hover {
  transform: none;
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.button-primary:hover {
  background: #262626;
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-ghost {
  background: transparent;
}

.filter-shell {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.62rem 0.82rem;
  border: 1px solid var(--line-strong);
  background: rgba(250, 247, 242, 0.9);
  color: var(--ink);
  text-align: left;
}

.filter-trigger__label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.filter-trigger__current {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.filter-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  min-width: min(21rem, calc(100vw - 2rem));
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(248, 243, 236, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}

.filter-shell.is-open .filter-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-panel .button {
  width: auto;
  min-height: 2.2rem;
  padding: 0.55rem 0.8rem;
  justify-content: center;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

body.page-selected-work .page-block-tight {
  padding-block: 0.35rem 0;
}

body.page-selected-work .filter-shell {
  margin-bottom: 0.4rem;
}

.hero-card,
.surface-card,
.entry-card,
.project-card,
.note-card,
.statement-card,
.contact-card,
.highlight-card,
.value-card,
.placeholder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.hero-card,
.statement-card,
.contact-card {
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.hero-card,
.surface-card,
.statement-card,
.contact-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.contact-link,
.contact-primary-link,
.contact-secondary-link {
  display: inline-block;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.contact-primary-link {
  font-size: clamp(1.95rem, 4.4vw, 3.15rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.contact-secondary-link {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.contact-link__icon {
  display: inline-flex;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  color: var(--ink);
}

.contact-link__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link__icon svg path {
  fill: currentColor;
  stroke: none;
}

.contact-surface {
  justify-items: start;
  gap: 0.7rem;
}

.contact-utility-strip {
  display: inline-grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
}

.contact-utility {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.62rem 0.82rem;
}

.contact-utility + .contact-utility {
  border-left: 1px solid var(--line);
}

.contact-utility .small-copy,
.contact-utility .meta-copy {
  margin: 0;
}

.contact-utility--text .small-copy,
.contact-utility--project .small-copy {
  color: var(--ink-muted);
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
}

.contact-utility--icon {
  justify-content: center;
  flex: 0 0 auto;
}

.contact-utility--icons {
  gap: 0.2rem;
  justify-content: flex-start;
}

.contact-utility--project {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.04rem;
}

.contact-utility--text {
  flex: 1 1 auto;
}

.contact-utility--project {
  flex: 1 1 auto;
}

.contact-utility--location {
  justify-content: flex-end;
  text-align: right;
  min-width: 12rem;
}

.contact-primary-link + .body-copy {
  max-width: 38rem;
}

@media (max-width: 719px) {
  .contact-utility-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .contact-utility + .contact-utility {
    border-left: 1px solid var(--line);
  }

  .contact-utility--text,
  .contact-utility--project,
  .contact-utility--icons {
    text-align: center;
    justify-items: center;
  }

  .contact-utility--project {
    align-items: center;
  }

  .contact-utility:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .contact-utility--location {
    justify-content: center;
    text-align: center;
    min-width: 0;
  }
}

.surface-card > .button,
.statement-card > .button,
.hero-card > .button,
.surface-card > .button-row,
.statement-card > .button-row,
.hero-card > .button-row {
  margin-top: 0.15rem;
}

.surface-card,
.entry-card,
.project-card,
.note-card,
.highlight-card,
.value-card,
.placeholder-card {
  padding: 1rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.value-card .card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}

.intro-strip {
  display: flex;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-align: center;
  box-shadow: none;
}

.project-grid,
.entry-grid,
.highlight-grid,
.placeholder-grid,
.values-grid,
.detail-grid {
  display: grid;
  column-gap: 0;
  row-gap: 0;
}

.project-grid--four {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.highlight-grid--home {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  border-radius: calc(var(--radius-md) - 8px);
  background: var(--image-url, none), #e4ddd4;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.media-frame__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 4rem;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.14));
  opacity: 1;
}

.media-frame.is-interactive {
  cursor: default;
}

.project-card .media-frame.is-interactive,
.highlight-card .media-frame.is-interactive {
  cursor: pointer;
}

.project-card .media-frame[data-placeholder="wood-floor-lamp-main.jpg"] {
  background-position: center top;
}

.project-card .media-frame[data-placeholder="wood-floor-lamp-main.jpg"] .media-frame__img {
  object-position: center top;
}

.project-card .media-frame[data-placeholder^="digital-"],
.highlight-card .media-frame[data-placeholder^="digital-"] {
  background-size: 155%;
  background-position: center;
  background-repeat: no-repeat;
}

.project-card .media-frame[data-placeholder^="digital-"] .media-frame__img,
.highlight-card .media-frame[data-placeholder^="digital-"] .media-frame__img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.55);
  transform-origin: center;
}

.project-grid--four > .project-card .media-frame[data-placeholder^="digital-"],
.highlight-grid--home > .highlight-card .media-frame[data-placeholder^="digital-"] {
  background-size: 185%;
}

.project-grid--four > .project-card .media-frame[data-placeholder^="digital-"] .media-frame__img,
.highlight-grid--home > .highlight-card .media-frame[data-placeholder^="digital-"] .media-frame__img {
  transform: scale(1.85);
}

.project-grid--four > .project-card .media-frame[data-placeholder="digital-room-studies-03-web.jpg"] {
  background-size: 235%;
  background-position: center 62%;
}

.project-grid--four > .project-card .media-frame[data-placeholder="digital-room-studies-03-web.jpg"] .media-frame__img {
  object-position: center 62%;
  transform: scale(2.35);
}

.media-frame--hero {
  min-height: 82svh;
}

.media-frame--wide {
  min-height: 72svh;
}

.media-frame--portrait {
  min-height: 78svh;
}

.media-frame--portrait.media-frame--warm {
  background-position: right center;
}

.media-frame--warm {
  background: var(--image-url, none), #ddd2c3;
  background-position: center;
  background-size: cover;
}

.media-frame--wine {
  background: var(--image-url, none), #3b2328;
  background-position: center;
  background-size: cover;
  color: #f7efe9;
}

.media-frame--cool {
  background: var(--image-url, none), #cfd4d8;
  background-position: center;
  background-size: cover;
}

.media-frame--about-square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.media-frame__label,
.meta-tag {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 32px;
  padding: 0.35rem 0.6rem;
  border-radius: 0;
  background: rgba(246, 242, 235, 0.92);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.media-frame__label {
  top: 0;
  z-index: 2;
}

.media-frame__caption {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 2;
  max-width: 24rem;
  padding: 1rem 1.1rem;
  border-radius: 0;
  background: rgba(246, 242, 235, 0.9);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  backdrop-filter: none;
}

.media-frame__caption p,
.meta-tag {
  margin: 0;
}

.meta-tag {
  position: static;
}

.project-card,
.entry-card,
.highlight-card,
.placeholder-card {
  display: grid;
  gap: 0;
  padding: 0;
}

.project-grid--four > .project-card {
  grid-template-rows: clamp(19rem, 27vw, 25rem) 1fr;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-grid--four > .project-card .media-frame {
  min-height: 0;
  height: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.project-grid--four > .project-card .media-frame--wine {
  background-size: cover;
  background-position: center;
}

.project-grid--four > .project-card .project-card__copy {
  align-content: start;
}

.highlight-grid--home > .highlight-card {
  grid-template-rows: clamp(19rem, 27vw, 24rem) 1fr;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-grid--home > .highlight-card .media-frame {
  min-height: 0;
  height: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.highlight-grid--home > .highlight-card .highlight-card__copy {
  align-content: start;
}

.project-card[data-hidden="true"] {
  display: none;
}

body.page-selected-work .project-card__copy > .button.button-ghost:hover {
  background: #262626;
  border-color: #262626;
  color: #fbf7f2;
}

body.page-selected-work .project-card {
  grid-template-rows: clamp(19rem, 27vw, 25rem) 1fr;
}

body.page-selected-work .project-card .media-frame {
  min-height: 0;
  height: 100%;
  border-bottom: 1px solid var(--line);
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition), transform var(--transition);
}

.media-frame--hero:hover .hero-carousel-controls,
.media-frame--hero:focus-within .hero-carousel-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero-carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 18, 18, 0.52);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-button:hover {
  background: rgba(18, 18, 18, 0.72);
}

.project-card__copy,
.entry-card__copy,
.highlight-card__copy,
.placeholder-card__copy {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 0.45rem 1.15rem;
}

.project-card__copy > .button,
.entry-card__copy > .button,
.highlight-card__copy > .button,
.placeholder-card__copy > .button {
  width: auto;
  justify-self: start;
}

.project-card__copy > .button-row,
.entry-card__copy > .button-row,
.highlight-card__copy > .button-row,
.placeholder-card__copy > .button-row {
  width: 100%;
  padding-top: 0.35rem;
}

body.page-project--knives .knife-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--knives .knife-case-study__intro,
body.page-project--knives .knife-spread__note {
  background: transparent;
}

body.page-project--knives .knife-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--knives .knife-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--knives .knife-frame .media-frame {
  min-height: clamp(24rem, 56vw, 40rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--knives .knife-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--knives .knife-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--staircase .stair-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--staircase .stair-case-study__intro,
body.page-project--staircase .stair-spread__note {
  background: transparent;
}

body.page-project--staircase .stair-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--staircase .stair-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--staircase .stair-frame .media-frame {
  min-height: clamp(24rem, 56vw, 40rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--staircase .stair-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--staircase .stair-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--carved-chair .chair-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--carved-chair .chair-case-study__intro,
body.page-project--carved-chair .chair-spread__note {
  background: transparent;
}

body.page-project--carved-chair .chair-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--carved-chair .chair-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--carved-chair .chair-frame .media-frame {
  min-height: clamp(22rem, 54vw, 38rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--carved-chair .chair-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--carved-chair .chair-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--linear-pendant .linear-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--linear-pendant .linear-case-study__intro,
body.page-project--linear-pendant .linear-spread__note {
  background: transparent;
}

body.page-project--linear-pendant .linear-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--linear-pendant .linear-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--linear-pendant .linear-frame .media-frame {
  min-height: clamp(22rem, 54vw, 38rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--linear-pendant .linear-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--linear-pendant .linear-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--tezeta .tezeta-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--tezeta .tezeta-case-study__intro,
body.page-project--tezeta .tezeta-spread__note {
  background: transparent;
}

body.page-project--tezeta .tezeta-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--tezeta .tezeta-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--tezeta .tezeta-frame .media-frame {
  min-height: clamp(24rem, 56vw, 40rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--tezeta .tezeta-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--tezeta .tezeta-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--tezeta .tezeta-frame--offset .media-frame {
  background-position: center bottom;
}

body.page-project--tezeta .tezeta-frame--offset .media-frame__img {
  object-position: center bottom;
}

body.page-project--cone-light .light-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--cone-light .light-case-study__intro,
body.page-project--cone-light .light-spread__note {
  background: transparent;
}

body.page-project--cone-light .light-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--cone-light .light-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--cone-light .light-frame .media-frame {
  min-height: clamp(22rem, 54vw, 38rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--cone-light .light-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--cone-light .light-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-project--wine-dandy .wine-case-study {
  display: grid;
  gap: 1rem;
}

body.page-project--wine-dandy .wine-case-study__intro,
body.page-project--wine-dandy .wine-spread__note {
  background: transparent;
}

body.page-project--wine-dandy .wine-spread {
  display: grid;
  gap: 1rem;
}

body.page-project--wine-dandy .wine-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-project--wine-dandy .wine-frame .media-frame {
  min-height: clamp(22rem, 54vw, 38rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-project--wine-dandy .wine-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-project--wine-dandy .wine-frame__copy .meta-copy {
  max-width: 18rem;
}

body.page-digital .digital-series {
  display: grid;
  gap: 1rem;
}

body.page-digital .digital-series__top,
body.page-digital .digital-series__middle,
body.page-digital .digital-series__bottom {
  display: grid;
  gap: 1rem;
}

body.page-digital .digital-series__intro,
body.page-digital .digital-series__note {
  background: transparent;
}

body.page-digital .digital-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

body.page-digital .digital-frame .media-frame {
  min-height: clamp(22rem, 54vw, 38rem);
  border: 0;
  border-bottom: 1px solid var(--line);
}

body.page-digital .media-frame[data-placeholder="digital-room-studies-04-web.jpg"] {
  background-size: 145%;
  background-position: center;
}

body.page-digital .media-frame[data-placeholder="digital-room-studies-04-web.jpg"] .media-frame__img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.45);
  transform-origin: center;
}

body.page-digital .digital-frame__copy {
  padding: 0.9rem 1rem 1rem;
}

body.page-digital .digital-frame__copy .meta-copy {
  max-width: 22rem;
}

.quote-block {
  padding: clamp(1.4rem, 4vw, 2rem);
  border-left: 2px solid var(--accent);
  background: transparent;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.quote-block p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.footer {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-links {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  width: min(1440px, 100%);
  display: grid;
  gap: 1rem;
}

.lightbox-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #f5f0ea;
}

.lightbox-close {
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lightbox-media {
  min-height: min(72svh, 760px);
  border-radius: var(--radius-lg);
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 252, 247, 0.9);
}

.field textarea {
  min-height: 168px;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

html[dir="rtl"] .skip-link {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .quote-block {
  border-left: 0;
  border-right: 2px solid var(--accent);
}

html[dir="rtl"] .media-frame__label {
  left: auto;
  right: 0;
}

html[dir="rtl"] .media-frame__caption {
  inset: auto auto 0 0;
  border-left: 0;
  border-right: 1px solid var(--line);
}

html[dir="rtl"] .lightbox-head {
  text-align: right;
}

@media (min-width: 720px) {
  .site-main {
    padding-top: calc(var(--header-height) + 1.25rem);
  }

  .hero-grid,
  .two-column,
  .contact-grid,
  .about-grid,
  .project-grid,
  .entry-grid,
  .highlight-grid,
  .placeholder-grid,
  .values-grid,
  .detail-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-panel {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.66fr 1.34fr;
  }

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

  .project-grid--three,
  .placeholder-grid,
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  body.page-project--knives .knife-spread--one {
    grid-template-columns: 0.55fr 1.45fr;
    align-items: end;
  }

  body.page-project--knives .knife-spread--two {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  body.page-project--knives .knife-frame--offset {
    margin-top: 8vh;
  }

  body.page-project--staircase .stair-spread--one {
    grid-template-columns: 0.55fr 1.45fr;
    align-items: end;
  }

  body.page-project--staircase .stair-spread--two {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  body.page-project--carved-chair .chair-spread {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  body.page-project--carved-chair .chair-frame--offset {
    margin-top: 8vh;
  }

  body.page-project--linear-pendant .linear-spread {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  body.page-project--linear-pendant .linear-frame--offset {
    margin-top: 8vh;
  }

  body.page-project--cone-light .light-spread {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  body.page-project--cone-light .light-frame--offset {
    margin-top: 8vh;
  }

  body.page-project--wine-dandy .wine-spread--one {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  body.page-project--wine-dandy .wine-spread--two {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  body.page-project--wine-dandy .wine-frame--offset {
    margin-top: 8vh;
  }

  body.page-digital .digital-series__top {
    grid-template-columns: 0.58fr 1.42fr;
    align-items: end;
  }

  body.page-digital .digital-series__middle {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  body.page-digital .digital-series__bottom {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
  }

  body.page-digital .digital-frame--offset {
    margin-top: 8vh;
  }

  .field--full {
    grid-column: 1 / -1;
  }

}

@media (min-width: 1040px) {
  .page-block {
    padding: 5.5rem 0;
  }

  .page-block-wide {
    padding: 6.75rem 0;
  }

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

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

  .detail-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  body.page-project--knives .knife-case-study {
    gap: 1.5rem;
  }

  body.page-project--knives .knife-spread--one,
  body.page-project--knives .knife-spread--two {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--knives .knife-spread--one .knife-spread__note {
    grid-column: 1 / span 4;
    margin-top: 5.5rem;
  }

  body.page-project--knives .knife-spread--one .knife-frame--solo {
    grid-column: 5 / -1;
  }

  body.page-project--knives .knife-spread--one .knife-frame--solo .media-frame {
    min-height: clamp(34rem, 52vw, 50rem);
  }

  body.page-project--knives .knife-spread--two .knife-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--knives .knife-spread--two .knife-frame--wide .media-frame {
    min-height: clamp(32rem, 48vw, 46rem);
  }

  body.page-project--knives .knife-spread--two .knife-frame--offset {
    grid-column: 8 / -1;
    margin-top: 6rem;
  }

  body.page-project--knives .knife-spread--two .knife-frame--offset .media-frame {
    min-height: clamp(22rem, 34vw, 30rem);
  }

  body.page-project--knives .knife-spread--two .knife-spread__note--end {
    grid-column: 8 / -1;
    margin-top: 0.25rem;
  }

  body.page-project--staircase .stair-case-study {
    gap: 1.5rem;
  }

  body.page-project--staircase .stair-spread--one,
  body.page-project--staircase .stair-spread--two {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--staircase .stair-spread--one .stair-spread__note {
    grid-column: 1 / span 4;
    margin-top: 5.5rem;
  }

  body.page-project--staircase .stair-spread--one .stair-frame--solo {
    grid-column: 5 / -1;
  }

  body.page-project--staircase .stair-spread--one .stair-frame--solo .media-frame {
    min-height: clamp(34rem, 52vw, 50rem);
  }

  body.page-project--staircase .stair-spread--two .stair-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--staircase .stair-spread--two .stair-frame--wide .media-frame {
    min-height: clamp(32rem, 48vw, 46rem);
  }

  body.page-project--staircase .stair-spread--two .stair-spread__note--end {
    grid-column: 8 / -1;
    margin-top: 0.25rem;
  }

  body.page-project--carved-chair .chair-case-study {
    gap: 1.5rem;
  }

  body.page-project--carved-chair .chair-spread {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--carved-chair .chair-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--carved-chair .chair-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-project--carved-chair .chair-spread__note {
    grid-column: 8 / -1;
    margin-top: 2rem;
  }

  body.page-project--carved-chair .chair-frame--offset {
    grid-column: 8 / -1;
    margin-top: 0.5rem;
  }

  body.page-project--carved-chair .chair-frame--offset .media-frame {
    min-height: clamp(20rem, 30vw, 28rem);
  }

  body.page-project--linear-pendant .linear-case-study {
    gap: 1.5rem;
  }

  body.page-project--linear-pendant .linear-spread {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--linear-pendant .linear-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--linear-pendant .linear-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-project--linear-pendant .linear-spread__note {
    grid-column: 8 / -1;
    margin-top: 2rem;
  }

  body.page-project--linear-pendant .linear-frame--offset {
    grid-column: 8 / -1;
    margin-top: 0.5rem;
  }

  body.page-project--linear-pendant .linear-frame--offset .media-frame {
    min-height: clamp(20rem, 30vw, 28rem);
  }

  body.page-project--tezeta .tezeta-case-study {
    gap: 1.5rem;
  }

  body.page-project--tezeta .tezeta-spread--one,
  body.page-project--tezeta .tezeta-spread--two {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--tezeta .tezeta-spread--one .tezeta-spread__note {
    grid-column: 1 / span 4;
    margin-top: 5rem;
  }

  body.page-project--tezeta .tezeta-spread--one .tezeta-frame--solo {
    grid-column: 5 / -1;
  }

  body.page-project--tezeta .tezeta-spread--one .tezeta-frame--solo .media-frame {
    min-height: clamp(34rem, 52vw, 50rem);
  }

  body.page-project--tezeta .tezeta-spread--two .tezeta-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--tezeta .tezeta-spread--two .tezeta-frame--wide .media-frame {
    min-height: clamp(32rem, 48vw, 46rem);
  }

  body.page-project--tezeta .tezeta-spread--two .tezeta-frame--offset {
    grid-column: 8 / -1;
    margin-top: 6rem;
  }

  body.page-project--tezeta .tezeta-spread--two .tezeta-frame--offset .media-frame {
    min-height: clamp(22rem, 34vw, 30rem);
  }

  body.page-project--tezeta .tezeta-spread--two .tezeta-spread__note--end {
    grid-column: 8 / -1;
    margin-top: 0.25rem;
  }

  body.page-project--cone-light .light-case-study {
    gap: 1.5rem;
  }

  body.page-project--cone-light .light-spread {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--cone-light .light-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--cone-light .light-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-project--cone-light .light-spread__note {
    grid-column: 8 / -1;
    margin-top: 2rem;
  }

  body.page-project--cone-light .light-frame--offset {
    grid-column: 8 / -1;
    margin-top: 0.5rem;
  }

  body.page-project--cone-light .light-frame--offset .media-frame {
    min-height: clamp(20rem, 30vw, 28rem);
  }

  body.page-project--wine-dandy .wine-case-study {
    gap: 1.5rem;
  }

  body.page-project--wine-dandy .wine-spread {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-project--wine-dandy .wine-spread--one .wine-spread__note {
    grid-column: 1 / span 5;
    margin-top: 1.5rem;
  }

  body.page-project--wine-dandy .wine-spread--one .wine-frame--wide {
    grid-column: 6 / -1;
  }

  body.page-project--wine-dandy .wine-spread--one .wine-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-project--wine-dandy .wine-spread--two .wine-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-project--wine-dandy .wine-spread--two .wine-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-project--wine-dandy .wine-spread--two .wine-spread__note--end {
    grid-column: 8 / -1;
    margin-top: 2rem;
  }

  body.page-digital .digital-series {
    gap: 1.5rem;
  }

  body.page-digital .digital-series__top,
  body.page-digital .digital-series__middle,
  body.page-digital .digital-series__bottom {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  body.page-digital .digital-series__top .digital-series__intro {
    grid-column: 1 / span 4;
    margin-top: 5.5rem;
  }

  body.page-digital .digital-series__top .digital-frame--hero {
    grid-column: 5 / -1;
  }

  body.page-digital .digital-series__top .digital-frame--hero .media-frame {
    min-height: clamp(34rem, 52vw, 50rem);
  }

  body.page-digital .digital-series__middle .digital-frame--wide {
    grid-column: 1 / span 7;
  }

  body.page-digital .digital-series__middle .digital-frame--wide .media-frame {
    min-height: clamp(30rem, 46vw, 44rem);
  }

  body.page-digital .digital-series__middle .digital-frame--offset {
    grid-column: 8 / -1;
    margin-top: 7vh;
  }

  body.page-digital .digital-series__middle .digital-frame--offset .media-frame {
    min-height: clamp(24rem, 32vw, 32rem);
  }

  body.page-digital .digital-series__bottom .digital-series__note {
    grid-column: 1 / span 4;
    margin-top: 4rem;
  }

  body.page-digital .digital-series__bottom .digital-frame--closing {
    grid-column: 5 / span 6;
  }

  body.page-digital .digital-series__bottom .digital-frame--closing .media-frame {
    min-height: clamp(24rem, 36vw, 32rem);
  }
}

@media (max-width: 899px) {
  body.page-project--tezeta .media-frame--hero {
    min-height: clamp(24rem, 88vw, 38rem);
  }

  body.page-project--tezeta .tezeta-frame .media-frame {
    min-height: clamp(20rem, 82vw, 34rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }

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