﻿:root {
  --ink: #1a120d;
  --ink-soft: #563c2b;
  --muted: #7a6654;
  --line: #ead7bd;
  --paper: #fff8ee;
  --paper-deep: #f3dec3;
  --gold: #c6903f;
  --gold-light: #f7dca3;
  --forest: #6d3a28;
  --wine: #8b3340;
  --blue: #8a5a36;
  --sage: #c7a05d;
  --shadow: 0 24px 62px rgba(74, 43, 23, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 220, 163, 0.28), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f8ead8 52%, #fff8ee 100%);
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  width: var(--container);
  margin: 14px auto 0;
  padding: 0 14px;
  color: #fff;
  background: rgba(24, 14, 9, 0.86);
  border: 1px solid rgba(247, 220, 163, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(26, 18, 13, 0.94);
  box-shadow: 0 14px 34px rgba(72, 42, 22, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #2a170c;
  background: linear-gradient(135deg, #fff0c7, var(--gold-light) 44%, var(--gold));
  border-radius: 50%;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-dropdown.is-open > .nav-link {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-dropdown.is-open > .nav-link::after {
  transform: scaleX(1);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: -22px;
  z-index: 30;
  display: grid;
  min-width: 186px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(22, 12, 8, 0.98);
  border: 1px solid rgba(247, 220, 163, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 46px rgba(73, 38, 18, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.is-open > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-cta,
.btn,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.88rem;
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  flex: 0 0 auto;
}

.floating-cta svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #180e09;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 12, 8, 0.92), rgba(42, 24, 14, 0.58) 42%, rgba(62, 34, 18, 0.18)),
    linear-gradient(0deg, rgba(42, 22, 10, 0.54), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  padding: 160px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.2vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

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

.btn {
  border: 0;
  padding: 0 20px;
  cursor: pointer;
}

.btn-primary {
  color: #241407;
  background: linear-gradient(135deg, #fff0c7, var(--gold-light) 45%, var(--gold));
  box-shadow: 0 16px 36px rgba(198, 144, 63, 0.32);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 20px;
  color: #fff;
  background: linear-gradient(90deg, #1a120d, #3a2115, #1a120d);
  overflow-x: auto;
  white-space: nowrap;
}

.brand-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.brand-strip strong {
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  padding-bottom: 54px;
}

.split,
.pricing,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.16;
}

.section p,
.split p,
.pricing p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.factory-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.factory-panel div,
.price-table div,
.finish-grid div,
.comparison-grid article,
.timeline article,
.review-grid figure,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.72);
}

.factory-panel div {
  min-height: 128px;
  padding: 22px;
}

.factory-panel strong,
.price-table strong {
  display: block;
  color: var(--forest);
  font-size: 1.72rem;
  line-height: 1;
}

.factory-panel span,
.price-table span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
  box-shadow: 0 14px 38px rgba(98, 55, 28, 0.1);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  background: linear-gradient(135deg, #2b170d, #d7ae67);
}

.product-body {
  padding: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #65420a;
  background: #fff1ca;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge-green {
  color: #694013;
  background: #f8e1bd;
}

.badge-blue {
  color: #704015;
  background: #f1d0a6;
}

.badge-wine {
  color: #6d2834;
  background: #f5dce2;
}

.badge-sand {
  color: #705229;
  background: #f0e4ce;
}

.product-card h3 {
  margin-top: 14px;
  font-size: 1.18rem;
}

.product-card p {
  min-height: 74px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
}

.product-card dl div {
  padding: 10px;
  background: #fff4e5;
  border-radius: 6px;
}

.product-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--forest);
  font-weight: 900;
}

.pricing {
  width: 100%;
  padding: 78px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(26, 18, 13, 0.93), rgba(109, 58, 40, 0.88)),
    url("assets/images/triya-hero-packaging.webp") center / cover;
}

.pricing .section-kicker,
.pricing p {
  color: rgba(255, 255, 255, 0.72);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-table div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-table strong {
  color: var(--gold-light);
}

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

.finish-grid div {
  padding: 24px;
}

.finish-grid svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.finish-grid h3 {
  margin-top: 18px;
}

.finish-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.compare {
  padding-top: 28px;
}

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

.comparison-grid article {
  padding: 28px;
}

.comparison-grid .preferred {
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #8b3340);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.comparison-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.comparison-grid ul,
.quote-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li,
.quote-copy li {
  position: relative;
  margin-top: 11px;
  padding-left: 26px;
  color: var(--muted);
}

.comparison-grid li::before,
.quote-copy li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\2713";
  color: var(--gold);
  font-weight: 900;
}

.preferred li {
  color: rgba(255, 255, 255, 0.78);
}

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

.timeline article {
  min-height: 248px;
  padding: 26px;
}

.timeline span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.timeline h3 {
  margin-top: 24px;
}

.timeline p {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.review-grid figure {
  margin: 0;
  padding: 28px;
}

.review-grid blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.32;
}

.review-grid figcaption {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-section {
  width: 100%;
  padding: 84px max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.92), rgba(243, 222, 195, 0.94)),
    radial-gradient(circle at 88% 18%, rgba(247, 220, 163, 0.5), transparent 34%);
}

.quote-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}

.quote-copy li {
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consultant,
.full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.consultant {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff4e5;
  border-radius: var(--radius);
}

.consultant span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #8b3340);
  border-radius: 50%;
  font-weight: 900;
}

.consultant strong,
.consultant small {
  display: block;
}

.consultant small {
  color: var(--muted);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 138, 61, 0.16);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 48px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: linear-gradient(90deg, #1a120d, #3a2115, #1a120d);
}

.site-footer .brand small {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer-contact {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact a {
  color: inherit;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.inner-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  padding: 154px max(20px, calc((100% - 1180px) / 2)) 64px;
  color: #fff;
  overflow: hidden;
  background: #1a120d;
}

.inner-hero::before,
.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.inner-hero::before {
  background: var(--hero-image, linear-gradient(135deg, #1a120d, #6d3a28)) center / cover;
  opacity: 0.62;
}

.inner-hero::after {
  background: linear-gradient(90deg, rgba(26, 18, 13, 0.92), rgba(85, 47, 26, 0.48));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero h1,
.detail-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.2vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.inner-hero p,
.detail-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.filter-bar a:hover {
  border-color: var(--gold);
  color: var(--ink);
}

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

.info-card,
.case-card,
.article-card,
.cert-card,
.value-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(18, 17, 15, 0.07);
}

.info-card img,
.case-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: linear-gradient(135deg, #191919, #d2b677);
}

.info-card div,
.case-card div,
.article-card div,
.cert-card,
.value-card {
  padding: 24px;
}

.info-card p,
.case-card p,
.article-card p,
.cert-card p,
.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 900;
}

.service-band {
  width: 100%;
  padding: 76px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #8b3340);
}

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

.service-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.service-grid span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding: 148px max(20px, calc((100% - 1180px) / 2)) 74px;
  color: #fff;
  background: linear-gradient(135deg, #1a120d, #6d3a28 58%, #8b3340);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.46fr);
  gap: 28px;
  align-items: start;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.spec-table th,
.spec-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 38%;
  color: var(--ink-soft);
  background: #fff4e5;
}

.mini-quote {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.mini-quote label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.mini-quote input,
.mini-quote textarea,
.mini-quote select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf3;
}

.mini-quote button {
  width: 100%;
  margin-top: 14px;
}

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

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2b170d, #d7ae67);
}

.page-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 76px;
  padding: 38px 42px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, #fff8eb 0%, #f5dfb7 56%, #e7ba73 100%);
  border: 1px solid rgba(185, 138, 61, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 22px 46px rgba(73, 38, 18, 0.12);
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(185, 138, 61, 0.52);
  pointer-events: none;
}

.page-cta h2,
.page-cta p,
.page-cta .section-kicker,
.page-cta .btn {
  position: relative;
  z-index: 1;
}

.page-cta p {
  max-width: 680px;
  color: rgba(61, 42, 28, 0.72);
}

.page-cta .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #4a2617, #7a3e25);
  box-shadow: 0 16px 32px rgba(74, 38, 23, 0.26);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #35e278, #128c4c);
  box-shadow: 0 18px 38px rgba(18, 140, 76, 0.36), 0 0 0 8px rgba(53, 226, 120, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
  isolation: isolate;
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(53, 226, 120, 0.52);
  opacity: 0.8;
  animation: ctaPulse 1.9s ease-out infinite;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 48px rgba(18, 140, 76, 0.44), 0 0 0 10px rgba(53, 226, 120, 0.18);
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-panel a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-panel svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

.contact-panel .icon-contact {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #35e278, #128c4c);
  border-color: rgba(53, 226, 120, 0.45);
  box-shadow: 0 14px 30px rgba(18, 140, 76, 0.28);
}

.contact-panel .icon-contact svg {
  width: 23px;
  height: 23px;
  margin: 0;
  color: #fff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  transform: translate(-50%, 120px);
  max-width: min(520px, calc(100% - 40px));
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #8b3340);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(18, 17, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

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

  .nav-link {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    justify-content: flex-start;
  }

  .nav-link::after {
    bottom: 7px;
    left: 12px;
    right: auto;
    width: 80px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px 12px;
    padding: 4px 0 8px;
    border: 0;
    border-left: 1px solid rgba(185, 138, 61, 0.34);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open > .dropdown-menu,
  .nav-dropdown:hover > .dropdown-menu,
  .nav-dropdown:focus-within > .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    padding: 9px 14px;
    white-space: normal;
  }

  .header-cta {
    justify-self: end;
  }

  .split,
  .pricing,
  .quote-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .finish-grid,
  .review-grid,
  .page-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-hero,
  .spec-layout,
  .page-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 126px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 12vw, 3.35rem);
  }

  .factory-panel,
  .product-grid,
  .finish-grid,
  .comparison-grid,
  .timeline,
  .review-grid,
  .price-table,
  .page-grid,
  .service-grid,
  .gallery-strip,
  .quote-copy ul,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }

  .quote-section,
  .pricing,
  .page-shell,
  .service-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .inner-hero,
  .detail-hero {
    min-height: 0;
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .floating-cta {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }
}







@keyframes ctaPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  80%,
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta::before {
    animation: none;
  }
}




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

.trust-grid .value-card i {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.sample-grid article {
  padding: 26px;
  background: linear-gradient(180deg, #fffaf3, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18, 17, 15, 0.06);
}

.sample-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #b98a3d);
  border-radius: 50%;
  font-weight: 900;
}

.sample-grid p,
.case-meta dd,
.quote-prep li {
  color: var(--muted);
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.case-meta div {
  padding: 12px;
  background: #fff8eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-meta dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 4px 0 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-prep {
  grid-column: 1 / -1;
  padding: 18px;
  background: #fff8eb;
  border: 1px solid rgba(185, 138, 61, 0.28);
  border-radius: var(--radius);
}

.quote-prep strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.quote-prep ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 960px) {
  .trust-grid,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .trust-grid,
  .sample-grid,
  .quote-prep ul,
  .case-meta {
    grid-template-columns: 1fr;
  }
}

/* Heading scale refinements */
.section-heading h2,
.page-cta h2 {
  max-width: 820px;
}

.info-card h3,
.case-card h3,
.article-card h3,
.cert-card h3,
.value-card h3,
.sample-grid h3,
.service-grid h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

.detail-hero h1 {
  max-width: 740px;
}

@media (max-width: 680px) {
  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .inner-hero h1,
  .detail-hero h1 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }
}

.detail-options {
  padding-top: 34px;
}

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

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

.option-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(18, 17, 15, 0.06);
}

.option-card span,
.option-card i {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, #6d3a28, #b98a3d);
  border-radius: 50%;
  font-weight: 900;
}

.option-card i {
  padding: 8px;
}

.option-card h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

.option-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.muted-panel {
  padding-top: 70px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.62), rgba(255, 255, 255, 0));
}

