:root {
  --paper: #fffdf8;
  --ivory: #f8f4ec;
  --linen: #eee5d8;
  --sand: #d8c8b5;
  --ink: #20201d;
  --muted: #6f695f;
  --line: #d6cabb;
  --terracotta: #b6542a;
  --terracotta-dark: #8d3f20;
  --moss: #59624b;
  --steel: #40515a;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(32, 32, 29, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(248, 244, 236, 0.86);
  border-bottom: 1px solid rgba(214, 202, 187, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 3px;
  font-family: "Noto Serif", serif;
  line-height: 1;
}

.brand span {
  font-size: 1.05rem;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--terracotta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button {
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 800;
}

.button svg,
.text-link svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button:hover,
.icon-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--terracotta);
  color: var(--white);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  border: 1px solid rgba(255, 253, 248, 0.6);
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--steel);
}

.icon-button {
  width: 46px;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(76px, 11vw, 132px) clamp(20px, 7vw, 88px);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.82), rgba(32, 32, 29, 0.55) 44%, rgba(32, 32, 29, 0.08)),
    linear-gradient(0deg, rgba(18, 18, 16, 0.42), rgba(18, 18, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f2b088;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-content p:not(.eyebrow) {
  width: min(580px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.proof-strip article {
  min-height: 136px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--ivory);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section-heading p:not(.eyebrow),
.consult-copy p,
.showroom-copy p,
.contact-panel p,
.contact-aside p {
  color: var(--muted);
  font-size: 1rem;
}

.split-heading {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 32px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: minmax(250px, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  background: var(--linen);
}

.category-card-large {
  grid-row: span 2;
}

.category-card img,
.product-card img,
.consult-media img,
.showroom-media img,
.contact-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card img {
  transition: transform 700ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 17, 15, 0.76), rgba(17, 17, 15, 0.04) 62%);
}

.category-card span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.category-card:hover img {
  transform: scale(1.045);
}

.featured {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  background: linear-gradient(180deg, var(--ivory), #edf1ea);
}

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

.product-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-card img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--linen);
}

.product-tag {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--terracotta);
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease;
}

.text-link:hover {
  color: var(--terracotta-dark);
}

.consult,
.showroom,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.consult-copy,
.showroom-copy,
.contact-panel {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li,
.showroom-info div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg,
.showroom-info svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--moss);
}

.consult-media,
.showroom-media,
.contact-aside {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--linen);
}

.consult-media {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.showroom {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  background: var(--ink);
  color: var(--white);
}

.showroom-copy p,
.showroom-info div {
  color: rgba(255, 255, 255, 0.74);
}

.showroom .eyebrow {
  color: #f2b088;
}

.showroom-media {
  aspect-ratio: 16 / 11;
}

.showroom-info {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
}

.showroom-info svg {
  color: #f2b088;
}

.contact {
  align-items: stretch;
}

.contact-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.72);
}

.contact-detail svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--terracotta);
}

.contact-detail span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.contact-detail:hover {
  border-color: rgba(182, 84, 42, 0.45);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(182, 84, 42, 0.12);
}

.contact-aside {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.contact-aside div {
  padding: 26px;
  background: var(--ink);
  color: var(--white);
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--ivory);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.08rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 15px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 73px 12px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 900;
  }

  .mobile-nav a:hover {
    background: var(--ivory);
  }

  .proof-strip,
  .product-grid,
  .consult,
  .showroom,
  .contact,
  .split-heading {
    grid-template-columns: 1fr;
  }

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

  .category-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 76svh;
    padding: 70px 20px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 18, 16, 0.88), rgba(32, 32, 29, 0.56)),
      linear-gradient(0deg, rgba(18, 18, 16, 0.5), rgba(18, 18, 16, 0));
  }

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

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .hero-actions .button,
  .consult .button,
  .showroom .button {
    width: 100%;
  }

  .proof-strip {
    display: block;
  }

  .proof-strip article + article {
    border-top: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
  }

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

  .category-card,
  .category-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .site-footer {
    display: grid;
  }
}
