:root {
  --ink: #1f2924;
  --ink-soft: #4f5b54;
  --forest: #173f32;
  --forest-2: #225744;
  --cork: #b97943;
  --cork-light: #d7aa76;
  --cream: #f6f2ea;
  --paper: #fffdf9;
  --line: #ded8cd;
  --white: #ffffff;
  --shadow: 0 18px 54px rgba(31, 41, 36, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.announcement {
  padding: 8px 20px;
  color: #f6f1e8;
  background: var(--forest);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 216, 205, 0.78);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: url("./assets/into-cork-logo.png") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(71, 83, 49, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--forest);
}

.nav-links .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--forest-2);
}

.nav-item-products {
  position: static;
}

.nav-product-trigger {
  display: flex;
  align-items: center;
  gap: 3px;
}

.submenu-toggle {
  display: inline-grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: var(--forest);
  background: rgba(23, 63, 50, 0.08);
}

.submenu-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item-products:hover .submenu-toggle svg,
.nav-item-products:focus-within .submenu-toggle svg,
.nav-item-products.submenu-open .submenu-toggle svg {
  transform: rotate(180deg);
}

.product-mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  width: min(1000px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 253, 249, 0.99);
  box-shadow: 0 24px 55px rgba(31, 41, 36, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item-products:hover .product-mega-menu,
.nav-item-products:focus-within .product-mega-menu,
.nav-item-products.submenu-open .product-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 16px;
  border-bottom: 1px solid var(--line);
}

.mega-menu-top strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 650;
}

.nav-links .mega-menu-all {
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1fr 1fr;
  gap: 26px;
  padding-top: 20px;
}

.mega-menu-column {
  min-width: 0;
}

