:root {
  --ink: #17201d;
  --ink-soft: #45514d;
  --paper: #f7f4ee;
  --white: #fffdfa;
  --sand: #e9dfcf;
  --line: rgba(23, 32, 29, .14);
  --pine: #16493d;
  --pine-deep: #10372f;
  --coral: #dd6b4d;
  --gold: #d7a84f;
  --sage: #aebfb1;
  --blue: #8eafbc;
  --radius: 1.5rem;
  --shadow: 0 22px 65px rgba(23, 32, 29, .11);
  --shell: min(1240px, calc(100% - 3rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.35rem); }
h3 { font-size: 1.5rem; }
::selection { color: var(--white); background: var(--pine); }

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; z-index: 9999; top: 1rem; left: 1rem; padding: .75rem 1rem; background: var(--white); border-radius: .5rem; box-shadow: var(--shadow); }
.section-shell, .header-shell, .footer-shell, .footer-bottom { width: var(--shell); margin-inline: auto; }
.section-space { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); }
.page-main { min-height: 65vh; padding: 8.5rem 0 6rem; }
.page-narrow { max-width: 980px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 3.2rem;
  padding: .85rem 1.4rem;
  border: 1px solid var(--pine);
  border-radius: 999px;
  color: var(--white);
  background: var(--pine);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--pine-deep); }
