:root {
  color-scheme: light;
  --bg: #f5efe5;
  --paper: #fffaf2;
  --ink: #1d1914;
  --muted: #6f665d;
  --line: rgba(53, 43, 32, .16);
  --gold: #b9852e;
  --warm: #f4c66e;
  --graphite: #2d2b28;
  --cream: #fbf4e8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  z-index: 20;
  background-image: linear-gradient(115deg, rgba(255,255,255,.5), transparent 38%, rgba(185,133,46,.12));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255,250,242,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img, .footer img {
  width: 145px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) brightness(.72);
  mix-blend-mode: multiply;
}

.nav-links { display: flex; justify-content: center; gap: clamp(.8rem, 2vw, 2rem); color: var(--muted); font-size: .92rem; }
.nav-links a:hover { color: var(--ink); }
.switchers { display: flex; align-items: center; gap: .45rem; }
.pill, select {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  min-height: 36px;
}
.pill { padding: 0 .75rem; cursor: pointer; }
.pill.active { border-color: var(--gold); color: #805a18; background: #fff3d4; }
select { padding: 0 .65rem; }

.hero {
  min-height: 94svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 8rem clamp(1rem, 5vw, 5rem) 2rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245,239,229,.96) 0%, rgba(245,239,229,.78) 38%, rgba(245,239,229,.2) 68%),
    url("living-room.jpg") center right / cover no-repeat;
}

#heroScene {
  position: absolute;
  inset: auto 1% 6% auto;
  width: min(42vw, 560px);
  height: min(44vh, 480px);
  opacity: .58;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; max-width: 720px; }
.eyebrow {
  display: inline-flex;
  color: #8b5c17;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .76rem;
  margin-bottom: .85rem;
}
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 7vw, 6.2rem);
  line-height: .92;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
p { color: var(--muted); line-height: 1.6; }
.hero-copy p { max-width: 560px; font-size: clamp(1rem, 1.55vw, 1.2rem); color: #4d443b; }

.hero-actions, .chips { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, #f5d58c, #b9852e); color: #17110a; border: 0; font-weight: 800; }
.btn.ghost { background: rgba(255,255,255,.72); color: var(--ink); }

.hero-stats {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  right: clamp(1rem, 5vw, 5rem);
  bottom: 1.4rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: .75rem;
  max-width: 720px;
}
.hero-stats div, .capacity-card {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,250,242,.72);
  backdrop-filter: blur(16px);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(92,71,44,.12);
}
.hero-stats strong, .capacity-card strong { display: block; font-size: 1.55rem; color: #8d601e; }
.hero-stats span, .capacity-card span { color: var(--muted); font-size: .86rem; }

.section, .projects, .studio, .business, .footer, .visual-strip {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: end;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.intro h2 { max-width: 860px; }
.section-heading { max-width: 850px; margin-bottom: 2rem; }

.visual-strip {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: var(--paper);
}
.mood {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}
.mood.large { min-height: 520px; }
.mood img { width: 100%; height: 100%; object-fit: cover; }
.mood figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255,250,242,.82);
  color: var(--ink);
  border-radius: 999px;
  padding: .55rem .8rem;
  font-weight: 800;
  font-size: .82rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 56px rgba(96,72,42,.1);
}
.product-art {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #e9dfd0;
}
.product-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,250,242,0) 48%, rgba(36,25,13,.34));
  z-index: 1;
  pointer-events: none;
}
.product-art img { width: 100%; height: 350px; object-fit: cover; transition: transform .65s ease; }
.product:hover .product-art img { transform: scale(1.045); }
.product-body { padding: 1.15rem; margin-top: auto; }
.product-body h3 { margin: 0 0 .45rem; font-size: 1.22rem; }
.product-body p { min-height: 48px; margin-bottom: 0; }
.product-meta { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-top: 1rem; }
.price { color: #8d601e; font-weight: 900; font-size: 1.1rem; }

.projects {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  background: #efe3d1;
}
.project-visual {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 24px 80px rgba(75,52,24,.16);
}
.project-visual img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.chips span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  padding: .6rem .8rem;
  color: #51483e;
  font-weight: 700;
}

.studio {
  display: grid;
  grid-template-columns: .95fr .75fr 1.05fr;
  gap: 1.1rem;
  align-items: stretch;
  background: var(--paper);
}
.studio-visual {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  grid-column: span 1;
}
.studio-visual img { width: 100%; height: 100%; object-fit: cover; }
.model-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .25rem;
  background: rgba(255,250,242,.86);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 8px;
  padding: 1rem;
  backdrop-filter: blur(14px);
}
.model-card strong { font-size: 1.15rem; }
.model-card span { color: var(--muted); font-size: .9rem; }
.studio-copy { align-self: center; }

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 54px rgba(96,72,42,.1);
}
label { display: grid; gap: .35rem; color: var(--muted); font-size: .88rem; }
input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem;
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.file input { padding: .6rem; }
.form-status { margin: .2rem 0 0; grid-column: 1 / -1; }

.capacity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #eadbc6;
}
.capacity-card { min-height: 150px; display: grid; align-content: center; }
.capacity-card strong { font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .9; }

.business { background: linear-gradient(180deg, var(--paper), #efe3d1); border-top: 1px solid var(--line); }
.business-form { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.business-form label.full, .business-form .full { grid-column: 1 / -1; }
.business-form label:nth-child(1), .business-form label:nth-child(2), .business-form label:nth-child(3), .business-form label:nth-child(4) { grid-column: span 2; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--paper);
}
.footer p { margin: .25rem 0 0; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 150px 1fr; }
  .nav-links { display: none; }
  .switchers { justify-content: end; }
  .hero-stats, .intro, .product-grid, .projects, .studio, .capacity, .visual-strip { grid-template-columns: 1fr; }
  .hero-stats { position: relative; left: auto; right: auto; bottom: auto; margin-top: 2rem; max-width: none; }
  .mood, .mood.large, .project-visual, .project-visual img, .studio-visual { min-height: 360px; }
  .studio-copy { order: -1; }
}

@media (max-width: 640px) {
  .site-header { padding: .7rem .85rem; grid-template-columns: 1fr; gap: .55rem; }
  .brand img { width: 132px; height: 42px; }
  .switchers { justify-content: space-between; }
  .hero {
    padding-top: 9.5rem;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(245,239,229,.96) 0%, rgba(245,239,229,.72) 62%, rgba(245,239,229,.9) 100%),
      url("living-room.jpg") center / cover no-repeat;
  }
  #heroScene { position: relative; width: 100%; height: 280px; inset: auto; margin-top: 1rem; }
  .form, .business-form { grid-template-columns: 1fr; }
  .business-form label:nth-child(n) { grid-column: 1 / -1; }
  .footer { flex-direction: column; align-items: flex-start; }
  .product { min-height: 410px; }
  .product-art { min-height: 240px; }
  .product-art img { height: 240px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
}