.nav-links .mega-menu-title {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.mega-menu-list,
.mega-menu-sublist {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links .mega-menu-list a,
.nav-links .mega-menu-sublist a {
  display: block;
  padding: 5px 7px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.35;
}

.nav-links .mega-menu-list a:hover,
.nav-links .mega-menu-sublist a:hover {
  color: var(--forest);
  background: rgba(23, 63, 50, 0.07);
}

.mega-menu-group {
  margin-top: 8px;
  padding-top: 9px;
  border-top: 1px solid rgba(222, 216, 205, 0.72);
}

.nav-links .mega-menu-group-label {
  padding: 4px 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.mega-menu-sublist {
  padding-left: 9px;
  border-left: 2px solid rgba(23, 63, 50, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 710px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.98) 0%, rgba(248, 244, 236, 0.9) 37%, rgba(248, 244, 236, 0.1) 62%),
    url("./assets/into-cork-hero-v5.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 610px;
  padding: 96px 0 104px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--forest-2);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 253, 249, 0.68);
}

.button-secondary:hover {
  background: var(--white);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 102px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: #e6eee8;
  font-size: 15px;
  font-weight: 800;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  color: #f8f5ef;
  background: var(--forest);
}

.section-dark .eyebrow {
  color: #c9d8ce;
}

.section-dark p {
  color: #d5dfd9;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head p,
.lead {
  color: var(--ink-soft);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(31, 41, 36, 0.045);
}

.product-visual {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background-color: #d6ad7d;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 27, 23, 0.15));
  pointer-events: none;
}

.product-visual.fabric {
  background: #dcc09b;
}

.product-visual.fabric img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.product-visual.fabric::after {
  background: linear-gradient(180deg, transparent 72%, rgba(54, 35, 20, 0.08));
}

.product-visual.yoga {
  background:
    linear-gradient(165deg, transparent 0 45%, rgba(42, 54, 45, 0.12) 46% 47%, transparent 48%),
    linear-gradient(145deg, #d9c9ad, #eee7db);
}

.product-visual.yoga::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 92px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 35%, rgba(65, 37, 17, 0.18) 0 2px, transparent 2.5px),
    linear-gradient(145deg, #d7ad78, #a86635);
  box-shadow:
    inset -14px -3px 0 #2f3933,
    0 30px 38px rgba(33, 41, 36, 0.17);
  transform: translate(-50%, -50%) rotate(-10deg);
}

.product-visual.yoga.with-image {
  background: #e9dfd0;
}

.product-visual.yoga.with-image::before {
  display: none;
}

.product-visual.yoga.with-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-visual.yoga.with-image::after {
  background: linear-gradient(180deg, transparent 76%, rgba(54, 35, 20, 0.08));
}

.product-visual.panels {
  background: #d6c5aa;
}

.product-visual.panels::before {
  content: "";
  position: absolute;
  inset: 34px 38px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(71, 44, 24, 0.25) 0 3px, transparent 3px 13px),
    linear-gradient(145deg, #c98c54, #e2bb83);
  box-shadow: 24px 22px 0 rgba(116, 73, 38, 0.28);
  transform: rotate(2deg);
}

.product-visual.panels.with-image {
  background: #d5b58f;
}

.product-visual.panels.with-image::before {
  display: none;
}

.product-visual.panels.with-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-visual.panels.with-image::after {
  background: linear-gradient(180deg, transparent 76%, rgba(54, 35, 20, 0.08));
}

.product-visual.crafts {
  background:
    radial-gradient(circle at 20% 28%, rgba(78, 47, 23, 0.16) 0 2px, transparent 2.5px),
    linear-gradient(145deg, #ece3d4, #d9c8af);
  background-size: 28px 26px, auto;
}

.product-visual.crafts::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  border: 13px solid #ba7a43;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(76, 42, 20, 0.2) 0 2px, transparent 2.5px),
    linear-gradient(145deg, #deb986, #bc7b43);
  box-shadow:
    76px 38px 0 -32px #8f5e35,
    -66px 48px 0 -38px #d4a56d,
    0 26px 38px rgba(68, 48, 31, 0.18);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.product-visual.crafts.with-image {
  background: #d5b58f;
}

.product-visual.crafts.with-image::before {
  display: none;
}

.product-visual.crafts.with-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-visual.crafts.with-image::after {
  background: linear-gradient(180deg, transparent 76%, rgba(54, 35, 20, 0.08));
}

.product-body {
  padding: 28px;
}

.product-action-row {
  margin-top: 28px;
}

.product-body p {
  min-height: 82px;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.yoga-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.yoga-model-card {
  display: flex;
  flex-direction: column;
}

.yoga-model-card .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.yoga-model-card .product-body p {
  min-height: 0;
}

.yoga-model-card .text-link {
  margin-top: auto;
}

.product-visual.yoga-model-image {
  min-height: 340px;
  background: #fff;
}

.product-visual.yoga-model-image::after {
  background: linear-gradient(180deg, transparent 80%, rgba(54, 35, 20, 0.06));
}

.product-visual.yoga-model-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 84px;
}

.material-story {
  min-height: 530px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent),
    radial-gradient(circle at 23% 24%, rgba(63, 33, 14, 0.2) 0 3px, transparent 3.5px),
    radial-gradient(circle at 77% 64%, rgba(63, 33, 14, 0.16) 0 2px, transparent 2.5px),
    radial-gradient(circle at 44% 82%, rgba(63, 33, 14, 0.18) 0 2.5px, transparent 3px),
    linear-gradient(135deg, #b8733f, #e1b679);
  background-size: auto, 45px 40px, 34px 38px, 29px 37px, auto;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}

.about-story-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d6c5a4;
  box-shadow: var(--shadow);
}

.about-story-media img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center;
}

.why-cork-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d8c4a3;
  box-shadow: var(--shadow);
}

.why-cork-media img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.about-story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.feature p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 58px;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  color: #8fb19d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.step p {
  font-size: 14px;
}

.cta-panel {
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.cta-panel h2 {
  max-width: 680px;
  margin-bottom: 10px;
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 112px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 22%, rgba(185, 121, 67, 0.15), transparent 27%),
    var(--cream);
}

.page-hero .container {
  max-width: 960px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.catalog-hero {
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 78% 22%, rgba(185, 121, 67, 0.18), transparent 28%),
    linear-gradient(135deg, #f8f4ec 0%, #f3eee4 100%);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 74px;
}

.catalog-back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.catalog-back-link:hover {
  color: var(--forest);
}

.catalog-hero h1 {
  max-width: 720px;
}

.catalog-hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.catalog-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 121, 67, 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(48, 34, 24, 0.16);
}

.catalog-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1543 / 1019;
  object-fit: cover;
}

.home-category-intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.home-category-tree {
  display: grid;
  gap: 26px;
}

.home-category-branch {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 38px rgba(31, 41, 36, 0.05);
}

.home-category-branch-header {
  padding: 38px 42px 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
}

