:root {
  --navy-950: #49371b;
  --navy-900: #5d4420;
  --navy-800: #765a2d;
  --navy-700: #8f6f3a;
  --gold-600: #b7822f;
  --gold-500: #d3aa54;
  --gold-300: #f1dca8;
  --champagne-100: #fff6e1;
  --ice: #fff8ec;
  --graphite: #3a3022;
  --ink: #2d2519;
  --muted: #7d705d;
  --line: #eadfc8;
  --paper: #fffdf8;
  --soft: #fbf1df;
  --steel: #a99a82;
  --shadow: 0 28px 80px rgba(101, 78, 39, 0.12);
  --shadow-soft: 0 18px 50px rgba(101, 78, 39, 0.075);
  --max: 1180px;
  --header-height: 76px;
}


			.index-icon {
				position: fixed;
				right: 20px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1002;
				display: flex;
				flex-direction: column;
				gap: 16px;
			}

			.contact-icon1 {
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: white;
				border: 1px solid #e0e0e0;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				transition: transform 0.2s;
			}

			.contact-icon1:hover {
				transform: scale(1.1);
			}

 
			.contact-icon1 img {
				width: 24px;
				height: 24px;
				display: block;
				object-fit: contain;
			}






 
			.bubble {
				position: fixed;
				top: 50%;
				left: 50%;
				transform: translate(-20%, -30%);
				width: 280px;
 
				padding: 20px;
				background: white;
				border-radius: 12px;
				box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
				z-index: 1001;
				display: none;
				opacity: 0;
				transition: opacity 0.3s ease;
			}

			.bubble.show {
				display: block;
				opacity: 1;
			}

 
			.bubble::before {
				display: none !important;
			}

	 
			.static-info {
				font-size: 14px;
				line-height: 1.5;
				color: #333;
			}

			.bubble-form label {
				display: block;
				font-size: 13px;
				margin-top: 12px;
				color: #444;
			}

			.bubble-form input,
			.bubble-form textarea {
				width: 100%;
				padding: 8px 10px;
				margin-top: 4px;
				border: 1px solid #ccc;
				border-radius: 6px;
				font-size: 13px;
				box-sizing: border-box;
			}

			.bubble-form textarea {
				height: 70px;
				resize: vertical;
			}

			.bubble-form button {
				margin-top: 16px;
				width: 100%;
				padding: 8px;
				background-color: #25d366;
				color: white;
				border: none;
				border-radius: 6px;
				cursor: pointer;
				font-size: 14px;
				font-weight: bold;
			}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--ice) 44%, #fffaf2 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--navy-950);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 236, 0.92));
  border-bottom: 1px solid rgba(211, 170, 84, 0.34);
  box-shadow: 0 14px 34px rgba(101, 78, 39, 0.08), inset 0 -1px 0 rgba(211, 170, 84, 0.18);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--navy-950);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.96));
  border-color: rgba(211, 170, 84, 0.42);
  box-shadow: 0 18px 42px rgba(101, 78, 39, 0.12), inset 0 -1px 0 rgba(211, 170, 84, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  max-width: min(240px, 34vw);
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(152px, 15vw, 220px);
  max-width: 100%;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 210, 160, 0.72);
  color: var(--gold-300);
  background:
    linear-gradient(135deg, rgba(203, 166, 92, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(101, 78, 39, 0.82);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-600);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-600);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-trigger::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 25;
  width: min(380px, 88vw);
  padding: 10px;
  border: 1px solid rgba(211, 170, 84, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(234, 210, 160, 0.2) 100%),
    rgba(255, 248, 236, 0.97);
  box-shadow: 0 26px 70px rgba(101, 78, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav .nav-dropdown-menu a {
  position: relative;
  display: block;
  padding: 12px 13px 12px 18px;
  border-bottom: 1px solid rgba(101, 78, 39, 0.08);
  color: rgba(45, 37, 25, 0.76);
  font-size: 13px;
  line-height: 1.35;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.site-nav .nav-dropdown-menu a::before {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--gold-300);
  opacity: 0.5;
  transform: translateY(-50%);
}

.site-nav .nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus-visible {
  padding-left: 22px;
  color: var(--navy-950);
  background: rgba(211, 170, 84, 0.13);
}

.site-header.is-scrolled .site-nav a {
  color: rgba(101, 78, 39, 0.82);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--gold-600);
}

.site-header.is-scrolled .site-nav a[aria-current="page"] {
  color: var(--gold-600);
}

.site-header.is-scrolled .site-nav .nav-dropdown-menu a {
  color: rgba(45, 37, 25, 0.76);
}

.site-header.is-scrolled .site-nav .nav-dropdown-menu a:hover,
.site-header.is-scrolled .site-nav .nav-dropdown-menu a:focus-visible {
  color: var(--navy-950);
}

.lang-wrapper {
  position: relative;
  flex: 0 0 auto;
  z-index: 72;
}

.lang-wrapper.is-open {
  z-index: 74;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(101, 78, 39, 0.18);
  border-radius: 4px;
  color: rgba(101, 78, 39, 0.86);
  background: rgba(255, 253, 248, 0.58);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-wrapper.is-open .lang-btn {
  color: var(--gold-600);
  border-color: rgba(211, 170, 84, 0.48);
  background: rgba(255, 248, 236, 0.96);
}

.lang-btn-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gold-600);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lang-btn-text {
  font-size: 12px;
  font-weight: 800;
}

.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 76;
  width: min(360px, calc(100vw - 36px));
  max-height: min(68vh, 520px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin: 0;
  padding: 10px;
  overflow: auto;
  border: 1px solid rgba(211, 170, 84, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 236, 0.98) 100%);
  box-shadow: 0 26px 70px rgba(101, 78, 39, 0.14);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.lang-list::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
}

.lang-wrapper:focus-within .lang-list,
.lang-wrapper.is-open .lang-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 4px;
  color: rgba(45, 37, 25, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 160ms ease, background 160ms ease;
}

.lang-flag {
  flex: 0 0 auto;
  width: 20px;
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(45, 37, 25, 0.08);
  object-fit: cover;
}

.lang-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-option:hover,
.lang-option:focus-visible {
  color: var(--navy-950);
  background: rgba(211, 170, 84, 0.13);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(101, 78, 39, 0.22);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(101, 78, 39, 0.22);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy-900);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  margin-top: 75px;
  position: relative;
  min-height: 0;
  aspect-ratio: 1949 / 810;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.hero::before {
  content: "";
  display: none;
}

.hero::after {
  content: "";
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
  transform: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: none;
}

.hero-slide.is-active .hero-image {
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(101, 78, 39, 0.58) 0%, rgba(101, 78, 39, 0.28) 45%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(101, 78, 39, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 34px) 0 88px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease 180ms, transform 700ms ease 180ms;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 34px rgba(203, 166, 92, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-300);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy-950);
  border: 1px solid rgba(101, 78, 39, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.84);
  box-shadow: 0 16px 38px rgba(101, 78, 39, 0.14);
  backdrop-filter: blur(14px);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-arrow[data-hero-prev] {
  left: clamp(18px, 3vw, 44px);
  transform: translateY(-50%);
}

.hero-arrow[data-hero-next] {
  right: clamp(18px, 3vw, 44px);
  transform: translateY(-50%);
}

.hero-arrow span {
  transform: translateY(-1px);
  font-size: 32px;
  line-height: 1;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(211, 170, 84, 0.72);
  background: rgba(255, 248, 236, 0.96);
  box-shadow: 0 20px 46px rgba(101, 78, 39, 0.2);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 2px 10px rgba(35, 28, 17, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.96);
  background: var(--gold-500);
}

.hero-progress {
  display: none;
}

.hero-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
}

.hero-progress span.is-running {
  animation: heroProgress 6.5s linear forwards;
}

@keyframes heroProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 124px) 0;
}

.about-section {
  min-height: clamp(560px, 56vw, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(88px, 9vw, 142px) 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(45, 37, 25, 0.44), rgba(45, 37, 25, 0.72)),
    linear-gradient(90deg, rgba(73, 55, 27, 0.58), rgba(73, 55, 27, 0.12) 48%, rgba(73, 55, 27, 0.5)),
    url("assets/homeyard/company-equipment-line.webp") center / cover no-repeat;
}

.about-section .about-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
  text-align: center;
}

.about-section .about-copy {
  width: 100%;
}

.about-section .eyebrow,
.about-section .about-copy h2 {
  color: #fff;
}

.about-section .about-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
}

.about-section .metrics {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.about-section .metric {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 24px 58px rgba(35, 28, 17, 0.2);
  backdrop-filter: blur(12px);
}

.about-section .about-actions {
  justify-content: center;
}

.about-section .about-media {
  display: none;
}

.section-soft {
  background:
    linear-gradient(180deg, #fff8ec 0%, #f4ead6 100%);
}

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

#products .section-inner,
.applications-section .section-inner {
  width: min(1520px, calc(100% - 28px));
}

.section-heading {
  position: relative;
  max-width: 900px;
  padding-top: 18px;
  border-top: 1px solid rgba(101, 78, 39, 0.1);
  margin-bottom: 42px;
}

.section-heading::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 76px;
  height: 1px;
  content: "";
  background: var(--gold-500);
}

.section-heading-light {
  border-color: rgba(255, 255, 255, 0.16);
}

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.inquiry-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.faq-intro p,
.inquiry-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading-link::after {
  width: 42px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: var(--gold-600);
  transition: width 180ms ease;
}

.section-heading-link:hover::after,
.section-heading-link:focus-visible::after {
  width: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: clamp(360px, 35vw, 500px);
}

.about-media::before {
  position: absolute;
  inset: 4% 2% auto auto;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(203, 166, 92, 0.34);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.about-arc {
  position: absolute;
  right: -4%;
  top: 0;
  width: 58%;
  aspect-ratio: 1;
  border: 8px solid rgba(203, 166, 92, 0.22);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(14deg);
  filter: drop-shadow(0 18px 36px rgba(184, 138, 59, 0.2));
}

.about-image-main,
.about-image-secondary {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, filter 420ms ease;
}

.about-image-main {
  inset: 0 auto auto 0;
  width: 82%;
  height: 66%;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px 8px 58px 8px;
}

.about-image-secondary {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 40%;
  border: 10px solid #fff;
  border-radius: 58px 8px 8px 8px;
}

.about-media:hover .about-image-main,
.about-media:focus-within .about-image-main {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-8px);
}

.about-media:hover .about-image-secondary,
.about-media:focus-within .about-image-secondary {
  transform: translate(-8px, -10px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.metric {
  padding: 22px 18px;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-top: 3px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  color: var(--navy-900);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-page {
  padding-top: var(--header-height);
  background: #fff;
}

.about-cover > img {
  object-position: center 58%;
}

.about-page-intro {
  padding-top: clamp(76px, 8vw, 116px);
}

.about-page-wide {
  width: min(1520px, calc(100% - 28px));
}

.about-market-section {
  background:
    linear-gradient(180deg, #fff 0%, #fbf2df 100%);
}

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

.about-market-gallery .application-scene {
  min-height: clamp(340px, 30vw, 460px);
}

.about-certificate-assurance {
  margin-top: 0;
}

.about-sustainable-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
  width: min(1520px, calc(100% - 28px));
  margin: clamp(72px, 8vw, 128px) auto 0;
}

.about-sustainable-visual {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  height: 100%;
  min-height: 0;
  overflow: visible;
  color: #fff;
  isolation: isolate;
}

.about-sustainable-circle {
  display: none;
}

.about-sustainable-image {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: 0 22px 58px rgba(101, 78, 39, 0.18);
  transition: transform 320ms ease, box-shadow 320ms ease, z-index 0ms linear 160ms;
}

.about-sustainable-image::before,
.about-sustainable-image::after,
.about-sustainable-image span::before,
.about-sustainable-image span::after {
  position: absolute;
  z-index: 3;
  content: "";
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transition: transform 520ms ease;
}

.about-sustainable-image::before {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
}

.about-sustainable-image::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
}

.about-sustainable-image span {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-sustainable-image span::before {
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
}

.about-sustainable-image span::after {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: right;
}

.about-sustainable-image-top {
  z-index: 3;
}

.about-sustainable-image-middle {
  z-index: 4;
}

.about-sustainable-image-bottom {
  z-index: 5;
}

.about-sustainable-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 720ms ease, filter 420ms ease;
}

.about-sustainable-image::after,
.about-sustainable-image span::after {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
}

.about-sustainable-image:hover,
.about-sustainable-image:focus-within,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle {
  z-index: 6;
  box-shadow: 0 30px 78px rgba(101, 78, 39, 0.26);
  transform: translateY(-8px);
}

.about-sustainable-image:hover::before,
.about-sustainable-image:hover::after,
.about-sustainable-image:hover span::before,
.about-sustainable-image:hover span::after,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle::before,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle::after,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle span::before,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle span::after {
  transform: scale(1);
}

.about-sustainable-image:hover img,
.about-sustainable-image:focus-within img,
.about-sustainable-visual:focus-visible .about-sustainable-image-middle img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.07);
}

@keyframes aboutCircleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.about-sustainable-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 4vw, 64px) 0;
  border-top: 1px solid rgba(101, 78, 39, 0.12);
}

.about-sustainable-copy::before {
  width: 92px;
  height: 2px;
  margin-bottom: 30px;
  content: "";
  background: var(--gold-500);
}

.about-sustainable-copy h2 {
  max-width: 860px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-sustainable-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.about-sustainable-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: clamp(32px, 4vw, 52px);
  background: rgba(101, 78, 39, 0.12);
}

.about-sustainable-pillars span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--navy-900);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-sustainable-pillars span:hover {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-2px);
}

