/* ==========================================================================
   Inox Zone — front-end styles
   One file, no framework. Palette is driven by the custom properties below.
   ========================================================================== */

/* Black and gold. The gold is the catalogue's own #c3a36f; the blacks are
   warmed very slightly so photographs do not look cold against them. */
:root {
  /* Surfaces */
  --ink:        #0c0c0c;
  --ink-soft:   #171614;
  --ink-line:   #2a2824;
  --paper:      #f6f5f3;
  --paper-warm: #ebe9e4;
  --card:       #ffffff;

  /* Text */
  --text:       #15140f;
  --text-muted: #6a675f;
  --text-faint: #9b978d;
  --on-dark:    #f2efe9;
  --on-dark-mut:#a8a294;

  /* Brand */
  --gold:       #c3a36f;
  --gold-light: #e0c79a;
  --gold-deep:  #9a7d4a;
  --rose:       #c08d7e;
  --steel:      #8d949b;

  /* Geometry */
  --radius:     2px;
  --radius-lg:  4px;
  --shell:      1280px;
  --gutter:     clamp(18px, 4vw, 48px);

  --shadow-sm:  0 1px 2px rgba(12, 12, 12, .07);
  --shadow:     0 12px 32px -18px rgba(12, 12, 12, .38);
  --shadow-lg:  0 30px 70px -40px rgba(12, 12, 12, .6);

  --ease:       cubic-bezier(.22, .61, .36, 1);

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.shell-narrow { width: min(100% - (var(--gutter) * 2), 780px); margin-inline: auto; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0 0 .9rem;
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow { color: var(--gold); }

.lede { font-size: 1.06rem; color: var(--text-muted); max-width: 62ch; }

.section { padding: clamp(52px, 8vw, 104px) 0; }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-warm { background: var(--paper-warm); }

.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.section-head.split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-head h2 { margin-bottom: .3em; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.9em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.btn-outline.on-dark { color: var(--on-dark); }
.btn-outline.on-dark:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn-wide { width: 100%; }
.btn-sm { padding: .7em 1.3em; font-size: .74rem; }
.btn:active { transform: translateY(1px); }

.link-more {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px; color: var(--gold-deep);
  transition: gap .25s var(--ease);
}
.link-more:hover { gap: .9em; }

/* --------------------------------------------------------------- topbar */
.topbar {
  background: var(--ink); color: var(--on-dark-mut);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar a { color: var(--on-dark-mut); transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold-light); }
.topbar-note { flex: 1; text-align: center; color: var(--gold-light); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social svg { width: 15px; height: 15px; fill: currentColor; display: block; }

/* --------------------------------------------------------------- header */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12, 12, 12, .96);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(195, 163, 111, .22);
  transition: box-shadow .3s var(--ease);
}
.masthead.is-stuck { box-shadow: var(--shadow-sm); }
.masthead .shell { display: flex; align-items: center; gap: 22px; min-height: 84px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 50px; height: 50px; flex: 0 0 50px;
  background: url("/assets/img/logo-mark-light.png") center/contain no-repeat;
}
.brand-word {
  font-family: var(--font-body); font-weight: 700; font-size: 1.32rem; line-height: 1;
  letter-spacing: .05em; text-transform: uppercase; color: #fff;
  white-space: nowrap;
}
.brand-word b { font-weight: 700; color: var(--gold); }
.brand-sub {
  display: block; font-family: var(--font-body); font-size: .66rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(195, 163, 111, .55);
}

.mainnav { display: flex; gap: 30px; margin-left: auto; }
.mainnav a {
  position: relative; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242, 239, 233, .82); padding: 6px 0; transition: color .25s var(--ease);
}
.mainnav a:hover { color: #fff; }
.mainnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .3s var(--ease);
}
.mainnav a:hover::after, .mainnav a.active::after { right: 0; }
.mainnav a.active { color: var(--gold); }
.masthead .icon-btn { color: var(--on-dark); }
.masthead .icon-btn:hover { background: rgba(255, 255, 255, .1); }

.head-actions { display: flex; align-items: center; gap: 10px; margin-left: 18px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: none; border: 1px solid transparent; border-radius: 50%;
  color: var(--text); transition: background .25s var(--ease), border-color .25s var(--ease);
}
.icon-btn:hover { background: rgba(20, 18, 14, .05); }
.icon-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.head-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--on-dark);
  padding-left: 14px; border-left: 1px solid rgba(242, 239, 233, .18);
}
.head-phone svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.topbar { border-bottom: 1px solid rgba(242, 239, 233, .08); }

