:root {
  --brown: #392615;
  --brown-mid: #585048;
  --brown-soft: #736557;
  --brown-light: #956e4b;
  --beige: #dbc0a9;
  --beige-soft: #d0b69f;
  --beige-pale: #c2bbb5;
  --gray: #f6f6f6;
  --white: #ffffff;
  --veil: rgba(0, 0, 0, 0.35);
  --veil-brown: rgba(57, 38, 21, 0.3);
  --ink: var(--brown);
  --ink-soft: var(--brown-mid);
  --muted: var(--brown-soft);
  --accent: var(--brown-light);
  --wood: var(--beige);
  --wood-deep: var(--brown);
  --bg: var(--white);
  --bg-soft: var(--gray);
  --surface: var(--white);
  --line: rgba(57, 38, 21, 0.12);
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-sm: 10px;
  --radius: 15px;
  --radius-pill: 22px;
  --shadow: 0 20px 50px rgba(57, 38, 21, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 0px;
  --cursor: 12px;
}

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

html {
  scroll-behavior: smooth;
}

/* Clip nowrap titles only where featured sticky is already static. */
@media (max-width: 900px) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
  background: var(--bg);
  cursor: none;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: none;
  padding: 0;
}

a,
button,
[role="button"],
input,
textarea,
label,
.case,
.product-card {
  cursor: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

/* Cursor */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor);
  height: var(--cursor);
  border-radius: 50%;
  background: var(--brown);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  opacity: 0;
}

.cursor.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

.cursor.is-hover,
.cursor-dot.is-hover,
.cursor.is-active,
.cursor-dot.is-active {
  width: 36px;
  height: 36px;
  background: var(--beige);
}

.cursor.is-hidden,
.cursor-dot.is-hidden {
  opacity: 0;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-dot {
    display: none;
  }
  body,
  a,
  button,
  [role="button"],
  input,
  textarea,
  label,
  .case,
  .product-card {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }
}

/* Page loader */
.loader,
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--brown);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.is-done,
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner,
.page-loader__inner {
  text-align: center;
}

.loader__mark,
.page-loader__mark {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  display: block;
  margin-bottom: 1.5rem;
}

.loader__bar,
.page-loader__bar {
  width: min(200px, 50vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  overflow: hidden;
}

.loader__bar span,
.page-loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--beige);
  animation: load 1.2s var(--ease) forwards;
}

@keyframes load {
  to {
    width: 100%;
  }
}

/* Header — Framer Graft */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1.25rem, 3.5vw, 3.125rem) 0;
  pointer-events: none;
  transition: background 0.3s var(--ease);
}

.header-bar {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1620px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1rem, 2vw, 1.5rem);
  transition: color 0.35s var(--ease);
}

.site-header.is-scrolled {
  padding: 0 clamp(1.25rem, 4vw, 3.125rem);
  background: #392615;
}

.site-header.is-scrolled .header-bar {
  position: relative;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  max-width: 1520px;
  padding: 12px 0;
}

.site-header.is-scrolled .header-left {
  position: static;
  left: auto;
  flex: 0 1 auto;
  align-items: center;
  gap: 0;
  transform: none;
}

.site-header.is-scrolled .header-address,
.site-header.is-scrolled .header-motto {
  display: none;
}

.site-header.is-scrolled .header-right {
  width: auto;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}

