/* 01. Tokens and reset */
:root {
  --bg: #121110;
  --bg-2: #1B1917;
  --bg-3: #262320;
  --line: rgba(199, 192, 166, .14);
  --stone: #C7C0A6;
  --stone-2: #A39C84;
  --amber: #E9B57C;
  --amber-2: #F3D9A4;
  --ink: #F1EBE0;
  --ink-2: #B9B1A3;
  --ink-3: #7E786E;
  --black: #242626;
  --white: #FFFFFF;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

[hidden] {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

::selection {
  color: var(--bg);
  background: var(--amber-2);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

main > .section,
main > .dark-banner {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--bg);
  background: var(--amber);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--stone);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.dark-banner h2,
.tables-hero h2,
.colors h2,
.contact h2 {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.section-heading > p:last-child,
.contact__header > p:last-child {
  max-width: 46rem;
  color: var(--ink-2);
}

.section-heading .section-heading__meta {
  margin: -.55rem 0 1.2rem;
  color: var(--stone-2);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.45rem;
  border: 1px solid var(--amber);
  border-radius: 1px;
  color: var(--bg);
  background: var(--amber);
  box-shadow: 0 0 60px -20px rgba(233, 181, 124, .35);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  background: var(--amber-2);
  box-shadow: 0 0 65px -15px rgba(233, 181, 124, .48);
}

.button--outline {
  color: var(--ink);
  border-color: rgba(241, 235, 224, .42);
  background: rgba(18, 17, 16, .18);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--bg);
  border-color: var(--amber-2);
}

.button--small {
  min-height: 2.6rem;
  padding-inline: 1.05rem;
  font-size: .68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--stone-2);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  transition: border-color 200ms ease, color 200ms ease;
}

.text-link:hover {
  color: var(--amber-2);
  border-color: var(--amber);
}

/* 02. Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 0;
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5rem;
  border-bottom: 1px solid transparent;
  background: rgba(18, 17, 16, 0);
  content: "";
  pointer-events: none;
  transition: background 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled::before,
.menu-open .site-header::before {
  border-color: var(--line);
  background: rgba(18, 17, 16, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  position: relative;
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  position: relative;
  z-index: 103;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1;
}

.wordmark__name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .22em;
}

.wordmark__sub {
  margin-top: .32rem;
  color: var(--stone-2);
  font-size: .47rem;
  font-weight: 500;
  letter-spacing: .31em;
}

.nav__menu,
.nav__links {
  display: flex;
  align-items: center;
}

.nav__menu {
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.nav__links {
  gap: clamp(1rem, 2.15vw, 2.15rem);
}

.nav__links a {
  position: relative;
  color: var(--ink-2);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color 180ms ease;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 103;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: .55rem;
  width: 1.65rem;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 1.05rem;
}

.menu-toggle span:last-child {
  top: 1.65rem;
}

/* 03. Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: radial-gradient(circle at 78% 48%, #40352c 0, var(--bg-2) 32%, var(--bg) 75%);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(18, 17, 16, .94) 0%, rgba(18, 17, 16, .78) 38%, rgba(18, 17, 16, .17) 74%, rgba(18, 17, 16, .1) 100%), linear-gradient(0deg, rgba(18, 17, 16, .5), transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 8rem;
}

.hero h1 {
  max-width: 43rem;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--amber-2);
  font-weight: 400;
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 2.25rem;
  color: var(--ink-2);
  font-size: clamp(.94rem, 1.25vw, 1.07rem);
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.8rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  color: var(--stone-2);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(var(--stone), transparent);
}

/* 04. Brand claims */
.claims {
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.claims__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: 1.65rem;
}

.claim {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem .75rem;
}

.claim svg {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--stone);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.claim h2 {
  margin-bottom: .2rem;
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.4;
}

.claim p {
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: .6rem;
  line-height: 1.45;
}

/* 05. Signature collections */
.collections {
  background: linear-gradient(180deg, var(--bg), #151311 50%, var(--bg));
}

.series-tabs {
  display: grid;
  max-width: 54rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
}

.series-tab {
  display: flex;
  min-width: 0;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem .7rem;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  background: transparent;
  font-size: clamp(.68rem, 1.25vw, .8rem);
  font-weight: 500;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.series-tab:last-child {
  border-right: 0;
}

.series-tab:hover,
.series-tab.is-selected {
  color: var(--ink);
  background: var(--bg-3);
}

.swatch {
  display: inline-block;
  width: .9rem;
  height: .9rem;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .28);
}

.swatch--beige {
  border: 1px solid var(--line);
  background: var(--stone);
}

.swatch--black {
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--black);
}

.swatch--white {
  border: 1px solid var(--line);
  background: var(--white);
}

.swatch--sand {
  background: #D9CDB4;
}

.swatch--pearl {
  border: 1px solid var(--line);
  background: #F2EDE3;
}

.collection-intro {
  display: grid;
  max-width: 67rem;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.collection-intro h3 {
  margin-bottom: .3rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.1;
}

.collection-intro__subtitle {
  margin-bottom: 0;
  color: var(--stone-2);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.collection-intro > p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: .9rem;
}

.type-switcher {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.type-tabs,
.geo-tabs {
  display: flex;
  gap: 1.6rem;
}

.type-tab,
.geo-tab {
  position: relative;
  padding: .55rem 0;
  border: 0;
  color: var(--ink-3);
  background: transparent;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.type-tab::after,
.geo-tab::after {
  position: absolute;
  right: 0;
  bottom: -.66rem;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.type-tab:hover,
.type-tab.is-selected,
.geo-tab:hover,
.geo-tab.is-selected {
  color: var(--ink);
}

.type-tab.is-selected::after,
.geo-tab.is-selected::after {
  transform: scaleX(1);
}

.type-switcher__note {
  margin-bottom: .55rem;
  color: var(--ink-3);
  font-size: .68rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem) clamp(.75rem, 2vw, 1.65rem);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 250ms ease, transform 250ms ease;
}

.products-grid.is-changing,
.geometric-grid.is-changing {
  opacity: 0;
  transform: translateY(.25rem);
}

.no-js .product:not([data-series="beige"][data-type="floor"]),
.no-js .geo-product:not([data-geo-type="floor"]) {
  display: none;
}

.product,
.geo-product,
.table-product {
  min-width: 0;
}

.product__open,
.geo-product__open,
.table-product__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.product__media,
.geo-product__media,
.table-product__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 0 55px -28px rgba(233, 181, 124, .2);
  transition: box-shadow 350ms ease;
}

.product__media--table,
.product__media--floor {
  aspect-ratio: 3 / 5;
}

.product__media--pendant,
.table-product__media {
  aspect-ratio: 4 / 3;
}

.product__media::after,
.geo-product__media::after,
.table-product__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 192, 166, .07);
  content: "";
  pointer-events: none;
}

.product__media img,
.geo-product__media img,
.table-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .65, .3, 1);
}