.decision-section {
  padding-top: 22px;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 30px;
  padding: 34px;
  background: linear-gradient(135deg, #fff8eb, #f4dfb9);
  border: 1px solid rgba(185, 138, 61, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(73, 38, 18, 0.1);
}

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

.decision-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 138, 61, 0.2);
  border-radius: 8px;
  color: var(--ink-soft);
}

.quote-prep.compact ul {
  grid-template-columns: 1fr;
}

@media (max-width: 960px) {
  .option-grid,
  .option-grid-wide,
  .decision-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .option-grid,
  .option-grid-wide,
  .decision-panel {
    grid-template-columns: 1fr;
  }
}

/* Industries mega menu */
.industries-dropdown {
  position: static;
}

.industries-dropdown .mega-menu {
  left: 50%;
  width: min(1120px, calc(100vw - 32px));
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 28px 30px;
  transform: translate(-50%, 8px);
  background: #172333;
  border-color: rgba(247, 220, 163, 0.28);
}

.industries-dropdown:hover > .mega-menu,
.industries-dropdown:focus-within > .mega-menu,
.industries-dropdown.is-open > .mega-menu {
  transform: translate(-50%, 0);
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 26px;
}

.dropdown-menu .mega-link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
}

.dropdown-menu .mega-link:hover,
.dropdown-menu .mega-link:focus-visible {
  color: #fff;
  background: transparent;
}