.button--large { min-height: 3.75rem; padding-inline: 1.75rem; }
.button--dark { background: var(--ink); border-color: var(--ink); }
.button--dark:hover { background: #000; }
.button--ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.button--ghost:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--text { color: var(--ink); border-color: transparent; background: transparent; }
.button--text:hover { color: var(--pine); background: transparent; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-bottom: .22rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  line-height: 1.3;
}
.text-link span, .product-card__link span { transition: transform .2s ease; }
.text-link:hover span, .product-card__link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(247, 244, 238, .92); box-shadow: 0 8px 32px rgba(23, 32, 29, .05); backdrop-filter: blur(16px); }
.header-shell { display: grid; grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr); align-items: center; min-height: 6.2rem; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; line-height: 1; }
.brand-mark { width: 3.05rem; color: var(--pine); }
.brand-copy { display: grid; gap: .3rem; }
.brand-copy strong { font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; letter-spacing: .02em; text-transform: uppercase; }
.brand-copy small { color: var(--ink-soft); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.custom-logo { max-height: 4rem; width: auto; }
.site-menu { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2vw, 2.1rem); margin: 0; padding: 0; list-style: none; }
.site-menu li { position: relative; }
.site-menu a { display: block; padding: .8rem 0; color: var(--ink-soft); font-size: .91rem; font-weight: 650; white-space: nowrap; }
.site-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .55rem; height: 1px; background: var(--coral); transition: right .2s ease; }
.site-menu a:hover, .site-menu .current-menu-item > a, .site-menu .current_page_item > a { color: var(--ink); }
.site-menu a:hover::after, .site-menu .current-menu-item > a::after, .site-menu .current_page_item > a::after { right: 0; }
.site-menu .sub-menu { position: absolute; top: calc(100% - .2rem); left: -.8rem; min-width: 220px; margin: 0; padding: .6rem 1rem; list-style: none; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(.5rem); transition: .2s ease; }
.site-menu li:hover > .sub-menu, .site-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.header-catalog { justify-self: end; display: inline-flex; gap: .55rem; align-items: center; padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; font-weight: 700; }
.header-catalog:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.menu-toggle { display: none; width: 3rem; height: 3rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after { display: block; width: 1.2rem; height: 1px; margin: auto; background: currentColor; transition: .2s ease; }
.menu-toggle__lines { position: relative; }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle__lines::before { top: -.38rem; }
.menu-toggle__lines::after { top: .38rem; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 0; transform: rotate(-45deg); }

.hero { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: min(890px, 100svh); padding-top: 8rem; padding-bottom: 3.5rem; gap: clamp(2rem, 7vw, 7rem); }
.hero-copy h1 { max-width: 780px; margin-bottom: 1.5rem; }
.hero-copy > p { max-width: 620px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.27rem); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.4rem; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(3.2rem, 7vw, 6rem); padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-facts div { display: grid; gap: .35rem; }
.hero-facts strong { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.hero-facts span { max-width: 155px; color: var(--ink-soft); font-size: .73rem; line-height: 1.4; }
.hero-art { position: relative; min-height: 620px; }
.fabric-card { position: absolute; display: flex; align-items: end; overflow: hidden; padding: 1rem; border: 8px solid rgba(255, 253, 250, .8); border-radius: var(--radius); box-shadow: var(--shadow); }
.fabric-card::before, .fabric-card::after { content: ""; position: absolute; inset: 0; opacity: .55; }
.fabric-card::before { background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.23) 7px 8px), repeating-linear-gradient(0deg, transparent 0 7px, rgba(0,0,0,.08) 7px 8px); }
.fabric-card::after { inset: -20%; background: radial-gradient(circle at 25% 30%, rgba(255,255,255,.55), transparent 30%), linear-gradient(130deg, transparent 35%, rgba(255,255,255,.25) 45%, transparent 55%); transform: rotate(-8deg); }
.fabric-card span { position: relative; z-index: 2; color: rgba(255,255,255,.9); font-size: .65rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.fabric-card--one { z-index: 1; top: 2%; right: 0; width: 68%; height: 57%; background: #2f6c5f; transform: rotate(5deg); }
.fabric-card--two { z-index: 2; bottom: 2%; left: 3%; width: 67%; height: 55%; background: #c86d51; transform: rotate(-5deg); }
.fabric-card--three { z-index: 3; right: 1%; bottom: 7%; width: 42%; height: 39%; background: #d5ad5b; transform: rotate(8deg); }
.hero-sail { position: absolute; z-index: 4; top: 13%; left: 6%; width: 45%; color: var(--white); filter: drop-shadow(0 10px 20px rgba(0,0,0,.15)); }
.hero-sail path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-stamp { position: absolute; z-index: 5; right: -1rem; top: 41%; display: grid; place-items: center; width: 7.2rem; height: 7.2rem; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: var(--ink); box-shadow: var(--shadow); font-family: Georgia, serif; font-size: 1rem; line-height: 1.15; text-align: center; transform: rotate(8deg); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading--light, .section-heading--light .eyebrow { color: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.category-card { position: relative; display: flex; flex-direction: column; min-height: 330px; overflow: hidden; padding: 1.35rem; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); color: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.category-card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,.05) 8px 9px); }
.category-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.category-card--1 { background: #285e53; }
.category-card--2 { background: #b65b43; }
.category-card--3 { background: #b3873f; }
.category-card--4 { background: #667e89; }
.category-number { position: relative; z-index: 1; font-size: .7rem; font-weight: 750; letter-spacing: .12em; opacity: .75; }
.category-card .category-icon { position: absolute; top: 4.3rem; right: -1.6rem; width: 11rem; height: 11rem; opacity: .34; stroke-width: .8; transform: rotate(-6deg); }
.category-card__copy { position: relative; z-index: 1; display: grid; gap: .6rem; margin-top: auto; }
.category-card__copy strong { max-width: 230px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; line-height: 1.08; }
.category-card__copy small { max-width: 245px; font-size: .77rem; line-height: 1.45; opacity: .78; }
.category-arrow { position: absolute; z-index: 1; right: 1.3rem; top: 1.1rem; font-size: 1.2rem; }

.story-band { color: var(--white); background: var(--pine); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.story-art { position: relative; min-height: 570px; }
.weave { position: absolute; border-radius: var(--radius); }
.weave::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: repeating-linear-gradient(0deg, transparent 0 9px, rgba(255,255,255,.1) 9px 10px), repeating-linear-gradient(90deg, transparent 0 9px, rgba(0,0,0,.09) 9px 10px); }
.weave--a { inset: 3% 20% 12% 2%; background: #d3a351; transform: rotate(-4deg); }
.weave--b { inset: 18% 0 0 30%; background: #d66b4f; transform: rotate(6deg); }
.story-art > span { position: absolute; z-index: 2; left: 26%; top: 21%; display: grid; place-items: center; width: 48%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-family: Georgia, serif; font-size: 8rem; line-height: 1; }
.story-copy h2 { max-width: 620px; }
.story-copy > p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.check-list { display: grid; gap: .7rem; margin: 2rem 0 2.5rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__visual { position: relative; display: grid; place-items: center; aspect-ratio: 1.12; overflow: hidden; color: rgba(255,255,255,.82); background: var(--sage); }
.product-card__visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__visual > img { transform: scale(1.035); }
.product-card__visual .category-icon { position: relative; z-index: 2; width: 43%; height: 43%; }
.product-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(255,255,255,.4), transparent 24%), repeating-linear-gradient(45deg, transparent 0 9px, rgba(255,255,255,.08) 9px 10px); }
.product-visual--bedding { background: #557d72; }
.product-visual--pillows { background: #b98573; }
.product-visual--blankets { background: #bb914c; }
.product-visual--mattresses { background: #728c98; }
.product-visual--protectors { background: #5f8da0; }
.product-visual--economy { background: #7d766c; }
.product-visual--knitwear { background: #a46773; }
.product-visual--workwear { background: #596b5f; }
.product-visual--towels { background: #b87455; }
.product-visual--special { background: #43534f; }
.product-card__body { display: flex; flex-direction: column; min-height: 250px; padding: 1.35rem; }
.product-card__term { margin-bottom: .75rem; color: var(--coral); font-size: .68rem; font-weight: 750; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.product-card__body h3 { margin-bottom: .6rem; font-size: 1.45rem; }
.product-card__body h3 a:hover { color: var(--pine); }
.product-card__body p { color: var(--ink-soft); font-size: .85rem; }
.product-card__link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 750; }

.process { color: var(--white); background: var(--ink); }
.process .text-link { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.process-grid > div { min-height: 280px; padding: 2rem; border-right: 1px solid rgba(255,255,255,.16); }
.process-grid > div:first-child { padding-left: 0; }
.process-grid > div:last-child { border-right: 0; }
.process-grid span { display: block; margin-bottom: 4rem; color: var(--gold); font-size: .75rem; font-weight: 750; letter-spacing: .15em; }
.process-grid strong { display: block; margin-bottom: .75rem; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.process-grid p { color: rgba(255,255,255,.62); font-size: .86rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; margin-bottom: 2.5rem; color: var(--ink-soft); font-size: .75rem; }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs span[aria-hidden] { opacity: .35; }
.page-hero { display: grid; grid-template-columns: 1fr minmax(280px, 480px); align-items: end; gap: 3rem; margin-bottom: 3rem; padding: 3.5rem; border-radius: calc(var(--radius) + .5rem); color: var(--white); background: var(--pine); }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.2rem, 7vw, 6rem); }
.page-hero > p, .page-hero > div > p { margin-bottom: .4rem; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.term-description p { margin-bottom: .4rem; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.page-hero--catalog { background: linear-gradient(125deg, var(--pine), #2f6d5f); }
.page-hero--term { grid-template-columns: 1fr 250px; align-items: center; min-height: 360px; }
.term-hero-icon { display: grid; place-items: center; width: 220px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.term-hero-icon .category-icon { width: 58%; }
.page-hero--simple { display: block; margin-bottom: 0; padding: 3.5rem; }
.page-hero--simple h1 { max-width: 800px; }
.catalog-filter { display: flex; gap: .6rem; overflow-x: auto; margin: 0 0 4rem; padding: .2rem .1rem .8rem; scrollbar-width: thin; }
.catalog-filter a { flex: 0 0 auto; padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.4); font-size: .78rem; font-weight: 700; }
.catalog-filter a:hover, .catalog-filter a.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.catalog-results-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; }
.catalog-results-head h2 { margin: 0; font-size: 2.4rem; }
.catalog-results-head span { color: var(--ink-soft); font-size: .8rem; }
.product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.navigation.pagination { margin-top: 3rem; }
.nav-links { display: flex; gap: .5rem; justify-content: center; }
.page-numbers { display: grid; place-items: center; min-width: 2.7rem; height: 2.7rem; padding-inline: .75rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .78rem; font-weight: 700; }
.page-numbers.current, .page-numbers:hover { color: var(--white); background: var(--pine); border-color: var(--pine); }

.single-product { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.single-product__visual { position: sticky; top: 8rem; display: grid; place-items: center; min-height: 600px; overflow: hidden; border-radius: calc(var(--radius) + .5rem); color: rgba(255,255,255,.85); }
.single-product__visual > img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.single-product__visual .category-icon { position: relative; z-index: 2; width: 34%; }
.single-product__summary { padding-top: 2rem; }
.single-product__summary h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 5vw, 5.5rem); }
.product-lead { color: var(--ink-soft); font-size: 1.1rem; }
.product-specs { margin: 2.4rem 0; border-top: 1px solid var(--line); }
.product-specs div { display: grid; grid-template-columns: 130px 1fr; gap: 1.3rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--ink-soft); font-size: .75rem; }
.product-specs dd { margin: 0; font-weight: 650; }
.single-product__content { grid-column: 2; margin-top: -1.5rem; }
.related-products { grid-column: 1 / -1; }

.page-article { overflow: hidden; border: 1px solid var(--line); border-radius: calc(var(--radius) + .5rem); background: var(--white); }
.entry-content { padding: clamp(2rem, 6vw, 4.5rem); }
.entry-content > * { max-width: 780px; margin-left: auto; margin-right: auto; }
.entry-content h2 { margin-top: 3.5rem; margin-bottom: 1.2rem; font-size: clamp(2rem, 4vw, 3rem); }
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { margin-top: 2.5rem; }
.entry-content p, .entry-content li { color: var(--ink-soft); }
.entry-content a { color: var(--pine); text-decoration: underline; text-underline-offset: .18em; }
.entry-content ul, .entry-content ol { display: grid; gap: .65rem; padding-left: 1.3rem; }
.entry-content ol { padding-left: 0; list-style: none; counter-reset: steps; }
.entry-content ol > li { position: relative; padding: 1.25rem 1.25rem 1.25rem 4.3rem; border: 1px solid var(--line); border-radius: 1rem; counter-increment: steps; }
.entry-content ol > li::before { content: counter(steps, decimal-leading-zero); position: absolute; left: 1.3rem; top: 1.2rem; color: var(--coral); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.content-note { max-width: 780px; margin-top: 2.5rem !important; padding: 1.3rem 1.5rem; border-left: 3px solid var(--gold); border-radius: 0 1rem 1rem 0; background: #f5ecdc; color: var(--ink-soft); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 900px !important; margin-top: 2rem; margin-bottom: 3rem; }
.feature-list > div { display: grid; gap: .5rem; min-height: 150px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--paper); }
.feature-list strong { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 500; }
.feature-list span { color: var(--ink-soft); font-size: .85rem; }
.empty-state { padding: 6rem 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-align: center; }
.empty-state h1, .empty-state h2 { margin-bottom: 1rem; }
.empty-state--404 > span { display: block; color: var(--coral); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
.empty-state--404 div { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.post-list { display: grid; gap: 1rem; }
.post-summary { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }

.site-footer { padding-top: 5rem; color: var(--white); background: var(--pine-deep); }
.footer-shell { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: clamp(2.5rem, 7vw, 7rem); padding-bottom: 4.5rem; }
.brand--footer { color: var(--white); }
.brand--footer .brand-mark { color: var(--gold); }
.brand--footer .brand-copy small { color: rgba(255,255,255,.55); }
.footer-brand p, .footer-note p { max-width: 330px; margin-top: 1.5rem; color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-nav-wrap > strong, .footer-note > strong { display: block; margin-bottom: 1.2rem; color: var(--gold); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem 1.3rem; margin: 0; padding: 0; list-style: none; }
.footer-menu a { color: rgba(255,255,255,.75); font-size: .85rem; }
.footer-menu a:hover { color: var(--white); }
.footer-link-button { padding: 0 0 .15rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.72); background: transparent; cursor: pointer; font-size: .8rem; }
.footer-link-button:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); font-size: .75rem; }
.footer-bottom a:hover { color: var(--white); }

.cookie-notice { position: fixed; z-index: 2000; left: 50%; bottom: 1.25rem; display: grid; grid-template-columns: 1fr auto; align-items: center; width: min(900px, calc(100% - 2rem)); padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.25rem; background: var(--white); box-shadow: 0 25px 80px rgba(0,0,0,.22); transform: translateX(-50%); }
.cookie-notice[hidden] { display: none; }
.cookie-notice strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.cookie-notice p { max-width: 550px; margin: .3rem 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.cookie-actions { display: flex; align-items: center; gap: .5rem; }
.cookie-actions .button { min-height: 2.8rem; padding: .7rem 1rem; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.category-grid .reveal:nth-child(2), .product-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .06s; }
.category-grid .reveal:nth-child(3), .product-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .12s; }
.category-grid .reveal:nth-child(4), .product-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .18s; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 2rem, 980px); }
  .header-shell { grid-template-columns: 1fr auto; min-height: 5.2rem; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .primary-navigation { position: fixed; inset: 5.2rem 0 0; display: none; padding: 2rem 1rem 4rem; overflow-y: auto; background: var(--paper); }
  .primary-navigation.is-open { display: block; }
  .site-menu { display: grid; align-items: stretch; gap: 0; width: min(100%, 740px); margin: auto; }
  .site-menu a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
  .site-menu a::after { display: none; }
  .site-menu .sub-menu { position: static; display: grid; min-width: 0; padding: 0 0 0 1rem; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .site-menu .sub-menu a { font-family: inherit; font-size: 1rem; }
  .header-catalog { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-art { min-height: 520px; }
  .hero-facts { gap: .6rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 290px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid > div:nth-child(2) { border-right: 0; }
  .process-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-grid > div:nth-child(3) { padding-left: 0; }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 9rem; }
  .hero-copy h1 { font-size: clamp(3.4rem, 15vw, 5.8rem); }
  .hero-art { min-height: 560px; max-width: 620px; width: 100%; margin-inline: auto; }
  .story-grid, .single-product { grid-template-columns: 1fr; }
  .story-art { min-height: 480px; }
  .product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero { grid-template-columns: 1fr; padding: 2.3rem; }
  .page-hero--term { grid-template-columns: 1fr 160px; }
  .term-hero-icon { width: 150px; }
  .single-product__visual { position: relative; top: auto; min-height: 480px; }
  .single-product__visual > img { min-height: 480px; }
  .single-product__content { grid-column: 1; margin-top: 0; }
  .footer-shell { gap: 3rem; }
  .cookie-notice { grid-template-columns: 1fr; gap: 1rem; }
  .cookie-actions { justify-content: flex-end; flex-wrap: wrap; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 1.25rem); --radius: 1.2rem; }
  h2 { font-size: 2.45rem; }
  .brand-mark { width: 2.6rem; }
  .brand-copy strong { font-size: 1.45rem; }
  .brand-copy small { font-size: .52rem; }
  .hero { padding-top: 7.5rem; }
  .hero-copy h1 { font-size: 3.6rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div:last-child { grid-column: 1 / -1; }
  .hero-art { min-height: 450px; }
  .hero-stamp { right: 0; width: 6rem; height: 6rem; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 2rem; }
  .category-grid, .product-grid, .product-grid--catalog, .feature-list { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .story-art { min-height: 380px; }
  .story-art > span { font-size: 5.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div { min-height: 240px; padding: 1.7rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-grid > div:nth-child(2) { padding-left: 0; }
  .process-grid > div:last-child { border-bottom: 0; }
  .process-grid span { margin-bottom: 2.5rem; }
  .page-main { padding-top: 7rem; }
  .page-hero, .page-hero--simple { padding: 1.6rem; }
  .page-hero h1 { font-size: 3.1rem; }
  .page-hero--term { grid-template-columns: 1fr; }
  .term-hero-icon { display: none; }
  .catalog-filter { margin-bottom: 2.5rem; }
  .single-product__visual { min-height: 390px; }
  .single-product__visual > img { min-height: 390px; }
  .single-product__summary h1 { font-size: 3.2rem; }
  .entry-content { padding: 1.6rem; }
  .entry-content ol > li { padding-left: 3.8rem; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-note { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-notice { bottom: .6rem; width: calc(100% - 1.2rem); padding: 1rem; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button--text { grid-column: 1 / -1; grid-row: 2; }
  .empty-state--404 div { align-items: stretch; flex-direction: column; }
}

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