.site-header.is-scrolled .header-cta {
  height: 40px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.site-header.is-scrolled .header-cta:hover {
  gap: 2rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header:not(.is-solid) .header-bar {
  color: var(--white);
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.125rem);
  flex: 1;
  min-width: 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.menu-grid {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.menu-grid__box {
  position: relative;
  width: 12px;
  height: 12px;
}

.menu-grid__box span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  transition: inset 0.25s var(--ease);
}

.menu-grid__box span:nth-child(1) { top: 0; left: 0; }
.menu-grid__box span:nth-child(2) { top: 8px; left: 0; }
.menu-grid__box span:nth-child(3) { top: 0; left: 8px; }
.menu-grid__box span:nth-child(4) { top: 8px; left: 8px; }

.menu-grid:hover .menu-grid__box span:nth-child(1) { top: 1px; left: 1px; }
.menu-grid:hover .menu-grid__box span:nth-child(2) { top: 7px; left: 1px; }
.menu-grid:hover .menu-grid__box span:nth-child(3) { top: 1px; left: 7px; }
.menu-grid:hover .menu-grid__box span:nth-child(4) { top: 7px; left: 7px; }

.menu-grid[aria-expanded="true"] .menu-grid__box span:nth-child(1) { top: 4px; left: 0; width: 12px; height: 1.5px; transform: rotate(45deg); }
.menu-grid[aria-expanded="true"] .menu-grid__box span:nth-child(2) { opacity: 0; }
.menu-grid[aria-expanded="true"] .menu-grid__box span:nth-child(3) { opacity: 0; }
.menu-grid[aria-expanded="true"] .menu-grid__box span:nth-child(4) { top: 4px; left: 0; width: 12px; height: 1.5px; transform: rotate(-45deg); }

.header-address {
  max-width: 180px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  opacity: 0.95;
}

.header-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(550px, 48%);
  flex-shrink: 0;
}

.header-motto {
  max-width: 276px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.btn-outline,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  height: 44px;
  padding: 0 1.3rem;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  background: var(--veil-brown);
  color: inherit;
  font-size: 1rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: gap 0.3s var(--ease), background 0.3s;
  flex-shrink: 0;
}

.btn-outline:hover,
.header-cta:hover {
  gap: 2rem;
  background: rgba(57, 38, 21, 0.45);
}

.btn-outline svg,
.header-cta svg {
  width: 19px;
  height: 8px;
  flex-shrink: 0;
}

/* Overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 3.5vw, 3.125rem) clamp(3rem, 8vw, 6rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__inner {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.05;
  transition: color 0.25s;
}

.nav-overlay__links a:hover {
  color: var(--beige);
}

.nav-overlay__meta {
  max-width: 280px;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--beige);
}

/* Hero — Framer Graft */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.25rem, 3.5vw, 3.125rem) clamp(2.5rem, 5vw, 4.375rem);
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: var(--veil);
  z-index: 1;
  pointer-events: none;
}

.hero__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 12vw, 22.5rem);
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 3.125rem);
  width: 100%;
}

.hero__title {
  flex: 1 1 280px;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: var(--white);
}

.hero-featured {
  width: min(550px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-featured__line,
.hero-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
}

.hero-featured__body,
.hero-featured__row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-featured__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-featured__title,
.hero-featured__label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.hero-featured__link {
  font-size: 1rem;
  letter-spacing: -0.03em;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, opacity 0.25s;
}

.hero-featured__link:hover {
  border-bottom-color: currentColor;
  opacity: 0.85;
}

.hero-featured__thumb,
.hero-thumb {
  display: block;
  width: 150px;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 0.25rem;
}

.hero-featured__thumb img,
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}

.hero-links__index {
  font-size: 1rem;
  color: var(--beige);
  letter-spacing: -0.03em;
}

.hero-links__group {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.hero-links__group a {
  font-size: 1rem;
  letter-spacing: -0.03em;
  position: relative;
}

.hero-links__group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.hero-links__group a:hover::after {
  width: 100%;
}

/* Use for free badge */
.use-free {
  position: fixed;
  right: 20px;
  bottom: 62px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 36px;
  padding: 0 0.85rem;
  background: var(--brown);
  color: var(--gray);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease);
}

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

.use-free svg {
  width: 10px;
  height: 10px;
}

@media (max-width: 1199px) {
  .header-right {
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }

  .header-motto {
    display: none;
  }

  .hero__frame {
    gap: clamp(4rem, 10vw, 6.25rem);
  }

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

  .hero-featured {
    width: 100%;
  }
}

