/* ==========================================================================
   Mermer Foods / YOPPY — Theme v2.0
   Design system: Anton display + Inter body, warm paper surfaces,
   deep leaf greens, gold accents, soft layered shadows, scroll reveals.
   ========================================================================== */

:root {
  --ink: #1d1510;
  --muted: #6c5d52;
  --paper: #fffaf1;
  --cream: #f6ecd9;
  --sand: #dfcaa7;
  --leaf: #12683b;
  --leaf-bright: #1a8a4f;
  --leaf-dark: #073d25;
  --deep: #042a1b;
  --red: #c2182b;
  --red-dark: #9e1322;
  --gold: #d59b35;
  --gold-light: #f3d9a4;
  --white: #ffffff;
  --line: rgba(32, 24, 21, 0.12);
  --shadow-sm: 0 2px 8px rgba(32, 24, 21, 0.06), 0 8px 24px rgba(32, 24, 21, 0.07);
  --shadow: 0 4px 14px rgba(32, 24, 21, 0.07), 0 22px 56px rgba(32, 24, 21, 0.13);
  --shadow-lg: 0 8px 24px rgba(32, 24, 21, 0.10), 0 36px 90px rgba(32, 24, 21, 0.20);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: "Anton", Impact, "Arial Black", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(18, 104, 59, 0.55);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(32, 24, 21, 0.12);
}