.mega-link svg {
  width: 25px;
  height: 25px;
  color: #f1c500;
  stroke-width: 1.8;
}

.mega-feature {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
}

.mega-feature img {
  width: min(260px, 100%);
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.mega-feature h3 {
  margin-top: 18px;
  font-size: 1.2rem;
}

.mega-feature p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.mega-feature a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 30px;
  color: #172333;
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .industries-dropdown .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-feature {
    display: none;
  }
}

@media (max-width: 960px) {
  .industries-dropdown {
    position: relative;
  }

  .industries-dropdown .mega-menu {
    width: auto;
    transform: none;
  }

  .industries-dropdown:hover > .mega-menu,
  .industries-dropdown:focus-within > .mega-menu,
  .industries-dropdown.is-open > .mega-menu {
    transform: none;
  }

  .mega-links,
  .industry-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mega-links,
  .industry-grid-full {
    grid-template-columns: 1fr;
  }
}

/* Focused Industries menu */
.compact-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industries-dropdown .mega-menu {
  grid-template-columns: minmax(0, 1fr) 300px;
}

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

@media (max-width: 960px) {
  .compact-industries,
  .industry-grid-focused {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .compact-industries,
  .industry-grid-focused {
    grid-template-columns: 1fr;
  }
}

/* Two-column Industries menu */
.industries-two-col-menu {
  width: min(760px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(18, 17, 15, 0.12);
  box-shadow: 0 24px 46px rgba(18, 17, 15, 0.16);
}

.industry-menu-col {
  display: grid;
  align-content: start;
}

.industry-menu-col + .industry-menu-col {
  border-left: 1px solid var(--line);
}

.industry-menu-col strong {
  padding: 14px 20px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 900;
}

.dropdown-menu.industries-two-col-menu a {
  padding: 14px 20px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(18, 17, 15, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  white-space: normal;
}

.dropdown-menu.industries-two-col-menu a:hover,
.dropdown-menu.industries-two-col-menu a:focus-visible {
  color: var(--ink);
  background: #fff8eb;
}

@media (max-width: 960px) {
  .industries-two-col-menu {
    width: auto;
    grid-template-columns: 1fr;
  }

  .industry-menu-col + .industry-menu-col {
    border-left: 0;
  }
}

/* Industries visual mega menu override */
.industries-dropdown {
  position: static;
}

.industries-dropdown .industries-two-col-menu {
  left: 50%;
  width: min(1120px, calc(100vw - 32px));
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 30px 34px;
  transform: translate(-50%, 8px);
  background: #172333;
  color: #fff;
  border: 1px solid rgba(247, 220, 163, 0.26);
  border-radius: 8px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.32);
}

.industries-dropdown:hover > .industries-two-col-menu,
.industries-dropdown:focus-within > .industries-two-col-menu,
.industries-dropdown.is-open > .industries-two-col-menu {
  transform: translate(-50%, 0);
}

.industries-two-col-menu::after {
  content: "";
  display: block;
  width: 100%;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent), url("assets/images/triya-hero-packaging.webp") center top / contain no-repeat;
  border-radius: 8px;
}

.industries-two-col-menu::before {
  content: "Design Boxes With Diversity\A Allow us to design your box with diverse customisation options.\A\A GET A QUOTE";
  white-space: pre-line;
  position: absolute;
  right: 34px;
  top: 214px;
  width: 300px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 700;
  line-height: 1.45;
  pointer-events: none;
}

.industry-menu-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  align-content: start;
}

.industry-menu-col + .industry-menu-col {
  border-left: 0;
}

.industry-menu-col strong {
  display: none;
}

.dropdown-menu.industries-two-col-menu a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
}

.dropdown-menu.industries-two-col-menu a:hover,
.dropdown-menu.industries-two-col-menu a:focus-visible {
  color: #fff;
  background: transparent;
}

.dropdown-menu.industries-two-col-menu a svg {
  width: 26px;
  height: 26px;
  color: #f1c500;
  stroke-width: 1.85;
}