.button-outline-dark {
  color: var(--navy-900);
  border-color: rgba(101, 78, 39, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(101, 78, 39, 0.07);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: rgba(203, 166, 92, 0.58);
  background: #fff;
}

.about-manifesto {
  position: relative;
  padding: clamp(78px, 8vw, 128px) 18px clamp(60px, 7vw, 104px);
  background:
    linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}

.about-manifesto::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: clamp(42px, 6vw, 84px);
  content: "";
  background: linear-gradient(180deg, var(--gold-500), rgba(203, 166, 92, 0));
}

.about-manifesto-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-manifesto h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--navy-900);
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-manifesto p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.about-sustain-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  width: min(1520px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 72px) 0 clamp(82px, 8vw, 128px);
}

.about-feature-media {
  position: relative;
  min-height: clamp(420px, 42vw, 650px);
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: 0 28px 86px rgba(101, 78, 39, 0.16);
}

.about-feature-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(74, 55, 25, 0.02) 0%, rgba(74, 55, 25, 0.12) 100%),
    linear-gradient(90deg, rgba(74, 55, 25, 0.32), transparent 42%);
}

.about-feature-media img,
.about-wide-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease, filter 420ms ease;
}

.about-feature-media:hover img,
.about-feature-media:focus-within img,
.about-wide-image:hover > img,
.about-wide-image:focus-within > img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.about-feature-badge {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 2;
  min-width: 190px;
  padding: 24px 24px 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(74, 55, 25, 0.9), rgba(126, 96, 46, 0.82)),
    radial-gradient(circle at 80% 0%, rgba(203, 166, 92, 0.4), transparent 42%);
  border: 1px solid rgba(234, 210, 160, 0.28);
  backdrop-filter: blur(14px);
}

.about-feature-badge strong,
.about-stat strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--gold-300);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
}

.about-feature-badge small {
  font-size: 0.5em;
}

.about-feature-badge span,
.about-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-feature-copy {
  position: relative;
  padding: clamp(22px, 3vw, 42px) 0;
}

.about-feature-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.about-feature-copy h2,
.about-section-title h2,
.about-goals-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-feature-copy p:not(.eyebrow),
.about-section-title p,
.about-goals-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.about-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about-sustainability-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1520px, calc(100% - 28px));
  margin: 0 auto clamp(72px, 8vw, 128px);
  color: #fff;
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy-800)),
    radial-gradient(circle at 80% 0%, rgba(203, 166, 92, 0.2), transparent 30%);
  box-shadow: var(--shadow);
}

.about-stat {
  position: relative;
  min-height: 184px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.about-stat::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.about-stat:hover::before,
.about-stat:focus-within::before {
  transform: scaleX(1);
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat strong {
  color: #fff;
}

.about-strategy-section {
  padding-top: clamp(84px, 8vw, 130px);
  background:
    linear-gradient(180deg, #fbf1df 0%, #fff 100%);
}

.about-section-title {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 70px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-section-title .eyebrow {
  margin: 0;
}

.about-section-title h2 {
  max-width: 760px;
}

.about-section-title p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
}

.about-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(101, 78, 39, 0.12);
  border: 1px solid rgba(101, 78, 39, 0.08);
  box-shadow: 0 24px 72px rgba(101, 78, 39, 0.08);
}

.about-strategy-card {
  position: relative;
  min-height: 270px;
  padding: clamp(26px, 3vw, 40px);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(203, 166, 92, 0.18), transparent 34%),
    #fff;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.about-strategy-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  transition: width 320ms ease;
}

.about-strategy-card > * {
  position: relative;
  z-index: 1;
}

.about-strategy-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--gold-600);
  border: 1px solid rgba(203, 166, 92, 0.38);
  font-weight: 800;
}

.about-strategy-card h3 {
  max-width: 280px;
  margin: clamp(56px, 7vw, 92px) 0 0;
  color: var(--navy-900);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.about-strategy-card p {
  max-width: 330px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about-strategy-card:hover,
.about-strategy-card:focus-visible {
  transform: perspective(900px) translateY(-8px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.about-strategy-card:hover::before,
.about-strategy-card:focus-visible::before {
  left: 0;
  width: 100%;
}

.about-strategy-card:hover span,
.about-strategy-card:focus-visible span {
  color: var(--navy-950);
  background: var(--gold-300);
}

.about-strategy-card:hover h3,
.about-strategy-card:focus-visible h3,
.about-strategy-card:hover p,
.about-strategy-card:focus-visible p {
  color: #fff;
}

.about-wide-image {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 52vw, 760px);
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(96px, 12vw, 160px) 18px;
  overflow: hidden;
  background-image:
    linear-gradient(rgb(53 41 24 / 40%), rgb(53 41 24 / 69%)),
    url("assets/homeyard/application-overview.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  isolation: isolate;
}

.about-wide-image.reveal,
.about-wide-image.reveal.is-visible {
  transform: none;
}

.about-wide-image::before {
  content: none;
}

.about-wide-image > img {
  display: none;
}

.about-wide-image-panel {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0;
  color: #fff;
  border-left: 0;
  text-align: center;
}

.about-wide-image-panel::before {
  display: block;
  width: 86px;
  height: 2px;
  margin: 0 auto 26px;
  content: "";
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
}

.about-wide-image-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1;
}

.about-wide-image-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  margin-right: auto;
  margin-left: auto;
}

.about-goals-section {
  padding-top: clamp(86px, 8vw, 132px);
  background:
    linear-gradient(180deg, #fff 0%, #f4ead6 100%);
}

.about-goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.about-goals-copy {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-goals-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.about-goals-copy .button {
  margin-top: 34px;
}

.about-goals-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(203, 166, 92, 0.45), rgba(101, 78, 39, 0.1) 42%, rgba(203, 166, 92, 0.28)),
    rgba(101, 78, 39, 0.1);
}

.about-goals-cards article {
  position: relative;
  min-height: 246px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(203, 166, 92, 0.14), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fff9ee 100%);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.about-goals-cards article::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.about-goals-cards article:hover,
.about-goals-cards article:focus-within {
  background:
    radial-gradient(circle at 82% 16%, rgba(203, 166, 92, 0.24), transparent 38%),
    linear-gradient(180deg, #fff 0%, #fbf2df 100%);
  box-shadow: 0 22px 60px rgba(101, 78, 39, 0.1);
  transform: translateY(-6px);
}

.about-goals-cards article:hover::before,
.about-goals-cards article:focus-within::before {
  transform: scaleX(1);
}

.about-goal-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: var(--gold-600);
  background:
    linear-gradient(135deg, rgba(203, 166, 92, 0.14), rgba(255, 255, 255, 0.66)),
    #fff;
  border: 1px solid rgba(203, 166, 92, 0.34);
  box-shadow: 0 12px 32px rgba(101, 78, 39, 0.08);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.about-goal-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-goals-cards article:hover .about-goal-icon,
.about-goals-cards article:focus-within .about-goal-icon {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-3px);
}

.about-goals-cards h3 {
  margin: clamp(20px, 3vw, 34px) 0 0;
  color: var(--navy-900);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.08;
}

.about-goals-cards p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 222, 0.9)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.12), transparent);
  box-shadow: var(--shadow-soft);
}

.product-wall::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 34%, rgba(203, 166, 92, 0.12)),
    linear-gradient(rgba(101, 78, 39, 0.04) 1px, transparent 1px);
  background-size: auto, 100% 96px;
}

.product-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: 0 16px 42px rgba(101, 78, 39, 0.12);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-tile::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 58, 88, 0.02) 0%, rgba(18, 58, 88, 0.24) 48%, rgba(18, 58, 88, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 58, 88, 0.34), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-tile::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0);
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 680ms ease, border-color 220ms ease;
}

.product-tile img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease, filter 420ms ease;
}

.product-tile.product-tile-contain {
  background: #fffaf0;
}

.product-tile.product-tile-contain img {
  padding: clamp(18px, 3vw, 38px);
  object-fit: contain;
  background: #fff;
}

.product-tile:hover,
.product-tile:focus-visible {
  border-color: rgba(203, 166, 92, 0.48);
  box-shadow: 0 30px 72px rgba(101, 78, 39, 0.2);
  transform: translateY(-4px);
}

.product-tile:hover::before,
.product-tile:focus-visible::before,
.product-tile:focus-within::before {
  opacity: 1;
}

.product-tile:hover::after,
.product-tile:focus-visible::after,
.product-tile:focus-within::after {
  border-color: rgba(234, 210, 160, 0.32);
  opacity: 1;
  transform: translateX(120%);
}

.product-tile:hover img,
.product-tile:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.product-tile-index {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  color: var(--gold-300);
  border: 1px solid rgba(234, 210, 160, 0.42);
  border-radius: 999px;
  background: rgba(74, 55, 25, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-tile-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  min-height: 0;
  padding: 0;
  align-content: start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 260ms ease;
}

.product-tile-copy::before {
  width: 52px;
  height: 2px;
  margin-bottom: 14px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.product-tile-copy span {
  display: block;
  color: rgba(234, 210, 160, 0.86);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-tile-copy h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
}

.product-tile-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 16px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.86);
  border-top: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-tile-copy a::after {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  content: "+";
  color: var(--navy-950);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transition: transform 180ms ease;
}

.product-tile:hover .product-tile-copy,
.product-tile:focus-visible .product-tile-copy,
.product-tile:focus-within .product-tile-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-tile:hover .product-tile-copy a,
.product-tile:focus-within .product-tile-copy a {
  color: var(--gold-300);
}

.product-tile:hover .product-tile-copy a::after,
.product-tile:focus-within .product-tile-copy a::after {
  transform: translateX(3px);
}

.collection-page {
  padding-top: var(--header-height);
  background: #fff;
}

.collection-cover {
  position: relative;
  min-height: clamp(460px, 58svh, 660px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.collection-cover > img,
.collection-cover-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-cover > img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.collection-cover-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 58, 88, 0.6) 0%, rgba(18, 58, 88, 0.28) 48%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(18, 58, 88, 0.28) 100%);
}

.collection-cover::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 78%);
}

.collection-cover-content {
  position: relative;
  z-index: 3;
  width: min(1520px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0 clamp(58px, 7vw, 104px);
}

.collection-cover-content .eyebrow {
  margin-top: clamp(42px, 6vw, 76px);
}

.collection-cover-content h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.86;
  letter-spacing: 0;
}

.collection-cover-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 22px);
}

.collection-cover-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.collection-cover-points span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.065);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.collection-shell {
  min-height: 100svh;
  padding: clamp(52px, 6vw, 88px) clamp(18px, 3.8vw, 56px) clamp(70px, 7vw, 108px);
  border-radius: 0;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf2 48%, #f4ead6 100%);
}

.collection-breadcrumb,
.collection-hero,
.collection-toolbar,
.collection-taxonomy,
.collection-filters,
.collection-grid,
.collection-empty,
.collection-pagination {
  width: min(1520px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.collection-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 600;
}

.collection-breadcrumb a {
  color: #fff;
  transition: color 160ms ease;
}

.collection-breadcrumb a:hover,
.collection-breadcrumb a:focus-visible {
  color: var(--gold-300);
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-top: clamp(30px, 5vw, 58px);
}

.collection-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.collection-hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.86;
  letter-spacing: 0;
}

.collection-hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.collection-toolbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 0;
}

.collection-filter-toggle,
.sort-trigger,
.collection-pagination a,
.filter-actions button {
  min-height: 54px;
  border: 1px solid rgba(184, 88, 35, 0.45);
  border-radius: 999px;
  color: #276d9c;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(101, 78, 39, 0.07);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.collection-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.filter-icon {
  position: relative;
  display: grid;
  gap: 4px;
  width: 20px;
}

.filter-icon i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.filter-icon i:nth-child(2) {
  width: 12px;
}

.filter-icon i:nth-child(3) {
  width: 16px;
}

.collection-filter-toggle:hover,
.collection-filter-toggle:focus-visible,
.collection-filter-toggle[aria-expanded="true"],
.sort-trigger:hover,
.sort-trigger:focus-visible,
.collection-sort.is-open .sort-trigger,
.collection-pagination a:hover,
.collection-pagination a:focus-visible,
.collection-pagination a.is-current,
.filter-actions button:hover,
.filter-actions button:focus-visible {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.62);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 18px 42px rgba(184, 138, 59, 0.18);
  transform: translateY(-2px);
}