.top-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-height: 60px;
  padding: 0.5rem 1rem;
  overflow: hidden;
  background: linear-gradient(90deg, var(--deep), var(--leaf-dark) 55%, #0a4a2e);
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  text-align: center;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.site-header.is-scrolled .top-strip {
  max-height: 0;
  padding-block: 0;
}

.top-strip a {
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-shell,
.mega-menu,
.section,
.trust-bar,
.catalog-hero,
.product-detail-hero,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 128px;
  height: auto;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.nav-link {
  position: relative;
  border: 0;
  padding: 0.3rem 0;
  background: transparent;
  color: #4d4138;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  content: "";
  transition: right 0.25s var(--ease-out);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  right: 0;
}

.nav-actions,
.hero-actions,
.product-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(191, 30, 46, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(191, 30, 46, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--leaf-bright), var(--leaf-dark));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(18, 104, 59, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 16px 36px rgba(18, 104, 59, 0.38);
}

.btn-ghost {
  border-color: rgba(32, 24, 21, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--leaf);
  background: var(--white);
  color: var(--leaf-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Mega menu
   -------------------------------------------------------------------------- */

.mega-menu {
  display: none;
  grid-template-columns: 1.15fr repeat(2, 1fr);
  gap: 1rem;
  padding: 1.1rem 0 1.3rem;
}

body.products-open .mega-menu,
.site-header:focus-within .mega-menu {
  display: grid;
  animation: menu-in 0.3s var(--ease-out);
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu h2 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.mega-menu p {
  margin: 0;
  color: var(--muted);
}

.menu-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-kicker::before,
.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  content: "";
  flex: 0 0 auto;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.mega-card {
  display: grid;
  align-content: start;
  min-height: 112px;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s ease;
}

.mega-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 104, 59, 0.4);
  box-shadow: var(--shadow);
}

.mega-card strong {
  color: var(--leaf-dark);
}

.mega-card span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-menu-links {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--leaf-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1100ms ease, transform 6s var(--ease-out);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.93) 33%, rgba(255, 250, 241, 0.45) 58%, rgba(255, 250, 241, 0.04) 88%),
    linear-gradient(180deg, rgba(7, 61, 37, 0.04), rgba(7, 61, 37, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: min(800px, calc(100vh - 72px));
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero h1,
.catalog-hero h1,
.product-copy h1 {
  margin: 0 0 1.1rem;
  color: var(--leaf-dark);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 680px;
}

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

.hero-statement {
  max-width: 560px;
  margin: 0 0 1.4rem;
  color: #30231d;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 750;
  line-height: 1.4;
}

.hero-statement span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--leaf-dark);
  font-size: 1.12em;
  font-weight: 900;
}

/* Staggered entrance for hero content */
.js-reveal .hero-content > * {
  animation: hero-rise 0.9s var(--ease-out) both;
}

.js-reveal .hero-content > :nth-child(1) { animation-delay: 0.05s; }
.js-reveal .hero-content > :nth-child(2) { animation-delay: 0.15s; }
.js-reveal .hero-content > :nth-child(3) { animation-delay: 0.28s; }
.js-reveal .hero-content > :nth-child(4) { animation-delay: 0.4s; }
.js-reveal .hero-content > :nth-child(5) { animation-delay: 0.5s; }

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hero-badges span,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(18, 104, 59, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-badges span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-dots {
  position: absolute;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(70px, 9vw, 96px);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(7, 61, 37, 0.4);
  cursor: pointer;
  transition: width 0.3s var(--ease-out), background 0.3s ease;
}

.hero-dots button.is-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateY(-50%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-lg);
}

.trust-bar div {
  position: relative;
  min-height: 126px;
  padding: 1.3rem 1.25rem 1.2rem;
  background: rgba(255, 253, 248, 0.97);
  transition: background 0.25s ease;
}

.trust-bar div:hover {
  background: var(--white);
}

.trust-bar div::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(213, 155, 53, 0));
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.trust-bar div:hover::before {
  opacity: 1;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.trust-bar span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 0.7rem;
  background: var(--leaf);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding-block: clamp(3.6rem, 7vw, 6.2rem);
}

.section-warm {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f8efdf 0%, #fff9ee 100%);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(4, 32, 20, 0.97), rgba(20, 13, 10, 0.95)),
    url("../images/product-sriracha-chili.jpg") center / cover fixed;
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark strong,
.section-dark p,
.section-dark .process-steps p,
.section-dark .process-steps span {
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--gold-light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-layout h2,
.contact-copy h2,
.category-intro h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.022em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.section-heading p,
.split-layout p,
.contact-copy p,
.category-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.section-dark .section-heading p,
.section-dark .split-layout p {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Card grids
   -------------------------------------------------------------------------- */

.quality-grid,
.buyer-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.quality-grid article,
.buyer-grid article,
.detail-grid article,
.quote-form,
.category-sidebar,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quality-grid article,
.buyer-grid article,
.detail-grid article {
  padding: 1.5rem 1.35rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
}

.quality-grid article:hover,
.buyer-grid article:hover,
.detail-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 104, 59, 0.32);
  box-shadow: var(--shadow);
}

.quality-grid h3,
.buyer-grid h3,
.detail-grid h2,
.product-card h3 {
  margin: 0.7rem 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.detail-grid h2 {
  font-size: 1.25rem;
}

.quality-grid p,
.buyer-grid p,
.detail-grid p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

/* Icon badges — real SVG icons via CSS masks */

.icon-badge {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf5ee, #f8efdb);
  border: 1px solid rgba(18, 104, 59, 0.14);
}

.icon-badge::before {
  display: block;
  width: 26px;
  height: 26px;
  background: var(--leaf-dark);
  content: "";
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.leaf-icon::before,
.trust-icon-1 {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
}

.drop-icon::before,
.trust-icon-3 {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z'/%3E%3C/svg%3E");
}

.spice-icon::before,
.trust-icon-2 {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z'/%3E%3C/svg%3E");
}

.shield-icon::before,
.trust-icon-4 {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Range showcase
   -------------------------------------------------------------------------- */

.range-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.range-panel {
  position: relative;
  display: flex;
  min-height: clamp(230px, 22vw, 300px);
  overflow: hidden;
  border: 1px solid rgba(26, 24, 21, 0.12);
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.range-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.coated-panel {
  background-image: url("../images/product-sour-cream-onion.jpg");
}

.marinated-panel {
  background-image: url("../images/product-truffle-cheese.jpg");
}

.range-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.001);
  transition: opacity 1.2s ease-in-out, transform 4s var(--ease-out);
}

.range-slide.is-active {
  opacity: 1;
}

.range-panel:hover .range-slide.is-active {
  transform: scale(1.045);
}

.range-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.8) 52%, rgba(255, 250, 241, 0.06) 86%);
  content: "";
}

.range-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: min(62%, 420px);
  min-height: auto;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 1.8rem;
}

.range-copy span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.range-copy span::before {
  display: inline-block;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  content: "";
}

.range-copy h3 {
  margin: 0.5rem 0 0.6rem;
  color: var(--leaf-dark);
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.018em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.range-copy p {
  margin: 0 0 1rem;
  color: #4a3c33;
  font-size: 0.93rem;
  line-height: 1.5;
}

.range-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--leaf-dark);
  border-radius: var(--radius-pill);
  color: var(--leaf-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease;
}

.range-copy strong::after {
  content: "\2192";
  font-size: 1.05em;
  transition: transform 0.22s var(--ease-out);
}

