:root {
  --ink: #222823;
  --muted: #667066;
  --paper: #f8f4eb;
  --soft: #eee6d8;
  --cream: #fffaf2;
  --white: #ffffff;
  --moss: #385946;
  --moss-dark: #223d31;
  --clay: #a35f3e;
  --charcoal: #171d1a;
  --blue: #486979;
  --line: rgba(34, 40, 35, 0.14);
  --shadow: 0 28px 70px rgba(30, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
input,
select,
textarea,
button {
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 244, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss-dark);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

nav {
  gap: clamp(12px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--moss-dark);
}

.hero {
  position: relative;
  min-height: calc(92svh - 71px);
  display: grid;
  align-items: end;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 29, 26, 0.74) 0%, rgba(23, 29, 26, 0.46) 42%, rgba(23, 29, 26, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 29, 26, 0.68) 0%, rgba(23, 29, 26, 0) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  background: var(--charcoal);
}

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

.hero-copy {
  max-width: 810px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.custom-cta .eyebrow,
.email-band .eyebrow {
  color: #e3b17d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 8.5vw, 8.8rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p,
.custom-cta p,
.email-band p {
  color: rgba(255, 255, 255, 0.82);
}

.lede {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact-form button,
.email-form button,
.dbc-submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.contact-form button,
.email-form button,
.dbc-submit {
  background: var(--moss-dark);
  color: var(--white);
}

.hero .button.primary,
.custom-cta .button.primary {
  background: var(--white);
  color: var(--moss-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.text-link {
  align-self: center;
  color: var(--moss-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.credibility-strip div {
  min-height: 130px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.credibility-strip div:last-child {
  border-right: 0;
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  margin-bottom: 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.credibility-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head p {
  max-width: 640px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.collection-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(23, 29, 26, 0.12), rgba(23, 29, 26, 0.8)),
    url("generated/optimized/product-detail.jpg") center / cover;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(30, 35, 29, 0.1);
}

.collection-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(23, 29, 26, 0.1), rgba(23, 29, 26, 0.75)),
    url("generated/optimized/hero-dining-room.jpg") center / cover;
}

.collection-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(23, 29, 26, 0.1), rgba(23, 29, 26, 0.75)),
    url("generated/optimized/workshop-process.jpg") center / cover;
}

.collection-card.tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 436px;
  background:
    linear-gradient(180deg, rgba(23, 29, 26, 0.08), rgba(23, 29, 26, 0.76)),
    url("generated/optimized/hero-dining-room.jpg") center / cover;
}

.collection-card.dark {
  background:
    linear-gradient(135deg, rgba(56, 89, 70, 0.96), rgba(23, 29, 26, 0.96)),
    url("generated/optimized/workshop-process.jpg") center / cover;
}

.collection-card span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card strong {
  max-width: 360px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.08;
}

.product-showcase {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-feature img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.product-copy {
  padding: clamp(28px, 5vw, 54px);
}

.product-copy h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--ink);
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-list article,
.process-grid article,
.testimonial-grid figure,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 44, 37, 0.08);
}

.product-list article {
  padding: 24px;
}

.product-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.product-list small {
  color: var(--clay);
  font-weight: 900;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.story-points div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.story-points strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
}

.story-points span {
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  background: var(--moss-dark);
  color: var(--white);
}

.process-section p {
  color: rgba(255, 255, 255, 0.74);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.step-icon,
.dbc-status-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.transformations {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.transformation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.transformation-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.transformation-card div {
  padding: clamp(24px, 4vw, 42px);
}

.transformation-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss);
}

.testimonials {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid figure {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.22;
}

figcaption {
  margin-top: 18px;
  color: var(--clay);
  font-weight: 900;
}

.custom-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(23, 29, 26, 0.94), rgba(34, 61, 49, 0.94)),
    url("generated/optimized/workshop-process.jpg") center / cover;
  color: var(--white);
}

.contact-form,
.email-form,
.dbc-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(31, 44, 37, 0.12);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

label span {
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 21px 22px;
}

.faq-grid summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin-bottom: 0;
}

.email-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: center;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.email-band h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.email-form {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.email-form input {
  border-color: rgba(255, 255, 255, 0.2);
}

.email-form button {
  background: var(--clay);
}

.dbc-preview-boundary {
  position: relative;
  z-index: 12;
}

.dbc-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(420px, calc(100vw - 36px));
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #121a24;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.dbc-copilot {
  display: none;
  padding: 70px clamp(18px, 5vw, 72px);
  background: #111827;
  color: var(--white);
}

.is-open .dbc-copilot {
  display: block;
}

.dbc-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
}

.dbc-copy h2,
.dbc-copy p,
.dbc-form h3,
.dbc-form p {
  color: var(--white);
}

.dbc-kicker,
.dbc-interface-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.dbc-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #111827;
  font-size: 0.72rem;
}

.dbc-interface-label {
  color: #b9f1ce;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbc-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.dbc-status-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.dbc-status-grid span,
.dbc-status-grid strong {
  display: block;
}

.dbc-status-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.dbc-status-grid strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dbc-status-icon.green {
  background: var(--moss);
}

.dbc-status-icon.rust {
  background: var(--clay);
}

.dbc-status-icon.blue {
  background: var(--blue);
}

.dbc-form {
  background: var(--white);
  color: var(--ink);
}

.dbc-form h3 {
  color: var(--ink);
}

.dbc-form p {
  margin: 3px 0 0;
  color: var(--muted);
}

.dbc-form-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dbc-form-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.dbc-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dbc-upload input {
  padding: 12px;
}

.dbc-file-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.dbc-hidden {
  position: absolute;
  left: -9999px;
}

.dbc-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.dbc-note {
  margin: 0;
  font-size: 0.82rem;
}

.dbc-result {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(56, 89, 70, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: rgba(56, 89, 70, 0.08);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 0.5fr));
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 72px) 76px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .collection-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout,
  .product-feature,
  .story-section,
  .transformations,
  .custom-cta,
  .email-band,
  .dbc-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-feature img {
    min-height: 360px;
  }

  .story-image img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(23, 29, 26, 0.22) 0%, rgba(23, 29, 26, 0.84) 60%, rgba(23, 29, 26, 0.92) 100%);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .credibility-strip,
  .testimonial-grid,
  .faq-grid,
  .dbc-status-grid,
  .dbc-field-row {
    grid-template-columns: 1fr;
  }

  .credibility-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-strip div:last-child {
    border-bottom: 0;
  }

  .collection-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .collection-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .spec-list div,
  .story-points div,
  .email-form {
    grid-template-columns: 1fr;
  }

  .dbc-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dbc-toggle {
    left: 18px;
    right: 18px;
    max-width: none;
  }
}