.collection-count {
  justify-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.collection-count span {
  color: var(--navy-900);
}

.collection-sort {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(280px, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--navy-900);
  font-weight: 700;
}

.collection-sort.is-open {
  z-index: 25;
}

.collection-sort span {
  white-space: nowrap;
}

.collection-sort select {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sort-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 280px;
  padding: 8px 8px 8px 22px;
  color: var(--navy-950);
  text-align: left;
  border-color: rgba(203, 166, 92, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 241, 222, 0.94));
  box-shadow:
    0 18px 42px rgba(101, 78, 39, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  outline: none;
}

.sort-trigger:focus-visible,
.collection-sort.is-open .sort-trigger {
  box-shadow:
    0 18px 42px rgba(101, 78, 39, 0.12),
    0 0 0 3px rgba(203, 166, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.sort-trigger-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sort-trigger-copy small {
  color: rgba(101, 78, 39, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sort-trigger-copy span {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
}

.sort-trigger-icon {
  position: relative;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 20px rgba(101, 78, 39, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.sort-trigger-icon::before {
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.collection-sort.is-open .sort-trigger-icon {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  transform: rotate(180deg);
}

.sort-menu {
  position: absolute;
  z-index: 45;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  padding: 8px;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 246, 234, 0.98));
  box-shadow:
    0 26px 64px rgba(101, 78, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.sort-menu::before {
  display: block;
  width: 52px;
  height: 3px;
  margin: 2px 0 7px 10px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
}

.sort-menu[hidden] {
  display: none;
}

.sort-menu button {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 44px 14px 16px;
  color: var(--navy-900);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sort-menu button + button {
  margin-top: 4px;
}

.sort-menu button span {
  font-size: 14px;
  font-weight: 900;
}

.sort-menu button small {
  color: rgba(125, 112, 93, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.sort-menu button::after {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid rgba(203, 166, 92, 0.46);
  border-radius: 50%;
  transform: translateY(-50%);
}

.sort-menu button:hover,
.sort-menu button:focus-visible {
  border-color: rgba(203, 166, 92, 0.34);
  background: rgba(101, 78, 39, 0.045);
  outline: none;
  transform: translateX(2px);
}

.sort-menu button.is-selected {
  color: #fff;
  border-color: rgba(203, 166, 92, 0.48);
  background:
    linear-gradient(135deg, rgba(101, 78, 39, 0.96), rgba(101, 78, 39, 0.94));
  box-shadow: 0 14px 34px rgba(101, 78, 39, 0.14);
}

.sort-menu button.is-selected small {
  color: rgba(255, 255, 255, 0.68);
}

.sort-menu button.is-selected::after {
  border-color: var(--gold-300);
  background:
    radial-gradient(circle at center, var(--gold-300) 0 36%, transparent 38%);
}

.collection-taxonomy {
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 222, 0.94)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.1), transparent);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.taxonomy-tier {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.taxonomy-tier + .taxonomy-tier {
  border-top: 1px solid rgba(101, 78, 39, 0.08);
}

.taxonomy-tier > span {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.taxonomy-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.taxonomy-options button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--muted);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.taxonomy-options button:hover,
.taxonomy-options button:focus-visible,
.taxonomy-options button.is-active {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.56);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 26px rgba(184, 138, 59, 0.16);
  transform: translateY(-1px);
}

.collection-description {
  width: min(1520px, 100%);
  margin: 22px auto 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 236, 0.94)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.12), transparent 52%);
  box-shadow: var(--shadow-soft);
}

.collection-description span {
  display: block;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-description h2 {
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
}

.collection-description p {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
}

.collection-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 222, 0.94)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.1), transparent);
  box-shadow: var(--shadow-soft);
}

.collection-filters[hidden] {
  display: none;
}

.filter-group {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 4px;
}

.filter-title {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.filter-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-600);
}

.filter-actions {
  padding: 18px;
  border-radius: 8px;
  background: rgba(101, 78, 39, 0.04);
}

.filter-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.filter-actions button {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-height) + 24px);
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(101, 78, 39, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, opacity 180ms ease;
}

.collection-card:hover,
.collection-card:focus-within {
  border-color: rgba(203, 166, 92, 0.44);
  box-shadow: 0 28px 70px rgba(101, 78, 39, 0.16);
  transform: translateY(-6px);
}

.collection-card[data-detail-href] {
  cursor: pointer;
}

.collection-card[data-detail-href]:focus-visible {
  border-color: rgba(203, 166, 92, 0.64);
  box-shadow:
    0 28px 70px rgba(101, 78, 39, 0.16),
    0 0 0 3px rgba(203, 166, 92, 0.22);
  outline: none;
}

.collection-card-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdfa, #f8edd4);
  isolation: isolate;
}

.collection-card-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(74, 55, 25, 0.02) 0%, rgba(74, 55, 25, 0.02) 56%, rgba(74, 55, 25, 0.62) 100%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 240ms ease, transform 680ms ease;
}

.collection-card:hover .collection-card-media::after,
.collection-card:focus-within .collection-card-media::after {
  opacity: 1;
  transform: translateX(110%);
}

.collection-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  padding: clamp(18px, 2.2vw, 34px);
  object-fit: contain;
  background: #fff;
  transition: transform 620ms ease, filter 420ms ease;
}

.collection-card:hover .collection-card-media img,
.collection-card:focus-within .collection-card-media img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.055);
}

.collection-card-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: var(--navy-950);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 24px rgba(101, 78, 39, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.collection-card-media a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(74, 55, 25, 0.74);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.collection-card:hover .collection-card-media a,
.collection-card:focus-within .collection-card-media a {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-media a:hover,
.collection-card-media a:focus-visible {
  background: rgba(184, 138, 59, 0.92);
}

.collection-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.collection-card-body > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card-body h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.1;
}

.collection-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.collection-empty {
  margin-top: 42px;
  padding: 42px;
  text-align: center;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.collection-empty h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 32px;
}

.collection-empty p {
  margin: 10px 0 24px;
  color: var(--muted);
}

.collection-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(42px, 5vw, 72px);
}

.collection-pagination a {
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
}

.product-page-hero {
  position: relative;
  min-height: clamp(560px, 72svh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.product-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.product-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 58, 88, 0.62) 0%, rgba(18, 58, 88, 0.3) 48%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(18, 58, 88, 0.3) 100%);
}

.product-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 78%);
}

.product-page-hero-content {
  position: relative;
  z-index: 3;
  width: min(1520px, calc(100% - 44px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 54px) 0 74px;
}

.product-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.92;
}

.product-page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.product-detail-page {
  background:
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 36%, #fff7e8 100%);
}

.product-detail-hero {
  position: relative;
  min-height: clamp(720px, 92svh, 920px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) clamp(18px, 4vw, 56px) clamp(58px, 6vw, 86px);
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.product-detail-hero-bg,
.product-detail-hero-bg img,
.product-detail-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-detail-hero-bg img {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.03);
}

.product-detail-hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 28%, rgba(211, 170, 84, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(74, 55, 25, 0.9) 0%, rgba(74, 55, 25, 0.7) 46%, rgba(74, 55, 25, 0.34) 100%),
    linear-gradient(180deg, rgba(11, 27, 43, 0.14), rgba(74, 55, 25, 0.72));
}

.product-detail-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.product-detail-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: center;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.product-detail-copy .collection-breadcrumb {
  width: fit-content;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.product-detail-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 7vw, 106px);
  line-height: 0.88;
}

.product-detail-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.product-detail-visual {
  position: relative;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(234, 210, 160, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.product-detail-visual::before {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0.2);
  border-radius: 6px;
}

.product-detail-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.28));
}

.product-detail-visual figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-detail-visual figcaption strong {
  color: var(--gold-300);
  font-size: 18px;
}

.product-detail-visual figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.product-detail-shell {
  width: min(1520px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 112px) 0 clamp(74px, 8vw, 128px);
}

.product-detail-lead,
.product-section-head,
.product-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.5fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}

.product-detail-lead h2,
.product-section-head h2,
.product-feature-copy h2,
.product-detail-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 0.96;
}

.product-detail-lead p:not(.eyebrow),
.product-section-head p:not(.eyebrow),
.product-feature-copy p,
.product-detail-cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 62px);
  background: rgba(101, 78, 39, 0.12);
  border: 1px solid rgba(101, 78, 39, 0.1);
}

.product-spec-grid article {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #fff8ec);
}

.product-spec-grid span,
.product-capability-grid span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-grid strong {
  color: var(--navy-950);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.02;
}

.product-detail-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(70px, 8vw, 122px);
}

.product-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(203, 166, 92, 0.16), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.product-feature-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(74, 55, 25, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent 48%);
}

.product-feature-media img {
  width: 100%;
  height: clamp(420px, 52vw, 680px);
  object-fit: contain;
  padding: clamp(20px, 4vw, 48px);
}

.product-feature-copy {
  padding-top: 18px;
  border-top: 1px solid rgba(101, 78, 39, 0.12);
}

.product-feature-copy h2 {
  margin-top: 12px;
}

.product-feature-copy > p {
  margin-top: 22px;
}

.product-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.product-check-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--gold-600);
  border-left: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}

.product-detail-section {
  margin-top: clamp(74px, 8vw, 126px);
}

.product-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.product-capability-grid article {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #fff8ec);
  box-shadow: var(--shadow-soft);
}

.product-capability-grid strong {
  color: var(--navy-950);
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1;
}

.product-capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-detail-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 72px);
  color: #fff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(211, 170, 84, 0.18), transparent 36%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 28px 82px rgba(101, 78, 39, 0.2);
}

.product-detail-dark .product-section-head h2,
.product-detail-dark h3 {
  color: #fff;
}

.product-detail-dark .product-section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.product-equipment-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.product-equipment-layout > div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.product-equipment-layout h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.product-equipment-layout ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.72fr;
  gap: 16px;
  margin-top: clamp(56px, 7vw, 96px);
}

.product-detail-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: var(--shadow-soft);
}

.product-detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.product-detail-gallery figure:last-child img {
  object-fit: contain;
  padding: 34px;
  background: #fff;
}

.product-detail-gallery figure:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.05);
}