@media (max-width: 809px) {
  .header-address {
    display: none;
  }

  .header-bar {
    padding-top: 1.25rem;
  }

  .site-header.is-scrolled .header-bar {
    padding-top: 12px;
  }

  .btn-outline {
    padding: 0 1rem;
    gap: 1rem;
  }

  .hero-featured__thumb {
    width: 120px;
  }

  .hero-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .use-free {
    right: 12px;
    bottom: 20px;
  }
}

/* Shared layout helpers */
.section-box {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.03em;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brown-light);
}

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--light:hover {
  background: var(--white);
  color: var(--brown);
}

.btn--dark {
  background: var(--brown);
  color: var(--white);
  border-radius: 12px;
  justify-content: center;
  font-weight: 500;
}

.btn--dark:hover {
  background: var(--brown-mid);
  color: var(--white);
}

.btn--block {
  display: flex;
  width: 100%;
}

/* Categories */
.categories {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3.5rem);
  text-align: center;
  overflow: hidden;
}

.categories__intro {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--muted);
  margin: 0 0 2.5rem;
  font-style: normal;
}

.category-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1.8vw, 1.1rem);
  width: min(100%, 920px);
  margin: 0 auto;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.8vw, 1.35rem);
  width: 100%;
}

.category-row__label {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  color: #c2bbb5;
  transition: color 0.28s linear;
}

.category-row__thumb {
  flex: none;
  overflow: hidden;
  background: var(--surface);
  opacity: 0.4;
  transform: scale(0.94);
  transition: opacity 0.28s linear, transform 0.28s var(--ease);
}

.category-row__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-row__thumb--sofa {
  width: clamp(54px, 8vw, 105px);
  aspect-ratio: 1.34667;
  border-radius: 15px;
}

.category-row__thumb--side {
  width: clamp(79px, 10vw, 155px);
  aspect-ratio: 1.98667;
  border-radius: 38px;
}

.category-row__thumb--table {
  width: clamp(93px, 12vw, 182px);
  aspect-ratio: 2.33333;
  border-radius: 15px;
}

.category-row__thumb--bed {
  width: clamp(40px, 5vw, 78px);
  aspect-ratio: 1;
  border-radius: 59px;
}

/* Featured products */
.featured {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 10vw, 7rem);
}

.featured__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.featured__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.15;
  color: var(--ink);
  white-space: nowrap;
}

.featured__title-accent {
  color: #a67c52;
  font-style: normal;
}

.product-slider {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.product-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.55rem;
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.product-card--large {
  flex: 1.85 1 0;
  min-width: 0;
}

.product-card__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 0.714286;
  width: 100%;
}

.product-card--large .product-card__media {
  aspect-ratio: 0.9;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media > img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.product-card__meta {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
  padding: 0 0.15rem;
}

.product-card__meta h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.07em;
  color: var(--ink);
}

/* Featured — CSS sticky stack (Framer), not a locked frame */
.new-item {
  width: 100%;
  overflow: visible;
  padding: 200px 50px 70px;
  background: var(--white);
}

.new-item__layout {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
  overflow: visible;
}

.new-item__copy {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  position: sticky;
  top: var(--featured-stick, 200px);
  align-self: flex-start;
  height: auto;
  overflow: visible;
}

.new-item__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.05;
  color: #392615;
  white-space: nowrap;
}

.new-item__about {
  margin: 0 0 1.75rem;
}

.new-item__about-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #d0b69f;
  font-style: normal;
  text-transform: none;
}

.new-item__about-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #585048;
  max-width: 52ch;
}

.specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 1.75rem;
  width: 100%;
}

.specs__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #d0b69f;
}

.specs__label {
  flex: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #392615;
}

.specs__value {
  margin: 0;
  text-align: right;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #736557;
}

.specs__row--colour {
  align-items: center;
}