.product__open:hover .product__media,
.geo-product__open:hover .geo-product__media,
.table-product__open:hover .table-product__media {
  box-shadow: 0 0 64px -18px rgba(233, 181, 124, .38);
}

.product__open:hover img,
.geo-product__open:hover img,
.table-product__open:hover img {
  transform: scale(1.03);
}

.product__info,
.geo-product__info,
.table-product__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product__info {
  position: relative;
  padding: 1rem 0 0 2rem;
}

.product__number {
  position: absolute;
  top: 1.28rem;
  left: 0;
  color: var(--stone);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.product__name,
.geo-product__name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
}

.product__meta,
.table-product__meta {
  margin-top: .28rem;
  color: var(--ink-3);
  font-size: .8rem;
}

/* 06. Dark series banner */
.dark-banner {
  position: relative;
  display: flex;
  min-height: 72vh;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 28% 50%, #302927, var(--bg) 66%);
}

.dark-banner__image,
.dark-banner__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dark-banner__image {
  object-fit: cover;
}

.dark-banner__shade {
  background: linear-gradient(90deg, rgba(18, 17, 16, .08) 0%, rgba(18, 17, 16, .38) 42%, rgba(18, 17, 16, .94) 75%, rgba(18, 17, 16, .98) 100%);
}

.dark-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 6rem;
  padding-left: max(52%, 1.25rem);
}