.product-detail-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(74, 55, 25, 0.74);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.product-detail-cta {
  align-items: center;
  margin-top: clamp(58px, 7vw, 104px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(203, 166, 92, 0.18), transparent 34%),
    linear-gradient(135deg, #fff, #fff6e1);
  box-shadow: var(--shadow-soft);
}

.product-detail-cta .button {
  justify-self: end;
}

@media (max-width: 1180px) {
  .product-detail-hero-inner,
  .product-detail-feature,
  .product-detail-lead,
  .product-section-head,
  .product-detail-cta {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

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

  .product-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
  }

  .product-detail-copy .collection-breadcrumb {
    margin-bottom: 28px;
  }

  .product-detail-actions,
  .product-detail-actions .button,
  .product-detail-cta .button {
    width: 100%;
  }

  .product-detail-actions .button,
  .product-detail-cta .button {
    justify-content: center;
  }

  .product-spec-grid,
  .product-capability-grid,
  .product-equipment-layout,
  .product-detail-gallery {
    grid-template-columns: 1fr;
  }

  .product-detail-lead,
  .product-section-head,
  .product-detail-cta {
    gap: 18px;
  }

  .product-detail-dark,
  .product-detail-cta {
    padding: 26px 20px;
  }

  .product-feature-media img,
  .product-detail-gallery img,
  .product-detail-gallery figure {
    min-height: 260px;
  }

  .product-detail-gallery figure:last-child img {
    padding: 24px;
  }
}

.product-simple-page {
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 78% 12%, rgba(211, 170, 84, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 46%, #fff6e6 100%);
}

.product-simple-section {
  padding: clamp(42px, 6vw, 78px) 0 clamp(72px, 8vw, 118px);
}

.product-simple-layout {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.product-simple-info {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-width: 0;
}

.product-simple-copy {
  max-width: 880px;
}

.product-simple-copy .collection-breadcrumb {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.product-simple-copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
}

.product-simple-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.product-simple-gallery {
  margin-top: 0;
}

.product-simple-main {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 34%, rgba(211, 170, 84, 0.12), transparent 42%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.product-simple-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-simple-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-simple-thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 10px;
  cursor: pointer;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-simple-thumbs button:hover,
.product-simple-thumbs button:focus-visible,
.product-simple-thumbs button.is-active {
  border-color: var(--gold-500);
  box-shadow: 0 16px 38px rgba(101, 78, 39, 0.12);
  transform: translateY(-2px);
}

.product-simple-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-simple-table {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-simple-table h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.product-simple-table table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
}

.product-simple-table th,
.product-simple-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(101, 78, 39, 0.1);
  vertical-align: top;
}

.product-simple-table tr:last-child th,
.product-simple-table tr:last-child td {
  border-bottom: 0;
}

.product-simple-table th {
  width: 30%;
  color: var(--navy-950);
  background: #fff8ec;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-simple-table td {
  color: var(--muted);
  background: #fff;
}

@media (max-width: 980px) {
  .product-simple-info {
    grid-template-columns: 1fr;
  }

  .product-simple-gallery {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .product-simple-section {
    padding-top: 32px;
  }

  .product-simple-layout {
    width: min(100% - 28px, 1360px);
  }

  .product-simple-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-simple-main {
    aspect-ratio: 1;
    padding: 18px;
  }

  .product-simple-table {
    padding: 18px;
  }

  .product-simple-table th,
  .product-simple-table td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }

  .product-simple-table th {
    border-bottom: 0;
  }
}

.vd9pe-sheet-page {
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 86% 12%, rgba(211, 170, 84, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 48%, #fff7e8 100%);
}

.vd9pe-sheet-page [id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.vd9pe-sheet-hero {
  padding: 34px 0 54px;
  border-bottom: 1px solid rgba(101, 78, 39, 0.1);
}

.vd9pe-top-breadcrumb {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto 34px;
  color: rgba(101, 78, 39, 0.86);
  font-weight: 800;
}

.vd9pe-top-breadcrumb a,
.vd9pe-top-breadcrumb span {
  color: inherit;
}

.vd9pe-top-breadcrumb a {
  font-weight: 900;
}

.vd9pe-top-breadcrumb span:last-child {
  color: var(--navy-950);
  font-weight: 900;
}

.vd9pe-sheet-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
}

.vd9pe-sheet-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.vd9pe-hero-overview {
  max-width: 760px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(101, 78, 39, 0.14);
}

.vd9pe-hero-overview h2 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.vd9pe-hero-overview p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.vd9pe-sheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vd9pe-sheet-actions .button-secondary {
  color: var(--navy-950);
  border-color: rgba(101, 78, 39, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(101, 78, 39, 0.08);
}

.vd9pe-sheet-actions .button-secondary:hover,
.vd9pe-sheet-actions .button-secondary:focus-visible {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.58);
  background: #fff;
  box-shadow: 0 16px 34px rgba(101, 78, 39, 0.12);
}

body.quote-modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: rgba(45, 33, 16, 0.56);
  backdrop-filter: blur(14px);
}

.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88svh, 860px);
  overflow: auto;
  padding: 62px clamp(28px, 4vw, 38px) clamp(28px, 4vw, 38px);
  border: 1px solid rgba(203, 166, 92, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(203, 166, 92, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff7e9 100%);
  box-shadow: 0 42px 110px rgba(45, 33, 16, 0.34);
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy-950);
  border: 1px solid rgba(101, 78, 39, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quote-modal-close span,
.quote-modal-close span::before {
  display: block;
  width: 16px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.quote-modal-close span {
  transform: rotate(45deg);
}

.quote-modal-close span::before {
  transform: rotate(90deg);
}

.quote-modal-close:hover,
.quote-modal-close:focus-visible {
  border-color: rgba(203, 166, 92, 0.58);
  background: #fff;
  transform: translateY(-1px);
}

.quote-form {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-form .form-header strong {
  font-size: clamp(22px, 2vw, 28px);
}

@media (max-width: 860px) {
  .quote-modal {
    align-items: start;
    padding: 14px;
  }

  .quote-modal-panel {
    max-height: calc(100svh - 28px);
    padding: 58px 18px 18px;
  }
}

.vd9pe-sheet-gallery {
  --gallery-x: 50%;
  --gallery-y: 50%;
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: center;
  min-width: 0;
  perspective: 1200px;
}

.vd9pe-sheet-main {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(101, 78, 39, 0.11);
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  cursor: zoom-in;
}

.vd9pe-sheet-main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(101, 78, 39, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(101, 78, 39, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: 0.72;
}

.vd9pe-sheet-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transform-origin: center;
  transition: opacity 220ms ease, transform 360ms ease, filter 360ms ease;
}

.vd9pe-sheet-gallery:hover .vd9pe-sheet-main,
.vd9pe-sheet-gallery:focus-within .vd9pe-sheet-main {
  border-color: rgba(101, 78, 39, 0.18);
  box-shadow: 0 24px 52px rgba(101, 78, 39, 0.12);
  transform: translateY(-4px);
}

.vd9pe-sheet-gallery:hover .vd9pe-sheet-main img,
.vd9pe-sheet-gallery:focus-within .vd9pe-sheet-main img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

@media (hover: hover) and (pointer: fine) {
  .vd9pe-sheet-gallery.is-zooming:not(.is-switching) .vd9pe-sheet-main {
    cursor: zoom-out;
  }

  .vd9pe-sheet-gallery.is-zooming:not(.is-switching) .vd9pe-sheet-main img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.72);
    transform-origin: var(--gallery-x) var(--gallery-y);
  }
}

.vd9pe-sheet-gallery.is-switching .vd9pe-sheet-main img {
  opacity: 0;
  filter: blur(4px) saturate(1.02);
  transform: translateY(8px) scale(0.97);
}

.vd9pe-sheet-thumbs-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  width: min(100%, 430px);
  margin: 16px auto 0;
}

.vd9pe-sheet-thumbs-wrap:not(.is-scrollable) {
  grid-template-columns: 1fr;
}

.vd9pe-sheet-thumbs-wrap:not(.is-scrollable) .vd9pe-thumb-nav {
  display: none;
}

.vd9pe-sheet-thumbs {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.vd9pe-sheet-thumbs::-webkit-scrollbar {
  display: none;
}

.vd9pe-sheet-thumbs-wrap:not(.is-scrollable) .vd9pe-sheet-thumbs {
  justify-content: center;
}

.vd9pe-thumb-nav {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(101, 78, 39, 0.16);
  border-radius: 999px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(101, 78, 39, 0.12);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.vd9pe-thumb-nav span {
  display: block;
  margin-top: -2px;
  font-size: 28px;
  line-height: 1;
}

.vd9pe-thumb-nav:hover,
.vd9pe-thumb-nav:focus-visible {
  border-color: var(--gold-500);
  color: #fff;
  background: var(--gold-500);
  transform: translateY(-1px);
}

.vd9pe-thumb-nav:disabled {
  cursor: default;
  opacity: 0.42;
  color: rgba(101, 78, 39, 0.52);
  background: rgba(255, 255, 255, 0.68);
  transform: none;
}

.vd9pe-sheet-thumbs button {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(101, 78, 39, 0.1),
    inset 0 -1px 0 rgba(101, 78, 39, 0.08),
    0 8px 18px rgba(101, 78, 39, 0.08);
  scroll-snap-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.vd9pe-sheet-thumbs button::before,
.vd9pe-sheet-thumbs button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vd9pe-sheet-thumbs button::before {
  z-index: 2;
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

.vd9pe-sheet-thumbs button::after {
  z-index: 3;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px transparent;
  opacity: 0;
}

.vd9pe-sheet-thumbs button:hover,
.vd9pe-sheet-thumbs button:focus-visible {
  border-color: var(--gold-500);
  box-shadow:
    inset 0 1px 0 rgba(101, 78, 39, 0.12),
    inset 0 -1px 0 rgba(101, 78, 39, 0.1),
    0 10px 24px rgba(101, 78, 39, 0.14);
  transform: translateY(-2px);
}

.vd9pe-sheet-thumbs button:active {
  transform: translateY(0) scale(0.96);
}

.vd9pe-sheet-thumbs button.is-active {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(203, 166, 92, 0.2),
    inset 0 -1px 0 rgba(203, 166, 92, 0.16),
    0 16px 30px rgba(203, 166, 92, 0.2);
  transform: translateY(-3px);
}

.vd9pe-sheet-thumbs button:hover::before,
.vd9pe-sheet-thumbs button:focus-visible::before {
  opacity: 0.2;
}

.vd9pe-sheet-thumbs button.is-active::before {
  opacity: 0;
}

.vd9pe-sheet-thumbs button.is-active::after {
  border-color: var(--gold-500);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  opacity: 1;
}

.vd9pe-sheet-thumbs img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 2px;
  transition: transform 220ms ease;
}

.vd9pe-sheet-thumbs button:hover img,
.vd9pe-sheet-thumbs button:focus-visible img,
.vd9pe-sheet-thumbs button.is-active img {
  transform: scale(1.04);
}

.vd9pe-sheet-body {
  padding: 58px 0 98px;
}

.vd9pe-sheet-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.vd9pe-sheet-article {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.vd9pe-sheet-article h2,
.vd9pe-sheet-spec h2 {
  margin: 42px 0 14px;
  color: var(--navy-950);
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

.vd9pe-sheet-article h2:first-child {
  margin-top: 0;
}

.vd9pe-sheet-article p {
  max-width: 980px;
  margin: 0 0 16px;
}

.vd9pe-sheet-article ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vd9pe-sheet-article li {
  position: relative;
  padding-left: 22px;
  color: var(--navy-900);
  font-weight: 700;
}

.vd9pe-sheet-article li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold-500);
}

.vd9pe-sheet-spec {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(101, 78, 39, 0.14);
}

.vd9pe-sheet-spec h2 {
  margin-top: 0;
}

.vd9pe-sheet-spec table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(101, 78, 39, 0.14);
}

.vd9pe-sheet-spec th,
.vd9pe-sheet-spec td {
  padding: 16px 0;
  text-align: left;
  border-bottom: 1px solid rgba(101, 78, 39, 0.12);
  vertical-align: top;
}

.vd9pe-sheet-spec th {
  width: 32%;
  padding-right: 26px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vd9pe-sheet-spec td {
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 1080px) {
  .vd9pe-sheet-wrap {
    grid-template-columns: 1fr;
  }

  .vd9pe-sheet-gallery {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .vd9pe-sheet-hero {
    padding: 34px 0 42px;
  }

  .vd9pe-sheet-wrap,
  .vd9pe-sheet-content,
  .vd9pe-top-breadcrumb {
    width: min(100% - 28px, 1120px);
  }

  .vd9pe-sheet-copy h1 {
    font-size: 42px;
  }

  .vd9pe-sheet-article ul {
    grid-template-columns: 1fr;
  }

  .vd9pe-sheet-actions,
  .vd9pe-sheet-actions .button {
    width: 100%;
  }

  .vd9pe-sheet-actions .button {
    justify-content: center;
  }

  .vd9pe-sheet-main {
    aspect-ratio: 1;
  }

  .vd9pe-sheet-main img {
    padding: 18px;
  }

  .vd9pe-sheet-thumbs-wrap {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
    width: min(100%, 360px);
  }

  .vd9pe-thumb-nav {
    width: 32px;
    height: 32px;
  }

  .vd9pe-thumb-nav span {
    font-size: 24px;
  }

  .vd9pe-sheet-thumbs {
    gap: 10px;
  }

  .vd9pe-sheet-thumbs button {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .vd9pe-sheet-spec th,
  .vd9pe-sheet-spec td {
    display: block;
    width: 100%;
    padding: 11px 0;
  }

  .vd9pe-sheet-spec th {
    border-bottom: 0;
  }
}

.vd9pe-page {
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 82% 8%, rgba(211, 170, 84, 0.2), transparent 34%),
    radial-gradient(circle at 12% 28%, rgba(255, 130, 42, 0.1), transparent 32%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 48%, #fff4df 100%);
}

.vd9pe-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 clamp(48px, 6vw, 82px);
}

.vd9pe-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(101, 78, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 78, 39, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
}

.vd9pe-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
}

.vd9pe-copy .collection-breadcrumb {
  width: fit-content;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.vd9pe-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(50px, 7vw, 98px);
  line-height: 0.9;
}

.vd9pe-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.vd9pe-key-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 42px);
}

.vd9pe-key-stats article {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 130, 42, 0.12), transparent 38%),
    #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vd9pe-key-stats article:hover {
  border-color: rgba(211, 170, 84, 0.56);
  box-shadow: 0 24px 56px rgba(101, 78, 39, 0.14);
  transform: translateY(-4px);
}

.vd9pe-key-stats span,
.vd9pe-feature-list span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vd9pe-key-stats strong {
  color: var(--navy-950);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
}

.vd9pe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 42px);
}

.vd9pe-gallery {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 130, 42, 0.12), transparent 34%),
    linear-gradient(180deg, #fff, #fff8ec);
  box-shadow: 0 32px 88px rgba(101, 78, 39, 0.15);
}

.vd9pe-main-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.12;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background: #fff;
}

.vd9pe-main-image::before {
  position: absolute;
  inset: auto 8% 9%;
  height: 16%;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(101, 78, 39, 0.18), transparent 68%);
  filter: blur(8px);
}

.vd9pe-main-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
  transition: transform 420ms ease, filter 420ms ease;
}

.vd9pe-gallery:hover .vd9pe-main-image img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.035) rotate(-0.8deg);
}

.vd9pe-hotspot {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 8px rgba(211, 170, 84, 0.18), 0 12px 28px rgba(74, 55, 25, 0.18);
  transition: opacity 180ms ease, transform 180ms ease;
}

.vd9pe-hotspot:hover,
.vd9pe-hotspot:focus-visible {
  transform: scale(1.18);
}

.vd9pe-hotspot span {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  min-width: 190px;
  padding: 10px 12px;
  color: #fff;
  border-radius: 6px;
  background: rgba(73, 55, 27, 0.92);
  box-shadow: 0 18px 38px rgba(74, 55, 25, 0.22);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.28;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.vd9pe-hotspot:hover span,
.vd9pe-hotspot:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.vd9pe-hotspot-a {
  top: 36%;
  left: 30%;
}

.vd9pe-hotspot-b {
  right: 24%;
  bottom: 17%;
}

.vd9pe-gallery.is-hotspot-hidden .vd9pe-hotspot {
  opacity: 0;
  pointer-events: none;
}

.vd9pe-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.vd9pe-thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1.12;
  padding: 8px;
  cursor: pointer;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vd9pe-thumbs button:hover,
.vd9pe-thumbs button:focus-visible,
.vd9pe-thumbs button.is-active {
  border-color: var(--gold-500);
  box-shadow: 0 16px 34px rgba(101, 78, 39, 0.12);
  transform: translateY(-2px);
}

.vd9pe-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.vd9pe-detail-section {
  padding: 0 0 clamp(76px, 8vw, 126px);
}

.vd9pe-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(20px, 4vw, 44px);
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  align-items: start;
}

.vd9pe-feature-panel,
.vd9pe-spec-card {
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.vd9pe-feature-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 130, 42, 0.12), transparent 34%),
    #fff;
}

.vd9pe-feature-panel h2,
.vd9pe-spec-card h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.02;
}

.vd9pe-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.vd9pe-feature-list span {
  padding: 12px 14px;
  color: var(--navy-900);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 6px;
  background: #fff8ec;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.vd9pe-feature-list span:hover {
  border-color: rgba(211, 170, 84, 0.56);
  background: #fff;
  transform: translateX(4px);
}

.vd9pe-spec-card {
  overflow: hidden;
}

.vd9pe-spec-card h2 {
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(101, 78, 39, 0.1);
  background: #fff8ec;
}

.vd9pe-spec-card table {
  width: 100%;
  border-collapse: collapse;
}

.vd9pe-spec-card th,
.vd9pe-spec-card td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(101, 78, 39, 0.1);
  vertical-align: top;
}

.vd9pe-spec-card tr:last-child th,
.vd9pe-spec-card tr:last-child td {
  border-bottom: 0;
}