.colour-swatches {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.colour-swatch {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  flex-shrink: 0;
}

.new-item__plan {
  aspect-ratio: 0.830816;
  width: 100%;
  height: auto;
  flex: none;
  margin: 0.35rem 0 0;
  overflow: hidden;
  border-radius: 10px;
}

.new-item__plan img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.new-item__gallery {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  display: block;
  height: auto;
  overflow: visible;
  align-self: flex-start;
}

.new-item__shot {
  position: sticky;
  top: var(--featured-stick, 200px);
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 0.83;
  margin: 0 0 25px;
  overflow: visible;
  background: transparent;
}

.new-item__shot:last-child {
  margin-bottom: 0;
}

.new-item__shot:nth-child(2) { z-index: 2; }
.new-item__shot:nth-child(3) { z-index: 3; }
.new-item__shot:nth-child(4) { z-index: 4; }

.new-item__shot-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #f0eeeb;
}

.new-item__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .new-item__copy,
  .new-item__shot {
    position: static;
  }
}

/* Inspired banner */
.inspired {
  position: relative;
  min-height: 78.8889vh;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 4.5rem);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.inspired__bg {
  position: absolute;
  inset: 0 0 -400px;
}

.inspired__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s, transform 1.2s var(--ease);
}

.inspired__veil {
  position: absolute;
  inset: 0;
  background: rgba(57, 38, 21, 0.3);
}

.inspired__intro,
.inspired__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem 2rem;
}

.inspired__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: min(100%, 12rem);
}

.inspired__kicker {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.inspired__title {
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  letter-spacing: -0.08em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.inspired__sub {
  max-width: 34ch;
  margin: 0;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1.15;
  color: var(--white);
}

/* Project case studies */
.projects {
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--white);
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 1520px;
  margin: 0 auto;
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.case__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.case__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.case__copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.07em;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 400;
}

.case__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case__label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--beige-soft);
}

.case__block > p:not(.case__label) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.45;
}

.case__split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.case__thumb {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 0.737463;
}

.case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case__hero {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
}

.case__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 350px);
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.case__person {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case__person img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.case__person strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.case__quote > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.case__stars {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1;
}

/* Services */
.services {
  width: 100%;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}

.services__title {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  width: 100%;
  color: var(--ink);
  white-space: nowrap;
}

.services__chip {
  display: inline-flex;
  flex: none;
  width: clamp(40px, 6vw, 78px);
  height: clamp(28px, 4.2vw, 52px);
  border-radius: 999px;
  overflow: hidden;
  vertical-align: middle;
}

.services__chip img {
  width: 100%;
  height: 100%;
}

.service-list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item__trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 42px 48px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 40px 0;
  text-align: left;
  cursor: pointer;
}

.service-item__icon {
  width: 36px;
  height: 36px;
  color: var(--wood);
  pointer-events: none;
}

.service-item__icon svg {
  width: 100%;
  height: 100%;
}

.service-item__num {
  font-size: 0.8rem;
  color: var(--muted);
  pointer-events: none;
}

.service-item__name {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.service-item__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.35s var(--ease);
}

.service-item.is-open .service-item__plus {
  transform: rotate(45deg);
}

.service-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.service-item.is-open .service-item__panel {
  max-height: 180px;
}

.service-item__panel p {
  margin: 0;
  padding: 0 0 40px 90px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Process — How we work */
.process {
  width: 100%;
  padding: 70px 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process .section-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.process__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  color: #736557;
  white-space: nowrap;
}

.process__layout {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
}

.process__media {
  flex: 1 0 0;
  width: 1px;
  max-width: 50%;
  height: 696px;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #f6f6f6;
}

.process__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  width: 485px;
  flex: none;
}

.process-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
}

.process-step__num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  border-radius: 29px;
  background: #f6f6f6;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.1;
  color: #392615;
}

.process-step__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 0 0;
  width: 1px;
  min-width: 0;
}

.process-step__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.1;
  color: #392615;
}

.process-step__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #585048;
}

.process__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.process__footer-num,
.process__footer-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.process__footer-num {
  color: #d0b69f;
}

.process__footer-label {
  color: #736557;
}

/* Testimonials */
/* Testimonials — Framer Graft parity */
.testimonials {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 70px 50px;
  color: var(--ink);
  overflow: clip;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}

.testimonials__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  overflow: clip;
}