.range-panel:hover .range-copy strong {
  background: var(--leaf-dark);
  color: var(--white);
}

.range-panel:hover .range-copy strong::after {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Split layouts / process steps
   -------------------------------------------------------------------------- */

.split-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-weight: 650;
}

.benefit-list li::before {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.feature-image-stack {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 1rem;
  align-items: end;
}

.feature-image-stack img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-image-stack img:first-child {
  height: 450px;
}

.coated-products-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 61, 37, 0.96), rgba(4, 32, 20, 0.94)),
    url("../images/product-hot-spicy.jpg") center / cover;
  color: var(--white);
}

.coated-products-section .split-layout {
  align-items: stretch;
}

.coated-products-section .eyebrow,
.coated-products-section h2,
.coated-products-section strong,
.coated-products-section p,
.coated-products-section .process-steps p,
.coated-products-section .process-steps span {
  color: var(--white);
}

.coated-products-section .eyebrow,
.about-history-section .eyebrow {
  color: var(--gold-light);
}

.coated-products-section .section-heading p,
.about-history-section .section-heading p {
  color: rgba(255, 255, 255, 0.85);
}

.about-history-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 61, 37, 0.96), rgba(4, 32, 20, 0.94)),
    url("../images/product-bbq-beef.jpg") center / cover;
  color: var(--white);
}

.about-history-section .eyebrow,
.about-history-section h2,
.about-history-section strong,
.about-history-section p,
.about-history-section .process-steps p,
.about-history-section .process-steps span {
  color: var(--white);
}

.light-process {
  margin-top: 1.35rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.light-process article {
  background: rgba(255, 255, 255, 0.08);
}

.light-process span {
  color: var(--gold-light);
}

.light-process p {
  color: rgba(255, 255, 255, 0.82);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.18);
}

.process-steps article {
  padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.11);
  transition: background 0.25s ease;
}

.process-steps article:hover {
  background: rgba(255, 255, 255, 0.17);
}

.process-steps span {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  opacity: 0.9;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 104, 59, 0.35);
  box-shadow: var(--shadow);
}

.product-card-image {
  display: grid;
  width: 100%;
  height: clamp(260px, 24vw, 330px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.86), rgba(244, 234, 215, 0.5) 44%, rgba(18, 104, 59, 0.16) 100%),
    var(--cream);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.product-card-summary {
  margin-bottom: 0.85rem;
}

.product-card-details {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px dashed rgba(32, 24, 21, 0.16);
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-card-details strong {
  color: var(--ink);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--red);
  font-weight: 950;
  text-decoration: none;
}

.product-card a::after {
  content: "\2192";
  transition: transform 0.22s var(--ease-out);
}

.product-card a:hover::after {
  transform: translateX(4px);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
}

.card-tags .tag {
  min-height: 28px;
  padding: 0.32rem 0.55rem;
  font-size: 0.67rem;
  background: rgba(18, 104, 59, 0.07);
  border-color: rgba(18, 104, 59, 0.16);
}