.vd9pe-spec-card th {
  width: 34%;
  color: var(--navy-950);
  background: rgba(255, 248, 236, 0.64);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vd9pe-spec-card td {
  color: var(--muted);
  background: #fff;
}

@media (max-width: 1080px) {
  .vd9pe-shell,
  .vd9pe-detail-grid {
    grid-template-columns: 1fr;
  }

  .vd9pe-feature-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .vd9pe-hero {
    padding-top: 34px;
  }

  .vd9pe-shell,
  .vd9pe-detail-grid {
    width: min(100% - 28px, 1440px);
  }

  .vd9pe-key-stats,
  .vd9pe-thumbs {
    grid-template-columns: 1fr;
  }

  .vd9pe-actions,
  .vd9pe-actions .button {
    width: 100%;
  }

  .vd9pe-actions .button {
    justify-content: center;
  }

  .vd9pe-hotspot span {
    min-width: 160px;
  }

  .vd9pe-spec-card th,
  .vd9pe-spec-card td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }

  .vd9pe-spec-card th {
    border-bottom: 0;
  }
}

.product-hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.product-hero-strip span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.065);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-page-wide {
  width: min(1520px, calc(100% - 28px));
}

.product-family-section {
  background:
    linear-gradient(180deg, #fff 0%, #fcf4e5 100%);
}

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

.product-family-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: 0 22px 58px rgba(101, 78, 39, 0.14);
  isolation: isolate;
  transform: perspective(900px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.product-family-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(234, 210, 160, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(74, 55, 25, 0.02) 0%, rgba(74, 55, 25, 0.28) 42%, rgba(74, 55, 25, 0.9) 100%),
    linear-gradient(90deg, rgba(74, 55, 25, 0.36), transparent 70%);
}

.product-family-card::after {
  position: absolute;
  inset: 16px;
  z-index: 4;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0);
  border-radius: 6px;
  transition: border-color 220ms ease;
}

.product-family-card img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 620ms ease, filter 420ms ease;
}

.product-family-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 5;
}

.product-family-copy span,
.catalog-kicker {
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-family-copy h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.05;
}

.product-family-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.product-family-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-family-copy a::after {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  content: "+";
  color: var(--navy-950);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transition: transform 180ms ease;
}

.product-family-card:hover,
.product-family-card:focus-within {
  border-color: rgba(234, 210, 160, 0.44);
  box-shadow: 0 32px 78px rgba(101, 78, 39, 0.22);
  transform: perspective(900px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.product-family-card:hover::after,
.product-family-card:focus-within::after {
  border-color: rgba(234, 210, 160, 0.28);
}

.product-family-card:hover img,
.product-family-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.075);
}

.product-family-card:hover a::after,
.product-family-card:focus-within a::after {
  transform: translateX(3px);
}

.product-catalog-section {
  background:
    linear-gradient(180deg, #fcf4e5 0%, #efe3cc 100%);
}

.product-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.product-catalog-head .section-heading {
  margin-bottom: 0;
}

.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-filter-bar button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--navy-900);
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(101, 78, 39, 0.06);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-filter-bar button:hover,
.catalog-filter-bar button:focus-visible,
.catalog-filter-bar button.is-active {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.52);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-2px);
}

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

.catalog-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transform: perspective(900px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, opacity 180ms ease;
  will-change: transform;
}

.catalog-item.is-hidden {
  display: none;
}

.catalog-item::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(203, 166, 92, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.catalog-item > * {
  position: relative;
  z-index: 1;
}

.catalog-item:hover,
.catalog-item:focus-within {
  border-color: rgba(203, 166, 92, 0.44);
  box-shadow: 0 28px 70px rgba(101, 78, 39, 0.16);
  transform: perspective(900px) translateY(-5px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.catalog-item:hover::before,
.catalog-item:focus-within::before {
  opacity: 1;
}

.catalog-item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--navy-950);
  transition: transform 520ms ease, filter 420ms ease;
}

.catalog-item:hover img,
.catalog-item:focus-within img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
}

.catalog-item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.catalog-item h3 {
  margin: 8px 0 0;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.12;
}

.catalog-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-item dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.catalog-item dl div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.catalog-item dt {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-item dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.catalog-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-item a::after {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  content: "+";
  color: var(--navy-950);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transition: transform 180ms ease;
}

.catalog-item:hover a::after,
.catalog-item:focus-within a::after {
  transform: translateX(3px);
}

.product-support-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 55, 25, 0.98), rgba(126, 96, 46, 0.96)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.14), transparent 44%);
}

.product-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.product-support-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 210, 160, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.product-support-media::after {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0.28);
  border-radius: 6px;
}

.product-support-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-support-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.02;
}

.product-support-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.support-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
}

.support-points span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.product-display {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: 0 26px 68px rgba(101, 78, 39, 0.2);
  isolation: isolate;
}

.product-display::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(74, 55, 25, 0.9) 0%, rgba(74, 55, 25, 0.52) 48%, rgba(74, 55, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(74, 55, 25, 0.08) 0%, rgba(74, 55, 25, 0.72) 100%);
}

.product-display::after {
  position: absolute;
  inset: 22px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0.22);
  border-radius: 8px;
}

.product-display img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 620ms ease, filter 420ms ease;
}

.product-display:hover img,
.product-display:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.product-display.is-switching img {
  opacity: 0.28;
  transform: scale(1.03);
}

.product-display-copy {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  z-index: 3;
  max-width: 520px;
}

.product-display-copy > span {
  display: block;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-display-copy h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1;
}

.product-display-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-display-tags span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-display-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-display-copy a::after {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  content: "+";
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--gold-500);
  transition: transform 180ms ease, background 180ms ease;
}

.product-display-copy a:hover::after,
.product-display-copy a:focus-visible::after {
  background: var(--gold-300);
  transform: translateX(4px);
}

.product-rail {
  display: grid;
  gap: 12px;
}

.product-chip {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(101, 78, 39, 0.055);
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.product-chip::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--gold-500);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms ease;
}

.product-chip::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.36) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 180ms ease;
}

.product-chip:hover,
.product-chip:focus-visible {
  transform: translateX(5px);
  border-color: rgba(203, 166, 92, 0.46);
  box-shadow: var(--shadow);
}

.product-chip:hover::after,
.product-chip:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.product-chip.is-active {
  color: #fff;
  border-color: rgba(203, 166, 92, 0.56);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 22px 52px rgba(101, 78, 39, 0.18);
}

.product-chip.is-active::before {
  transform: scaleY(1);
}

.product-chip > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-600);
  border: 1px solid rgba(203, 166, 92, 0.42);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.product-chip.is-active > span {
  color: var(--navy-950);
  background: var(--gold-500);
}

.product-chip strong,
.product-chip small {
  position: relative;
  z-index: 1;
  display: block;
}

.product-chip strong {
  font-size: 18px;
  line-height: 1.15;
}

.product-chip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-chip.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  gap: 20px;
  align-items: stretch;
}

.product-selector {
  display: grid;
  gap: 12px;
}

.product-tab {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 20px;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(101, 78, 39, 0.05);
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.product-tab::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--gold-500);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.product-tab::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 560ms ease, opacity 220ms ease;
}

.product-tab > span {
  position: relative;
  z-index: 1;
}

.product-tab:hover,
.product-tab:focus-visible {
  transform: translateX(6px);
  border-color: rgba(203, 166, 92, 0.48);
  box-shadow: var(--shadow);
}

.product-tab:hover::after,
.product-tab:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.product-tab.is-active {
  color: #fff;
  border-color: rgba(203, 166, 92, 0.58);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 58px rgba(101, 78, 39, 0.18);
}

.product-tab.is-active::before {
  transform: scaleY(1);
}

.product-tab-index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-600);
  border: 1px solid rgba(203, 166, 92, 0.42);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease;
}

.product-tab.is-active .product-tab-index {
  color: var(--navy-950);
  background: var(--gold-500);
}

.product-tab strong {
  display: block;
  font-size: 18px;
  line-height: 1.18;
}

.product-tab small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.product-tab.is-active small {
  color: rgba(255, 255, 255, 0.7);
}

.product-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
  box-shadow: 0 28px 70px rgba(101, 78, 39, 0.22);
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(74, 55, 25, 0.9) 0%, rgba(74, 55, 25, 0.62) 42%, rgba(74, 55, 25, 0.2) 100%),
    linear-gradient(180deg, rgba(74, 55, 25, 0.08) 0%, rgba(74, 55, 25, 0.76) 100%);
}

.product-stage::after {
  position: absolute;
  inset: 22px;
  z-index: 3;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0.2);
  border-radius: 8px;
}

.product-visuals,
.product-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-visual {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 520ms ease, transform 680ms ease, filter 520ms ease;
}

.product-visual.is-active {
  opacity: 1;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1);
}

.product-stage:hover .product-visual.is-active,
.product-stage:focus-within .product-visual.is-active {
  transform: scale(1.04);
}

.product-panel {
  position: absolute;
  right: clamp(28px, 5vw, 58px);
  bottom: clamp(30px, 5vw, 58px);
  left: clamp(28px, 5vw, 58px);
  z-index: 4;
  max-width: 590px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 360ms ease, transform 420ms ease;
}

.product-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-stage:hover .product-panel.is-active,
.product-stage:focus-within .product-panel.is-active {
  transform: translateY(-4px);
}

.product-kicker {
  display: block;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-panel h3 {
  margin: 12px 0 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05;
}

.product-panel p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-specs span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.product-panel .button {
  margin-top: 28px;
}

.product-stage-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.product-stage-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
}

.product-stage-progress span.is-running {
  animation: productProgress 5.8s linear forwards;
}

@keyframes productProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.product-card,
.news-card {
  position: relative;
  overflow: hidden;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #fff9ef);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background:
    linear-gradient(180deg, #fff 0%, #fff9ee 100%);
  box-shadow: 0 14px 36px rgba(101, 78, 39, 0.08);
}

.news-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 600ms ease, opacity 260ms ease;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 3px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  opacity: 0.86;
  transition: height 220ms ease, opacity 220ms ease;
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(203, 166, 92, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover,
.product-card:focus-within,
.news-card:hover,
.news-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(203, 166, 92, 0.5);
  box-shadow: 0 26px 68px rgba(101, 78, 39, 0.14);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
}

.news-card:hover::before,
.news-card:focus-within::before {
  opacity: 1;
  transform: translateX(120%);
}

.product-card:hover::before,
.product-card:focus-within::before {
  height: 5px;
  opacity: 1;
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 1;
}

.product-card-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 20px 20px 0;
}

.card-media {
  position: relative;
  overflow: hidden;
  margin: 16px 16px 0;
  border-radius: 6px;
  background: var(--navy-900);
}

.card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(74, 55, 25, 0.62) 100%);
}

.product-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  background: var(--navy-900);
  transition: transform 520ms ease, filter 520ms ease;
}

.product-card:hover img,
.product-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.card-body,
.news-body {
  position: relative;
  z-index: 3;
  padding: 22px;
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.card-index {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.product-card .card-index {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--navy-950);
  border: 1px solid rgba(234, 210, 160, 0.55);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.card-kicker {
  display: block;
  min-height: 0;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card h3,
.process-timeline-item h3,
.news-card h3 {
  margin: 8px 0 0;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-card p,
.process-timeline-item p,
.news-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card p {
  min-height: 88px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-tags span {
  padding: 6px 9px;
  color: var(--navy-800);
  border: 1px solid rgba(203, 166, 92, 0.35);
  border-radius: 999px;
  background: rgba(203, 166, 92, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.product-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid var(--line);
  transition: color 180ms ease, border-color 180ms ease;
}

.product-card a::after {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  content: "+";
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--gold-500);
  transition: transform 180ms ease, background 180ms ease;
}

.product-card:hover a,
.product-card:focus-within a {
  color: var(--gold-600);
  border-color: rgba(203, 166, 92, 0.48);
}

.product-card:hover a::after,
.product-card:focus-within a::after {
  background: var(--gold-300);
  transform: translateX(3px);
}

@media (hover: hover) and (pointer: fine) {
  .news-card p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    transition: max-height 320ms ease, opacity 260ms ease, transform 320ms ease, margin 320ms ease;
  }

  .news-card p {
    margin-top: 0;
  }

  .news-card:hover p,
  .news-card:focus-within p {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
  }

  .news-card:hover p,
  .news-card:focus-within p {
    margin-top: 12px;
  }
}

.applications-section {
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf2df 100%);
}

.applications-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(203, 166, 92, 0.08), transparent 34%, rgba(101, 78, 39, 0.04)),
    linear-gradient(rgba(101, 78, 39, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 92px;
}

.applications-section .section-inner {
  position: relative;
}

.applications-section .section-heading h2 {
  color: var(--navy-900);
}

.applications-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.application-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.application-scene {
  position: relative;
  min-height: clamp(320px, 30vw, 430px);
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: 0 20px 48px rgba(101, 78, 39, 0.14);
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.application-scene::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 58, 88, 0.04) 0%, rgba(18, 58, 88, 0.34) 46%, rgba(18, 58, 88, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 58, 88, 0.5), transparent 72%);
  transition: background 240ms ease;
}

.application-scene::after {
  position: absolute;
  inset: 12px;
  z-index: 4;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0);
  border-radius: 6px;
  transition: border-color 240ms ease;
}

.application-scene img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 620ms ease, filter 420ms ease;
}

.application-scene-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  color: var(--gold-300);
  border: 1px solid rgba(234, 210, 160, 0.4);
  border-radius: 999px;
  background: rgba(74, 55, 25, 0.68);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.application-scene-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
}

.application-scene-copy span {
  display: block;
  max-width: 100%;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.application-scene-copy h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.05;
}

.application-scene-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.application-scene:hover,
.application-scene:focus-visible {
  border-color: rgba(234, 210, 160, 0.48);
  box-shadow: 0 30px 72px rgba(101, 78, 39, 0.22);
  transform: translateY(-6px);
}

.application-scene:hover::before,
.application-scene:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(18, 58, 88, 0.04) 0%, rgba(18, 58, 88, 0.26) 42%, rgba(18, 58, 88, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 58, 88, 0.4), transparent 72%);
}