.home-category-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: #e6eee8;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.home-category-branch h2,
.home-subcategory-card h3 {
  margin-bottom: 10px;
}

.home-category-branch-header p,
.home-subcategory-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.home-category-level {
  padding: 7px 12px;
  color: var(--forest);
  background: #edf3ef;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-subcategory-wrap {
  padding: 0 42px 42px 112px;
}

.home-subcategory-label {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-subcategory-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 121, 67, 0.13), transparent 32%),
    var(--cream);
  border-radius: var(--radius-md);
}

.home-subcategory-card .eyebrow {
  margin-bottom: 14px;
}

.home-category-direct {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
}

.home-category-direct::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--cork);
}

.fabric-category-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.fabric-category-card {
  min-height: 116px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.fabric-category-card:last-child {
  border-right: 0;
}

.fabric-category-card.active:hover {
  background: #f8f5ef;
}

.fabric-category-number {
  color: var(--cork);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.fabric-category-card strong,
.fabric-category-card small {
  display: block;
}

.fabric-category-card strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.fabric-category-card small {
  color: var(--ink-soft);
}

.fabric-category-card.coming-soon {
  color: #788079;
  background: #f7f5f0;
}

.category-status {
  padding: 6px 10px;
  border: 1px solid #d6d2ca;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fabric-catalog-section {
  background: #fbfaf7;
}

.fabric-catalog-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.54fr);
  align-items: end;
  gap: 64px;
}

.fabric-catalog-head h2 {
  margin-bottom: 14px;
}

.fabric-catalog-head > div:first-child > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.catalog-search-wrap label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 750;
}

.catalog-search {
  position: relative;
}

.catalog-search svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-search input {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px 12px 46px;
  border: 1px solid #cfc9be;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.catalog-search input:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(34, 87, 68, 0.12);
}

.catalog-result-count {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.fabric-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 22px;
}

.fabric-catalog-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.fabric-card-stage {
  position: relative;
  aspect-ratio: 1.5;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ded8cd;
  border-radius: 22px;
  background: var(--white);
}

.fabric-card-sheet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.12) saturate(1.06);
}

.fabric-card-body {
  padding: 15px 8px 0;
  text-align: center;
}

.fabric-card-body h3 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  color: #111;
  font-size: 21px;
  font-weight: 800;
}

.flat-panel-hero-visual img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.flat-panel-card-sheet {
  filter: brightness(0.96) contrast(1.03) saturate(1.01);
}

.flat-panel-model-grid {
  display: grid;
  gap: 28px;
}

.flat-panel-model-card {
  padding: 20px;
  overflow: hidden;
  border: 1px solid #e0dbd2;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(48, 34, 24, 0.08);
}

.flat-panel-model-gallery {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  align-items: stretch;
  gap: 18px;
}

.flat-panel-model-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e1dcd3;
  border-radius: 17px;
  background: #fff;
}

.flat-panel-model-image-detail {
  aspect-ratio: 1360 / 2020;
}

.flat-panel-model-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.flat-panel-model-image-detail img {
  object-fit: cover;
}