.nav-toggle { display: none; }

/* search drawer */
.searchbar {
  display: none; border-top: 1px solid rgba(242, 239, 233, .12);
  background: var(--ink-soft);
}
.searchbar.open { display: block; }
.searchbar form { display: flex; gap: 10px; padding: 18px 0; }
.searchbar input {
  flex: 1; padding: .9em 1.1em; border: 1px solid rgba(20, 18, 14, .16);
  border-radius: var(--radius); font: inherit; background: #fff;
}
.searchbar input:focus { outline: none; border-color: var(--gold); }

/* --------------------------------------------------------------- hero */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,16,15,.94) 0%, rgba(14,16,15,.72) 42%, rgba(14,16,15,.25) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(84px, 15vw, 168px) 0 clamp(64px, 10vw, 116px);
  max-width: 44rem;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: var(--on-dark-mut); font-size: 1.08rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(243, 239, 233, .14);
  padding: 26px 0 34px;
}
.hero-stats div strong {
  display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); font-weight: 400;
}
.hero-stats div span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-mut); }

/* --------------------------------------------------------------- trust strip */
.trust { border-bottom: 1px solid rgba(20, 18, 14, .08); background: var(--card); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(20, 18, 14, .07); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.3; margin: 0 auto 12px; }
.trust-item strong { display: block; font-size: .84rem; letter-spacing: .04em; margin-bottom: 3px; }
.trust-item span { font-size: .78rem; color: var(--text-muted); }

/* --------------------------------------------------------------- category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--ink);
  aspect-ratio: 3 / 4;
}
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .5s var(--ease);
  opacity: .82;
}
.cat-tile:hover img { transform: scale(1.06); opacity: .65; }
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,16,15,.88) 0%, rgba(14,16,15,.15) 55%, transparent 100%);
}
.cat-tile-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px 22px; color: #fff;
}
.cat-tile-body h3 { font-size: 1.45rem; margin-bottom: 2px; color: #fff; }
.cat-tile-body span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }

/* --------------------------------------------------------------- product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.rail-wrap { position: relative; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-thumb { background: rgba(20,18,14,.2); }

.card { position: relative; background: transparent; }
.card-media {
  position: relative; overflow: hidden; background: var(--paper-warm);
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(255,255,255,.94); color: var(--gold-deep);
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 40px;
}
.card-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card-quick, .card:focus-within .card-quick { opacity: 1; transform: none; }
.card-quick .btn { width: 100%; background: rgba(255,255,255,.96); color: var(--ink); }
.card-quick .btn:hover { background: var(--ink); color: #fff; }

.card-body { padding: 16px 2px 0; }
.card-cat { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }
.card-title { font-family: var(--font-display); font-size: 1.3rem; margin: 4px 0 6px; line-height: 1.2; }
.card-title a:hover { color: var(--gold); }
.card-price { font-size: .9rem; color: var(--text-muted); }
.card-price b { font-weight: 500; color: var(--text); }

/* --------------------------------------------------------------- split feature */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.split ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.split ul li::before {
  content: ""; flex: 0 0 6px; height: 6px; margin-top: 9px; border-radius: 50%;
  background: var(--gold);
}