@media (max-width: 1100px) {
  .industries-dropdown .industries-two-col-menu {
    grid-template-columns: 1fr;
  }

  .industries-two-col-menu::before,
  .industries-two-col-menu::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .industries-dropdown {
    position: relative;
  }

  .industries-dropdown .industries-two-col-menu {
    width: auto;
    transform: none;
  }

  .industries-dropdown:hover > .industries-two-col-menu,
  .industries-dropdown:focus-within > .industries-two-col-menu,
  .industries-dropdown.is-open > .industries-two-col-menu {
    transform: none;
  }

  .industry-menu-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Industries warm luxury mega menu refresh */
.industries-dropdown {
  position: static;
}

.industries-dropdown .industries-two-col-menu {
  left: 50%;
  width: min(1080px, calc(100vw - 36px));
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  padding: 28px 32px;
  transform: translate(-50%, 10px);
  background: linear-gradient(135deg, rgba(45, 23, 14, 0.98), rgba(93, 54, 29, 0.97));
  border: 1px solid rgba(240, 190, 103, 0.34);
  border-top: 3px solid #d6a94e;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(20, 9, 4, 0.42);
  color: #fff8ec;
  overflow: hidden;
}

.industries-dropdown:hover > .industries-two-col-menu,
.industries-dropdown:focus-within > .industries-two-col-menu,
.industries-dropdown.is-open > .industries-two-col-menu {
  transform: translate(-50%, 0);
}

.industries-two-col-menu::before,
.industries-two-col-menu::after {
  display: none;
}

.industry-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  align-content: start;
}

.industry-menu-col {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.industry-menu-col + .industry-menu-col {
  border-left: 1px solid rgba(240, 190, 103, 0.18);
  padding-left: 30px;
}

.industry-menu-col strong {
  display: none !important;
}

.dropdown-menu.industries-two-col-menu a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 6px 0;
  color: #fff8ec;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
}

.dropdown-menu.industries-two-col-menu a:hover,
.dropdown-menu.industries-two-col-menu a:focus-visible {
  background: transparent;
  color: #ffd98a;
  transform: translateX(4px);
}

.dropdown-menu.industries-two-col-menu a svg {
  width: 26px;
  height: 26px;
  color: #eec75f;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 8px rgba(238, 199, 95, 0.16));
}

.industry-menu-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  padding: 2px 6px 4px;
}

.industry-menu-feature img {
  width: min(100%, 280px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 20px 24px rgba(17, 8, 3, 0.34));
}

.industry-menu-feature h3 {
  margin: 0 0 8px;
  color: #fff8ec;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.industry-menu-feature p {
  margin: 0 0 18px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.industry-menu-feature > a {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  min-width: 150px;
  padding: 0 24px !important;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe3a4, #d8a245);
  color: #1b0f08 !important;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(159, 99, 33, 0.28);
}

.industry-menu-feature > a:hover,
.industry-menu-feature > a:focus-visible {
  transform: translateY(-2px) !important;
  color: #1b0f08 !important;
}

@media (max-width: 1100px) {
  .industries-dropdown .industries-two-col-menu {
    grid-template-columns: 1fr;
    width: min(760px, calc(100vw - 28px));
  }

  .industry-menu-feature {
    display: none;
  }
}

@media (max-width: 760px) {
  .industries-dropdown .industries-two-col-menu {
    left: 0;
    right: auto;
    width: min(92vw, 420px);
    padding: 22px;
    transform: translateY(10px);
  }

  .industries-dropdown:hover > .industries-two-col-menu,
  .industries-dropdown:focus-within > .industries-two-col-menu,
  .industries-dropdown.is-open > .industries-two-col-menu {
    transform: translateY(0);
  }

  .industry-menu-list {
    grid-template-columns: 1fr;
  }

  .industry-menu-col + .industry-menu-col {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(240, 190, 103, 0.18);
    padding-top: 14px;
  }
}

/* Warm gold catalog mega dropdowns */
.products-dropdown,
.industries-dropdown {
  position: static;
}

.nav-dropdown > .catalog-mega-menu,
.products-dropdown > .catalog-mega-menu,
.industries-dropdown > .catalog-mega-menu,
.industries-dropdown .industries-two-col-menu {
  left: 50%;
  right: auto;
  top: calc(100% + 10px);
  width: min(1148px, calc(100vw - 24px));
  min-width: 0;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 326px;
  gap: 34px;
  padding: 30px 36px 28px;
  transform: translate(-50%, 10px);
  background: linear-gradient(135deg, #241109 0%, #3a1d10 46%, #20100a 100%);
  border: 1px solid rgba(236, 184, 86, 0.32);
  border-top: 3px solid #d4a341;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(24, 10, 3, 0.48);
  overflow: hidden;
}

.nav-dropdown:hover > .catalog-mega-menu,
.nav-dropdown:focus-within > .catalog-mega-menu,
.nav-dropdown.is-open > .catalog-mega-menu,
.industries-dropdown:hover > .industries-two-col-menu,
.industries-dropdown:focus-within > .industries-two-col-menu,
.industries-dropdown.is-open > .industries-two-col-menu {
  transform: translate(-50%, 0);
}

.catalog-mega-menu::before,
.catalog-mega-menu::after,
.industries-two-col-menu::before,
.industries-two-col-menu::after {
  display: none !important;
}

.catalog-mega-list,
.industry-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 34px;
  align-content: start;
  min-width: 0;
}

.industry-menu-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.industry-menu-col {
  display: contents !important;
}

.industry-menu-col + .industry-menu-col {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.industry-menu-col strong {
  display: none !important;
}

.dropdown-menu.catalog-mega-menu a,
.dropdown-menu.industries-two-col-menu a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 3px 0;
  background: transparent;
  color: #fff6e8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
}

.dropdown-menu.catalog-mega-menu a:hover,
.dropdown-menu.catalog-mega-menu a:focus-visible,
.dropdown-menu.industries-two-col-menu a:hover,
.dropdown-menu.industries-two-col-menu a:focus-visible {
  color: #ffd985;
  background: transparent;
  transform: translateX(4px);
}

.dropdown-menu.catalog-mega-menu a svg,
.dropdown-menu.industries-two-col-menu a svg {
  width: 28px;
  height: 28px;
  color: #e7be45;
  stroke-width: 1.75;
  filter: drop-shadow(0 0 8px rgba(231, 190, 69, 0.18));
}

.catalog-mega-feature,
.industry-menu-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
  color: #fff6e8;
  padding: 0 4px;
}