.application-scene:hover::after,
.application-scene:focus-visible::after {
  border-color: rgba(234, 210, 160, 0.32);
}

.application-scene:hover img,
.application-scene:focus-visible img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.075);
}

.news-card p {
  max-height: none;
  margin-top: 8px;
  opacity: 1;
  overflow: visible;
  transform: none;
}

.process-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
}

.process-background,
.process-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-background img {
  object-fit: cover;
  object-position: center;
  opacity: 0.56;
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.1), rgba(234, 210, 160, 0.06)),
    linear-gradient(180deg, rgba(11, 27, 43, 0.52), rgba(11, 27, 43, 0.42));
}

.process-content {
  position: relative;
}

.section-heading-light h2,
.section-heading-light p:not(.eyebrow) {
  color: #fff;
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.process-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px 88px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(74, 55, 25, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(12px);
}

.process-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 620ms ease, opacity 240ms ease;
}

.process-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(203, 166, 92, 0.28), transparent 34%),
    linear-gradient(180deg, transparent, rgba(74, 55, 25, 0.34));
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-card > * {
  position: relative;
  z-index: 3;
}

.process-card:hover,
.process-card:focus-within {
  border-color: rgba(234, 210, 160, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(74, 55, 25, 0.76);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.32);
}

.process-card:hover::before,
.process-card:focus-within::before {
  opacity: 1;
  transform: translateX(120%);
}

.process-card:hover::after,
.process-card:focus-within::after {
  opacity: 1;
}

.process-card .process-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  color: var(--navy-950);
  border: 1px solid rgba(234, 210, 160, 0.58);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.process-card-kicker {
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.18;
}

.process-card p {
  display: none;
}

.process-card-meta {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: rgba(234, 210, 160, 0.88);
  border-top: 1px solid rgba(234, 210, 160, 0.2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.38;
}

@media (hover: hover) and (pointer: fine) {
  .process-card .process-card-meta {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
    transition: color 180ms ease, border-color 180ms ease;
  }

  .process-card:hover .process-card-meta,
  .process-card:focus-within .process-card-meta {
    color: var(--gold-300);
    border-color: rgba(234, 210, 160, 0.34);
  }
}

.process-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.process-visual {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.process-visual::before {
  position: absolute;
  inset: 26px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 210, 160, 0.32);
  border-radius: 8px;
}

.process-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(74, 55, 25, 0.08) 0%, rgba(74, 55, 25, 0.86) 100%),
    radial-gradient(circle at 80% 18%, rgba(203, 166, 92, 0.24), transparent 34%);
}

.process-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 520ms ease, filter 520ms ease;
}

.process-visual:hover img,
.process-visual:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.process-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  z-index: 3;
}

.process-visual figcaption span {
  display: block;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-visual figcaption strong {
  display: block;
  max-width: 440px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.process-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  width: 148px;
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(234, 210, 160, 0.42);
  border-radius: 50%;
  background: rgba(74, 55, 25, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.process-badge strong {
  display: block;
  color: var(--gold-300);
  font-size: 30px;
  line-height: 1;
}

.process-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 26px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--gold-500), rgba(255, 255, 255, 0.16));
}

.process-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 220ms ease, border-color 220ms ease;
}

.process-timeline-item:hover,
.process-timeline-item:focus-within {
  transform: translateX(8px);
  border-color: rgba(234, 210, 160, 0.36);
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 6px solid rgba(74, 55, 25, 0.92);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.process-timeline-item h3 {
  margin-top: 2px;
  color: #fff;
  font-size: 22px;
}

.process-timeline-item p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-intro .button {
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(101, 78, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #fff9ef);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(203, 166, 92, 0.42);
  box-shadow: 0 20px 50px rgba(101, 78, 39, 0.1);
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  min-height: 66px;
  padding: 21px 58px 21px 24px;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 19px;
  right: 22px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--gold-600);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

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

#news {
  background:
    linear-gradient(180deg, #fff 0%, #fff8ed 100%);
}

.news-card img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  background: var(--navy-900);
  transition: transform 520ms ease, filter 520ms ease;
}

.news-card:hover img,
.news-card:focus-within img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.news-card time {
  display: block;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.news-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card-link::after {
  width: 34px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: var(--gold-600);
  transition: width 180ms ease;
}

.news-card-link:hover::after,
.news-card-link:focus-visible::after {
  width: 54px;
}

.news-cover > img {
  object-position: center 42%;
}

.news-list-shell {
  padding: clamp(68px, 8vw, 118px) clamp(18px, 4vw, 56px) clamp(82px, 9vw, 136px);
  background:
    linear-gradient(180deg, #fff 0%, #fff8ed 48%, #f4ead6 100%);
}

.news-list-intro,
.news-feature-card,
.news-list-grid,
.news-article-shell {
  width: min(1520px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.news-list-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.48fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.news-list-intro h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}

.news-list-intro p:not(.eyebrow) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.68fr);
  gap: 1px;
  margin-bottom: 26px;
  background: rgba(101, 78, 39, 0.12);
  border: 1px solid rgba(101, 78, 39, 0.08);
  box-shadow: 0 28px 82px rgba(101, 78, 39, 0.12);
}

.news-feature-media {
  position: relative;
  min-height: clamp(360px, 35vw, 560px);
  overflow: hidden;
  background: var(--navy-950);
}

.news-feature-media::after,
.news-list-media::after,
.news-detail-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.news-feature-media::after {
  background:
    linear-gradient(180deg, rgba(74, 55, 25, 0.04), rgba(74, 55, 25, 0.2)),
    linear-gradient(90deg, transparent 52%, rgba(74, 55, 25, 0.28));
}

.news-feature-media img,
.news-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 580ms ease, filter 420ms ease;
}

.news-feature-media img {
  position: absolute;
  inset: 0;
}

.news-feature-card:hover .news-feature-media img,
.news-feature-card:focus-within .news-feature-media img,
.news-list-card:hover .news-list-media img,
.news-list-card:focus-within .news-list-media img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
}

.news-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(203, 166, 92, 0.18), transparent 38%),
    #fff;
}

.news-feature-copy time,
.news-list-body time,
.news-article-meta time {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-feature-copy h2 {
  margin: 14px 0 0;
  color: var(--navy-950);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.news-feature-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.news-feature-copy .button {
  width: fit-content;
  margin-top: 30px;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-list-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(101, 78, 39, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-list-card:hover,
.news-list-card:focus-within {
  border-color: rgba(203, 166, 92, 0.44);
  box-shadow: 0 26px 72px rgba(101, 78, 39, 0.13);
  transform: translateY(-8px);
}

.news-list-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-950);
}

.news-list-media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(74, 55, 25, 0.34));
}

.news-list-body {
  padding: clamp(22px, 2.4vw, 30px);
}

.news-list-body > span {
  display: block;
  margin-top: 12px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list-body h2 {
  margin: 12px 0 0;
  color: var(--navy-900);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.14;
}

.news-list-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.news-detail-page {
  background:
    linear-gradient(180deg, #fbf2df 0%, #fff 34%, #fff 100%);
}

.news-detail-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: calc(var(--header-height) + 58px) clamp(18px, 4vw, 56px) 0;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 82% 16%, rgba(203, 166, 92, 0.18), transparent 32%),
    linear-gradient(180deg, #f4ead6 0%, #fff 100%);
}

.news-detail-hero::before {
  position: absolute;
  top: var(--header-height);
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(184, 138, 59, 0.48), transparent);
}

.news-detail-hero > img {
  position: relative;
  order: 2;
  inset: auto;
  width: min(980px, 100%);
  height: auto;
  aspect-ratio: 16 / 7;
  margin: 0 auto;
  object-fit: cover;
  transform: none;
  box-shadow: 0 28px 82px rgba(101, 78, 39, 0.16);
}

.news-detail-hero-overlay {
  display: none;
}

.news-detail-hero-content {
  position: relative;
  z-index: 1;
  order: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0 0 clamp(30px, 4vw, 48px);
}

.news-detail-hero .collection-breadcrumb {
  width: fit-content;
  margin: 0 0 clamp(34px, 5vw, 58px);
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid rgba(101, 78, 39, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(101, 78, 39, 0.06);
}

.news-detail-hero .collection-breadcrumb a {
  color: var(--navy-900);
}

.news-detail-hero-content h1 {
  max-width: 880px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
}

.news-detail-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.news-article-shell {
  display: block;
  width: min(920px, calc(100% - 36px));
  padding: clamp(42px, 6vw, 76px) 0 clamp(68px, 8vw, 110px);
}

.news-article {
  max-width: none;
}

.news-detail-page .news-article.reveal {
  opacity: 1;
  transform: none;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(101, 78, 39, 0.12);
}

.news-article-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-lead {
  margin: 34px 0 0;
  color: var(--navy-900);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
}

.news-article p:not(.news-lead),
.news-article li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.news-article p:not(.news-lead) {
  margin: 24px 0 0;
}

.news-article strong {
  color: var(--navy-950);
  font-weight: 800;
}

.news-article a {
  color: var(--gold-600);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.news-article a:hover,
.news-article a:focus-visible {
  color: var(--navy-900);
}

.news-article ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.news-article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(101, 78, 39, 0.12);
}

.news-article-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--navy-950);
  border: 1px solid rgba(203, 166, 92, 0.42);
  background: linear-gradient(135deg, rgba(234, 210, 160, 0.92), rgba(203, 166, 92, 0.92));
  box-shadow: 0 14px 30px rgba(184, 138, 59, 0.16);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-article-links a:hover,
.news-article-links a:focus-visible {
  color: #fff;
  border-color: rgba(101, 78, 39, 0.72);
  background: var(--navy-900);
  transform: translateY(-2px);
}

.inquiry-section {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 55, 25, 0.98), rgba(126, 96, 46, 0.96)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.14), transparent 42%);
}

.inquiry-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(234, 210, 160, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(203, 166, 92, 0.16), transparent 44%);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.inquiry-frame::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 110px 100%, 100% 86px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.inquiry-copy,
.inquiry-form {
  position: relative;
  z-index: 1;
}

.inquiry-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(4px, 1.5vw, 16px) 0;
}

.inquiry-copy h2,
.inquiry-copy p {
  color: #fff;
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.inquiry-path {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.inquiry-path span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inquiry-path strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--navy-950);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-size: 11px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  border: 1px solid rgba(234, 210, 160, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 241, 222, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.form-header {
  grid-column: 1 / -1;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(101, 78, 39, 0.1);
}

.form-header span {
  display: block;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-header strong {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(101, 78, 39, 0.14);
  border-radius: 4px;
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(203, 166, 92, 0.18);
  background: #fff;
}

.form-row ::placeholder {
  color: #a09583;
}

.form-row select option {
  color: var(--ink);
}

.form-submit {
  width: fit-content;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-600);
  font-weight: 700;
}

.form-status.is-error {
  color: #b8452d;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.captcha-control {
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.captcha-image {
  display: block;
  width: 86px;
  height: 48px;
  padding: 7px 0;
  border: 1px solid rgba(101, 78, 39, 0.14);
  border-radius: 4px;
  background: #f8efda;
  object-fit: contain;
}

.captcha-refresh {
  min-height: 48px;
  padding: 0 14px;
  color: var(--navy-900);
  border: 1px solid rgba(101, 78, 39, 0.14);
  border-radius: 4px;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--gold-500);
  background: rgba(243, 213, 149, 0.18);
  box-shadow: 0 0 0 3px rgba(203, 166, 92, 0.14);
  outline: none;
}

.contact-page {
  padding-top: 0;
  background: #fff;
}

.contact-cover {
  min-height: 0;
  aspect-ratio: 1672 / 757;
  background: #eef3f7;
}

.contact-cover > img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.contact-cover .collection-cover-overlay {
  background:
    linear-gradient(90deg, rgba(73, 55, 27, 0.74) 0%, rgba(73, 55, 27, 0.38) 48%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(73, 55, 27, 0.34) 100%);
}

.contact-inquiry-section {
  padding: clamp(74px, 8vw, 116px) 0;
}

.contact-inquiry-frame {
  width: min(1320px, calc(100% - 36px));
}

.contact-form {
  align-self: stretch;
}

.contact-support-section {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff8ec 100%);
}

.contact-support-grid {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.contact-support-copy {
  max-width: 820px;
}

.contact-support-copy h2,
.contact-map-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-support-copy p:not(.eyebrow),
.contact-map-head p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-rfq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-rfq-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 28px rgba(142, 106, 46, 0.18);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-rfq-list h3 {
  margin: 22px 0 0;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.16;
}

.contact-rfq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-rfq-list a {
  color: var(--navy-900);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-rfq-list a:hover,
.contact-rfq-list a:focus-visible {
  color: var(--gold-600);
}

.contact-map-section {
  background: #f7ecd8;
}

.contact-map-layout {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.contact-map-head {
  max-width: 780px;
}

.contact-map-frame {
  min-height: clamp(420px, 46vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(101, 78, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.certificate-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 46px) clamp(18px, 4vw, 56px) clamp(54px, 7vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(203, 166, 92, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 58%, var(--gold-600) 100%);
}

.certificate-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
}

.certificate-hero-bg img {
  position: absolute;
  right: clamp(-120px, -4vw, -32px);
  bottom: clamp(72px, 12vw, 132px);
  width: min(760px, 72vw);
  transform: rotate(-7deg);
  transform-origin: center;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.34);
}

.certificate-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 58, 88, 0.62) 0%, rgba(18, 58, 88, 0.3) 48%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(18, 58, 88, 0.32) 100%);
}

.certificate-hero-content {
  position: relative;
  z-index: 1;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.certificate-hero-content .collection-breadcrumb {
  margin: 0 0 clamp(34px, 7vw, 84px);
}

.certificate-hero-content .eyebrow {
  margin-bottom: 18px;
}

.certificate-hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(50px, 8vw, 112px);
  line-height: 0.82;
  letter-spacing: 0;
}

.certificate-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 20px);
}