/* --------------------------------------------------------------- FAQ */
.faq-list { border-top: 1px solid rgba(20, 18, 14, .12); }
.faq-item { border-bottom: 1px solid rgba(20, 18, 14, .12); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 1.22rem; color: var(--text);
}
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold-deep); border-bottom: 1.5px solid var(--gold-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { display: none; padding: 0 40px 24px 0; color: var(--text-muted); max-width: 78ch; }
.faq-item.open .faq-a { display: block; }
.section-dark .faq-list, .section-dark .faq-item { border-color: rgba(243, 239, 233, .16); }
.section-dark .faq-q { color: var(--on-dark); }
.section-dark .faq-q::after { border-color: var(--gold-light); }
.section-dark .faq-a { color: var(--on-dark-mut); }

/* --------------------------------------------------------------- CTA band */
.cta-band { background: var(--ink); color: var(--on-dark); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-mut); max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* --------------------------------------------------------------- catalogue */
.page-head { background: var(--ink); color: var(--on-dark); padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 72px); }
.page-head h1 { color: #fff; margin-bottom: .25em; }
.page-head p { color: var(--on-dark-mut); max-width: 60ch; margin: 0; }
.crumbs { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { color: var(--gold-light); }
.page-head { background: var(--ink); }

.catalog-layout { display: grid; grid-template-columns: 232px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.filters { position: sticky; top: 100px; }
.filters h4 {
  font-family: var(--font-body); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-faint); margin: 0 0 12px;
}
.filter-group { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(20,18,14,.1); }
.filter-group:last-child { border-bottom: 0; }
.filter-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.filter-group a { font-size: .92rem; color: var(--text-muted); transition: color .2s var(--ease); }
.filter-group a:hover, .filter-group a.on { color: var(--gold); }
.filter-group a.on { font-weight: 500; }
.filter-group .count { color: var(--text-faint); font-size: .8rem; }

.catalog-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 26px;
}
.catalog-count { font-size: .85rem; color: var(--text-muted); }
.sort-select {
  padding: .6em 2.2em .6em .9em; border: 1px solid rgba(20,18,14,.16); border-radius: var(--radius);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236c6a66' fill='none' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right .9em center;
  font-size: .85rem; appearance: none;
}
.filter-toggle { display: none; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 12px;
  border: 1px solid rgba(20,18,14,.14); border-radius: var(--radius); font-size: .85rem;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: #fff; border-color: var(--gold); }

.empty { text-align: center; padding: 70px 20px; color: var(--text-muted); }

/* --------------------------------------------------------------- product page */
.product-layout {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 68px); align-items: start;
  padding: clamp(34px, 5vw, 64px) 0;
}
.gallery-main {
  position: relative; background: var(--paper-warm); border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
/* A tall shot or a dimension drawing loses its edges under `cover`, so it is
   fitted inside the frame instead. `js-fit` is set once the picture loads. */
.gallery-main img.js-fit { object-fit: contain; background: var(--paper-warm); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 76px; height: 76px; padding: 0; border: 1px solid transparent; border-radius: var(--radius);
  overflow: hidden; background: var(--paper-warm); transition: border-color .25s var(--ease);
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.on { border-color: var(--gold); }

.product-info { position: sticky; top: 100px; }
.product-info h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: .2em; }
.product-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.product-price { font-size: 1.45rem; font-family: var(--font-display); margin: 14px 0 6px; }
.product-price small { font-size: .78rem; font-family: var(--font-body); color: var(--text-faint); letter-spacing: .1em; text-transform: uppercase; display: block; }
.product-desc { color: var(--text-muted); margin: 18px 0 6px; }

.optionset { margin: 22px 0; }
.optionset h4 {
  font-family: var(--font-body); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-faint); margin: 0 0 10px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid rgba(20,18,14,.18); background: #fff; border-radius: var(--radius);
  padding: .6em 1em; font-size: .84rem; transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--gold); }