.dark-banner__content p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 2rem;
  color: var(--ink-2);
}

/* 07. Architectural series */
.geometric {
  background: var(--bg-2);
}

.geometric__header {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.geometric__header .section-heading {
  margin-bottom: 0;
}

.geo-tabs {
  width: max-content;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}

.geometric-grid {
  display: flex;
  width: 100%;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--stone-2) var(--bg-3);
  transition: opacity 250ms ease, transform 250ms ease;
}

.geo-product {
  flex: 0 0 min(78vw, 19rem);
  scroll-snap-align: start;
}

.geo-product__media--floor {
  aspect-ratio: 2 / 5;
}

.geo-product__media--pendant {
  aspect-ratio: 4 / 3;
}

.geo-product__info {
  padding-top: 1rem;
}

.geo-product__number {
  margin-bottom: .35rem;
  color: var(--stone);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
}

.geo-product__text,
.table-product__text {
  margin-top: .65rem;
  color: var(--ink-2);
  font-size: .75rem;
  line-height: 1.65;
}

/* 08. Coffee tables */
.tables {
  padding-top: 0;
}

.tables-hero {
  position: relative;
  display: flex;
  min-height: 68vh;
  min-height: 68svh;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 74% 70%, #43362b, var(--bg) 68%);
}

.tables-hero__image,
.tables-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tables-hero__image {
  object-fit: cover;
}

.tables-hero__shade {
  background: linear-gradient(90deg, rgba(18, 17, 16, .94) 0%, rgba(18, 17, 16, .68) 45%, rgba(18, 17, 16, .12) 80%), linear-gradient(0deg, rgba(18, 17, 16, .32), transparent 60%);
}

.tables-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.tables-hero__content h2,
.tables-hero__content > p:not(.eyebrow) {
  max-width: 35rem;
}

.tables-hero__content > p:not(.eyebrow) {
  margin-bottom: 1.2rem;
  color: var(--ink-2);
}

.tables-hero__content > span {
  color: var(--stone-2);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.7;
  text-transform: uppercase;
}

.tables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 1.4rem;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.table-product__info {
  padding-top: 1rem;
}

.table-product__heading {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.table-product__heading span {
  margin-right: .45rem;
  color: var(--stone);
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.table-details {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-block: 1px solid var(--line);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 1.6rem 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
  color: var(--ink-2);
  font-size: .69rem;
}

.feature-list svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.25;
}

.table-details__foot {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.table-details__foot p {
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: .7rem;
}

.table-colors {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}

.table-colors > span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-2);
  font-size: .68rem;
}

.table-colors .swatch {
  width: .72rem;
  height: .72rem;
}

/* 09. Color and texture */
.colors {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-2);
  background-image: url("../assets/hero/texture-stone.jpg");
  background-position: center;
  background-size: cover;
}

.colors__shade {
  position: absolute;
  inset: 0;
  background: rgba(18, 17, 16, .7);
}

.colors__inner {
  position: relative;
  z-index: 1;
}

.colors__header {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.colors__header h2 {
  margin-bottom: 0;
}

.colors__header > p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--ink-2);
}

.color-grid {
  display: grid;
  gap: 1rem;
}

.color-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: rgba(27, 25, 23, .7);
  backdrop-filter: blur(5px);
}