.flat-panel-model-image-scene img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.flat-panel-model-image figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  border: 1px solid rgba(221, 215, 204, 0.88);
  border-radius: 999px;
  color: #393d38;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flat-panel-model-body {
  padding: 21px 6px 3px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.flat-panel-model-label {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flat-panel-model-body h3 {
  margin: 0;
  color: #111;
  font-size: 25px;
}

.flat-panel-model-body a {
  flex: 0 0 auto;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.flat-panel-model-body a:hover {
  color: var(--cork-dark);
}

.catalog-sample-status {
  min-width: 170px;
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--forest);
  background: var(--white);
}

.catalog-sample-status strong {
  font-size: 15px;
}

.catalog-sample-status span {
  color: var(--ink-soft);
  font-size: 12px;
}

.wall-panel-hero-visual img {
  aspect-ratio: 1;
  padding: clamp(24px, 4vw, 52px);
  object-fit: contain;
  background: var(--white);
}

.wall-panel-catalog-section {
  background: #f7f4ee;
}

.wall-panel-catalog-head {
  margin-bottom: 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.wall-panel-catalog-head h2 {
  margin-bottom: 14px;
}

.wall-panel-catalog-head > div:first-child {
  max-width: 760px;
}

.wall-panel-catalog-head > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.wall-panel-count {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--forest);
  border: 1px solid rgba(23, 63, 50, 0.16);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.wall-panel-card {
  overflow: hidden;
  border: 1px solid #e0dbd1;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(31, 41, 36, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wall-panel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(31, 41, 36, 0.1);
}

.wall-panel-stage {
  aspect-ratio: 1;
  min-height: 0;
  padding: clamp(22px, 2.6vw, 36px);
  display: grid;
  place-items: center;
  border-bottom: 1px solid #ece7de;
  background: var(--white);
}

.wall-panel-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.wall-panel-card:hover .wall-panel-stage img {
  transform: scale(1.025);
}

.wall-panel-card-body {
  padding: 20px 22px 22px;
  text-align: center;
  background: var(--white);
}

.wall-panel-card-body h3 {
  margin-bottom: 7px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
}

.wall-panel-card-body a {
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 750;
}

.wall-panel-card-body a:hover {
  color: var(--cork);
}

.wall-panel-note {
  margin-top: 42px;
  background: var(--white);
}

.catalog-load-wrap {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.catalog-load-wrap [hidden] {
  display: none;
}

.catalog-empty {
  padding: 62px 24px;
  border: 1px dashed #cbc5ba;
  border-radius: 18px;
  text-align: center;
  background: var(--white);
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty p {
  color: var(--ink-soft);
}

.catalog-note {
  margin-top: 34px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #f0eee8;
  font-size: 13px;
}

.catalog-note > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #b9b4aa;
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.catalog-note p {
  margin-bottom: 0;
}

.yoga-product-hero {
  padding: 58px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(185, 121, 67, 0.14), transparent 25%),
    linear-gradient(135deg, #faf7f1 0%, #f3eee4 100%);
}

.yoga-product-hero .catalog-back-link {
  margin-bottom: 28px;
}

.yoga-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: start;
  gap: 70px;
}

.yoga-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(48, 34, 24, 0.11);
}

.yoga-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yoga-gallery-thumbnails {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.yoga-gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.yoga-gallery-thumb:hover {
  transform: translateY(-2px);
}

.yoga-gallery-thumb.active {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(23, 63, 50, 0.14);
}

.yoga-gallery-thumb:focus-visible {
  outline: 3px solid rgba(34, 87, 68, 0.28);
  outline-offset: 3px;
}

.yoga-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yoga-product-copy {
  padding-top: 14px;
}

.yoga-product-copy h1 {
  margin-bottom: 13px;
  font-size: clamp(48px, 5vw, 70px);
}

.yoga-product-tagline {
  margin-bottom: 22px;
  color: var(--cork);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.2;
}

.yoga-product-summary {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
}

.yoga-quick-facts {
  margin-bottom: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.yoga-quick-facts > div {
  padding: 17px 16px;
  border-right: 1px solid var(--line);
}

.yoga-quick-facts > div:first-child {
  padding-left: 0;
}

.yoga-quick-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.yoga-quick-facts span,
.yoga-quick-facts strong {
  display: block;
}

.yoga-quick-facts span {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yoga-quick-facts strong {
  color: var(--ink);
  font-size: 15px;
}

.yoga-product-highlights {
  padding: 0;
  margin: 0 0 31px;
  display: grid;
  gap: 11px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
}

.yoga-product-highlights li {
  position: relative;
  padding-left: 25px;
}

.yoga-product-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--forest-2);
  font-weight: 850;
}

.yoga-sample-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.yoga-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

.yoga-story-copy {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.yoga-story-copy p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 17px;
}

.yoga-story-copy p:last-child {
  margin-bottom: 0;
}

.yoga-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.yoga-feature-card {
  min-height: 146px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.yoga-feature-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 15px;
  font-weight: 850;
}

.yoga-feature-card strong {
  font-size: 15px;
  line-height: 1.4;
}

.yoga-spec-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 72px;
}

.yoga-oem-card {
  margin-top: 34px;
  padding: 28px;
  border-radius: 18px;
  color: #f8f5ef;
  background: var(--forest);
}

.yoga-oem-card .eyebrow {
  margin-bottom: 13px;
  color: #c9d8ce;
}

.yoga-oem-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.yoga-oem-card p:not(.eyebrow) {
  color: #d5dfd9;
  font-size: 14px;
}

.yoga-oem-card .text-link {
  color: var(--white);
}

.yoga-spec-table .spec-row {
  grid-template-columns: 0.38fr 1fr;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row > div {
  padding: 20px 24px;
}

.spec-label {
  background: var(--cream);
  font-weight: 750;
}

.spec-value {
  color: var(--ink-soft);
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
}

.timeline-marker {
  position: relative;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.timeline-marker::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 48px;
  bottom: -12px;
  width: 1px;
  background: var(--line);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-content {
  padding-bottom: 38px;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 76px;
}

.contact-note {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.contact-note p:last-child {
  margin-bottom: 0;
}

.contact-email {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-email a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.inquiry-context {
  margin-bottom: 24px;
  padding: 16px 18px;
  display: grid;
  gap: 3px;
  border: 1px solid #cddbcf;
  border-radius: 10px;
  color: var(--forest);
  background: #edf3ef;
}

.inquiry-context[hidden] {
  display: none;
}

.inquiry-context span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-context strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbc5ba;
  border-radius: 9px;
  color: var(--ink);
  background: #fffefa;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(34, 87, 68, 0.12);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.thank-you-panel {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(185, 121, 67, 0.15), transparent 40%),
    var(--white);
  box-shadow: var(--shadow);
}

.thank-you-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.thank-you-panel h1 {
  margin-bottom: 18px;
}

.thank-you-panel > p {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 68px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--forest);
}

.footer-copy {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-social-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  min-height: 40px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(43, 69, 48, 0.2);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-link:first-child svg {
  fill: none;
}

.footer-social-link:first-child .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--forest);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6b776f;
  font-size: 12px;
}

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

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 16px 30px rgba(31, 41, 36, 0.08);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 10px;
  }

  .nav-item-products {
    width: 100%;
  }

  .nav-product-trigger {
    justify-content: space-between;
  }

  .nav-product-trigger > a {
    flex: 1;
  }

  .submenu-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
  }

  .product-mega-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    padding: 16px;
    border-radius: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-item-products:hover .product-mega-menu,
  .nav-item-products:focus-within .product-mega-menu {
    display: none;
  }

  .nav-item-products.submenu-open .product-mega-menu,
  .nav-item-products.submenu-open:hover .product-mega-menu,
  .nav-item-products.submenu-open:focus-within .product-mega-menu {
    display: block;
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-item-products:hover .product-mega-menu,
    .nav-item-products:focus-within .product-mega-menu {
      display: block;
    }
  }

  .mega-menu-top {
    padding-bottom: 12px;
  }

  .mega-menu-top strong {
    font-size: 19px;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-top: 16px;
  }

  .nav-links .mega-menu-title,
  .nav-links .mega-menu-list a,
  .nav-links .mega-menu-sublist a,
  .nav-links .mega-menu-group-label,
  .nav-links .mega-menu-all {
    padding-left: 7px;
    padding-right: 7px;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    background:
      linear-gradient(0deg, rgba(248, 244, 236, 1) 0%, rgba(248, 244, 236, 0.94) 44%, rgba(248, 244, 236, 0.08) 72%),
      url("./assets/into-cork-hero-v5.jpg") 64% center / cover no-repeat;
  }

  .hero-copy {
    max-width: 680px;
    padding: 300px 0 74px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-category-branch-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-category-level {
    grid-column: 2;
    justify-self: start;
  }

  .home-subcategory-wrap {
    padding-left: 42px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .material-story {
    min-height: 400px;
  }

  .about-story-media img {
    height: 520px;
  }

  .why-cork-media img {
    height: 520px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .catalog-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fabric-catalog-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .catalog-search-wrap {
    width: min(100%, 520px);
  }

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

  .flat-panel-model-gallery {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }

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

  .yoga-product-grid,
  .yoga-story-grid,
  .yoga-spec-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .yoga-product-copy {
    padding-top: 0;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .announcement {
    font-size: 11px;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mega-menu-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    padding-bottom: 56px;
  }

  .about-story-media img {
    height: 420px;
  }

  .why-cork-media img {
    height: 420px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-lead,
  .page-hero p {
    font-size: 16px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .trust-grid,
  .product-grid,
  .steps,
  .content-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .yoga-model-grid {
    grid-template-columns: 1fr;
  }

  .home-category-branch-header {
    padding: 28px 24px 24px;
    gap: 16px;
  }

  .home-category-number {
    width: 40px;
    height: 40px;
  }

  .home-subcategory-wrap {
    padding: 0 24px 28px;
  }

  .home-subcategory-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .product-body p {
    min-height: auto;
  }

  .cta-panel {
    padding: 38px 26px;
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 78px 0 64px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-label {
    padding-bottom: 5px !important;
  }

  .spec-value {
    padding-top: 5px !important;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .catalog-hero {
    padding: 70px 0 58px;
  }

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

  .flat-panel-model-card {
    padding: 12px;
    border-radius: 19px;
  }

  .flat-panel-model-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flat-panel-model-image-detail {
    aspect-ratio: 4 / 5;
  }

  .flat-panel-model-image-scene {
    aspect-ratio: 16 / 10;
  }

  .flat-panel-model-image-scene img {
    padding: 0;
  }

  .flat-panel-model-body {
    padding: 18px 4px 5px;
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .wall-panel-catalog-head {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .wall-panel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wall-panel-stage {
    padding: 26px;
  }

  .fabric-category-card {
    min-height: 102px;
    padding: 21px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fabric-category-card:last-child {
    border-bottom: 0;
  }

  .category-status {
    max-width: 72px;
    text-align: center;
  }

  .product-action-row {
    align-items: stretch;
  }

  .yoga-product-hero {
    padding: 44px 0 70px;
  }

  .yoga-gallery-main {
    border-radius: 20px;
  }

  .yoga-gallery-thumbnails {
    gap: 8px;
  }

  .yoga-gallery-thumb {
    border-radius: 9px;
  }

  .yoga-product-copy h1 {
    font-size: 45px;
  }

  .yoga-quick-facts {
    grid-template-columns: 1fr;
  }

  .yoga-quick-facts > div,
  .yoga-quick-facts > div:first-child,
  .yoga-quick-facts > div:last-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .yoga-quick-facts > div:last-child {
    border-bottom: 0;
  }

  .yoga-story-copy {
    padding-left: 0;
    border-left: 0;
  }

  .yoga-feature-grid {
    grid-template-columns: 1fr;
  }

  .yoga-feature-grid.roller-feature-grid {
    grid-template-columns: 1fr;
  }

  .yoga-feature-card {
    min-height: auto;
  }

  .yoga-spec-table .spec-row {
    grid-template-columns: 1fr;
  }
}

.furniture-page-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(185, 121, 67, 0.2), transparent 27%),
    linear-gradient(135deg, #f8f4ec 0%, #f1eadf 100%);
}

.furniture-catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.furniture-catalog-intro h2,
.furniture-catalog-intro p {
  margin-bottom: 0;
}

.furniture-model {
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 22px 56px rgba(31, 41, 36, 0.08);
}

.furniture-model + .furniture-model {
  margin-top: 34px;
}

.furniture-model-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(185, 121, 67, 0.12), transparent 32%),
    #fbfaf7;
}

.furniture-model-visual img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
}

.furniture-model-gallery {
  position: relative;
  z-index: 0;
  width: 100%;
  display: grid;
  gap: 14px;
}

.furniture-model-gallery--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.furniture-model-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(216, 207, 195, 0.82);
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.furniture-model-index {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 1;
  color: rgba(23, 63, 50, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7vw, 108px);
  line-height: 1;
}

.furniture-model-content {
  padding: 58px 60px 54px;
}

.furniture-model-code {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 63, 50, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: #edf3ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.furniture-model-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(35px, 4vw, 54px);
}

.furniture-model-summary {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.furniture-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.furniture-spec-list > div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.furniture-spec-list dt,
.furniture-detail-label {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.furniture-spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.furniture-application-block {
  margin-bottom: 28px;
}

.furniture-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.furniture-tag-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.furniture-inquiry-note {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--cork);
  background: #f8f4ec;
}

.furniture-inquiry-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.furniture-inquiry-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.furniture-action-row {
  margin-top: 0;
}

@media (max-width: 980px) {
  .furniture-catalog-intro,
  .furniture-model {
    grid-template-columns: 1fr;
  }

  .furniture-catalog-intro {
    align-items: start;
    gap: 20px;
  }

  .furniture-model-visual {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .furniture-model-visual {
    min-height: 390px;
    padding: 34px 22px 28px;
  }

  .furniture-model-gallery--two {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .furniture-model-gallery img {
    padding: 5px;
    border-radius: 12px;
  }

  .furniture-model-content {
    padding: 36px 24px 38px;
  }

  .furniture-spec-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