.chip.on { background: var(--gold); color: #fff; border-color: var(--gold); }
.chip .swatch {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 7px;
  vertical-align: -1px; border: 1px solid rgba(0,0,0,.12);
}
.swatch-gold { background: linear-gradient(135deg, #e6cf9c, #b8935a); }
.swatch-rose { background: linear-gradient(135deg, #e3b3a5, #c08d7e); }

.spec-table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .9rem; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid rgba(20,18,14,.1); vertical-align: top; }
.spec-table th { width: 40%; font-weight: 500; color: var(--text-muted); }

.enquiry-box {
  background: var(--card); border: 1px solid rgba(20,18,14,.1);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); margin-top: 26px;
  box-shadow: var(--shadow);
}
.enquiry-box h3 { font-size: 1.4rem; margin-bottom: .2em; }
.enquiry-box .hint { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85em 1em; font: inherit; color: var(--text);
  background: #fff; border: 1px solid rgba(20,18,14,.16); border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,90,.14);
}
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label .opt { text-transform: none; letter-spacing: 0; opacity: .75; }
/* a select should not look like a text box you can type in */
.field select {
  appearance: none; cursor: pointer; padding-right: 2.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23847d6d' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; background-size: 11px;
}
.hp { position: absolute; left: -9999px; opacity: 0; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.or-whatsapp { text-align: center; margin-top: 14px; font-size: .85rem; color: var(--text-muted); }
.or-whatsapp a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

.prose { max-width: 74ch; }
.prose h2 { font-size: 1.8rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.4em; }
.prose img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.prose ul, .prose ol { padding-left: 1.2em; color: var(--text-muted); }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--gold-deep); border-bottom: 1px solid rgba(184,147,90,.4); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .92rem; }
.prose th, .prose td { border: 1px solid rgba(20,18,14,.12); padding: 10px 12px; text-align: left; }

/* --------------------------------------------------------------- blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.post-card-media { aspect-ratio: 3 / 2; background: var(--paper-warm); border-radius: var(--radius-lg); overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card time { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.post-card h3 { font-size: 1.35rem; margin: 8px 0 6px; }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { font-size: .93rem; color: var(--text-muted); margin: 0; }

.post-hero { padding: clamp(48px, 8vw, 92px) 0 0; text-align: center; }
.post-hero time { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.post-hero h1 { max-width: 20ch; margin: 12px auto .4em; }
.post-cover { margin: 36px 0; border-radius: var(--radius-lg); overflow: hidden; }

/* --------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 14px; }
.contact-list svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-top: 3px; }
.contact-list strong { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px; font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

/* --------------------------------------------------------------- flash + misc */
.flash-stack { position: fixed; top: 92px; right: 20px; z-index: 200; display: grid; gap: 10px; max-width: 340px; }
.flash {
  padding: 14px 18px; border-radius: var(--radius); background: #fff; font-size: .9rem;
  box-shadow: var(--shadow-lg); border-left: 3px solid var(--gold);
}
.flash.success { border-left-color: #3f8f5e; }
.flash.error { border-left-color: #b4483f; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff; padding: 12px 18px; border-radius: 40px;
  font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 19px; height: 19px; fill: currentColor; }

.thanks-wrap { text-align: center; padding: clamp(70px, 12vw, 140px) 0; }
.thanks-wrap .tick {
  width: 66px; height: 66px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center; background: var(--paper-warm);
}
.thanks-wrap .tick svg { width: 28px; height: 28px; stroke: var(--gold-deep); fill: none; stroke-width: 1.8; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding: clamp(52px, 7vw, 84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 56px); }
.site-footer h4 {
  font-family: var(--font-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--on-dark); margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .9rem; }
.site-footer a { transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .brand-word { color: var(--on-dark); }
.site-footer .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
.site-footer .brand-word b { color: var(--gold-light); }
.footer-about { font-size: .92rem; max-width: 34ch; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(243,239,233,.18); border-radius: 50%;
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  margin-top: clamp(38px, 5vw, 60px); border-top: 1px solid rgba(243,239,233,.12);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem;
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .mainnav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--ink); flex-direction: column; gap: 0; padding: 88px 28px 28px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 70; margin-left: 0;
  }
  .mainnav.open { transform: none; }
  .mainnav a { padding: 15px 0; border-bottom: 1px solid rgba(242,239,233,.1); font-size: .84rem; }
  .mainnav a::after { display: none; }
  .nav-toggle { display: grid; }
  .head-actions { margin-left: auto; }
  .head-phone { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; padding-bottom: 24px; }
  .filters.open { display: block; }
  .filter-toggle { display: inline-flex; }
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(20,18,14,.07); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .post-grid { grid-template-columns: 1fr; }
  .topbar-note { display: none; }
  .topbar .shell { justify-content: center; }
  .card-title { font-size: 1.08rem; }
  .card-quick { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .hero-stats div strong { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .flash-stack { left: 16px; right: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Reveal on scroll — progressive, hidden only when JS is running. */
body.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
body.js .reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------- footer brand lockup */
.brand-footer { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.site-footer .brand-word { color: var(--on-dark); }
.site-footer .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
.site-footer .brand-word b { color: var(--gold-light); }
.site-footer .brand-sub { color: var(--on-dark-mut); border-top-color: rgba(238, 241, 243, .25); }

/* ==========================================================================
   Catalogue — listing and page reader
   ========================================================================== */
.cat-book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }

.cat-book-cover {
  position: relative; display: block; overflow: hidden;
  background: var(--paper-warm); border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2; box-shadow: var(--shadow);
  border: 1px solid rgba(20, 18, 14, .08);
}
.cat-book-cover img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .9s var(--ease);
}
.cat-book:hover .cat-book-cover img { transform: scale(1.04); }
.cat-book-open {
  position: absolute; inset: auto 0 0 0; padding: 14px;
  background: linear-gradient(to top, rgba(12, 12, 12, .9), transparent);
  color: #fff; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s var(--ease);
}
.cat-book:hover .cat-book-open, .cat-book:focus-within .cat-book-open { opacity: 1; }
.cat-book-body { padding-top: 16px; }
.cat-book-body h3 { font-size: 1.4rem; margin-bottom: .25em; }
.cat-book-body h3 a:hover { color: var(--gold); }
.cat-book-body p { font-size: .93rem; color: var(--text-muted); margin: 0 0 6px; }
.cat-book-meta { font-size: .74rem !important; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint) !important; }

/* ------------------------------------------------------------- the reader */
.reader-stage { position: relative; display: flex; align-items: center; gap: 12px; }
.reader-page {
  flex: 1; min-width: 0; position: relative;
  background: var(--card); border: 1px solid rgba(20, 18, 14, .1);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.reader-img { width: 100%; height: auto; display: none; }
.reader-img.on { display: block; }

.reader-nav {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(20, 18, 14, .14); background: #fff; color: var(--gold);
  display: grid; place-items: center; transition: all .22s var(--ease);
}
.reader-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.reader-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.reader-nav[disabled] { opacity: .3; pointer-events: none; }

.reader-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 18px 0 6px; padding: 0 58px;
}
.reader-count { font-size: .82rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.reader-count b { color: var(--text); font-weight: 500; }
.reader-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.reader-thumbs {
  display: flex; gap: 10px; overflow-x: auto; padding: 18px 58px 10px;
  scrollbar-width: thin;
}
.reader-thumbs::-webkit-scrollbar { height: 4px; }
.reader-thumbs::-webkit-scrollbar-thumb { background: rgba(20, 18, 14, .2); }
.reader-thumb {
  position: relative; flex: 0 0 84px; width: 84px; height: 60px; padding: 0;
  border: 1px solid rgba(20, 18, 14, .12); border-radius: var(--radius);
  overflow: hidden; background: var(--paper-warm); transition: border-color .2s var(--ease);
}
.reader-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.reader-thumb span {
  position: absolute; right: 3px; bottom: 3px; background: rgba(12, 12, 12, .85); color: #fff;
  font-size: .62rem; padding: 1px 5px; border-radius: 2px;
}
.reader-thumb.on { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(195, 163, 111, .35); }

@media (max-width: 900px) {
  .cat-book-grid { grid-template-columns: repeat(2, 1fr); }
  .reader-bar, .reader-thumbs { padding-inline: 0; }
  .reader-nav { flex-basis: 38px; width: 38px; height: 38px; }
}
@media (max-width: 640px) {
  .cat-book-grid { grid-template-columns: 1fr; }
  .reader-stage { gap: 6px; }
  .reader-nav { flex-basis: 32px; width: 32px; height: 32px; }
  .reader-bar { justify-content: center; }
}

/* ------------------------------------------------- range menus (two ranges) */
.nav-item { position: relative; display: flex; align-items: center; }
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 216px; padding: 10px 0; margin-top: 14px;
  background: var(--ink); border: 1px solid rgba(195, 163, 111, .25);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 70;
}
.nav-item:hover .submenu, .nav-item:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.submenu a {
  display: block; padding: 9px 20px; font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(242, 239, 233, .8); white-space: nowrap;
}
.submenu a::after { display: none; }
.submenu a:hover { background: rgba(195, 163, 111, .14); color: var(--gold); }
.submenu a:first-child { color: var(--gold); border-bottom: 1px solid rgba(195, 163, 111, .18); margin-bottom: 6px; padding-bottom: 12px; }

/* Range picker shown on the homepage and catalogue pages. */
.range-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px); }
.range-tile {
  position: relative; display: block; overflow: hidden; background: var(--ink);
  border-radius: var(--radius-lg); aspect-ratio: 16 / 10;
}
.range-tile img {
  width: 100%; height: 100%; object-fit: cover; opacity: .72;
  transition: transform 1.1s var(--ease), opacity .5s var(--ease);
}
.range-tile:hover img { transform: scale(1.05); opacity: .55; }
.range-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, .92) 0%, rgba(12, 12, 12, .3) 60%, transparent 100%);
}
.range-tile-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(20px, 3vw, 32px); color: #fff; }
.range-tile-body .eyebrow { color: var(--gold-light); margin-bottom: .5rem; }
.range-tile-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #fff; margin-bottom: .3em; }
.range-tile-body p { font-size: .93rem; color: rgba(242, 239, 233, .8); margin: 0 0 14px; max-width: 42ch; }
.range-tile-body span.count { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }

