@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/marcellus.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #171817;
  --ink-soft: #474945;
  --paper: #fcfbf9;
  --warm: #f1eee9;
  --line: #d9d5cf;
  --accent: #dd7047;
  --accent-dark: #b84e2a;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: "Marcellus", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--accent-dark); }

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

button,
a { -webkit-tap-highlight-color: transparent; }

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

h1 { font-size: clamp(42px, 5.3vw, 76px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 3.6vw, 54px); letter-spacing: -0.028em; }
h3 { font-size: clamp(22px, 2vw, 29px); letter-spacing: -0.018em; }

::selection { color: var(--paper); background: var(--accent); }

.container {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.narrow-content { max-width: 850px; }
.section { padding-block: clamp(80px, 9vw, 138px); }
.site-main { min-height: 60vh; }

.screen-reader-text,
.rfq-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 15px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.eyebrow,
.section-number {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-number::after {
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 0 3px 14px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.primary-navigation a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.button--primary { color: #fffaf7; background: var(--accent); border-color: var(--accent); }
.button--primary:hover { color: #fffaf7; background: var(--accent-dark); border-color: var(--accent-dark); }
.button--dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--paper); background: var(--accent-dark); border-color: var(--accent-dark); }
.button--light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button--light:hover { color: var(--paper); background: transparent; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { color: var(--accent); font-size: 19px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.topbar {
  display: grid;
  min-height: 30px;
  place-items: center;
  padding: 5px 20px;
  color: #fffaf7;
  background: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(252, 251, 249, 0.97);
  border-bottom: 1px solid rgba(23, 24, 23, 0.1);
}

.site-header__inner {
  display: grid;
  width: min(100% - (var(--gutter) * 2), var(--max));
  min-height: 88px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
}

.site-logo { display: block; width: 188px; text-decoration: none; }
.site-logo img,
.custom-logo { width: auto; max-width: 188px; max-height: 58px; object-fit: contain; }
.custom-logo-link { display: block; width: 188px; }

.primary-navigation { justify-self: end; }
.primary-navigation ul { display: flex; align-items: center; gap: clamp(20px, 2vw, 36px); padding: 0; margin: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a {
  display: block;
  padding: 30px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }
.header-cta { min-height: 46px; padding-inline: 21px; }

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(590px, 72vh, 720px);
  align-items: center;
  overflow: hidden;
  background-color: var(--warm);
  background-image: linear-gradient(90deg, rgba(241, 238, 233, 0.97) 0%, rgba(241, 238, 233, 0.88) 32%, rgba(241, 238, 233, 0.1) 67%, rgba(241, 238, 233, 0.02) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(23, 24, 23, 0.27);
  content: "";
}

.home-hero__content { position: relative; z-index: 1; padding-block: 70px; }
.home-hero__content > * { max-width: 650px; }
.home-hero h1 { margin-bottom: 27px; }
.home-hero__lead { margin-bottom: 35px; color: var(--ink-soft); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.65; }

.value-strip { color: var(--paper); background: var(--ink); }
.value-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { display: grid; min-height: 146px; align-items: center; padding: 32px clamp(20px, 2.4vw, 38px); border-right: 1px solid rgba(252, 251, 249, 0.16); grid-template-columns: 34px 1fr; gap: 17px; }
.value-item:last-child { border-right: 0; }
.value-item .dashicons { width: 30px; height: 30px; color: var(--accent); font-size: 30px; }
.value-item h2 { margin: 0 0 5px; color: var(--paper); font-family: var(--body); font-size: 14px; font-weight: 700; letter-spacing: 0.03em; }
.value-item p { margin: 0; color: rgba(252, 251, 249, 0.62); font-size: 12px; line-height: 1.55; }

.collections-section { background: var(--paper); }
.collections-layout { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, minmax(340px, 29vw)); gap: 16px; }
.collections-intro { display: flex; padding: clamp(10px, 2vw, 30px) clamp(24px, 3vw, 50px) clamp(20px, 3vw, 50px) 0; flex-direction: column; justify-content: center; }
.collections-intro h2 { margin-bottom: 25px; }
.collections-intro p:not(.section-number) { margin-bottom: 28px; color: var(--ink-soft); }
.collection-tile { position: relative; display: flex; min-height: 300px; padding: 26px; align-items: flex-end; overflow: hidden; color: var(--paper); background: var(--ink) var(--collection-image) center/cover no-repeat; isolation: isolate; text-decoration: none; }
.collection-tile::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23, 24, 23, 0.03) 25%, rgba(23, 24, 23, 0.8) 100%); content: ""; transition: background-color 250ms ease; }
.collection-tile::after { position: absolute; inset: 0; z-index: -2; background: var(--collection-image) center/cover no-repeat; content: ""; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.collection-tile:hover { color: var(--paper); }
.collection-tile:hover::after { transform: scale(1.045); }
.collection-tile__title { max-width: 75%; font-family: var(--display); font-size: clamp(24px, 2.4vw, 36px); line-height: 1.05; }
.collection-tile__count { position: absolute; top: 23px; left: 25px; font-size: 11px; font-weight: 700; letter-spacing: 0.13em; }
.collection-tile__arrow { position: absolute; right: 25px; bottom: 22px; font-size: 24px; }
.collections-intro { grid-column: 1; grid-row: 1; }
.collection-tile--1 { grid-column: 2; grid-row: 1; }
.collection-tile--2 { grid-column: 3; grid-row: 1; }
.collection-tile--3 { grid-column: 1; grid-row: 2; }
.collection-tile--4 { grid-column: 2; grid-row: 2; }
.collection-tile--5 { grid-column: 3; grid-row: 2; }

.split-feature { display: grid; padding-block: 0; background: var(--warm); grid-template-columns: 1fr 1fr; }
.split-feature__media { min-height: 720px; background: var(--split-image) center/cover no-repeat; }
.split-feature__content { display: flex; max-width: 710px; padding: clamp(70px, 9vw, 135px) clamp(40px, 8vw, 125px); flex-direction: column; align-items: flex-start; justify-content: center; }
.split-feature__content > p:not(.section-number) { margin-bottom: 27px; color: var(--ink-soft); font-size: 18px; }

.feature-list { width: 100%; padding: 0; margin: 5px 0 35px; list-style: none; }
.feature-list li { display: grid; padding: 15px 0; align-items: center; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; grid-template-columns: 45px 1fr; }
.feature-list li:first-child { border-top: 1px solid var(--line); }
.feature-list span { color: var(--accent-dark); font-size: 11px; letter-spacing: 0.1em; }

.process-section { color: var(--paper); background: var(--ink); }
.section-heading { display: grid; margin-bottom: 65px; align-items: end; grid-template-columns: minmax(350px, 0.85fr) 1fr; column-gap: 12%; }
.section-heading .section-number { grid-column: 1 / -1; }
.section-heading h2 { max-width: 690px; margin: 0; color: inherit; }
.section-heading > p:last-child { max-width: 510px; margin: 0; color: rgba(252, 251, 249, 0.62); }
.process-grid { display: grid; padding: 0; margin: 0; list-style: none; grid-template-columns: repeat(4, 1fr); }
.process-grid li { min-height: 290px; padding: 30px 28px 25px; border-top: 1px solid rgba(252, 251, 249, 0.25); border-right: 1px solid rgba(252, 251, 249, 0.16); }
.process-grid li:last-child { border-right: 0; }
.process-grid span { display: block; margin-bottom: 72px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; }
.process-grid h3 { margin-bottom: 15px; color: var(--paper); font-family: var(--body); font-size: 18px; font-weight: 650; line-height: 1.3; }
.process-grid p { margin: 0; color: rgba(252, 251, 249, 0.58); font-size: 13px; }
.process-section--light { color: var(--ink); background: var(--paper); }
.process-section--light .section-heading { grid-template-columns: 1fr; }

.rfq-band { padding-block: clamp(65px, 7vw, 100px); color: var(--paper); background: var(--accent); }
.rfq-band__inner { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 60px; }
.rfq-band .eyebrow { margin-bottom: 13px; color: rgba(255, 250, 247, 0.74); }
.rfq-band h2 { margin-bottom: 14px; color: var(--paper); }
.rfq-band p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255, 250, 247, 0.84); }

.inner-hero { position: relative; display: grid; min-height: clamp(360px, 44vw, 520px); align-items: end; overflow: hidden; color: var(--paper); background: var(--ink) var(--inner-hero-image) center 58%/cover no-repeat; isolation: isolate; }
.inner-hero::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(23, 24, 23, 0.86) 0%, rgba(23, 24, 23, 0.55) 48%, rgba(23, 24, 23, 0.17) 100%); content: ""; }
.inner-hero__content { padding-top: 90px; padding-bottom: clamp(58px, 7vw, 95px); }
.inner-hero .eyebrow { margin-bottom: 18px; color: #f4a180; }
.inner-hero h1 { max-width: 850px; margin-bottom: 20px; color: var(--paper); }
.inner-hero__content > p:last-child:not(.eyebrow) { max-width: 670px; margin: 0; color: rgba(252, 251, 249, 0.79); font-size: clamp(16px, 1.6vw, 19px); }

.catalog-section { background: var(--paper); }
.catalog-filter { display: flex; margin-bottom: 52px; align-items: center; border-bottom: 1px solid var(--line); gap: 34px; overflow-x: auto; scrollbar-width: thin; }
.catalog-filter a { position: relative; padding: 14px 0 17px; flex: 0 0 auto; color: var(--ink-soft); font-size: 13px; font-weight: 650; text-decoration: none; }
.catalog-filter a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); }
.catalog-filter a:hover,
.catalog-filter a.is-active { color: var(--ink); }
.catalog-filter a.is-active::after { transform: scaleX(1); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 22px; }
.product-card { position: relative; }
.product-card__image { position: relative; display: block; overflow: hidden; background: var(--warm); aspect-ratio: 1 / 1; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__status { position: absolute; top: 12px; left: 12px; padding: 6px 9px; color: var(--paper); background: rgba(23, 24, 23, 0.82); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.product-card__body { padding-top: 18px; }
.product-card__category { margin-bottom: 7px; color: var(--accent-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.product-card h2 { margin-bottom: 9px; font-family: var(--body); font-size: 17px; font-weight: 650; letter-spacing: 0; }
.product-card h2 a { text-decoration: none; }
.product-card__id { margin: 0; color: #72736f; font-size: 12px; }
.catalog-empty { max-width: 650px; padding: 60px; background: var(--warm); }
.catalog-empty h2 { margin-bottom: 15px; font-size: 36px; }

.product-detail { background: var(--paper); }
.product-detail__grid { display: grid; align-items: start; grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr); gap: clamp(45px, 8vw, 115px); }
.product-detail__media { position: sticky; top: 24px; background: var(--warm); }
.product-detail__media img { width: 100%; }
.product-detail__content { padding-top: 28px; }
.product-detail__content h1 { margin-bottom: 25px; font-size: clamp(42px, 4.5vw, 67px); }
.product-detail__summary { color: var(--ink-soft); font-size: 18px; }
.product-facts { margin: 38px 0 28px; border-top: 1px solid var(--line); }
.product-facts div { display: grid; padding: 17px 0; border-bottom: 1px solid var(--line); grid-template-columns: 135px 1fr; gap: 18px; }
.product-facts dt { color: #747570; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.product-facts dd { margin: 0; font-size: 14px; font-weight: 600; }
.product-note { margin-bottom: 30px; padding: 18px 20px; color: var(--ink-soft); background: var(--warm); font-size: 13px; }

.intro-split { background: var(--paper); }
.intro-split__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 12%; }
.intro-split h2 { max-width: 590px; margin: 0; }
.rich-copy { padding-top: 35px; color: var(--ink-soft); font-size: clamp(17px, 1.8vw, 20px); }
.rich-copy p:last-child { margin-bottom: 0; }

.custom-options { display: grid; background: var(--warm); grid-template-columns: 1fr 1fr; }
.custom-options__image { min-height: 770px; background: var(--custom-image) center/cover no-repeat; }
.custom-options__content { display: grid; padding: clamp(55px, 7vw, 100px); grid-template-columns: 1fr 1fr; gap: 0; }
.custom-options article { min-height: 285px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.custom-options article:nth-child(even) { border-right: 0; }
.custom-options article:nth-child(n+3) { border-bottom: 0; }
.custom-options article > span { display: block; margin-bottom: 58px; color: var(--accent-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; }
.custom-options h2 { font-family: var(--body); font-size: 18px; font-weight: 650; line-height: 1.35; }
.custom-options p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.brief-checklist { display: grid; border-top: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }
.brief-checklist div { display: flex; min-height: 160px; padding: 30px; flex-direction: column; border-right: 1px solid var(--line); }
.brief-checklist div:last-child { border-right: 0; }
.brief-checklist strong { margin-bottom: 20px; font-family: var(--display); font-size: 25px; font-weight: 400; }
.brief-checklist span { color: var(--ink-soft); font-size: 14px; }

.quality-flow { padding-top: 0; background: var(--paper); }
.quality-steps { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.quality-steps li { display: grid; padding: 34px 0; align-items: center; border-bottom: 1px solid var(--line); grid-template-columns: 130px 1fr; }
.quality-steps > li > span { color: var(--accent-dark); font-family: var(--display); font-size: 40px; }
.quality-steps h2 { margin-bottom: 8px; font-size: 28px; }
.quality-steps p { max-width: 760px; margin: 0; color: var(--ink-soft); }
.quality-note { padding-block: 80px; color: var(--paper); background: var(--ink); }
.quality-note__grid { display: grid; align-items: center; grid-template-columns: 0.8fr 1fr; gap: 12%; }
.quality-note h2 { margin: 0; color: var(--paper); }
.quality-note p { margin: 0; color: rgba(252, 251, 249, 0.69); font-size: 18px; }

.about-feature { background: var(--warm); }
.about-feature__grid { display: grid; align-items: center; grid-template-columns: 0.9fr 1fr; gap: clamp(45px, 9vw, 130px); }
.about-feature__image { position: relative; }
.about-feature__image::before { position: absolute; top: -22px; right: -22px; width: 50%; height: 50%; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); content: ""; }
.about-feature__content > p:not(.section-number) { color: var(--ink-soft); font-size: 18px; }
.principles-section { background: var(--paper); }
.principles-section .section-heading { grid-template-columns: 1fr; }
.principles-grid { display: grid; border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.principles-grid article { min-height: 250px; padding: 32px; border-right: 1px solid var(--line); }
.principles-grid article:last-child { border-right: 0; }
.principles-grid span { display: block; margin-bottom: 65px; color: var(--accent-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; }
.principles-grid h3 { margin-bottom: 12px; }
.principles-grid p { color: var(--ink-soft); }

.rfq-page { background: var(--warm); }
.rfq-page__grid { display: grid; align-items: start; grid-template-columns: 0.65fr 1.35fr; gap: clamp(45px, 9vw, 120px); }
.rfq-sidebar { position: sticky; top: 35px; }
.rfq-sidebar h2 { margin-bottom: 27px; font-size: clamp(34px, 3.5vw, 47px); }
.rfq-sidebar ul { padding-left: 20px; color: var(--ink-soft); }
.rfq-sidebar li { margin-bottom: 10px; }
.rfq-sidebar__note { margin-top: 38px; padding: 24px; border-left: 3px solid var(--accent); background: var(--paper); }
.rfq-sidebar__note strong { font-size: 13px; }
.rfq-sidebar__note p { margin: 6px 0 0; color: var(--ink-soft); font-size: 12px; }
.rfq-form-wrap { padding: clamp(32px, 5vw, 65px); background: var(--paper); box-shadow: 0 20px 60px rgba(23, 24, 23, 0.07); }
.rfq-form-wrap > h2 { margin-bottom: 10px; font-size: 38px; }
.rfq-form-wrap > p { margin-bottom: 35px; color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.rfq-form label { display: block; margin-bottom: 22px; color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.03em; }
.rfq-form input[type="text"],
.rfq-form input[type="email"],
.rfq-form input[type="file"],
.rfq-form select,
.rfq-form textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8f6f2;
  border: 1px solid #d8d4cd;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
}
.rfq-form textarea { min-height: 110px; resize: vertical; }
.rfq-form input[type="file"] { padding: 10px; }
.field-help { display: inline-block; margin-left: 7px; color: #747570; font-size: 11px; font-weight: 400; letter-spacing: 0; }
.consent-field { display: grid !important; align-items: start; margin-top: 4px; grid-template-columns: 18px 1fr; gap: 10px; line-height: 1.5; }
.consent-field input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); }
.form-notice { margin-bottom: 28px; padding: 17px 20px; border-left: 3px solid; font-size: 14px; }
.form-notice--success { color: #28513b; background: #edf7f0; border-color: #3e8059; }
.form-notice--error { color: #7b322c; background: #fbefed; border-color: #b95449; }

.legal-page { background: var(--paper); }
.legal-page__grid { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 10%; }
.legal-page__aside { position: sticky; top: 35px; align-self: start; }
.legal-page__aside h2 { font-size: 37px; }
.legal-page__aside p:last-child { color: var(--ink-soft); }
.legal-page__content { max-width: 800px; }
.draft-banner { display: grid; margin-bottom: 45px; padding: 26px; background: #f7ece7; border-left: 3px solid var(--accent); grid-template-columns: 27px 1fr; gap: 15px; }
.draft-banner .dashicons { color: var(--accent-dark); }
.draft-banner p { margin: 5px 0 0; color: var(--ink-soft); }
.legal-page__content h2 { margin-top: 38px; font-size: 31px; }
.legal-page__content li { margin-bottom: 10px; }

.coming-soon { position: relative; display: grid; min-height: 75vh; place-items: center; padding: 70px var(--gutter); background: var(--ink) var(--coming-image) center/cover no-repeat; isolation: isolate; }
.coming-soon::before { position: absolute; inset: 0; z-index: -1; background: rgba(23, 24, 23, 0.62); content: ""; }
.coming-soon__panel { width: min(680px, 100%); padding: clamp(40px, 7vw, 85px); text-align: center; background: rgba(252, 251, 249, 0.95); }
.coming-soon__panel img { width: 180px; margin: 0 auto 38px; }
.coming-soon__panel h1 { font-size: clamp(42px, 5vw, 68px); }
.coming-soon__panel > p:not(.eyebrow) { color: var(--ink-soft); }

.not-found { position: relative; display: grid; min-height: 73vh; place-items: center; overflow: hidden; background: var(--warm); }
.not-found__number { position: absolute; color: rgba(221, 112, 71, 0.11); font-family: var(--display); font-size: clamp(240px, 42vw, 630px); line-height: 0.8; }
.not-found__content { position: relative; z-index: 1; max-width: 710px; padding-block: 100px; text-align: center; }
.not-found__content .button-row { justify-content: center; }

.entry-content { color: var(--ink-soft); font-size: 18px; }
.entry-content h2,
.entry-content h3 { margin-top: 1.6em; }
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.post-card { padding: 38px; border-top: 1px solid var(--line); background: var(--warm); }
.post-card h2 { font-size: 35px; }
.post-card h2 a { text-decoration: none; }
.post-card__image { display: block; overflow: hidden; margin: -38px -38px 30px; aspect-ratio: 1.45 / 1; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.post-card__image:hover img { transform: scale(1.04); }
.blog-pagination { grid-column: 1 / -1; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 12px; }
.single-post-image { overflow: hidden; margin: 0 0 50px; aspect-ratio: 1.6 / 1; }
.single-post-image img { width: 100%; height: 100%; object-fit: cover; }
.single-post-back { margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--line); }

.site-footer { padding-top: 85px; color: rgba(252, 251, 249, 0.66); background: #111210; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: clamp(30px, 5vw, 75px); }
.footer-brand img { width: 165px; margin-bottom: 25px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 300px; }
.site-footer h2 { margin-bottom: 22px; color: var(--paper); font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 11px; }
.site-footer a { color: rgba(252, 251, 249, 0.7); font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: var(--paper); }
.site-footer p { font-size: 13px; }
.site-footer__bottom { display: flex; margin-top: 70px; padding-block: 23px; justify-content: space-between; border-top: 1px solid rgba(252, 251, 249, 0.13); gap: 30px; }
.site-footer__bottom p { margin: 0; font-size: 11px; letter-spacing: 0.04em; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 600ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: 165px 1fr auto; gap: 22px; }
  .site-logo,
  .custom-logo-link { width: 155px; }
  .site-logo img,
  .custom-logo { max-width: 155px; }
  .primary-navigation ul { gap: 20px; }
  .primary-navigation a { font-size: 12px; }
  .header-cta { padding-inline: 16px; font-size: 11px; }
  .value-strip__grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid rgba(252, 251, 249, 0.16); }
  .collections-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto repeat(3, minmax(300px, 36vw)); }
  .collections-intro { grid-column: 1 / -1; grid-row: auto; }
  .collection-tile--1,
  .collection-tile--2,
  .collection-tile--3,
  .collection-tile--4,
  .collection-tile--5 { grid-column: auto; grid-row: auto; }
  .collection-tile--5 { grid-column: 1 / -1; }
  .custom-options__content { padding: 50px 35px; }
  .site-footer__grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header__inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .menu-toggle { position: relative; z-index: 1002; display: grid; width: 44px; height: 44px; padding: 0; place-items: center; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after { display: block; width: 24px; height: 1px; background: var(--ink); content: ""; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle__lines::before { transform: translateY(-7px); }
  .menu-toggle__lines::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { transform: translateY(1px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { transform: rotate(-45deg); }
  .primary-navigation { position: fixed; inset: 30px 0 0; z-index: 1001; display: flex; padding: 110px var(--gutter) 45px; justify-self: stretch; background: var(--paper); transform: translateX(100%); transition: transform 280ms cubic-bezier(.2,.7,.2,1); }
  .primary-navigation.is-open { transform: translateX(0); }
  .primary-navigation ul { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-navigation li { border-bottom: 1px solid var(--line); }
  .primary-navigation a { padding: 17px 0; font-family: var(--display); font-size: 29px; font-weight: 400; }
  .primary-navigation a::after { display: none; }
  .header-cta { display: none; }
  .home-hero { min-height: 650px; align-items: end; background-image: linear-gradient(0deg, rgba(241, 238, 233, 0.98) 0%, rgba(241, 238, 233, 0.88) 43%, rgba(241, 238, 233, 0.05) 78%), var(--hero-image); background-position: 62% center; }
  .home-hero__content { padding-block: 185px 58px; }
  .collections-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto repeat(3, 360px); }
  .collections-intro { grid-column: 1 / -1; padding: 0 0 35px; }
  .collection-tile--5 { grid-column: 1 / -1; }
  .split-feature,
  .custom-options { grid-template-columns: 1fr; }
  .split-feature__media,
  .custom-options__image { min-height: 560px; }
  .split-feature__content { max-width: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid rgba(252, 251, 249, 0.16); }
  .rfq-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-detail__grid,
  .intro-split__grid,
  .about-feature__grid,
  .quality-note__grid,
  .rfq-page__grid,
  .legal-page__grid { grid-template-columns: 1fr; }
  .product-detail__media,
  .rfq-sidebar,
  .legal-page__aside { position: static; }
  .rich-copy { padding-top: 0; }
  .brief-checklist { grid-template-columns: 1fr 1fr; }
  .brief-checklist div:nth-child(2) { border-right: 0; }
  .brief-checklist div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section { padding-block: 75px; }
  h1 { font-size: clamp(40px, 12vw, 55px); }
  h2 { font-size: clamp(31px, 9vw, 42px); }
  .topbar { min-height: 34px; font-size: 9px; }
  .primary-navigation { inset: 34px 0 0; }
  .home-hero { min-height: 620px; background-position: 66% center; }
  .home-hero__content { padding-top: 135px; }
  .home-hero__lead { font-size: 16px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 20px; }
  .value-strip__grid { grid-template-columns: 1fr; }
  .value-item { min-height: 118px; border-right: 0; border-bottom: 1px solid rgba(252, 251, 249, 0.16); }
  .collections-layout { display: block; }
  .collections-intro,
  .collection-tile--1,
  .collection-tile--2,
  .collection-tile--3,
  .collection-tile--4,
  .collection-tile--5 { grid-column: auto; grid-row: auto; }
  .collection-tile { min-height: 355px; margin-bottom: 14px; }
  .collections-intro { margin-bottom: 35px; }
  .split-feature__media,
  .custom-options__image { min-height: 430px; }
  .split-feature__content { padding: 65px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 235px; border-right: 0; border-bottom: 1px solid rgba(252, 251, 249, 0.16); }
  .process-grid span { margin-bottom: 45px; }
  .inner-hero { min-height: 420px; }
  .inner-hero__content { padding-bottom: 52px; }
  .catalog-filter { gap: 24px; }
  .product-grid { grid-template-columns: 1fr; gap: 45px; }
  .product-detail__grid { gap: 30px; }
  .product-detail__content h1 { font-size: 43px; }
  .product-facts div { grid-template-columns: 1fr; gap: 5px; }
  .custom-options__content { grid-template-columns: 1fr; padding: 35px 20px 55px; }
  .custom-options article { min-height: 230px; padding: 30px 10px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .custom-options article:last-child { border-bottom: 0 !important; }
  .custom-options article > span { margin-bottom: 40px; }
  .brief-checklist { grid-template-columns: 1fr; }
  .brief-checklist div { min-height: 125px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quality-steps li { grid-template-columns: 70px 1fr; }
  .quality-steps > li > span { font-size: 30px; }
  .about-feature__image::before { right: -10px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: 215px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles-grid span { margin-bottom: 45px; }
  .rfq-form-wrap { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .field-help { display: block; margin: 5px 0 0; }
  .legal-page__grid { gap: 45px; }
  .site-footer { padding-top: 65px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .post-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Reference-matched home page ------------------------------------------------ */

.home,
.home .site-shell,
.home .site-main { overflow-x: clip; }
.home .topbar { display: none; }

.home .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  color: #fff;
  background: rgba(12, 14, 12, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(3px);
}

.home .site-header__inner { min-height: 82px; }
.home .site-header.is-scrolled {
  position: fixed;
  background: rgba(20, 22, 19, .94);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  animation: zokka-header-in .38s ease both;
  backdrop-filter: blur(10px);
}
.home .site-logo img,
.home .custom-logo { filter: brightness(0) invert(1); }
.home .primary-navigation a { color: #fff; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.home .primary-navigation a::after { background: #fff; }
.home .header-cta { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); }
.home .header-cta:hover { color: #171817; background: #fff; border-color: #fff; }

.zokka-container {
  width: min(100% - (var(--gutter) * 2), 1220px);
  margin-inline: auto;
}

.zokka-section { padding-block: clamp(86px, 8.5vw, 132px); }

.zokka-kicker {
  margin: 0 0 15px;
  color: rgba(255,255,255,.82);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.zokka-kicker--ink { color: #8c725a; }

.zokka-outline-button {
  position: relative;
  display: inline-flex;
  min-width: 124px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .35s ease, border-color .35s ease;
  isolation: isolate;
}

.zokka-outline-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  content: "";
  transform: translateY(102%);
  transition: transform .35s cubic-bezier(.2,.75,.2,1);
}

.zokka-outline-button:hover { color: #171817; border-color: #fff; }
.zokka-outline-button:hover::before { transform: none; }

.zokka-section-title { margin-bottom: clamp(45px, 5vw, 72px); text-align: center; }
.zokka-section-title h2 { margin: 0; font-size: clamp(39px, 4vw, 58px); }

.zokka-hero {
  position: relative;
  display: grid;
  min-height: max(680px, 100svh);
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1b1d1a;
  isolation: isolate;
}

.zokka-hero__slides,
.zokka-hero__slide,
.zokka-hero__shade { position: absolute; inset: 0; }

.zokka-hero__slide {
  opacity: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  transition: opacity 1.05s ease;
}

.zokka-hero__slide.is-active {
  opacity: 1;
  animation: zokka-hero-zoom 8s linear forwards;
}

.zokka-hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8,10,8,.54), rgba(8,10,8,.22) 48%, rgba(8,10,8,.42)), linear-gradient(0deg, rgba(8,10,8,.34), transparent 48%);
}

.zokka-hero__content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 48px));
  padding-top: 70px;
  text-align: center;
}

.zokka-hero h1 {
  margin: 0 0 31px;
  color: #fff;
  font-size: clamp(52px, 6.3vw, 92px);
  letter-spacing: -.03em;
  line-height: .98;
  text-shadow: 0 3px 35px rgba(0,0,0,.18);
}

.zokka-hero__controls {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 44px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.zokka-hero__controls button,
.zokka-testimonials__dots button {
  width: 23px;
  height: 2px;
  padding: 0;
  background: rgba(255,255,255,.42);
  border: 0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}

.zokka-hero__controls button.is-active { width: 42px; background: #fff; }

.zokka-scroll-cue {
  position: absolute;
  bottom: 35px;
  left: clamp(22px, 4vw, 64px);
  z-index: 3;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.zokka-scroll-cue span { width: 46px; height: 1px; margin-right: 12px; overflow: hidden; background: rgba(255,255,255,.3); }
.zokka-scroll-cue span::after { display: block; width: 100%; height: 100%; background: #fff; content: ""; animation: zokka-scroll-line 2s ease-in-out infinite; }

.zokka-decor { background: #fff; }
.zokka-decor__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 8vw, 118px); }
.zokka-decor__column { padding-top: 6px; }
.zokka-decor__column > p:not(.zokka-kicker) { max-width: 505px; color: #666760; font-size: 13px; line-height: 1.85; }
.zokka-decor__column h2 { margin-bottom: 20px; font-size: clamp(39px, 4vw, 57px); }
.zokka-decor__column--right { padding-top: 42px; }
.zokka-decor__column--right > p { margin-top: 25px; }

.zokka-image { overflow: hidden; background: #e8e5df; }
.zokka-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.zokka-image:hover img { transform: scale(1.035); }
.zokka-image--portrait { width: 84%; margin-top: 30px; aspect-ratio: 1 / 1.07; }
.zokka-image--landscape { aspect-ratio: 1.15 / 1; }

.zokka-projects { overflow: hidden; padding-top: 44px; background: #f5f3ef; }
.zokka-projects__viewport { width: min(100% - 24px, 1480px); margin-inline: auto; overflow: hidden; }
.zokka-projects__track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.zokka-project-card { position: relative; display: block; overflow: hidden; color: #fff; background: #252621; aspect-ratio: .72 / 1; }
.zokka-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.zokka-project-card__overlay { position: absolute; inset: auto 0 0; display: flex; min-height: 120px; padding: 29px 26px; align-items: end; justify-content: space-between; background: linear-gradient(transparent, rgba(10,12,10,.84)); opacity: 0; transform: translateY(16px); transition: opacity .38s ease, transform .38s ease; }
.zokka-project-card__overlay strong { display: block; color: #fff; font-family: var(--display); font-size: clamp(20px, 2vw, 29px); font-weight: 400; line-height: 1.05; }
.zokka-project-card__overlay small { display: block; margin-top: 7px; color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.zokka-project-card__overlay b { font-size: 23px; font-weight: 400; }
.zokka-project-card:hover { color: #fff; }
.zokka-project-card:hover img { filter: brightness(.72); transform: scale(1.055); }
.zokka-project-card:hover .zokka-project-card__overlay { opacity: 1; transform: none; }

.zokka-specialization { background: #fff; }
.zokka-specialization__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(18px, 2vw, 34px); }
.zokka-specialization__item { display: block; color: #171817; text-align: center; text-decoration: none; }
.zokka-specialization__image { display: block; overflow: hidden; margin-bottom: 19px; border-radius: 50%; aspect-ratio: 1; }
.zokka-specialization__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.zokka-specialization__item:hover img { transform: scale(1.08) rotate(2deg); }
.zokka-specialization__item strong { font-family: var(--display); font-size: clamp(16px, 1.5vw, 21px); font-weight: 400; }

.zokka-choose {
  position: relative;
  display: grid;
  min-height: clamp(650px, 73vw, 860px);
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1b1d1a var(--choose-image) center/cover no-repeat;
  isolation: isolate;
}

.zokka-choose::before { position: absolute; inset: 0; z-index: -1; background: rgba(10,12,10,.57); content: ""; }
.zokka-choose__inner { position: relative; z-index: 2; width: min(670px, calc(100% - 48px)); text-align: center; }
.zokka-choose__inner h2 { margin-bottom: 20px; color: #fff; font-size: clamp(44px, 5vw, 70px); }
.zokka-choose__inner > p:not(.zokka-kicker) { max-width: 580px; margin: 0 auto 30px; color: rgba(255,255,255,.77); font-size: 14px; }
.zokka-functional { overflow: hidden; background: #f2efe9; }
.zokka-functional__grid { display: grid; align-items: center; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 9vw, 135px); }
.zokka-functional__art { position: relative; min-height: 690px; }
.zokka-functional__art-main { position: absolute; top: 0; left: 0; width: 66%; height: 86%; object-fit: cover; }
.zokka-functional__art-small { position: absolute; width: 37%; border: 8px solid #f2efe9; object-fit: cover; aspect-ratio: 1; }
.zokka-functional__art-small--one { top: 10%; right: 3%; }
.zokka-functional__art-small--two { right: 9%; bottom: 0; }
.zokka-functional__copy h2 { max-width: 540px; margin-bottom: 25px; font-size: clamp(42px, 4.5vw, 63px); }
.zokka-functional__copy > p:not(.zokka-kicker) { max-width: 570px; color: #64665f; font-size: 14px; line-height: 1.85; }
.zokka-functional__copy ul { padding: 0; margin: 26px 0 34px; list-style: none; }
.zokka-functional__copy li { position: relative; padding: 13px 0 13px 27px; border-bottom: 1px solid #d2cec5; font-size: 13px; font-weight: 650; }
.zokka-functional__copy li:first-child { border-top: 1px solid #d2cec5; }
.zokka-functional__copy li::before { position: absolute; top: 19px; left: 3px; width: 8px; height: 8px; border: 1px solid #8c725a; content: ""; transform: rotate(45deg); }
.zokka-text-button { display: inline-flex; align-items: center; gap: 17px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.zokka-text-button span { font-size: 18px; transition: transform .25s ease; }
.zokka-text-button:hover span { transform: translateX(5px); }

.zokka-exclusive { display: grid; overflow: hidden; color: #fff; background: #252721; grid-template-columns: 1fr 1fr; }
.zokka-exclusive__copy { display: flex; min-height: 720px; padding: clamp(70px, 8vw, 125px); flex-direction: column; align-items: flex-start; justify-content: center; }
.zokka-exclusive__copy h2 { margin-bottom: 40px; color: #fff; font-size: clamp(50px, 5vw, 73px); }
.zokka-exclusive__copy h3 { margin-bottom: 18px; color: #fff; font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.zokka-exclusive__copy > p:not(.zokka-kicker) { max-width: 520px; margin-bottom: 31px; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.9; }
.zokka-exclusive__image { min-height: 720px; overflow: hidden; }
.zokka-exclusive__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.zokka-exclusive__image:hover img { transform: scale(1.035); }

.zokka-testimonials { overflow: hidden; background: #fff; }
.zokka-testimonials__slider { position: relative; width: min(920px, 100%); min-height: 340px; margin-inline: auto; }
.zokka-testimonial { position: absolute; inset: 0; display: flex; padding: 20px 40px 70px; align-items: center; flex-direction: column; opacity: 0; text-align: center; transform: translateX(45px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.zokka-testimonial.is-active { opacity: 1; transform: none; pointer-events: auto; }
.zokka-quote { height: 66px; color: #a88b6e; font-family: Georgia, serif; font-size: 90px; line-height: .9; }
.zokka-testimonial p { max-width: 780px; margin: 17px auto 28px; color: #4f514c; font-family: var(--display); font-size: clamp(21px, 2.4vw, 31px); line-height: 1.55; }
.zokka-testimonial strong { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.zokka-testimonial small { margin-top: 5px; color: #8b8c85; font-size: 10px; }
.zokka-testimonials__dots { position: absolute; bottom: 12px; left: 50%; z-index: 3; display: flex; gap: 9px; transform: translateX(-50%); }
.zokka-testimonials__dots button { background: #c8c8c2; }
.zokka-testimonials__dots button.is-active { width: 42px; background: #272923; }

.zokka-journal { background: #f3f0ea; }
.zokka-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zokka-journal-card__image { display: block; overflow: hidden; margin-bottom: 24px; background: #dedbd5; aspect-ratio: 1.18 / 1; }
.zokka-journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.zokka-journal-card__image:hover img { transform: scale(1.045); }
.zokka-journal-card__meta { margin-bottom: 12px; color: #8c725a; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.zokka-journal-card h3 { margin-bottom: 14px; font-size: clamp(23px, 2.2vw, 31px); line-height: 1.18; }
.zokka-journal-card h3 a { text-decoration: none; }
.zokka-journal-card > p:last-child { margin-bottom: 0; color: #696b65; font-size: 12px; line-height: 1.75; }
.zokka-journal__more { display: flex; justify-content: center; margin-top: 48px; }

.home-effects-ready .home-animate { opacity: 0; transition: opacity .8s ease, transform .9s cubic-bezier(.16,.75,.2,1); }
.home-effects-ready .home-animate[data-animate="fade"] { transform: translateY(28px); }
.home-effects-ready .home-animate[data-animate="left"] { transform: translateX(-70px); }
.home-effects-ready .home-animate[data-animate="right"] { transform: translateX(70px); }
.home-effects-ready .home-animate[data-animate="up"] { transform: translateY(65px); }
.home-effects-ready .home-animate[data-animate="down"] { transform: translateY(-65px); }
.home-effects-ready .home-animate[data-animate="zoom"] { transform: scale(.9); }
.home-effects-ready .home-animate[data-animate="rotate-left"] { transform: translateX(-40px) rotate(-4deg); transform-origin: left center; }
.home-effects-ready .home-animate[data-animate="rotate-right"] { transform: translateX(40px) rotate(4deg); transform-origin: right center; }
.home-effects-ready .home-animate[data-animate="bounce"] { transform: translateY(80px) scale(.8); }
.home-effects-ready .home-animate.is-visible { opacity: 1; transform: none; }
.home-effects-ready .zokka-specialization__item:nth-child(2),
.home-effects-ready .zokka-journal-card:nth-child(2) { transition-delay: .08s; }
.home-effects-ready .zokka-specialization__item:nth-child(3),
.home-effects-ready .zokka-journal-card:nth-child(3) { transition-delay: .16s; }
.home-effects-ready .zokka-specialization__item:nth-child(4) { transition-delay: .24s; }
.home-effects-ready .zokka-specialization__item:nth-child(5) { transition-delay: .32s; }
.home-effects-ready .zokka-specialization__item:nth-child(6) { transition-delay: .4s; }
.home-effects-ready .zokka-functional__art-main.is-visible { animation: zokka-functional-main 9s ease-in-out 1s infinite; }
.home-effects-ready .zokka-functional__art-small--one.is-visible { animation: zokka-functional-float-one 6.4s ease-in-out .8s infinite; }
.home-effects-ready .zokka-functional__art-small--two.is-visible { animation: zokka-functional-float-two 7.2s ease-in-out 1.15s infinite; }

@keyframes zokka-hero-zoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
@keyframes zokka-scroll-line { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }
@keyframes zokka-functional-main { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-7px,-4px,0) scale(1.025); } }
@keyframes zokka-functional-float-one { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 32% { transform: translate3d(-10px,13px,0) rotate(-1.2deg); } 68% { transform: translate3d(8px,-10px,0) rotate(.8deg); } }
@keyframes zokka-functional-float-two { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 36% { transform: translate3d(9px,-12px,0) rotate(1deg); } 72% { transform: translate3d(-8px,11px,0) rotate(-.7deg); } }
@keyframes zokka-header-in { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: none; } }

@media (max-width: 1020px) {
  .zokka-projects__track { grid-template-columns: repeat(4, minmax(260px, 1fr)); }
  .zokka-projects__viewport { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .zokka-projects__viewport::-webkit-scrollbar { display: none; }
  .zokka-project-card { scroll-snap-align: start; }
  .zokka-specialization__grid { grid-template-columns: repeat(3, 1fr); gap: 38px 30px; }
  .zokka-functional__grid { gap: 55px; }
  .zokka-functional__art { min-height: 580px; }
  .zokka-exclusive__copy { padding: 70px 55px; }
}

@media (max-width: 900px) {
  .home .site-header { background: rgba(18,20,18,.18); backdrop-filter: none; }
  .home .menu-toggle__lines,
  .home .menu-toggle__lines::before,
  .home .menu-toggle__lines::after { background: #fff; }
  .home .primary-navigation { opacity: 0; visibility: hidden; transform: none; pointer-events: none; transition: opacity .28s ease, visibility .28s ease; }
  .home .primary-navigation.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .home.menu-open .menu-toggle__lines::before,
  .home.menu-open .menu-toggle__lines::after { background: #171817; }
  .home .primary-navigation a { color: #171817; font-size: 29px; letter-spacing: -.01em; text-transform: none; }
  .home .zokka-hero { min-height: 720px; }
  .zokka-decor__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .zokka-decor__column--right { padding-top: 85px; }
  .zokka-functional__grid { grid-template-columns: 1fr; }
  .zokka-functional__art { width: min(700px, 100%); margin-inline: auto; }
  .zokka-functional__copy { width: min(700px, 100%); margin-inline: auto; }
  .zokka-exclusive { grid-template-columns: 1fr; }
  .zokka-exclusive__copy,
  .zokka-exclusive__image { min-height: 600px; }
  .zokka-exclusive__image { order: -1; }
  .zokka-journal__grid { grid-template-columns: 1fr 1fr; }
  .zokka-journal-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); margin-inline: auto; }
}

@media (max-width: 640px) {
  .home .site-header__inner { min-height: 68px; }
  .home .site-logo,
  .home .custom-logo-link { width: 120px; }
  .home .site-logo img,
  .home .custom-logo { max-width: 120px; max-height: 42px; }
  .zokka-section { padding-block: 76px; }
  .zokka-hero { min-height: 620px !important; place-items: end center; }
  .zokka-hero__slide { background-position: 60% center; }
  .zokka-hero__shade { background: linear-gradient(0deg, rgba(8,10,8,.72), rgba(8,10,8,.15) 64%), linear-gradient(90deg, rgba(8,10,8,.3), transparent); }
  .zokka-hero__content { padding-bottom: 105px; text-align: left; }
  .zokka-hero h1 { font-size: clamp(43px, 13vw, 58px); line-height: 1; }
  .zokka-hero__controls { right: 20px; bottom: 30px; }
  .zokka-scroll-cue { display: none; }
  .zokka-decor__grid { grid-template-columns: 1fr; gap: 45px; }
  .zokka-decor__column--right { display: flex; padding-top: 0; flex-direction: column; }
  .zokka-decor__column--right .zokka-image { order: 2; }
  .zokka-decor__column--right > p { margin: 0 0 25px; }
  .zokka-image--portrait { width: 100%; }
  .zokka-projects { padding-top: 24px; }
  .zokka-projects__viewport { width: calc(100% - 20px); }
  .zokka-projects__track { grid-template-columns: repeat(4, minmax(74vw, 1fr)); gap: 10px; }
  .zokka-project-card__overlay { opacity: 1; transform: none; }
  .zokka-specialization__grid { grid-template-columns: 1fr 1fr; gap: 33px 22px; }
  .zokka-specialization__item strong { font-size: 18px; }
  .zokka-choose { min-height: 680px; }
  .zokka-functional__art { min-height: 440px; }
  .zokka-functional__art-main { width: 73%; }
  .zokka-functional__art-small { width: 42%; border-width: 5px; }
  .zokka-exclusive__copy { min-height: 560px; padding: 65px 20px; }
  .zokka-exclusive__image { min-height: 470px; }
  .zokka-testimonials__slider { min-height: 430px; }
  .zokka-testimonial { padding-inline: 0; }
  .zokka-testimonial p { font-size: 21px; }
  .zokka-journal__grid { grid-template-columns: 1fr; gap: 50px; }
  .zokka-journal-card:last-child { grid-column: auto; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-effects-ready .home-animate,
  .home-effects-ready .home-animate.is-visible { opacity: 1; transform: none; animation: none; }
  .zokka-hero__slide.is-active,
  .zokka-scroll-cue span::after { animation: none; }
}