.certificate-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.certificate-hero-points span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 210, 160, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.certificate-shell {
  padding: clamp(56px, 7vw, 108px) clamp(18px, 4vw, 56px) clamp(76px, 8vw, 126px);
  background:
    linear-gradient(180deg, #fff 0%, #fff8ed 46%, #f4ead6 100%);
}

.certificate-intro,
.certificate-metrics,
.certificate-filters,
.certificate-grid,
.certificate-assurance {
  width: min(1520px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.certificate-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.44fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
}

.certificate-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.certificate-intro h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.94;
  letter-spacing: 0;
}

.certificate-intro p:not(.eyebrow) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.certificate-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 34px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.certificate-metric-card {
  position: relative;
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 30px) 0 0;
  border-top: 1px solid rgba(101, 78, 39, 0.14);
}

.certificate-metric-card::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 64px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform-origin: left center;
  transform: scaleX(0.62);
  transition: transform 240ms ease;
}

.certificate-metric-card:hover::before {
  transform: scaleX(1);
}

.certificate-metric-label {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificate-metrics strong {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--navy-950);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.78;
  letter-spacing: 0;
}

.certificate-metrics strong small {
  color: var(--gold-600);
  font-size: 0.42em;
  font-weight: 950;
}

.certificate-metric-card p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.certificate-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.certificate-filters button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.certificate-filters button:hover,
.certificate-filters button:focus-visible,
.certificate-filters button.is-active {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.58);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 30px rgba(184, 138, 59, 0.18);
  transform: translateY(-1px);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 28px;
}

.certificate-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: opacity 220ms ease, transform 220ms ease;
}

.certificate-card::before {
  display: none;
}

.certificate-card:hover,
.certificate-card:focus-within {
  transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.certificate-card.is-hidden {
  display: none;
}

.certificate-card-wide {
  grid-column: span 2;
}

.certificate-card button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 18px 46px rgba(101, 78, 39, 0.12);
  cursor: zoom-in;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.certificate-card button::after {
  display: none;
}

.certificate-card button:hover,
.certificate-card button:focus-visible {
  box-shadow: 0 28px 68px rgba(101, 78, 39, 0.18);
  outline: 0;
}

.certificate-card button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 240ms ease, filter 240ms ease;
}

.certificate-card-portrait button img {
  aspect-ratio: 3 / 4;
}

.certificate-card button:hover img,
.certificate-card button:focus-visible img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.025);
}

.certificate-card-index {
  display: none;
}

.certificate-card-shine {
  display: none;
}

.certificate-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 0 0 6px;
  border-top: 1px solid rgba(101, 78, 39, 0.1);
}

.certificate-card-copy > span {
  width: fit-content;
  margin-top: 14px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-card-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.12;
  transition: color 180ms ease;
}

.certificate-card:hover .certificate-card-copy h2,
.certificate-card:focus-within .certificate-card-copy h2 {
  color: var(--gold-600);
}

.certificate-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.certificate-assurance {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(44px, 6vw, 76px);
  padding: clamp(28px, 4vw, 50px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 55, 25, 0.98), rgba(126, 96, 46, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(203, 166, 92, 0.3), transparent 34%);
  box-shadow: var(--shadow);
}

.certificate-assurance .eyebrow {
  margin-bottom: 14px;
}

.certificate-assurance h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.98;
}

.certificate-assurance p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.certificate-assurance .button {
  white-space: nowrap;
}

body.certificate-lightbox-open {
  overflow: hidden;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
}

.certificate-lightbox[hidden] {
  display: none;
}

.certificate-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 33, 16, 0.84);
  backdrop-filter: blur(16px);
}

.certificate-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(86svh, 900px);
  display: grid;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(234, 210, 160, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 241, 222, 0.98));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.44);
}

.certificate-lightbox-close {
  justify-self: end;
  min-height: 38px;
  margin-bottom: 12px;
  padding: 0 14px;
  color: var(--navy-950);
  border: 1px solid rgba(203, 166, 92, 0.44);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.certificate-lightbox figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.certificate-lightbox img {
  width: 100%;
  max-height: calc(86svh - 126px);
  object-fit: contain;
  background: #fff8ec;
}

.certificate-lightbox figcaption {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.project-hero {
  position: relative;
  min-height: clamp(680px, 88svh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 54px) clamp(18px, 4vw, 56px) clamp(132px, 15vw, 170px);
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.project-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 118px 118px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.project-hero::after {
  position: absolute;
  right: clamp(26px, 7vw, 110px);
  bottom: clamp(118px, 13vw, 178px);
  z-index: 3;
  width: min(44vw, 640px);
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(234, 210, 160, 0.82));
}

.project-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 24%, rgba(211, 170, 84, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(18, 58, 88, 0.62) 0%, rgba(18, 58, 88, 0.3) 48%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(18, 58, 88, 0.32) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 4;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.project-hero-content .collection-breadcrumb {
  margin-bottom: clamp(38px, 8vw, 92px);
}

.project-hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(52px, 8.5vw, 118px);
  line-height: 0.82;
  letter-spacing: 0;
}

.project-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 21px);
}

.project-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.project-hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 3vw, 44px);
  left: clamp(18px, 4vw, 56px);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1520px, calc(100% - clamp(36px, 8vw, 112px)));
  margin: 0 auto;
  border: 1px solid rgba(234, 210, 160, 0.18);
  background: rgba(234, 210, 160, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.project-hero-strip button {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.74);
  border: 0;
  background: rgba(74, 55, 25, 0.72);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.project-hero-strip button:hover,
.project-hero-strip button:focus-visible,
.project-hero-strip button.is-active {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(203, 166, 92, 0.24), rgba(255, 255, 255, 0.075)),
    rgba(74, 55, 25, 0.88);
}

.project-hero-strip button span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-hero-strip button strong {
  color: var(--gold-300);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.82;
}

.project-shell {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 4vw, 56px) clamp(76px, 8vw, 128px);
  background:
    linear-gradient(180deg, #fff 0%, #fcf4e5 45%, #efe3cc 100%);
}

.project-intro,
.project-metrics,
.project-filter-bar,
.project-grid,
.project-assurance {
  width: min(1520px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.project-intro h2 {
  max-width: 950px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 0.93;
  letter-spacing: 0;
}

.project-intro p:not(.eyebrow) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 34px;
}

.project-metric {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 22px 0 0;
  border-top: 1px solid rgba(101, 78, 39, 0.14);
}

.project-metric::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 76px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0.56);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.project-metric:hover::before {
  transform: scaleX(1);
}

.project-metric > span:first-child {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-metric strong {
  color: var(--navy-950);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.78;
}

.project-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.project-filter-bar button {
  min-height: 44px;
  padding: 0 17px;
  color: var(--muted);
  border: 1px solid rgba(101, 78, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.project-filter-bar button:hover,
.project-filter-bar button:focus-visible,
.project-filter-bar button.is-active {
  color: var(--navy-950);
  border-color: rgba(203, 166, 92, 0.58);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 30px rgba(184, 138, 59, 0.18);
  transform: translateY(-1px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 13vw, 252px);
  grid-auto-flow: dense;
  gap: 1px;
  margin-top: 32px;
  padding: 1px;
  border: 1px solid rgba(101, 78, 39, 0.1);
  background:
    linear-gradient(135deg, rgba(234, 210, 160, 0.34), rgba(101, 78, 39, 0.16)),
    rgba(101, 78, 39, 0.18);
  box-shadow: 0 30px 80px rgba(101, 78, 39, 0.12);
}

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-card.is-hidden {
  display: none;
}

.project-card:hover,
.project-card:focus-within {
  transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.project-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card-wide {
  grid-column: span 1;
}

.project-card button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--navy-950);
  box-shadow: none;
  cursor: zoom-in;
  isolation: isolate;
}

.project-card button::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(234, 210, 160, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(74, 55, 25, 0.04) 0%, rgba(74, 55, 25, 0.26) 42%, rgba(74, 55, 25, 0.82) 100%);
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.project-card button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36%;
  z-index: 3;
  width: 24%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-16deg);
  transition: left 520ms ease;
}

.project-card button img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transition: transform 520ms ease, filter 260ms ease;
}

.project-card button span {
  position: absolute;
  right: 16px;
  top: 16px;
  bottom: auto;
  z-index: 4;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(74, 55, 25, 0.68);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.project-card button:hover,
.project-card button:focus-visible {
  outline: 0;
  box-shadow: none;
}

.project-card button:hover::before,
.project-card button:focus-visible::before {
  opacity: 0.86;
}

.project-card button:hover::after,
.project-card button:focus-visible::after {
  left: 112%;
}

.project-card button:hover img,
.project-card button:focus-visible img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.045);
}

.project-image-fill {
  transform: scale(1.16);
}

.project-card button:hover .project-image-fill,
.project-card button:focus-visible .project-image-fill {
  transform: scale(1.22);
}

.project-card button:hover span,
.project-card button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.project-card-copy {
  position: absolute;
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  z-index: 5;
  display: grid;
  gap: 7px;
  padding: 0;
  border-top: 0;
  pointer-events: none;
}

.project-card-copy > span {
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.12;
  transition: color 180ms ease;
}

.project-card-copy p {
  display: none;
}

.project-card:hover .project-card-copy h2,
.project-card:focus-within .project-card-copy h2 {
  color: var(--gold-600);
}

.project-assurance {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.56fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(30px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 55, 25, 0.98), rgba(126, 96, 46, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(203, 166, 92, 0.28), transparent 34%);
  box-shadow: var(--shadow);
}

.project-assurance .eyebrow {
  margin-bottom: 14px;
}

.project-assurance h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.98;
}

.project-assurance p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.project-assurance .button {
  white-space: nowrap;
}

body.project-lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 33, 16, 0.86);
  backdrop-filter: blur(16px);
}

.project-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(88svh, 900px);
  display: grid;
  gap: 12px;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(234, 210, 160, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 241, 222, 0.98));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.44);
}