/* Which range a product belongs to, shown on its page. */
.range-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--gold); color: var(--gold-deep);
  border-radius: 40px; margin-bottom: 14px;
}
.card-range {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(12, 12, 12, .82); color: var(--gold-light);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 40px;
}

@media (max-width: 900px) {
  .range-grid { grid-template-columns: 1fr; }
  .nav-item { display: block; }
  .submenu {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; margin: 0 0 8px; padding: 0 0 8px; background: none;
    border: none; box-shadow: none; border-radius: 0;
  }
  .submenu a { padding: 11px 0 11px 16px; font-size: .74rem; border-bottom: none; }
  .submenu a:first-child { margin-bottom: 0; padding-bottom: 11px; }
  .nav-item > a { display: block; padding: 15px 0; border-bottom: 1px solid rgba(242,239,233,.1); font-size: .84rem; }
}


/* ------------------------------------------------ blocks added by the CMS */
.split-flip { direction: rtl; }
.split-flip > * { direction: ltr; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.step-card {
  background: var(--ink-soft); padding: clamp(22px, 3vw, 32px) clamp(18px, 2.4vw, 26px);
  border-radius: var(--radius-lg);
}
.step-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: .35em; }
.step-card p { color: var(--on-dark-mut); font-size: .94rem; margin: 0; }
.section-warm .step-card, .section:not(.section-dark) .step-card {
  background: var(--card); border: 1px solid rgba(20, 18, 14, .09);
}
.section-warm .step-card h3, .section:not(.section-dark) .step-card h3 { color: var(--text); }
.section-warm .step-card p, .section:not(.section-dark) .step-card p { color: var(--text-muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: clamp(12px, 2vw, 22px); }
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); background: var(--paper-warm);
}
.gallery-grid figcaption { font-size: .84rem; color: var(--text-muted); margin-top: 8px; }