.catalog-mega-feature img,
.industry-menu-feature img {
  width: min(100%, 310px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin: 0 0 18px;
  filter: drop-shadow(0 20px 26px rgba(15, 7, 2, 0.35));
}

.catalog-mega-feature h3,
.industry-menu-feature h3 {
  margin: 0 0 8px;
  color: #fff6e8;
  font-family: inherit;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.catalog-mega-feature p,
.industry-menu-feature p {
  margin: 0 0 20px;
  color: rgba(255, 246, 232, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.catalog-mega-feature > a,
.industry-menu-feature > a {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px !important;
  padding: 0 24px !important;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe7ad, #d6a03d);
  color: #211007 !important;
  font-size: 13px !important;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(147, 86, 23, 0.3);
}

.catalog-mega-feature > a:hover,
.catalog-mega-feature > a:focus-visible,
.industry-menu-feature > a:hover,
.industry-menu-feature > a:focus-visible {
  transform: translateY(-2px) !important;
  color: #211007 !important;
}

@media (max-width: 1120px) {
  .nav-dropdown > .catalog-mega-menu,
  .products-dropdown > .catalog-mega-menu,
  .industries-dropdown > .catalog-mega-menu,
  .industries-dropdown .industries-two-col-menu {
    width: min(820px, calc(100vw - 24px));
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .catalog-mega-feature,
  .industry-menu-feature {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-dropdown > .catalog-mega-menu,
  .products-dropdown > .catalog-mega-menu,
  .industries-dropdown > .catalog-mega-menu,
  .industries-dropdown .industries-two-col-menu {
    left: 0;
    width: min(92vw, 430px);
    padding: 22px;
    transform: translateY(10px);
  }

  .nav-dropdown:hover > .catalog-mega-menu,
  .nav-dropdown:focus-within > .catalog-mega-menu,
  .nav-dropdown.is-open > .catalog-mega-menu,
  .industries-dropdown:hover > .industries-two-col-menu,
  .industries-dropdown:focus-within > .industries-two-col-menu,
  .industries-dropdown.is-open > .industries-two-col-menu {
    transform: translateY(0);
  }

  .catalog-mega-list,
  .industry-menu-list {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* Mega menu feature text refinement */
.catalog-mega-feature h3,
.industry-menu-feature h3 {
  font-size: 18px !important;
  line-height: 1.22 !important;
  margin-bottom: 7px !important;
}

.catalog-mega-feature p,
.industry-menu-feature p {
  font-size: 12px !important;
  line-height: 1.45 !important;
  max-width: 260px;
  margin-bottom: 16px !important;
}

.catalog-mega-feature > a,
.industry-menu-feature > a {
  min-height: 40px !important;
  min-width: 132px !important;
  font-size: 12px !important;
}

/* Mega menu quote visibility and transparent product image fit */
.catalog-mega-feature img,
.industry-menu-feature img {
  width: min(100%, 292px) !important;
  max-height: 185px;
  object-fit: contain;
  margin-bottom: 10px !important;
}

.site-header .catalog-mega-feature > a[href="index.html#quote"],
.site-header .industry-menu-feature > a[href="index.html#quote"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 150px !important;
  min-height: 44px !important;
  margin-top: 4px !important;
  padding: 0 24px !important;
  border: 1px solid rgba(255, 244, 220, 0.72) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #fff1cc 0%, #e4af4d 100%) !important;
  color: #241107 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 28px rgba(214, 160, 61, 0.38) !important;
  z-index: 5 !important;
}

.site-header .products-mega-list > a[href="index.html#quote"] {
  min-height: 44px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 230, 174, 0.58) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(255, 232, 177, 0.98), rgba(213, 156, 61, 0.98)) !important;
  color: #241107 !important;
  box-shadow: 0 14px 28px rgba(20, 8, 2, 0.22) !important;
}

.site-header .products-mega-list > a[href="index.html#quote"] svg {
  color: #241107 !important;
}

.site-header .products-mega-list > a[href="index.html#quote"]:hover,
.site-header .products-mega-list > a[href="index.html#quote"]:focus-visible,
.site-header .catalog-mega-feature > a[href="index.html#quote"]:hover,
.site-header .catalog-mega-feature > a[href="index.html#quote"]:focus-visible,
.site-header .industry-menu-feature > a[href="index.html#quote"]:hover,
.site-header .industry-menu-feature > a[href="index.html#quote"]:focus-visible {
  transform: translateY(-2px) !important;
  color: #241107 !important;
}


/* Mega menu category layout: two vertical columns */
.site-header .catalog-mega-list,
.site-header .industry-menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px 42px !important;
}

.site-header .catalog-mega-list > a,
.site-header .industry-menu-list > a,
.site-header .industry-menu-col > a {
  font-size: 14px !important;
  line-height: 1.3 !important;
  min-height: 44px !important;
}

.site-header .catalog-mega-list > a svg,
.site-header .industry-menu-list > a svg,
.site-header .industry-menu-col > a svg {
  width: 29px !important;
  height: 29px !important;
}

@media (max-width: 760px) {
  .site-header .catalog-mega-list,
  .site-header .industry-menu-list {
    grid-template-columns: 1fr !important;
  }
}

/* Industry detail pages — category landing system */
.industry-detail-page {
  background: #fff;
}

.industry-page-wrap {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.industry-title-band {
  padding: 130px 0 35px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 163, 76, .24), transparent 30%),
    #1c100a;
}

.industry-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.industry-breadcrumb a:hover { color: #f7dca3; }
.industry-breadcrumb strong { color: rgba(255,255,255,.92); font-weight: 600; }
.industry-overline,
.industry-kicker {
  margin: 0 0 10px;
  color: #d4a353;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.industry-title-band h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.industry-hero {
  padding: 60px 0 70px;
  background:
    linear-gradient(90deg, rgba(255,248,238,.97), rgba(255,255,255,.72)),
    repeating-linear-gradient(135deg, #f8ead8 0 1px, transparent 1px 12px);
  border-bottom: 1px solid #ead7bd;
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .9fr) minmax(330px, .72fr);
  gap: 38px;
  align-items: center;
}

.industry-discount-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #6d3a28;
  background: #f4dfbd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.industry-hero-copy h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.industry-hero-copy > p { margin: 0; color: #6e5848; font-size: 16px; }
.industry-hero-copy ul { display: grid; gap: 9px; margin: 24px 0 28px; padding: 0; list-style: none; }
.industry-hero-copy li { display: flex; gap: 9px; align-items: center; color: #3d2a1d; font-size: 14px; font-weight: 700; }
.industry-hero-copy li svg { width: 18px; color: #a36c24; }
.industry-primary-btn,
.industry-bottom-cta a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: #6d3a28;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.industry-primary-btn:hover,
.industry-bottom-cta a:hover { background: #8b4a32; transform: translateY(-2px); }
.industry-primary-btn svg,
.industry-bottom-cta a svg { width: 17px; }

.industry-hero-visual { position: relative; min-width: 0; }
.industry-hero-visual img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
  filter: drop-shadow(0 26px 25px rgba(67,36,18,.19));
}
.industry-offer-badge {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 0;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #fff8ed;
  background: #8b3340;
  border: 5px solid #fff2dc;
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 12px 30px rgba(83,35,29,.24);
}
.industry-offer-badge b { font-size: 18px; line-height: 1; }
.industry-offer-badge small { max-width: 60px; font-size: 10px; line-height: 1.15; }

.industry-quote-card {
  display: grid;
  gap: 13px;
  padding: 28px;
  color: #fff;
  background: #23140d;
  border-top: 4px solid #d0a04e;
  border-radius: 5px;
  box-shadow: 0 24px 55px rgba(49,28,16,.2);
}
.industry-quote-card > div:first-child span { color: #e5b868; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.industry-quote-card h2 { margin: 3px 0 3px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; }
.industry-quote-card p { margin: 0 0 5px; color: rgba(255,255,255,.6); font-size: 12px; }
.industry-quote-card label { display: grid; gap: 5px; color: rgba(255,255,255,.73); font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.industry-quote-card input,
.industry-quote-card textarea {
  width: 100%;
  padding: 11px 12px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 3px;
  outline: 0;
  resize: vertical;
}
.industry-quote-card input:focus,
.industry-quote-card textarea:focus { border-color: #dfb462; background: rgba(255,255,255,.1); }
.industry-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.industry-quote-card button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  color: #24150e;
  background: linear-gradient(135deg, #f7dca3, #c6903f);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.industry-quote-card button:hover { filter: brightness(1.07); }
.industry-quote-card button svg { width: 16px; }

.industry-products-section,
.industry-detail-section,
.industry-material-section { padding: 90px 0; }
.industry-catalog-intro {
  max-width: 820px;
  margin: 0 auto 45px;
  text-align: center;
}
.industry-catalog-intro > span {
  color: #a06c29;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.industry-catalog-intro h2 {
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.03em;
}
.industry-catalog-intro p {
  margin: 0;
  color: #786454;
  font-size: 15px;
}
.industry-trade-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 38px;
  color: #fff;
  background: #21130c;
  border-top: 3px solid #c6903f;
}
.industry-trade-strip > div {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
  padding: 19px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.industry-trade-strip > div:last-child { border-right: 0; }
.industry-trade-strip svg { flex: 0 0 25px; width: 25px; height: 25px; color: #e1b461; }
.industry-trade-strip span,
.industry-trade-strip b,
.industry-trade-strip small { display: block; }
.industry-trade-strip b { font-size: 13px; }
.industry-trade-strip small { margin-top: 2px; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.25; }
.industry-section-head {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.industry-section-head > div { max-width: 680px; }
.industry-section-head span { color: #a06c29; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.industry-section-head h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.03em;
}
.industry-section-head > p { max-width: 430px; margin: 0; color: #786454; font-size: 14px; }
.industry-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-product-group { margin-top: 55px; scroll-margin-top: 110px; }
.industry-product-group:first-of-type { margin-top: 42px; }
.industry-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 30px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9c19f;
}
.industry-group-heading > span {
  grid-column: 1 / -1;
  color: #a06c29;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.industry-group-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}
.industry-group-heading p { margin: 0; color: #806b5a; font-size: 12px; }
.industry-product-card { overflow: hidden; background: #fffaf3; border: 1px solid #ead7bd; transition: transform .2s ease, box-shadow .2s ease; }
.industry-product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(78,44,23,.12); }
.industry-product-media { position: relative; display: block; overflow: hidden; background: #f3e4cf; }
.industry-product-media img { width: 100%; aspect-ratio: 1.25; object-fit: contain; transition: transform .35s ease; }
.industry-product-card:hover img { transform: scale(1.035); }
.industry-product-media span { position: absolute; top: 13px; left: 13px; padding: 5px 9px; color: #fff; background: #6d3a28; border-radius: 2px; font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.industry-product-card > div { padding: 20px; }
.industry-product-card h3 { margin: 0 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; }
.industry-product-card p { margin: 0 0 16px; color: #7c6757; font-size: 13px; }
.industry-product-card > div a { display: inline-flex; gap: 7px; align-items: center; color: #713e29; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.industry-product-card > div a svg { width: 15px; }

.industry-detail-section { background: #fff8ee; border-block: 1px solid #ead7bd; }
.industry-detail-grid { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: 65px; align-items: start; }
.industry-tab-rail { position: sticky; top: 110px; display: grid; padding: 8px 0; background: #fff; border: 1px solid #ead7bd; }
.industry-tab-rail a { padding: 15px 18px; color: #7b6556; border-left: 3px solid transparent; font-size: 13px; font-weight: 800; }
.industry-tab-rail a:hover,
.industry-tab-rail a.is-active { color: #6d3a28; background: #fff8ee; border-left-color: #c6903f; }
.industry-rich-copy { max-width: 840px; }
.industry-rich-copy > h2,
.industry-faq h2 { margin: 8px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 50px); font-weight: 500; line-height: 1.07; letter-spacing: -.03em; }
.industry-rich-copy > p { color: #6f5b4d; font-size: 16px; line-height: 1.8; }
.industry-copy-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 36px 0; }
.industry-copy-columns > div { padding: 25px; background: #fff; border-top: 3px solid #c6903f; box-shadow: 0 12px 34px rgba(75,45,25,.07); }
.industry-copy-columns h3 { margin: 0 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; }
.industry-copy-columns p { margin: 0; color: #786454; font-size: 14px; }
.industry-callout { display: flex; gap: 18px; align-items: center; margin: 35px 0 75px; padding: 24px; color: #fff; background: #6d3a28; }
.industry-callout > svg { flex: 0 0 44px; width: 44px; height: 44px; color: #f7dca3; }
.industry-callout strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; }
.industry-callout p { margin: 4px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.industry-faq { scroll-margin-top: 110px; }
.industry-faq details { background: #fff; border: 1px solid #ead7bd; border-bottom: 0; }
.industry-faq details:last-child { border-bottom: 1px solid #ead7bd; }
.industry-faq summary { display: flex; align-items: center; justify-content: space-between; padding: 19px 21px; cursor: pointer; color: #2d1d13; font-size: 15px; font-weight: 800; list-style: none; }
.industry-faq summary::-webkit-details-marker { display: none; }
.industry-faq summary svg { width: 18px; transition: transform .2s ease; }
.industry-faq details[open] summary svg { transform: rotate(45deg); }
.industry-faq details p { margin: 0; padding: 0 21px 20px; color: #776254; font-size: 14px; line-height: 1.7; }

.industry-process-section { padding: 90px 0; color: #fff; background: #21130c; }
.industry-section-head.light span { color: #e2b765; }
.industry-section-head.light p { color: rgba(255,255,255,.58); }
.industry-process-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid rgba(255,255,255,.14); }
.industry-process-grid article { position: relative; min-width: 0; padding: 31px 20px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.industry-process-grid article:last-child { border-right: 0; }
.industry-process-grid b { position: absolute; top: 17px; right: 15px; color: rgba(255,255,255,.13); font-family: Georgia, serif; font-size: 31px; }
.industry-process-grid svg { width: 27px; height: 27px; color: #e1b461; }
.industry-process-grid h3 { margin: 25px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; }
.industry-process-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; }

.industry-material-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.industry-material-grid article { padding: 28px 22px; background: #fffaf3; border: 1px solid #ead7bd; }
.industry-material-grid svg { width: 28px; height: 28px; color: #a36c24; }
.industry-material-grid h3 { margin: 19px 0 6px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.industry-material-grid p { margin: 0; color: #806b5a; font-size: 13px; }
.industry-bottom-cta { padding: 72px 0; color: #fff; background: #6d3a28; }
.industry-bottom-cta .industry-page-wrap { display: flex; gap: 40px; align-items: center; justify-content: space-between; }
.industry-bottom-cta span { color: #f0ca80; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.industry-bottom-cta h2 { max-width: 760px; margin: 8px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 4vw, 47px); font-weight: 500; line-height: 1.06; }
.industry-bottom-cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); }
.industry-bottom-cta a { flex: 0 0 auto; color: #26140c; background: #f5d99e; }
.industry-bottom-cta a:hover { color: #26140c; background: #fff0c8; }
.industry-detail-page .site-footer { margin-top: 0; }

/* Food industry page: reference-site catalog layout, adapted to Triya Gift */
.industry-clone-title-band {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: center;
  padding: 112px 0 38px;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 22, 20, .67), rgba(25, 22, 20, .67)),
    var(--industry-banner) center 47% / cover no-repeat;
}
.industry-clone-title-band::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #6d3a28, #d0a04e, #6d3a28);
}
.industry-clone-title-band .industry-page-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.industry-clone-title-band .industry-breadcrumb {
  order: 2;
  justify-content: center;
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
}
.industry-clone-title-band .industry-breadcrumb strong { color: #f4cc69; }
.industry-clone-title-band .industry-overline { display: none; }
.industry-clone-title-band h1 {
  order: 1;
  color: #f3c946;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -.035em;
}
.industry-clone-page .industry-products-section {
  padding: 58px 0 88px;
  background: #fff;
}
.industry-clone-page .industry-catalog-intro {
  max-width: 920px;
  margin-bottom: 38px;
}
.industry-clone-page .industry-catalog-intro > span {
  color: #6d3a28;
}
.industry-clone-page .industry-catalog-intro h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 750;
  letter-spacing: -.03em;
}
.industry-clone-page .industry-catalog-intro p {
  max-width: 800px;
  margin-inline: auto;
  color: #6f6b68;
  line-height: 1.7;
}
.industry-clone-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.industry-clone-product-grid .industry-product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  box-shadow: none;
}
.industry-clone-product-grid .industry-product-card:hover {
  transform: translateY(-4px);
  border-color: #c9a14d;
  box-shadow: 0 14px 34px rgba(25, 35, 45, .12);
}
.industry-clone-product-grid .industry-product-media {
  background: #f6f1e9;
  border-bottom: 1px solid #e2e2e2;
}
.industry-clone-product-grid .industry-product-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.industry-clone-product-grid .industry-product-media span {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  padding: 9px 13px;
  color: #fff;
  background: #182433;
  border-radius: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.industry-clone-product-grid .industry-product-card > div {
  padding: 17px 18px 19px;
  text-align: center;
}
.industry-clone-product-grid .industry-product-card h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}
.industry-clone-product-grid .industry-product-card p {
  margin: 8px 0 0;
  color: #6f6f6f;
  font-size: 12px;
  line-height: 1.55;
}
.industry-clone-product-grid .industry-product-card > div a {
  margin-top: 13px;
  color: #7c432f;
  font-size: 11px;
}
.industry-clone-page .industry-detail-section {
  background: #f7f7f7;
  border-color: #e1e1e1;
}
.industry-clone-page .industry-tab-rail {
  border-color: #dedede;
  border-radius: 8px;
  overflow: hidden;
}
.industry-clone-page .industry-tab-rail a.is-active {
  color: #fff;
  background: #6d3a28;
  border-left-color: #d0a04e;
}
.industry-artwork-section,
.industry-related-section {
  padding: 90px 0;
  background: #fff;
}
.industry-artwork-section {
  border-top: 1px solid #ead7bd;
}
.industry-artwork-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e2d2bc;
}
.industry-artwork-grid article {
  position: relative;
  min-width: 0;
  padding: 28px 20px 25px;
  border-right: 1px solid #e2d2bc;
}
.industry-artwork-grid article:last-child { border-right: 0; }
.industry-artwork-grid b {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #e5d7c4;
  font-family: Georgia, serif;
  font-size: 28px;
}
.industry-artwork-grid svg {
  width: 30px;
  height: 30px;
  color: #a36c24;
}
.industry-artwork-grid h3 {
  margin: 24px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}
.industry-artwork-grid p {
  margin: 0;
  color: #786454;
  font-size: 12px;
  line-height: 1.55;
}
.industry-review-section {
  padding: 90px 0;
  color: #fff;
  background: #21130c;
}
.industry-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-review-grid article {
  padding: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
}
.industry-stars {
  color: #e8bd62;
  font-size: 17px;
  letter-spacing: .12em;
}
.industry-review-grid blockquote {
  margin: 18px 0 24px;
  color: rgba(255,255,255,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}
.industry-review-grid strong,
.industry-review-grid small { display: block; }
.industry-review-grid strong { color: #fff; font-size: 13px; }
.industry-review-grid small { margin-top: 3px; color: rgba(255,255,255,.48); font-size: 11px; }
.industry-related-section {
  background: #f7f7f7;
  border-top: 1px solid #e2e2e2;
}

@media (max-width: 1080px) {
  .industry-hero-grid { grid-template-columns: 1fr 1fr; }
  .industry-quote-card { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .industry-quote-card > div:first-child,
  .industry-quote-card > label:last-of-type,
  .industry-quote-card button { grid-column: 1 / -1; }
  .industry-product-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-process-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-process-grid article { border-bottom: 1px solid rgba(255,255,255,.12); }
  .industry-artwork-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-artwork-grid article { border-bottom: 1px solid #e2d2bc; }
}

@media (max-width: 760px) {
  .industry-page-wrap { width: min(100% - 28px, 1220px); }
  .industry-title-band { padding: 112px 0 30px; }
  .industry-title-band h1 { font-size: 39px; }
  .industry-hero { padding: 45px 0; }
  .industry-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .industry-hero-visual { order: -1; }
  .industry-hero-visual img { max-height: 340px; }
  .industry-offer-badge { width: 82px; height: 82px; }
  .industry-offer-badge b { font-size: 14px; }
  .industry-quote-card { grid-column: auto; grid-template-columns: 1fr; padding: 23px; }
  .industry-quote-card > div:first-child,
  .industry-quote-card > label:last-of-type,
  .industry-quote-card button { grid-column: auto; }
  .industry-form-row { grid-template-columns: 1fr; }
  .industry-products-section,
  .industry-detail-section,
  .industry-material-section,
  .industry-process-section { padding: 65px 0; }
  .industry-section-head { display: block; margin-bottom: 30px; }
  .industry-section-head > p { margin-top: 15px; }
  .industry-product-grid { grid-template-columns: 1fr; }
  .industry-group-heading { display: block; }
  .industry-group-heading h3 { margin: 5px 0 8px; }
  .industry-trade-strip { grid-template-columns: 1fr 1fr; }
  .industry-trade-strip > div:nth-child(2) { border-right: 0; }
  .industry-trade-strip > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .industry-detail-grid { grid-template-columns: 1fr; gap: 35px; }
  .industry-tab-rail { position: static; display: flex; overflow-x: auto; }
  .industry-tab-rail a { min-width: max-content; border-left: 0; border-bottom: 3px solid transparent; }
  .industry-tab-rail a.is-active { border-bottom-color: #c6903f; }
  .industry-copy-columns { grid-template-columns: 1fr; }
  .industry-process-grid { grid-template-columns: 1fr 1fr; }
  .industry-material-grid { grid-template-columns: 1fr 1fr; }
  .industry-artwork-section,
  .industry-related-section,
  .industry-review-section { padding: 65px 0; }
  .industry-artwork-grid { grid-template-columns: 1fr 1fr; }
  .industry-review-grid { grid-template-columns: 1fr; }
  .industry-bottom-cta .industry-page-wrap { display: block; }
  .industry-bottom-cta a { margin-top: 28px; }
  .industry-clone-title-band { min-height: 250px; padding-top: 98px; }
  .industry-clone-title-band h1 { font-size: 36px; }
  .industry-clone-product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .industry-clone-product-grid .industry-product-card h3 { font-size: 15px; }
  .industry-clone-product-grid .industry-product-card p { display: none; }
  .industry-clone-product-grid .industry-product-card > div a { display: none; }
}

@media (max-width: 440px) {
  .industry-process-grid,
  .industry-material-grid { grid-template-columns: 1fr; }
}