.testimonials__head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.testimonials__kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.1em;
  color: var(--ink);
  white-space: nowrap;
}

.testimonials__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1em;
  color: #f6f6f6;
  text-align: right;
  white-space: nowrap;
}

.testimonials__marquee {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.testimonials__track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
  animation: review-marquee 48s linear infinite;
  will-change: transform;
}

.testimonials__track > li {
  flex: 0 0 381px;
  width: 381px;
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials__marquee:hover .testimonials__track {
  animation-play-state: paused;
}

@keyframes review-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  font-family: var(--font-body);
}

.review-card__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.review-card__avatar {
  width: 30px;
  height: 30px;
  border-radius: 25px;
  object-fit: cover;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.6em;
  color: var(--ink);
  text-transform: uppercase;
}

.review-card__quote {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3em;
  color: var(--brown-mid);
  text-wrap: balance;
}

.review-card__stars {
  width: 85px;
  height: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__stars svg {
  display: block;
  width: 85px;
  height: 18px;
}

.testimonials__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.testimonials__note {
  margin: 0;
  max-width: 300px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.4em;
  color: var(--ink);
}

.testimonials__numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  width: min-content;
}

.stat__num {
  margin: 0;
  font-family: var(--font-body);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1em;
  color: var(--ink);
  white-space: nowrap;
}

.stat__label {
  margin: 0;
  width: 143px;
  max-width: 143px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3em;
  color: var(--ink);
}

.testimonials__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonials__footer-num,
.testimonials__footer-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3em;
}

.testimonials__footer-num {
  color: var(--gray);
}

.testimonials__footer-label {
  color: var(--ink);
}

@media (max-width: 1199.98px) and (min-width: 810px) {
  .services__title,
  .team__head h2,
  .section-heading {
    font-size: 80px;
  }

  .process {
    padding: 50px;
  }

  .process__title {
    font-size: 80px;
  }

  .process__media {
    height: 500px;
  }

  .process__steps {
    flex: 1 0 0;
    width: 1px;
    gap: 35px;
  }

  .philosophy__intro h2 {
    font-size: 48px;
  }

  .philosophy__grid {
    grid-template-columns: 1.2fr 0.9fr 0.85fr 1fr;
    grid-template-rows: minmax(220px, 1fr) minmax(200px, 0.95fr);
    gap: 1rem;
    min-height: 560px;
  }

  .testimonials {
    padding: 50px;
  }

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

  .testimonials__marquee {
    height: 300px;
  }

  .testimonials__note {
    max-width: 150px;
  }

  .testimonials__kicker {
    font-size: 36px;
  }

  .testimonials__title {
    font-size: 80px;
    text-align: left;
  }

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

  .stat__num {
    font-size: 80px;
  }
}

@media (max-width: 809.98px) {
  .services,
  .team,
  .philosophy {
    padding-left: 30px;
    padding-right: 30px;
  }

  .process {
    padding: 35px 30px;
  }

  .process .section-box {
    gap: 35px;
  }

  .process__title {
    font-size: 44px;
  }

  .process__layout {
    flex-direction: column;
    gap: 35px;
  }

  .process__media {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .process__steps {
    width: 100%;
    gap: 35px;
  }

  .services__title,
  .team__head h2,
  .section-heading,
  .inspired__title,
  .new-item__title {
    font-size: clamp(1.65rem, 7.2vw, 2.5rem);
    white-space: nowrap;
  }

  .philosophy__intro h2 {
    font-size: clamp(1.55rem, 6.8vw, 2.35rem);
    white-space: nowrap;
  }

  .philosophy__intro {
    max-width: none;
  }

  .testimonials__kicker {
    font-size: 26px;
    white-space: nowrap;
    width: auto;
  }

  .testimonials__title {
    font-size: clamp(2rem, 10vw, 44px);
    text-align: left;
    white-space: nowrap;
  }

  .philosophy__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "workshop workshop"
      "grain sketch"
      "detail detail"
      "drift chair"
      "craft craft";
    gap: 0.85rem;
    min-height: 0;
  }

  .philosophy__item--workshop,
  .philosophy__item--sketch,
  .philosophy__item--grain,
  .philosophy__item--drift,
  .philosophy__item--chair {
    aspect-ratio: 1 / 1.05;
    height: auto;
  }

  .philosophy__item--workshop {
    aspect-ratio: 16 / 11;
  }

  .philosophy__aside--detail,
  .philosophy__aside--craft {
    align-self: start;
    max-width: none;
    padding: 0.25rem 0 0.5rem;
  }

  .testimonials {
    padding: 35px 30px;
  }

  .testimonials__box {
    gap: 30px;
  }

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

  .testimonials__marquee {
    height: 330px;
  }

  .testimonials__track > li {
    flex-basis: min(381px, calc(100vw - 60px));
    width: min(381px, calc(100vw - 60px));
  }

  .testimonials__meta {
    gap: 25px;
  }

  .testimonials__note {
    max-width: 143px;
    font-size: 16px;
  }

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

  .stat__num {
    font-size: 44px;
  }
}