.contact-map { margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; }
.contact-map iframe { width: 100%; height: 300px; border: 0; display: block; }

.section-dark .lede, .section-dark p { color: var(--on-dark-mut); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .prose { color: var(--on-dark-mut); }
.section-dark .split ul li { color: var(--on-dark-mut); }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split-flip { direction: ltr; }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Directions link beside the address */
.map-link {
  display: inline-block; margin-top: 6px; font-size: .82rem;
  color: var(--gold-deep); border-bottom: 1px solid rgba(195, 163, 111, .4);
  transition: gap .2s var(--ease);
}
.map-link:hover { color: var(--gold); }

/* ==========================================================================
   Find your table — the guided finder
   ========================================================================== */
.finder-wrap { padding: clamp(28px, 5vw, 56px) 0 clamp(48px, 7vw, 80px); }

.finder-steps {
  display: flex; gap: 6px; list-style: none; margin: 0 0 clamp(26px, 4vw, 42px);
  padding: 0; flex-wrap: wrap; counter-reset: step;
}
.finder-steps li {
  counter-increment: step; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}
.finder-steps li a, .finder-steps li span {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px;
  border: 1px solid rgba(20, 18, 14, .14); border-radius: 40px; color: var(--text-faint);
}
.finder-steps li a:hover { border-color: var(--gold); color: var(--gold-deep); }
.finder-steps li::before {
  content: counter(step); display: none;
}
.finder-steps li.on a, .finder-steps li.on span {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.finder-steps li.done a { border-color: var(--gold); color: var(--gold-deep); }

.finder-q {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0 0 clamp(20px, 3vw, 32px);
}

.finder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 20px); }
.finder-grid.two { grid-template-columns: repeat(2, 1fr); }
.finder-grid.three { grid-template-columns: repeat(3, 1fr); }