.card-tags .tag:first-child {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   About / FAQ
   -------------------------------------------------------------------------- */

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

.faq-accordion {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(18, 104, 59, 0.35);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 1.2rem;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(194, 24, 43, 0.09);
  color: var(--red);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  animation: faq-in 0.35s var(--ease-out);
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.buyer-grid span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Contact + forms
   -------------------------------------------------------------------------- */

.contact-section {
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-weight: 800;
}

.contact-lines a {
  width: fit-content;
  text-decoration: none;
  border-bottom: 2px solid rgba(213, 155, 53, 0.5);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-lines a:hover {
  color: var(--leaf-dark);
  border-color: var(--gold);
}

.about-cta-panel {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-cta-panel strong {
  color: var(--leaf-dark);
  font-size: 1.3rem;
}

.about-cta-panel p {
  margin: 0;
  color: var(--muted);
}

.about-cta-panel .btn {
  justify-self: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
  padding: 1.7rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-form .full,
.quote-form .btn,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  background: rgba(18, 104, 59, 0.1);
  border: 1px solid rgba(18, 104, 59, 0.3);
  color: var(--leaf-dark);
}

.form-status.is-error {
  display: block;
  background: rgba(194, 24, 43, 0.08);
  border: 1px solid rgba(194, 24, 43, 0.3);
  color: var(--red-dark);
}

.btn[data-loading] {
  opacity: 0.7;
  pointer-events: none;
}

.product-interest {
  display: grid;
  gap: 0.7rem;
}

.interest-label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.multi-select {
  position: relative;
}

.multi-select-trigger {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.multi-select-trigger:hover {
  border-color: var(--leaf);
}

.multi-select-trigger::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.multi-select-trigger[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-2px);
}

.multi-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.4rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.55rem;
  max-height: 280px;
  overflow: auto;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.interest-choice {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.62rem !important;
  min-height: 44px;
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(32, 24, 21, 0.1);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.interest-choice:hover {
  border-color: rgba(18, 104, 59, 0.4);
  background: rgba(18, 104, 59, 0.04);
}

.interest-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--leaf);
  flex: 0 0 auto;
}

.interest-choice span {
  font-weight: 800;
}

.selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 34px;
}

.selected-chip,
.chip-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.36rem 0.62rem;
  border: 1px solid rgba(18, 104, 59, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(18, 104, 59, 0.08);
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.chip-placeholder {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(18, 104, 59, 0.12);
}

.quote-form .btn {
  justify-self: start;
  margin-top: 0.4rem;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer-outer {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  background:
    linear-gradient(160deg, var(--deep) 0%, #06301f 60%, #073a26 100%);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 0.9fr;
  gap: 2.2rem;
  padding-block: clamp(2.6rem, 5vw, 3.8rem) 2.2rem;
  border-top: 0;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.site-footer strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer a,
.site-footer span,
.site-footer p {
  margin: 0.4rem 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-tagline {
  max-width: 360px;
  line-height: 1.6;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-block: 1.1rem 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-bottom span {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Catalog / product detail
   -------------------------------------------------------------------------- */

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.catalog-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.catalog-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.catalog-hero img {
  width: 100%;
  height: 540px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.category-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.category-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.category-sidebar a {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-sidebar a:hover {
  border-color: rgba(18, 104, 59, 0.4);
  color: var(--leaf-dark);
}

.category-sidebar a.active {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
  color: var(--white);
}

.category-sidebar hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.category-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-intro {
  margin-bottom: 1.3rem;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.8rem);
}

.product-visual img {
  width: 100%;
  height: min(680px, 78vh);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.product-copy h1 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.product-lede {
  max-width: 640px;
  color: #342923;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 750;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.product-facts div {
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.78);
}

.product-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0.3rem 0 0;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Mobile CTA bar
   -------------------------------------------------------------------------- */

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--deep);
  box-shadow: 0 -8px 28px rgba(4, 42, 27, 0.35);
}

.mobile-cta a {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

.js-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

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

  .js-reveal [data-reveal],
  .js-reveal .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-slide,
  .range-slide,
  .product-card-image img {
    transition-duration: 0.01s !important;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .site-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo {
    width: 116px;
  }

  .mega-menu {
    position: fixed;
    inset: 118px 12px auto;
    z-index: 40;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .mobile-menu-links a {
    min-height: 46px;
    padding: 0.72rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  body.menu-open .mega-menu {
    display: grid;
  }

  .hero {
    min-height: 710px;
  }

  .hero-content {
    min-height: 710px;
    padding-bottom: 9rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 6.8rem);
  }

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

  .range-showcase,
  .split-layout,
  .contact-section,
  .catalog-hero,
  .category-layout,
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .category-sidebar {
    position: static;
  }

  .catalog-hero img,
  .product-visual img {
    height: 520px;
  }
}

@media (max-width: 680px) {
  .top-strip {
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.78rem;
  }

  .nav-shell,
  .section,
  .trust-bar,
  .catalog-hero,
  .product-detail-hero,
  .site-footer,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: 86px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 108px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.88) 52%, rgba(255, 250, 241, 0.32) 100%),
      linear-gradient(180deg, rgba(7, 61, 37, 0.02), rgba(7, 61, 37, 0.16));
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    min-height: 680px;
    justify-content: flex-start;
    padding-top: 3.5rem;
    padding-bottom: 7rem;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(4rem, 18vw, 5.7rem);
  }

  .hero-statement {
    max-width: 340px;
    font-size: 1.04rem;
  }

  .hero-badges {
    max-width: 340px;
  }

  .hero-actions .btn-primary {
    display: none;
  }

  .hero-dots {
    right: auto;
    left: 14px;
    bottom: 24px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
    margin-top: 0;
  }

  .trust-bar div {
    min-height: 110px;
    padding: 1rem;
  }

  .quality-grid,
  .buyer-grid,
  .detail-grid,
  .product-grid,
  .process-steps,
  .quote-form,
  .product-facts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .range-panel,
  .range-copy {
    min-height: auto;
  }

  .range-copy {
    max-width: 100%;
    padding: 1.25rem;
    background: linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.72));
  }

  .range-copy h3 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

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

  .feature-image-stack img,
  .feature-image-stack img:first-child,
  .catalog-hero img,
  .product-visual img,
  .product-card-image {
    height: 390px;
  }

  .catalog-hero h1,
  .product-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .quote-form {
    padding: 1.25rem;
  }

  .quote-form .btn {
    justify-self: stretch;
  }

  .mobile-cta {
    display: grid;
  }

  .section-dark {
    background-attachment: scroll;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 100px;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .section-heading h2,
  .split-layout h2,
  .contact-copy h2,
  .category-intro h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .range-copy {
    max-width: 100%;
  }
}

/* ==========================================================================
   Preserved from live site: language switcher, RTL support, responsive tweaks
   (the 11-language translation UI targets these classes -- do not rename)
   ========================================================================== */

.language-switcher {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1000;
}

.language-switcher .gtranslate_wrapper {
  display: flex;
  align-items: center;
}

.language-switcher .gt_float_switcher {
  position: relative !important;
  overflow: visible !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 16px 40px rgba(32, 24, 21, 0.22) !important;
  color: var(--ink) !important;
  font-family: inherit !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  transition: background 0.18s ease, border-color 0.18s ease !important;
}

.language-switcher .gt_float_switcher:hover {
  border-color: rgba(18, 104, 59, 0.34) !important;
  background: var(--white) !important;
}

.language-switcher .gt_float_switcher img {
  width: 22px !important;
  margin-right: 0.42rem !important;
  border-radius: 2px !important;
}

.language-switcher .gt_float_switcher .gt-selected {
  border-radius: inherit !important;
  background: transparent !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt-current-lang {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  padding: 0.62rem 0.7rem !important;
  color: var(--ink) !important;
  font-weight: 900 !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt-current-lang .gt-lang-code {
  top: 0 !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt_float_switcher-arrow {
  height: 18px !important;
  margin-left: 0.18rem;
}

.language-switcher .gt_float_switcher .gt_options {
  position: absolute !important;
  top: auto !important;
  bottom: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  z-index: 60 !important;
  width: max-content;
  min-width: 190px;
  max-width: min(260px, calc(100vw - 24px)) !important;
  max-height: min(360px, calc(100vh - 150px)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px) !important;
}

.language-switcher .gt_float_switcher .gt_options.gt-open {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.language-switcher .gt_float_switcher .gt_options a {
  display: flex !important;
  align-items: center;
  padding: 0.65rem 0.8rem !important;
  color: var(--ink) !important;
  font-weight: 750;
}

.language-switcher .gt_float_switcher .gt_options a:hover,
.language-switcher .gt_float_switcher .gt_options a:focus {
  background: var(--leaf) !important;
  color: var(--white) !important;
}

.mermer-language-menu {
  position: relative;
  color: var(--ink);
  font-family: inherit;
}

.mermer-language-current {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(31, 25, 21, 0.16);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mermer-language-current:hover,
.mermer-language-current:focus-visible {
  border-color: rgba(18, 104, 59, 0.38);
  outline: none;
}

.language-flag {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.language-arrow {
  margin-left: 0.1rem;
  font-size: 1rem;
}

.mermer-language-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(260px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 170px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(31, 25, 21, 0.22);
}

.mermer-language-option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-align: left;
}

.mermer-language-option:hover,
.mermer-language-option:focus-visible,
.mermer-language-option[aria-selected="true"] {
  background: var(--leaf);
  color: var(--white);
  outline: none;
}

html[dir="rtl"] .mermer-language-options {
  right: auto;
  left: 0;
}

html[dir="rtl"] .mermer-language-option {
  text-align: right;
}

html[dir="rtl"] .product-card-body,
html[dir="rtl"] .product-copy,
html[dir="rtl"] .detail-grid article {
  text-align: right;
}

@media (max-width: 680px) {
  .language-switcher {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .language-switcher .gt_float_switcher .gt-selected .gt-current-lang {
    min-height: 42px;
    padding: 0.55rem 0.58rem !important;
  }

  .language-switcher .gt_float_switcher img {
    width: 20px !important;
    margin-right: 0.3rem !important;
  }

  .mermer-language-current {
    min-height: 42px;
    padding: 0.55rem 0.62rem;
  }

  .mermer-language-options {
    max-height: calc(100vh - 165px);
  }
}