/* Team */
.team {
  width: 100%;
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  background: var(--bg-soft);
}

.team__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.team__intro {
  max-width: 640px;
}

.team__head h2 {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  margin: 0 0 0.85rem;
  color: var(--ink);
  white-space: nowrap;
}

.team__head p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.team__accent {
  color: var(--brown-light);
}

.team__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.15rem;
}

.team__faces {
  display: flex;
  align-items: center;
}

.team__faces img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-soft);
  margin-left: -8px;
}

.team__faces img:first-child {
  margin-left: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.team-card__media {
  position: relative;
  aspect-ratio: 3 / 4.15;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.team-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(20, 14, 8, 0.72));
  color: var(--white);
  display: grid;
  gap: 0.15rem;
}

.team-card__meta strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.team-card__meta span {
  font-size: 0.78rem;
  opacity: 0.88;
  letter-spacing: -0.01em;
}

/* Design philosophy */
.philosophy {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  background: var(--bg-soft);
}

.philosophy__intro {
  max-width: none;
  margin: 0 0 clamp(2.25rem, 4.5vw, 3.25rem);
}

.philosophy__intro h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.05;
  color: var(--ink);
  white-space: nowrap;
}

.philosophy__intro h2 .philosophy__accent {
  font-style: normal;
  font-family: var(--font-display);
  color: #a67c52;
  font-weight: 400;
}

.philosophy__intro p {
  margin: 0;
  max-width: 380px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.03em;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.92fr 0.88fr 1.05fr;
  grid-template-rows: minmax(260px, 1.1fr) minmax(240px, 1fr);
  grid-template-areas:
    "workshop grain detail sketch"
    "craft drift chair sketch";
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  min-height: min(68vw, 680px);
}

.philosophy__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e4de;
  min-height: 0;
  height: 100%;
}

.philosophy__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.philosophy__item:hover img {
  transform: scale(1.04);
}

.philosophy__item--workshop {
  grid-area: workshop;
}

.philosophy__item--grain {
  grid-area: grain;
}

.philosophy__item--sketch {
  grid-area: sketch;
}

.philosophy__item--drift {
  grid-area: drift;
}

.philosophy__item--chair {
  grid-area: chair;
}

.philosophy__aside {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.philosophy__aside--detail {
  grid-area: detail;
  align-self: center;
  justify-self: start;
  padding-right: 0.5rem;
}

.philosophy__aside--craft {
  grid-area: craft;
  align-self: end;
  justify-self: start;
  max-width: 26ch;
  padding-bottom: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .review-card[aria-hidden="true"] {
    display: none;
  }
}

/* Contact */
.contact {
  position: relative;
  width: 100%;
  min-height: min(100vh, 900px);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  justify-items: center;
  align-content: center;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
}

.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1.5px) brightness(0.78);
  transform: scale(1.06);
}

.contact__veil {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 16, 0.28);
}