.project-lightbox-close {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  color: var(--navy-950);
  border: 1px solid rgba(203, 166, 92, 0.44);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.project-lightbox figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.project-lightbox img {
  width: 100%;
  max-height: calc(88svh - 152px);
  object-fit: contain;
  background: var(--navy-950);
}

.project-lightbox figcaption {
  display: grid;
  gap: 6px;
  color: var(--navy-950);
  text-align: center;
}

.project-lightbox figcaption strong {
  font-size: 16px;
  line-height: 1.25;
}

.project-lightbox figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: clamp(164px, 16vw, 232px);
  max-height: 40px;
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-hero {
    grid-template-columns: 1fr;
  }

  .collection-hero p:not(.eyebrow) {
    margin-bottom: 0;
  }

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

  .taxonomy-tier {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-actions {
    grid-column: 1 / -1;
  }

  .product-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: auto;
  }

  .product-tile {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .product-tile::before,
  .product-tile img {
    height: 100%;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

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

  .product-catalog-head,
  .product-support-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filter-bar {
    justify-content: flex-start;
  }

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

  .product-chip {
    grid-template-columns: 1fr;
    min-height: 118px;
  }

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

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

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

  .application-scene {
    min-height: 340px;
  }

  .certificate-intro,
  .certificate-assurance {
    grid-template-columns: 1fr;
  }

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

  .certificate-card-wide {
    grid-column: span 1;
  }

  .project-intro,
  .project-assurance {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(190px, 24vw, 260px);
  }

  .project-card-featured,
  .project-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-card-featured button img,
  .project-card-wide button img {
    aspect-ratio: auto;
  }

  .news-list-intro,
  .news-feature-card,
  .news-article-shell {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    justify-content: flex-start;
    gap: 8px;
    padding: 0 14px;
  }

  .brand {
    order: 1;
    margin-right: auto;
    max-width: min(174px, 48vw);
  }

  .brand-logo {
    width: clamp(132px, 40vw, 170px);
    max-height: 34px;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
    display: block;
    width: 40px;
    height: 40px;
  }

  .lang-wrapper {
    order: 2;
  }

  .lang-btn {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .lang-btn-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .lang-list {
    top: calc(100% + 8px);
    right: -48px;
    width: min(320px, calc(100vw - 36px));
    max-height: calc(100svh - var(--header-height) - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    order: 4;
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(211, 170, 84, 0.34);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(101, 78, 39, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
    color: rgba(45, 37, 25, 0.82);
  }

  .nav-dropdown {
    display: grid;
    align-items: center;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-trigger::after {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-dropdown:hover .nav-dropdown-trigger::after,
  .nav-dropdown:focus-within .nav-dropdown-trigger::after {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .site-nav .nav-dropdown-menu a {
    padding: 8px 12px;
    border-bottom: 0;
    border-left: 1px solid rgba(211, 170, 84, 0.32);
    color: rgba(45, 37, 25, 0.64);
    font-size: 12px;
  }

  .site-nav .nav-dropdown-menu a::before {
    display: none;
  }

  .site-nav .nav-dropdown-menu a:hover,
  .site-nav .nav-dropdown-menu a:focus-visible {
    padding-left: 12px;
    color: var(--gold-600);
    background: rgba(211, 170, 84, 0.12);
  }

  .site-header.is-scrolled .site-nav {
    border-color: rgba(211, 170, 84, 0.34);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(101, 78, 39, 0.1);
  }

  .site-header.is-scrolled .site-nav a {
    color: rgba(45, 37, 25, 0.82);
  }

  .site-header.is-scrolled .site-nav .nav-dropdown-menu a {
    border-left-color: rgba(211, 170, 84, 0.32);
    color: rgba(45, 37, 25, 0.64);
  }

  .site-header.is-scrolled .site-nav .nav-dropdown-menu a:hover,
  .site-header.is-scrolled .site-nav .nav-dropdown-menu a:focus-visible {
    color: var(--gold-600);
    background: rgba(211, 170, 84, 0.12);
  }

  .collection-shell {
    border-radius: 0;
    padding-top: 52px;
  }

  .certificate-hero {
    min-height: 78svh;
  }

  .certificate-hero-bg img {
    right: -170px;
    bottom: 120px;
    width: 720px;
    opacity: 0.7;
  }

  .certificate-hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 58, 88, 0.58) 0%, rgba(18, 58, 88, 0.34) 52%, rgba(18, 58, 88, 0.6) 100%);
  }

  .certificate-metrics {
    grid-template-columns: 1fr;
  }

  .collection-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .collection-sort,
  .sort-trigger {
    width: 100%;
  }

  .collection-count {
    justify-self: start;
    order: 3;
  }

  .collection-sort {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
  }

  .news-list-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .news-feature-media {
    min-height: 360px;
  }

  .news-detail-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 18px 0;
  }

  .news-detail-hero-content {
    width: 100%;
    padding-bottom: 30px;
  }

  .news-detail-hero > img {
    aspect-ratio: 16 / 8.5;
  }

  .news-detail-hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .news-article-shell {
    width: min(100% - 32px, var(--max));
  }

  .collection-taxonomy {
    margin-top: 22px;
    padding: 16px;
  }

  .taxonomy-options {
    gap: 8px;
  }

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

  .collection-filters {
    grid-template-columns: 1fr;
  }

  .filter-actions {
    grid-column: auto;
  }

  .home-page {
    padding-top: var(--header-height);
  }

  .hero {
    min-height: auto;
    margin-top: 0;
    aspect-ratio: 1942 / 809;
    background: #fff;
  }

  .hero-image {
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(101, 78, 39, 0.58) 0%, rgba(101, 78, 39, 0.34) 48%, rgba(101, 78, 39, 0.62) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 96px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
  }

  .hero-proof span {
    padding: 7px 10px;
  }

  .hero-controls {
    inset: 0;
  }

  .product-page-hero {
    min-height: auto;
  }

  .product-page-hero-content {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 78px;
  }

  .product-page-hero h1 {
    font-size: clamp(38px, 10vw, 62px);
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow[data-hero-prev] {
    left: 14px;
  }

  .hero-arrow[data-hero-next] {
    right: 14px;
  }

  .hero-dots {
    bottom: 18px;
  }

  .about-grid,
  .process-showcase,
  .product-explorer,
  .faq-grid,
  .inquiry-frame {
    grid-template-columns: 1fr;
  }

  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-rfq-list {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .product-tile::before,
  .product-tile img {
    height: 100%;
  }

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

  .product-display {
    min-height: 460px;
  }

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

  .product-chip {
    grid-template-columns: 44px minmax(0, 1fr);
  }

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

  .product-tab {
    min-height: 104px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .product-tab-index {
    width: 40px;
    height: 40px;
  }

  .product-stage {
    min-height: 520px;
  }

  .process-visual {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .about-media {
    min-height: 430px;
    overflow: hidden;
  }

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

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

  .product-card p,
  .product-card .card-tags,
  .product-card a,
  .news-card p {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .product-card p,
  .product-card .card-tags,
  .news-card p {
    margin-top: 8px;
  }

  .product-card .card-tags {
    margin-top: 16px;
  }

  .product-card a {
    margin-top: 18px;
  }

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

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

  .inquiry-path span {
    display: grid;
    align-content: start;
    min-height: 96px;
  }

  .process-card .process-card-meta {
    max-height: none;
    margin-top: 18px;
    padding-top: 16px;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .faq-intro {
    position: static;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .project-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 210px;
  }

  .project-hero-overlay {
    background:
      radial-gradient(circle at 72% 18%, rgba(211, 170, 84, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(18, 58, 88, 0.6) 0%, rgba(18, 58, 88, 0.36) 48%, rgba(18, 58, 88, 0.62) 100%);
  }

  .project-hero-content h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .project-hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-hero-strip button {
    min-height: 74px;
    padding: 14px;
  }

  .project-metrics {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(200px, 34vw, 280px);
  }

  .project-card button span {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .home-page .hero {
    --mobile-hero-controls-height: 48px;
    height: calc((100vw * 809 / 1942) + var(--mobile-hero-controls-height));
    aspect-ratio: auto;
  }

  .home-page .hero-slide {
    inset: 0 0 var(--mobile-hero-controls-height);
  }

  .home-page .hero-controls {
    inset: auto 0 0;
    height: var(--mobile-hero-controls-height);
    background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
    border-top: 1px solid rgba(211, 170, 84, 0.22);
    pointer-events: auto;
  }

  .home-page .hero-arrow {
    top: 50%;
    width: 34px;
    height: 34px;
  }

  .home-page .hero-arrow[data-hero-prev] {
    left: 16px;
  }

  .home-page .hero-arrow[data-hero-next] {
    right: 16px;
  }

  .home-page .hero-dots {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .section-inner,
  .hero-content,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    font-size: 28px;
  }

  .collection-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .collection-cover {
    min-height: 520px;
  }

  .collection-cover-content {
    width: min(100% - 28px, var(--max));
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .collection-breadcrumb {
    font-size: 13px;
  }

  .news-list-intro,
  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .news-list-intro {
    gap: 18px;
  }

  .news-list-intro h2,
  .news-feature-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .news-feature-media {
    min-height: 280px;
  }

  .news-feature-copy,
  .news-list-body {
    padding: 22px;
  }

  .news-detail-hero-content h1 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .news-detail-hero .collection-breadcrumb {
    width: 100%;
    margin-bottom: 28px;
  }

  .news-detail-hero-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .news-article-shell {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .collection-cover-content .eyebrow {
    margin-top: 46px;
  }

  .collection-cover-content h1,
  .collection-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .collection-cover-content p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .collection-cover-points {
    display: grid;
    margin-top: 26px;
  }

  .certificate-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 70px;
  }

  .certificate-hero-content h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .certificate-hero-content > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .certificate-hero-points,
  .certificate-filters {
    display: grid;
  }

  .certificate-shell {
    padding-top: 54px;
  }

  .certificate-intro h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .certificate-filters button {
    width: 100%;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-card,
  .certificate-card:hover,
  .certificate-card:focus-within {
    transform: none;
  }

  .certificate-card button img,
  .certificate-card-portrait button img {
    aspect-ratio: 4 / 3;
  }

  .certificate-assurance {
    padding: 24px;
  }

  .certificate-assurance .button {
    width: 100%;
  }

  .certificate-lightbox {
    padding: 12px;
  }

  .certificate-lightbox-panel {
    padding: 12px;
  }

  .project-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 210px;
  }

  .project-hero-overlay {
    background:
      radial-gradient(circle at 72% 18%, rgba(211, 170, 84, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(18, 58, 88, 0.6) 0%, rgba(18, 58, 88, 0.36) 48%, rgba(18, 58, 88, 0.62) 100%);
  }

  .project-hero-content h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .project-hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-hero-strip button {
    min-height: 74px;
    padding: 14px;
  }

  .project-metrics {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(200px, 34vw, 280px);
  }

  .project-card button span {
    opacity: 1;
    transform: none;
  }

  .collection-toolbar {
    margin-top: 0;
  }

  .collection-sort {
    gap: 10px;
  }

  .sort-trigger {
    min-width: 0;
  }

  .collection-taxonomy {
    padding: 14px;
  }

  .taxonomy-tier {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .taxonomy-options button {
    min-height: 36px;
    padding: 7px 12px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .collection-card-media img {
    aspect-ratio: 4 / 3;
  }

  .collection-card-media a {
    opacity: 1;
    transform: none;
  }

  .collection-filters {
    padding: 18px;
  }

  .collection-pagination {
    flex-wrap: wrap;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .product-grid,
  .product-rail,
  .product-wall,
  .product-family-grid,
  .catalog-grid,
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-tile::before,
  .product-tile img {
    height: 100%;
  }

  .product-tile-index {
    top: 14px;
    left: 14px;
  }

  .product-tile-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-height: 0;
    padding: 0;
  }

  .product-tile-copy a {
    width: fit-content;
    max-width: 100%;
    padding-top: 0;
  }

  .product-display {
    min-height: 420px;
  }

  .product-display-copy h3 {
    font-size: 32px;
  }

  .product-display-copy {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .product-page-hero-content,
  .product-page-wide {
    width: min(100% - 28px, var(--max));
  }

  .product-family-card img {
    aspect-ratio: 16 / 11;
  }

  .product-family-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .product-catalog-head {
    gap: 18px;
  }

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

  .catalog-filter-bar button {
    width: 100%;
  }

  .support-points {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 160px;
    padding: 24px 24px 22px 82px;
  }

  .product-selector {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 520px;
  }

  .product-card img {
    height: 210px;
  }

  .product-panel {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .product-panel h3 {
    font-size: 28px;
  }

  .product-panel p {
    font-size: 15px;
  }

  .process-visual {
    min-height: 380px;
  }

  .process-visual figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .process-badge {
    top: 20px;
    right: 20px;
    width: 118px;
    min-height: 118px;
    padding: 14px;
  }

  .process-badge strong {
    font-size: 24px;
  }

  .process-timeline-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-number {
    width: 48px;
    height: 48px;
    border-width: 5px;
  }

  .application-gallery {
    grid-template-columns: 1fr;
  }

  .application-scene {
    min-height: 360px;
  }

  .application-scene-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 390px;
  }

  .about-image-main {
    width: 84%;
    height: 70%;
    border-radius: 8px 8px 46px 8px;
  }

  .about-image-secondary {
    width: 58%;
    height: 43%;
    border-width: 7px;
    border-radius: 42px 8px 8px 8px;
  }

  .about-arc {
    right: 0;
    width: 70%;
    border-width: 6px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-rfq-list article {
    min-height: 0;
  }

  .inquiry-frame {
    padding: 18px;
  }

  .inquiry-path {
    grid-template-columns: 1fr;
  }

  .inquiry-path span {
    display: flex;
    min-height: 54px;
  }

  .form-submit {
    width: 100%;
  }

  .captcha-control {
    grid-template-columns: 1fr;
  }

  .captcha-image,
  .captcha-refresh {
    width: 100%;
  }

  .project-hero {
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 260px;
  }

  .project-hero-content {
    width: min(100% - 12px, var(--max));
  }

  .project-hero-actions,
  .project-hero-actions .button {
    width: 100%;
  }

  .project-hero-strip {
    right: 14px;
    left: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .project-hero-strip button {
    min-height: 58px;
    align-items: center;
  }

  .project-hero-strip button strong {
    font-size: 26px;
  }

  .project-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .project-intro h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .project-filter-bar {
    display: grid;
  }

  .project-filter-bar button {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .project-card,
  .project-card:hover,
  .project-card:focus-within {
    transform: none;
  }

  .project-card button img,
  .project-card-featured button img,
  .project-card-wide button img {
    aspect-ratio: auto;
  }

  .project-card-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .project-card-copy h2 {
    font-size: 18px;
  }

  .project-assurance {
    padding: 24px;
  }

  .project-assurance .button {
    width: 100%;
  }

  .project-lightbox {
    padding: 12px;
  }

  .project-lightbox-panel {
    padding: 12px;
  }
}

@media (max-width: 1100px) {
  .about-sustain-feature,
  .about-sustainable-intro,
  .about-section-title,
  .about-goals-grid {
    grid-template-columns: 1fr;
  }

  .about-sustainability-stats,
  .about-strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-goals-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section-title p:not(.eyebrow) {
    max-width: 720px;
  }

  .about-sustainable-visual {
    grid-template-rows: none;
  }

  .about-sustainable-image {
    height: auto;
  }

  .about-sustainable-image img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .about-manifesto {
    padding-top: 68px;
  }

  .about-manifesto h2,
  .about-feature-copy h2,
  .about-section-title h2,
  .about-goals-copy h2,
  .about-wide-image-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.02;
  }

  .about-sustain-feature {
    width: min(100% - 28px, var(--max));
    padding-bottom: 62px;
  }

  .about-sustainable-intro {
    width: min(100% - 28px, var(--max));
    margin-top: 56px;
    gap: 28px;
  }

  .about-feature-media {
    min-height: 360px;
  }

  .about-sustainable-visual {
    min-height: 0;
  }

  .about-sustainable-image {
    width: 100%;
  }

  .about-sustainable-copy {
    padding: 8px 0 0;
  }

  .about-sustainable-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.02;
  }

  .about-sustainable-pillars {
    grid-template-columns: 1fr;
  }

  .about-feature-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .about-feature-actions,
  .about-feature-actions .button {
    width: 100%;
  }

  .about-sustainability-stats,
  .about-strategy-grid,
  .about-goals-cards {
    grid-template-columns: 1fr;
  }

  .about-sustainability-stats {
    width: min(100% - 28px, var(--max));
    margin-bottom: 56px;
  }

  .about-stat {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-strategy-card,
  .about-strategy-card:hover,
  .about-strategy-card:focus-visible {
    min-height: 230px;
    transform: none;
  }

  .about-strategy-card h3 {
    margin-top: 48px;
  }

  .about-goals-cards h3 {
    margin-top: 18px;
  }

  .about-wide-image {
    width: 100%;
    min-height: 520px;
    padding: 86px 18px;
  }

  .about-wide-image-panel {
    inset: auto;
    max-width: 620px;
  }

  .about-goals-grid {
    gap: 28px;
  }

  .about-goals-cards article {
    min-height: 190px;
  }
}

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