.color-card__sample {
  display: block;
  width: clamp(5rem, 9vw, 7.5rem);
  height: clamp(5rem, 9vw, 7.5rem);
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: inset 0 4px 14px rgba(0, 0, 0, .22), 0 16px 34px rgba(0, 0, 0, .2);
}

.color-card__sample--beige {
  border: 1px solid var(--line);
  background: #C7C0A6;
}

.color-card__sample--black {
  border: 1px solid rgba(199, 192, 166, .32);
  background: radial-gradient(circle at 35% 30%, #34373a 0, #242626 55%, #1a1c1c 100%);
  box-shadow: 0 0 40px -14px rgba(233, 181, 124, .22);
}

.color-card__sample--white {
  border: 1px solid var(--line);
  background: #FFFFFF;
}

.color-card h3 {
  margin-bottom: 1.35rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.color-card dl {
  margin-bottom: 0;
}

.color-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .65rem;
}

.color-card dt {
  color: var(--ink-3);
}

.color-card dd {
  margin-bottom: 0;
  color: var(--ink-2);
}

/* 10. Process */
.process {
  background: var(--bg);
}

.process__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
}

.process__quote h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.process__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__steps > li > span {
  padding-top: .25rem;
  color: var(--stone);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.process__steps h3 {
  margin-bottom: .3rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.process__steps p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: .8rem;
}

/* 11. Contact and footer */
.contact {
  border-top: 1px solid var(--line);
  background: linear-gradient(155deg, var(--bg-2), var(--bg));
}

.contact__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact__grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: var(--bg-2);
  transition: background 220ms ease;
}

.contact-card:hover {
  background: var(--bg-3);
}

.contact-card > span {
  color: var(--stone);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.contact-card h3 {
  margin: 2rem 0 .3rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-card p {
  max-width: calc(100% - 2.5rem);
  margin-bottom: 0;
  overflow-wrap: anywhere;
  color: var(--ink-2);
  font-size: .73rem;
}

.contact-card svg {
  position: absolute;
  right: 1.6rem;
  bottom: 1.9rem;
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.25;
  transition: transform 200ms ease;
}

.contact-card:hover svg {
  transform: translateX(.25rem);
}

.footer {
  padding-top: 4rem;
  border-top: 1px solid var(--line);
  background: #0d0c0b;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer__grid > div > p {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  color: var(--ink-3);
  font-size: .72rem;
}

.footer__nav {
  display: grid;
  align-content: start;
  gap: .65rem;
}

.footer__nav a {
  width: max-content;
  color: var(--ink-2);
  font-size: .72rem;
  transition: color 180ms ease;
}

.footer__nav a:hover {
  color: var(--amber-2);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: .6rem;
  letter-spacing: .05em;
}

/* 12. Lightbox */
.lightbox {
  position: fixed;
  z-index: 250;
  inset: 0;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, .93);
  backdrop-filter: blur(10px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(70rem, calc(100% - 2rem));
  height: calc(100% - 2rem);
  grid-template-rows: minmax(0, 1fr) auto auto;
  margin: 1rem auto;
  background: var(--bg);
  box-shadow: 0 0 70px rgba(0, 0, 0, .5);
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: .75rem;
  right: .75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0 0 .2rem;
  border: 1px solid rgba(241, 235, 224, .35);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(18, 17, 16, .76);
  font-family: var(--body);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.lightbox__stage {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 1.25rem;
  background: var(--bg-2);
}

.lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__details {
  display: grid;
  gap: .5rem 2rem;
  padding: 1rem 1.25rem .75rem;
  border-top: 1px solid var(--line);
}

.lightbox__details h2 {
  margin-bottom: .1rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.lightbox__details p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: .7rem;
  line-height: 1.5;
}

.lightbox__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.25rem;
  border-top: 1px solid var(--line);
}

.lightbox__controls button {
  width: 2.5rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox__count {
  color: var(--ink-3);
  font-size: .62rem;
  letter-spacing: .12em;
}

/* 13. Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* 14. Responsive — 640 */
@media (min-width: 640px) {
  .claims__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-intro,
  .colors__header {
    grid-template-columns: minmax(15rem, .85fr) minmax(18rem, 1fr);
    align-items: end;
  }

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

  .geometric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.25rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .geo-product {
    min-width: 0;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem 1rem;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr auto;
  }

  .footer__nav {
    min-width: 12rem;
    grid-template-columns: repeat(2, auto);
    gap: .65rem 2rem;
  }

  .lightbox__details {
    grid-template-columns: minmax(12rem, .55fr) 1fr;
    align-items: center;
  }
}

/* 15. Responsive — 900 */
@media (min-width: 900px) {
  .collection-intro {
    gap: 5rem;
  }

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

  .geometric__header {
    grid-template-columns: 1fr auto;
  }

  .process__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr);
    align-items: start;
  }

  .table-details__foot {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .table-details__foot p {
    text-align: right;
  }
}

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

  .nav__menu {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    padding: 6rem clamp(1.25rem, 8vw, 4rem) 3rem;
    background: rgba(18, 17, 16, .98);
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
  }

  .menu-open .nav__menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:first-child,
  .menu-open .menu-toggle span:last-child {
    top: 1.35rem;
  }

  .menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .nav__links a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 300;
  }

  .nav__menu .button {
    align-self: flex-start;
  }
}