.finder-card {
  display: flex; flex-direction: column; gap: 6px; padding: clamp(20px, 3vw, 28px);
  background: var(--card); border: 1px solid rgba(20, 18, 14, .1);
  border-radius: var(--radius-lg); transition: border-color .2s var(--ease),
  box-shadow .2s var(--ease), transform .2s var(--ease);
}
.finder-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px);
}
.finder-card svg {
  width: 30px; height: 30px; fill: none; stroke: var(--gold-deep);
  stroke-width: 1.4; margin-bottom: 6px;
}
.finder-card b { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.finder-card span { font-size: .88rem; color: var(--text-muted); }
.finder-card.tall img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 10px; background: var(--paper-warm);
}

.finder-swatch {
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
}
.finder-swatch.swatch-gold { background: linear-gradient(135deg, #e6cf9c, #b8935a); }
.finder-swatch.swatch-rose { background: linear-gradient(135deg, #e3b3a5, #c08d7e); }
.finder-swatch.both {
  background: linear-gradient(135deg, #e6cf9c 0 50%, #e3b3a5 50% 100%);
}

.finder-skip, .finder-back { margin: 22px 0 0; font-size: .9rem; }
.finder-skip a, .finder-back a { color: var(--gold-deep); border-bottom: 1px solid rgba(195,163,111,.4); }

.finder-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-bottom: 18px; margin-bottom: 26px;
  border-bottom: 1px solid rgba(20, 18, 14, .1);
}
.finder-summary p { margin: 0; font-size: .95rem; color: var(--text-muted); }
.finder-summary b { color: var(--text); }

.finder-note {
  background: var(--paper-warm); border-radius: var(--radius-lg);
  padding: 14px 18px; font-size: .92rem; color: var(--text-muted); margin-bottom: 24px;
}

.finder-cta {
  margin-top: clamp(36px, 5vw, 56px); padding: clamp(26px, 4vw, 40px);
  background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg); text-align: center;
}
.finder-cta h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.finder-cta p { color: var(--on-dark-mut); max-width: 52ch; margin: 0 auto 22px; }
.finder-cta .btn-outline { color: var(--on-dark); border-color: currentColor; }
.finder-cta .btn-outline:hover { background: var(--on-dark); color: var(--ink); }

@media (max-width: 900px) {
  .finder-grid, .finder-grid.three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .finder-grid, .finder-grid.two, .finder-grid.three { grid-template-columns: 1fr; }
  .finder-steps li { font-size: .66rem; }
  .finder-steps li a, .finder-steps li span { padding: 6px 11px; }
}

/* Finder promo band */
.finder-promo {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px);
  align-items: center; background: var(--paper-warm);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 52px);
}
.finder-promo.no-image { grid-template-columns: 1fr; text-align: center; }
.finder-promo.no-image .lede { margin-inline: auto; }
.finder-promo-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg);
}
@media (max-width: 900px) { .finder-promo { grid-template-columns: 1fr; } }

/* ==========================================================================
   Product photo zoom
   ========================================================================== */
.gallery-main.has-zoom { cursor: zoom-in; }
.gallery-main.has-zoom img { transition: transform .35s var(--ease); }
@media (hover: hover) {
  .gallery-main.has-zoom:hover img { transform: scale(1.75); }
}

.gallery-zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  border: 0; border-radius: 40px; padding: 8px 14px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: var(--shadow); transition: background .2s var(--ease), color .2s var(--ease);
}
.gallery-zoom:hover { background: var(--ink); color: #fff; }
.gallery-zoom svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* ------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 400; background: rgba(8, 8, 8, .95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-stage {
  width: 100%; height: 100%; display: grid; place-items: center;
  overflow: hidden; padding: clamp(40px, 7vw, 80px) clamp(12px, 5vw, 70px);
}
.lightbox img {
  max-width: 100%; max-height: 100%; display: block;
  transition: transform .18s ease-out; cursor: zoom-in; user-select: none;
  -webkit-user-drag: none; touch-action: none;
}
.lightbox img.zoomed { cursor: grab; }
.lightbox img.zoomed:active { cursor: grabbing; }

.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25); color: #fff; cursor: pointer;
  border-radius: 50%; width: 46px; height: 46px; line-height: 1;
  font-size: 1.7rem; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, .24); }