.contact-card {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  background: var(--surface);
  border-radius: 18px;
  padding: clamp(1.85rem, 4vw, 2.65rem);
  box-shadow: 0 24px 60px rgba(28, 22, 16, 0.28);
  font-family: var(--font-body);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}

.contact-card__sub {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.field span {
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(57, 38, 21, 0.14);
  border-radius: 10px;
  background: var(--gray);
  padding: 0.85rem 0.95rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, background 0.25s;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(57, 38, 21, 0.35);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brown-light);
  background: var(--white);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #b5452a;
}

.field__error {
  min-height: 1.1em;
  font-size: 0.78rem;
  font-style: normal;
  color: #b5452a;
}

.contact-card .btn--dark {
  margin-top: 0.35rem;
  min-height: 52px;
  border-radius: 12px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.contact-card__legal {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.contact-card__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--wood);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  overflow: hidden;
}

.footer-marquee {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.footer-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.footer-marquee__set {
  display: flex;
  flex: none;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

.footer-marquee__track img {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer-main {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3.5rem) 2rem;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 7.2rem);
  color: rgba(42, 36, 28, 0.05);
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-grid a,
.footer-contact p {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  transition: color 0.25s;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  min-width: min(280px, 70vw);
}

.footer-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0.4rem 0;
}

.footer-search button,
.to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
}

.footer-search button:hover,
.to-top:hover {
  background: var(--wood-deep);
  color: var(--white);
  border-color: var(--wood-deep);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--wood-deep);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 200;
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.toast.is-show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
  .product-card,
  .product-card--large {
    min-width: unset;
  }

  .product-card__media,
  .product-card--large .product-card__media {
    aspect-ratio: 0.714286;
  }
}

@media (max-width: 809px) {
  .product-grid {
    flex-direction: column;
  }

  .product-card,
  .product-card--large {
    flex: none;
    width: 100%;
    min-width: unset;
  }

  .product-card__media,
  .product-card--large .product-card__media {
    aspect-ratio: 0.788644;
  }

  .featured__title {
    font-size: clamp(0.92rem, 3.6vw, 1.25rem);
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .case {
    grid-template-columns: 1fr;
  }

  .case__hero {
    min-height: 500px;
    aspect-ratio: unset;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(243, 239, 232, 0.98);
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-family: var(--font-display);
    font-size: 2rem;
  }

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

  .featured__head,
  .new-item__layout,
  .process__layout,
  .footer-grid,
  .case__split,
  .inspired__intro {
    grid-template-columns: 1fr;
  }

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

  .inspired {
    min-height: 62.6852vh;
    padding: clamp(3rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 3.5rem);
  }

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

  .case__hero {
    min-height: 434px;
  }

  .new-item {
    padding: 2.5rem 30px 3rem;
  }

  .new-item__layout {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.75rem;
  }

  .new-item__copy {
    position: static;
    max-height: none;
    overflow: visible;
    width: 100%;
  }

  .new-item__gallery {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .new-item__shot {
    position: static;
    height: auto !important;
    min-height: 0;
    border-radius: 0;
  }

  .new-item__shot-frame {
    aspect-ratio: 538 / 648;
    border-radius: 12px;
  }

  .process-step__title {
    white-space: normal;
  }

  .service-item__panel p {
    padding-left: 0;
  }
}

@media (max-width: 809px) {
  .inspired {
    min-height: 62.8395vh;
    padding: 2.2rem 1.875rem;
  }

  .inspired__bg {
    bottom: -450px;
  }

  .inspired__veil {
    height: 83%;
    bottom: auto;
  }

  .case__quote {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .specs__row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .specs__value {
    text-align: left;
  }

  .service-item__trigger {
    grid-template-columns: 36px 1fr auto;
  }

  .service-item__num {
    display: none;
  }

  .category-row__thumb--sofa {
    width: 54px;
  }

  .category-row__thumb--side {
    width: 79px;
  }

  .category-row__thumb--table {
    width: 93px;
  }

  .category-row__thumb--bed {
    width: 40px;
  }

  .hero__title {
    font-size: clamp(2.15rem, 10.5vw, 3.4rem);
  }
}