/* 16. Responsive — 1200 */
@media (min-width: 1200px) {
  .claims__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

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

  .feature-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-list li + li {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }
}

/* 17. Small screens */
@media (max-width: 639px) {
  .hero__shade {
    background: linear-gradient(90deg, rgba(18, 17, 16, .92), rgba(18, 17, 16, .5) 74%, rgba(18, 17, 16, .24)), linear-gradient(0deg, rgba(18, 17, 16, .65), transparent 55%);
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    justify-content: flex-end;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 10rem;
  }

  .series-tab {
    min-height: 3.75rem;
    flex-direction: column;
    gap: .35rem;
    font-size: .62rem;
  }

  .type-switcher {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }

  .type-tabs {
    width: 100%;
    justify-content: space-between;
    gap: .7rem;
  }

  .type-tab {
    font-size: .62rem;
  }

  .type-tab::after {
    bottom: -.67rem;
  }

  .dark-banner {
    align-items: flex-end;
  }

  .dark-banner__image {
    object-position: 32% center;
  }

  .dark-banner__shade {
    background: linear-gradient(0deg, rgba(18, 17, 16, .98) 0%, rgba(18, 17, 16, .65) 55%, rgba(18, 17, 16, .08) 100%);
  }

  .dark-banner__content {
    padding-left: 1.25rem;
  }

  .tables-hero {
    align-items: flex-start;
  }

  .tables-hero__image {
    object-position: 60% center;
  }

  .tables-hero__shade {
    background: linear-gradient(180deg, rgba(18, 17, 16, .92), rgba(18, 17, 16, .48) 62%, rgba(18, 17, 16, .32));
  }

  .products-grid {
    row-gap: 2.25rem;
  }

  .product__info {
    padding-left: 1.55rem;
  }

  .product__name {
    font-size: 1.2rem;
  }

  .lightbox__dialog {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    margin: .5rem;
  }
}

/* 18. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .products-grid,
  .geometric-grid,
  .product__media img,
  .geo-product__media img,
  .table-product__media img,
  .nav__menu,
  .menu-toggle span,
  .contact-card svg {
    transition: none;
  }
}

/* 13. WhatsApp sticky button */
.wa-fab {
  position: fixed;
  z-index: 200;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  place-items: center;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.wa-fab:hover {
  transform: translateY(-2px);
  background: #2ee07a;
}

.wa-fab:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.wa-fab svg {
  width: 1.7rem;
  height: 1.7rem;
}

.lightbox-open .wa-fab,
.menu-open .wa-fab {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab {
    transition: none;
  }
}