.lb-close { top: 18px; right: 18px; font-size: 1.5rem; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

.lb-bar {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2;
  display: flex; gap: 16px; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .75); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; pointer-events: none;
}
.lb-hint { color: rgba(255, 255, 255, .45); }

@media (max-width: 700px) {
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 1.4rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-hint { display: none; }
}

/* ------------------------------------------------------- who we work with */
.audience-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.audience-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--card); border: 1px solid rgba(20, 18, 14, .1);
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.audience-card:hover {
  border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow);
}
.audience-card h3 { margin: 0; font-size: 1.35rem; }
.audience-card p { margin: 0; color: var(--text-muted); font-size: .94rem; flex: 1; }
.audience-card .link-more { margin-top: 10px; align-self: flex-start; }
.section-dark .audience-card { background: var(--ink-soft); border-color: rgba(195, 163, 111, .22); }
.section-dark .audience-card h3 { color: #fff; }
.section-dark .audience-card p { color: var(--on-dark-mut); }

/* ----------------------------------------------------------- shortlist & actions */
.head-shortlist { position: relative; }
.head-shortlist svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.head-shortlist b {
  position: absolute; top: 3px; right: 1px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 20px; background: var(--gold); color: var(--ink);
  font-size: .62rem; font-weight: 700; line-height: 17px; text-align: center;
}
.head-quote { margin-left: 4px; }
@media (max-width: 1180px) { .head-quote { display: none; } }

.product-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.action-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .62em 1em; border: 1px solid rgba(20, 18, 14, .16); border-radius: var(--radius);
  background: #fff; color: var(--text); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.action-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.action-btn:hover { border-color: var(--gold); }
.action-btn.on { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.action-btn.on svg { fill: var(--ink); }

/* a quote is one tap away on a phone, wherever the page has scrolled to */
.quote-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 12, 12, .96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(195, 163, 111, .25);
}
.quote-bar .btn { flex: 1; padding-inline: .8em; }
.quote-bar .btn-outline { color: var(--on-dark); border-color: rgba(242, 239, 233, .4); }
@media (max-width: 900px) {
  .quote-bar { display: flex; }
  .wa-float { bottom: 82px; }
}

.shortlist-wrap { padding: clamp(28px, 4vw, 48px) 0 clamp(52px, 8vw, 104px); }
.shortlist-tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.shortlist-tools .cta-actions { margin: 0; justify-content: flex-start; }
.shortlist-tools .muted { margin: 0; }
.shortlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.shortlist-card .sl-remove {
  position: absolute; top: 10px; right: 10px; z-index: 3; width: 32px; height: 32px;
  border: 0; border-radius: 50%; background: rgba(255, 255, 255, .94); color: var(--ink);
  font-size: 1.2rem; line-height: 1; display: grid; place-items: center;
}
.shortlist-card .sl-remove:hover { background: var(--ink); color: #fff; }
.sl-variant { font-size: .8rem; margin: 2px 0 0; }
.sl-variant:empty { display: none; }
.shortlist-quote {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start;
  margin-top: clamp(40px, 6vw, 72px); padding-top: clamp(32px, 5vw, 56px); border-top: 1px solid rgba(20, 18, 14, .1);
}
.shortlist-quote .enquiry-box { margin-top: 0; }
.tick-list { list-style: none; padding: 0; margin: 18px 0 0; color: var(--text-muted); }
.tick-list li { padding: 7px 0 7px 26px; position: relative; }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
@media (max-width: 1080px) { .shortlist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .shortlist-quote { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .shortlist-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ------------------------------------------------------------ file field */
.field .help { font-size: .78rem; color: var(--text-faint); margin: 6px 0 0; }
.field input[type="file"] {
  padding: .6em .8em; background: var(--paper); cursor: pointer; font-size: .9rem;
}
.field input[type="file"]::file-selector-button {
  font: inherit; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .55em 1em; margin-right: 12px; border: 1px solid var(--ink); border-radius: var(--radius);
  background: var(--ink); color: #fff; cursor: pointer;
}
