﻿html {
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --bg: #f3efe7;
  --bg-soft: #e8e2d7;
  --text: #1f1a17;
  --muted: #6f675f;
  --line: #d2c9bb;
  --accent: #2f4f3f;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 0%, #f6f2ea 0, #eee8de 36%, #e6dfd2 100%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(0, 0, 0, .07) 0.55px, transparent 0.55px);
  background-size: 3px 3px;
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  backdrop-filter: blur(9px) saturate(118%);
  -webkit-backdrop-filter: blur(9px) saturate(118%);
  background: rgba(243, 239, 231, .56);
  box-shadow: 0 4px 12px rgba(31, 26, 23, 0.05);
}

.logo {
  letter-spacing: 0.12rem;
  font-size: 1.05rem;
  color: inherit;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.mobile-menu-head,
.mobile-plus {
  display: none;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

.main-nav>a,
.main-nav>.nav-item>.nav-trigger {
  display: inline-flex;
  align-items: center;
  font: 400 0.85rem/1.1 "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.06rem !important;
  vertical-align: middle;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease, font-weight .18s ease;
}

.main-nav>a:hover,
.main-nav>.nav-item>.nav-trigger:hover {
  color: var(--accent);
  background: rgba(47, 79, 63, 0.08);
}

.main-nav>a.active,
.main-nav>.nav-item>.nav-trigger.active {
  font-weight: 600 !important;
  color: var(--accent);
}

.main-nav>a[aria-current="page"],
.main-nav>.nav-item>.nav-trigger[aria-current="page"] {
  font-weight: 600 !important;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  position: relative;
  padding-right: 0.72rem;
}

.caret {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 0.7rem;
  opacity: 0.82;
  line-height: 1;
  transform: translateY(-48%) rotate(var(--caret-rot, 0deg));
  transition: transform .2s ease;
}

.has-submenu:hover .caret,
.has-submenu:focus-within .caret {
  --caret-rot: 180deg;
}

.submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 1.9rem);
  left: 50%;
  min-width: 220px;
  max-width: min(92vw, 320px);
  max-height: min(68vh, 520px);
  overflow-y: auto;
  padding: 0.45rem 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(244, 240, 234, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 20;
}

.submenu li a {
  display: block;
  padding: 0.42rem 0.8rem;
  text-transform: none;
  letter-spacing: 0.01rem;
  font-size: 0.82rem;
  font-weight: 400;
  transition: color .18s ease, background-color .18s ease, font-weight .18s ease;
}

.submenu .submenu-group-title {
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.01rem;
  font-weight: 600;
  color: rgba(31, 26, 23, 0.66);
  cursor: default;
}

.submenu .submenu-child-link {
  font-weight: 400;
  padding-left: 1.55rem;
}

.submenu .submenu-main-link {
  font-weight: 400;
  padding-left: 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.01rem;
  color: rgba(31, 26, 23, 0.66);
}

.submenu li a:hover {
  color: var(--accent);
  background: rgba(47, 79, 63, 0.08);
}

.submenu li a.active {
  font-weight: 600;
  color: var(--accent);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  padding: 0.45rem 0.75rem;
  min-width: 76px;
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
}

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.home-main {
  width: 100%;
  margin: 0;
}

.home-hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: clamp(420px, 56.25vw, 920px);
  margin: 0 auto;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(92vw, 980px);
}

.home-hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.home-hero-content p {
  font-size: clamp(0.86rem, 1.3vw, 1.55rem);
  font-weight: 400;
  line-height: 1.45;
}

.catalog-section {
  width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 2.8rem 0 4.2rem;
}

.catalog-head {
  border-top: 0;
  padding-top: 0.62rem;
  display: grid;
  grid-template-columns: 260px minmax(0, 860px);
  gap: 1.35rem;
}

.catalog-kicker {
  font-size: 1.5rem;
  line-height: 1.15;
}

.catalog-intro {
  font-size: clamp(0.98rem, 1.45vw, 1.45rem);
  line-height: 1.26;
  max-width: 26ch;
}

.catalog-viewport {
  margin-top: 1.45rem;
  margin-left: calc(260px + 1.35rem);
  width: calc(100% - (260px + 1.35rem));
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  position: relative;
}

.catalog-viewport::after {
  content: none;
}

.catalog-track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.catalog-carousel-controls {
  margin-top: 0.95rem;
  margin-left: calc(260px + 1.35rem);
  width: calc(100% - (260px + 1.35rem));
  padding-right: 2.2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.catalog-nav-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  font: 500 1.95rem/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-nav-btn:hover {
  color: var(--accent);
  opacity: 1;
}

.catalog-nav-btn.swiper-button-disabled {
  color: #b5aea4;
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.catalog-nav-btn:active {
  transform: translateY(1px);
}

.catalog-card {
  min-width: 0;
}

.catalog-image-link {
  display: block;
  overflow: hidden;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform .32s ease;
}

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

.catalog-card h3 {
  margin-top: 0.26rem;
  font-size: clamp(1.12rem, 1.4vw, 1.7rem);
  font-weight: 400;
  line-height: 1.14;
}

.catalog-title-link {
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}

.catalog-title-link:hover,
.catalog-card:hover .catalog-title-link {
  color: var(--accent);
}

.catalog-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.catalog-marquee {
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 0 1.55rem;
}

.catalog-marquee-viewport {
  width: 100%;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  padding: 0.65rem 0;
}

.catalog-marquee-track {
  display: flex;
  width: max-content;
  animation: catalogMarquee 30s linear infinite;
}

.catalog-marquee-track a {
  display: inline-block;
  white-space: nowrap;
  margin-right: 3.5rem;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.35rem, 3.2vw, 3.6rem);
  line-height: 1.02;
  transition: color .2s ease, opacity .2s ease;
}

.catalog-marquee-track a:hover {
  color: var(--accent);
}

.catalog-marquee-track:hover a {
  color: var(--accent);
}

@keyframes catalogMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}

.about-factory {
  width: min(1520px, 96vw);
  margin: 0 auto;
  padding: 6.4rem 0 6rem;
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(320px, 620px);
  gap: clamp(1.2rem, 3vw, 4rem);
  justify-content: center;
  align-items: end;
}

.about-factory-media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.about-factory-copy {
  align-self: end;
  padding-top: 0;
  padding-bottom: clamp(1.2rem, 2.6vw, 2.6rem);
}

.about-kicker {
  font-size: 0.92rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: rgba(31, 26, 23, 0.72);
}

.about-factory-copy h2 {
  font-size: clamp(1.18rem, 1.5vw, 1.8rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: none;
  white-space: nowrap;
}

.about-factory-copy p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  max-width: 44ch;
}

.quality-workforce {
  width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 4.8rem 0 5.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.6vw, 3.6rem);
  align-items: start;
}

.qw-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qw-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.qw-card p {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
  max-width: 52ch;
}

.faq-section {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 5.2rem 0 5.2rem;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  margin-bottom: 1.8rem;
}

.faq-item {
  border-bottom: 1px solid rgba(31, 26, 23, 0.35);
  padding: 0.25rem 0;
}

.faq-item>summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.95rem 0;
  font-size: clamp(1.05rem, 1.5vw, 1.9rem);
}

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

.faq-icon {
  color: rgba(31, 26, 23, 0.5);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-icon::before {
  content: "+";
}

.faq-item[open] .faq-icon::before {
  content: "−";
}

.faq-item p {
  padding: 0 0 1rem 2.6rem;
  color: rgba(31, 26, 23, 0.72);
  line-height: 1.48;
  font-size: clamp(0.96rem, 1.2vw, 1.3rem);
  max-width: 86ch;
}

.blank-main {
  min-height: calc(100vh - 84px);
}

.blank-page {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.blank-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
}

.collection-main {
  width: min(1360px, 92vw);
  margin: 0 auto;
  padding: 2.6rem 0 4.2rem;
}

.collection-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.1rem;
}

.collection-hero .kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.collection-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
}

.collection-hero-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.collection-toolbar-local {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0 1.35rem;
}

.collection-toolbar-buttons-local {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.collection-toolbar-btn-local {
  border: 1px solid rgba(31, 26, 23, 0.24);
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  padding: 0.42rem 0.72rem;
  cursor: default;
}

.collection-toolbar-btn-local:hover {
  background: rgba(47, 79, 63, 0.08);
}

.collection-toolbar-count-local {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  color: var(--muted);
}

.collection-toolbar-count-local strong {
  color: var(--text);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-toolbar-local {
  align-items: center;
  justify-content: space-between;
}

.search-form-local {
  display: flex;
  gap: 0.6rem;
  width: min(720px, 100%);
}

.search-form-local input[type="search"] {
  flex: 1 1 auto;
  min-height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  padding: 0 0.95rem;
  font-size: 0.9rem;
}

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

.search-result-card-local {
  border: 1px solid rgba(31, 26, 23, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.search-result-link-local {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  padding: 0.65rem;
}

.search-result-media-local {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.search-result-media-local img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-result-info-local h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}

.search-result-meta-local {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.search-result-page-local {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(31, 26, 23, 0.68);
}

@media (max-width: 860px) {
  .search-form-local {
    width: 100%;
  }

  .search-results-grid-local {
    grid-template-columns: 1fr;
  }

  .search-result-link-local {
    grid-template-columns: 1fr;
  }
}

.product-grid-local {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.55rem 1.2rem;
  margin-top: 1.2rem;
}

@media (min-width: 901px) {
  .product-category-local.medium-branch-buds .product-grid-local {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-grid-local .size-group-break {
  grid-column: 1 / -1;
  height: 0;
  margin: 0.2rem 0 0.55rem;
  pointer-events: none;
}

.product-category-local {
  margin-top: 1.8rem;
}

.product-category-local+.product-category-local {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}

.category-head-local {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.category-head-local h2 {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.category-head-local h2.category-toggle-local {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.category-head-local h2.category-toggle-local::after {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.product-category-local.is-collapsed .category-head-local h2.category-toggle-local::after {
  transform: rotate(-45deg) translateY(1px);
}

.product-category-local.is-collapsed .product-grid-local {
  display: none;
}

.category-head-local p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  color: var(--muted);
}

.product-card-local {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.product-media-local {
  position: relative;
  aspect-ratio: 275 / 356;
  overflow: hidden;
  background: #dfd7ca;
}

.product-media-local img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .34s ease, transform .34s ease;
}

.card-locator-copy {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 4;
  height: 1.55rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 239, 231, 0.72);
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
  color: rgba(31, 26, 23, 0.95);
  font-size: 0.64rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.locator-toast {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 3200;
  padding: 0.42rem 0.72rem;
  border-radius: 0.5rem;
  background: rgba(24, 22, 19, 0.85);
  color: #f6f2ea;
  font-size: 0.74rem;
  letter-spacing: 0.02rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.locator-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-media-local .primary {
  opacity: 1;
}

.product-media-local .secondary {
  opacity: 0;
  pointer-events: none;
}

.product-media-local .gallery-extra {
  display: none !important;
}

.product-card-local:hover .product-media-local.has-secondary .primary {
  opacity: 0;
  transform: scale(1.04);
}

.product-card-local:hover .product-media-local.has-secondary .secondary {
  opacity: 1;
  transform: scale(1.04);
  pointer-events: auto;
}

.product-media-local.has-secondary::before {
  position: absolute;
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
  color: rgba(31, 26, 23, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.product-media-local.has-secondary::before {
  content: attr(data-gallery-count) " photos";
  top: 0.5rem;
  right: 0.5rem;
  min-height: 1.55rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(243, 239, 231, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.product-media-local.has-secondary::after {
  content: none !important;
  display: none !important;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(14, 13, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  --lightbox-nav-size: 2.75rem;
  --lightbox-nav-gap: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.72rem;
}

.lightbox-frame {
  position: relative;
  display: inline-block;
  line-height: 0;
  overflow: visible;
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: min(calc(100vw - (var(--lightbox-nav-size) * 2) - (var(--lightbox-nav-gap) * 2) - 1.8rem),
      1500px);
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: none;
  background: rgba(243, 239, 231, 0.42);
  backdrop-filter: blur(9px) saturate(118%);
  -webkit-backdrop-filter: blur(9px) saturate(118%);
  color: var(--text);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  z-index: 4;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: var(--lightbox-nav-size);
  height: var(--lightbox-nav-size);
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(243, 239, 231, 0.42);
  backdrop-filter: blur(9px) saturate(118%);
  -webkit-backdrop-filter: blur(9px) saturate(118%);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.lightbox-nav svg,
.lightbox-close svg {
  width: 1rem;
  height: 1rem;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.lightbox-close svg {
  width: 0.92rem;
  height: 0.92rem;
}

.lightbox-prev {
  left: calc((var(--lightbox-nav-size) + var(--lightbox-nav-gap)) * -1);
  transform: translateY(-50%);
}

.lightbox-next {
  right: calc((var(--lightbox-nav-size) + var(--lightbox-nav-gap)) * -1);
  transform: translateY(-50%);
}

.lightbox-counter {
  position: static;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.lightbox-nav.is-hidden,
.lightbox-counter.is-hidden {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .lightbox-overlay {
    padding: 0.55rem max(0.55rem, env(safe-area-inset-right)) 0.95rem max(0.55rem, env(safe-area-inset-left));
  }

  .lightbox-stage {
    --lightbox-nav-size: 2.2rem;
    --lightbox-nav-gap: 0.22rem;
    gap: 0.66rem;
  }

  .lightbox-nav {
    background: rgba(243, 239, 231, 0.5);
  }

  .lightbox-nav:not(.is-hidden) {
    display: flex !important;
  }

  .lightbox-close {
    top: 0.45rem;
    right: 0.45rem;
  }

  .lightbox-image {
    max-width: calc(100vw - (var(--lightbox-nav-size) * 2) - (var(--lightbox-nav-gap) * 2) - 2.2rem);
    max-height: 86vh;
  }

  .lightbox-counter {
    font-size: 0.84rem;
    letter-spacing: 0.038rem;
  }
}

.product-info-local {
  padding: 0 0.12rem 0.3rem;
  text-align: center;
}

.product-vendor-local {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  color: var(--muted);
  margin-bottom: 0.34rem;
}

.product-info-local h2 {
  font-size: 0.96rem;
  line-height: 1.24;
  font-weight: 500;
  margin-bottom: 0.3rem;
  min-height: 2.38em;
}

.product-tags-local {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  justify-content: center;
  margin: 0.08rem 0 0.34rem;
}

.product-tag-local {
  display: inline-flex;
  align-items: center;
  min-height: 1.34rem;
  padding: 0 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.14);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(31, 26, 23, 0.78);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.038rem;
  white-space: nowrap;
}

.product-meta-local {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.product-meta-local.product-meta-tags-local {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .product-grid-local {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-grid-local {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .product-grid-local {
    grid-template-columns: 1fr;
  }

  .category-head-local {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.32rem;
  }

  .product-media-local.has-secondary::before {
    font-size: 0.6rem;
  }

  .product-media-local.has-secondary::before {
    right: 0.35rem;
    top: 0.35rem;
    min-height: 1.35rem;
    padding: 0 0.45rem;
  }
}

/* Yulan collection: larger card presentation */
.yulan-collection-page .collection-main {
  width: min(1720px, 96vw);
}

.yulan-collection-page .product-category-local {
  margin-top: 2rem;
}

.yulan-collection-page .product-grid-local {
  gap: 1.05rem 0.9rem;
  margin-top: 0.9rem;
}

.yulan-collection-page .product-media-local {
  aspect-ratio: 2 / 3;
}

.yulan-collection-page .product-info-local h2 {
  font-size: 1rem;
}

@media (max-width: 1400px) {
  .yulan-collection-page .collection-main {
    width: min(1460px, 95vw);
  }
}

@media (max-width: 1100px) {
  .yulan-collection-page .product-grid-local {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .yulan-collection-page .product-grid-local {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .yulan-collection-page .product-grid-local {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.55rem;
  }

  .yulan-collection-page .product-info-local {
    padding: 0 0.05rem 0.18rem;
  }

  .yulan-collection-page .product-vendor-local {
    font-size: 0.58rem;
    letter-spacing: 0.045rem;
    margin-bottom: 0.24rem;
  }

  .yulan-collection-page .product-info-local h2 {
    font-size: 0.8rem;
    line-height: 1.28;
    min-height: 2.65em;
    margin-bottom: 0.22rem;
  }

  .yulan-collection-page .product-tags-local {
    gap: 0.28rem;
    margin: 0.04rem 0 0.26rem;
  }

  .yulan-collection-page .product-tag-local {
    min-height: 1.24rem;
    padding: 0 0.38rem;
    font-size: 0.56rem;
    letter-spacing: 0.032rem;
  }

  .yulan-collection-page .product-meta-local {
    font-size: 0.74rem;
  }

  .yulan-collection-page .product-meta-local.product-meta-tags-local {
    gap: 0.28rem;
  }
}

.contact-main {
  width: min(1260px, 92vw);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 520px);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.contact-copy h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.contact-copy h2 {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-top: 1.4rem;
  margin-bottom: 0.65rem;
}

.contact-copy p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 0.7rem;
  max-width: 60ch;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.contact-form label {
  font-size: 0.86rem;
  color: rgba(31, 26, 23, 0.8);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 23, 0.24);
  background: rgba(255, 255, 255, 0.44);
  color: var(--text);
  font: inherit;
  padding: 0.62rem 0.72rem;
  border-radius: 6px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 79, 63, 0.7);
}

.contact-form button {
  margin-top: 0.35rem;
  border: 1px solid rgba(31, 26, 23, 0.28);
  background: rgba(47, 79, 63, 0.92);
  color: #f5f3ee;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: #2f4f3f;
}

.support-main {
  width: 100%;
}

.support-hero {
  position: relative;
  width: 100%;
  height: clamp(260px, 28vw, 430px);
  overflow: hidden;
}

.support-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86);
}

.support-hero h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #f3efe7;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.18rem;
}

.support-contact {
  width: min(820px, 92vw);
  margin: 0 auto;
  padding: 3.6rem 0 5rem;
  text-align: center;
}

.support-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  margin-bottom: 0.95rem;
}

.support-contact h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  letter-spacing: 0.06rem;
  font-weight: 500;
  margin-bottom: 1.35rem;
}

.support-intro {
  max-width: 74ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.8;
}

.support-form {
  margin-top: 2rem;
  text-align: left;
}

.support-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.86rem;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 23, 0.2);
  border-radius: 0;
  background: rgba(243, 239, 231, 0.65);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  padding: 0.78rem 0.78rem;
  outline: none;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(47, 79, 63, 0.6);
}

.support-form .field-full {
  grid-column: 1 / -1;
}

.support-form button {
  margin-top: 1rem;
  border: 1px solid rgba(31, 26, 23, 0.25);
  background: rgba(47, 79, 63, 0.94);
  color: #f4f1e8;
  padding: 0.74rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
}

.support-form button:hover {
  background: #2f4f3f;
}

.support-contact-meta {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 26, 23, 0.2);
}

.support-contact-meta p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.14rem;
}

.contact-split-main {
  width: min(1240px, 88vw);
  margin: 0 auto;
  padding: 2.4rem 0 4.2rem;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(380px, 1fr);
  gap: clamp(1.3rem, 3vw, 3.2rem);
  align-items: start;
}

.contact-split-media {
  max-height: 760px;
}

.contact-split-media img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: cover;
  display: block;
}

.contact-split-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 0 1.2rem 1rem;
}

.contact-split-copy {
  text-align: left;
  max-width: 58ch;
}

.contact-split-copy p {
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.contact-split-copy .contact-detail-first {
  margin-top: 1.3rem;
}

.contact-split-copy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-split-form {
  margin-top: 1rem;
}

.site-footer {
  width: min(1200px, 92vw);
  margin: 0 auto 0.75rem;
  padding: 1.45rem 0 0.6rem;
  border-top: 0;
  color: var(--text);
}

.footer-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 1.05rem;
}

.footer-left {
  border-top: 1px solid rgba(31, 26, 23, 0.28);
  padding-top: 0.7rem;
}

.footer-left h3 {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.footer-brand-link {
  color: inherit;
  text-decoration: none;
}

.footer-brand-link:hover {
  opacity: 0.88;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-row {
  border-top: 1px solid rgba(31, 26, 23, 0.28);
  padding-top: 0.68rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.footer-contact p,
.footer-address p,
.footer-contact a,
.footer-links-left a,
.footer-links-left span,
.footer-links-right a,
.footer-subcats a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.32;
}

.footer-contact a:hover,
.footer-links-left a:hover,
.footer-links-right a:hover,
.footer-subcats a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.footer-ig {
  margin-top: 0.6rem;
}

.footer-links-left,
.footer-links-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
}

.footer-subcats {
  display: flex;
  flex-direction: column;
  gap: 0.13rem;
  padding-top: 0.08rem;
}

.footer-subcats a {
  padding-left: 0.45rem;
}

.footer-subcat-title {
  display: block;
  padding-left: 0.45rem;
  margin-top: 0.18rem;
  font-size: 0.82rem;
  line-height: 1.32;
  color: var(--text);
}

.footer-bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(31, 26, 23, 0.28);
  padding-top: 0.35rem;
}

.footer-bottom p {
  color: var(--text);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

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

  .footer-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    padding-right: 6.9rem;
    background: rgba(243, 239, 231, 0.6);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 130;
  }

  .logo {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    backdrop-filter: blur(9px) saturate(118%);
    -webkit-backdrop-filter: blur(9px) saturate(118%);
  }

  .site-header>* {
    position: relative;
    z-index: 1;
  }

  .main-nav {
    display: flex;
    position: fixed;
    inset: 0;
    padding: 5.25rem 0.75rem 1.1rem;
    background: rgba(243, 239, 231, 0.98);
    border: 0;
    border-radius: 0;
    backdrop-filter: blur(6px) saturate(108%);
    -webkit-backdrop-filter: blur(6px) saturate(108%);
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .34s ease, visibility 0s linear .34s;
    visibility: hidden;
    pointer-events: none;
    z-index: 120;
  }

  .main-nav.open {
    transform: translateX(0);
    transition: transform .34s ease, visibility 0s linear 0s;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    min-width: 84px;
    z-index: 140;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .collection-main {
    width: 94vw;
    padding: 2.1rem 0 3rem;
  }

  .collection-hero-note {
    font-size: 0.9rem;
  }

  .collection-toolbar-local {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.85rem 0 1rem;
  }

  .collection-toolbar-buttons-local {
    display: flex;
    width: 100%;
  }

  .collection-toolbar-btn-local {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.46rem 0.62rem;
  }

  .collection-toolbar-count-local {
    font-size: 0.76rem;
  }

  .product-grid-local {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .product-info-local {
    padding: 0 0.1rem 0.2rem;
  }

  .product-info-local h2 {
    font-size: 0.91rem;
  }

  .product-meta-local {
    font-size: 0.79rem;
  }

  .home-hero {
    width: 100%;
    height: clamp(420px, 92vw, 680px);
  }

  .home-hero-content h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  }

  .home-hero-content p {
    font-size: clamp(0.82rem, 2.6vw, 1rem);
  }

  .catalog-section {
    width: 94vw;
    padding: 2rem 0 2.8rem;
  }

  .catalog-head {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .catalog-kicker {
    font-size: 1.12rem;
  }

  .catalog-intro {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .catalog-viewport {
    margin-left: 0;
    width: 100%;
  }

  .catalog-viewport::after {
    content: none;
  }

  .catalog-track {
    gap: 0;
    grid-auto-columns: minmax(200px, 72vw);
  }

  .catalog-carousel-controls {
    margin-left: 0;
    width: 100%;
    margin-top: 0.7rem;
    padding-right: 1.8rem;
  }

  .catalog-nav-btn {
    font-size: 1.55rem;
    width: 1.95rem;
    height: 1.95rem;
  }

  .catalog-marquee {
    padding: 0.95rem 0 1.15rem;
  }

  .catalog-marquee-track a {
    margin-right: 2rem;
    font-size: clamp(1rem, 5.2vw, 1.55rem);
  }

  .about-factory {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 2.8rem 0 2.4rem;
  }

  .contact-main {
    width: 94vw;
    padding: 2.6rem 0 3rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 1rem;
  }

  .support-hero {
    height: clamp(220px, 62vw, 340px);
  }

  .support-hero h1 {
    letter-spacing: 0.12rem;
  }

  .support-contact {
    width: 94vw;
    padding: 2.3rem 0 3.2rem;
  }

  .support-kicker {
    margin-bottom: 0.75rem;
  }

  .support-contact h2 {
    margin-bottom: 0.95rem;
  }

  .support-intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .support-form-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .support-form .field-full {
    grid-column: auto;
  }

  .support-form button {
    width: 100%;
  }

  .contact-split-main {
    width: 94vw;
    padding: 2.2rem 0 3rem;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-split-media,
  .contact-split-right {
    min-height: 0;
  }

  .contact-split-media {
    height: auto;
    max-height: none;
    overflow: hidden;
  }

  .contact-split-right {
    padding: 0.4rem 0 0.2rem;
  }

  .contact-split-media img {
    height: auto;
    max-height: none;
  }

  .about-factory-media {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-factory-media img {
    width: min(88vw, 420px);
    max-width: 420px;
  }

  .about-factory-copy {
    padding-top: 0;
    width: min(88vw, 420px);
    margin: 0 auto;
  }

  .about-factory-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.65rem;
    white-space: normal;
    max-width: none;
  }

  .about-factory-copy p {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    max-width: none;
  }

  .quality-workforce {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 2.8rem 0 3.1rem;
  }

  .qw-card {
    gap: 0.8rem;
    width: min(88vw, 420px);
    margin: 0 auto;
  }

  .qw-card p {
    font-size: 1rem;
    max-width: none;
  }

  .faq-section {
    width: 94vw;
    padding: 3.2rem 0 3rem;
  }

  .faq-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .faq-item>summary {
    grid-template-columns: 24px 1fr;
    gap: 0.5rem;
    font-size: 1.35rem;
    padding: 0.8rem 0;
  }

  .faq-item p {
    padding-left: 1.8rem;
    font-size: 1.03rem;
  }

  .catalog-card h3 {
    font-size: 1.25rem;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .nav-item {
    width: 100%;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

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

  .mobile-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    letter-spacing: 0.08rem;
    color: inherit;
    text-decoration: none;
  }

  .mobile-close {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    padding: 0.45rem 1rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05rem;
  }

  .main-nav>a,
  .main-nav>.nav-item>.nav-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.2rem;
    border-top: 1px solid rgba(31, 26, 23, 0.2);
    font-size: 1.9rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .main-nav>a:hover,
  .main-nav>.nav-item>.nav-trigger:hover {
    background: rgba(47, 79, 63, 0.06);
  }

  .main-nav>a:last-of-type {
    border-bottom: 1px solid rgba(31, 26, 23, 0.2);
  }

  .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0.1rem 0;
    margin: 0.1rem 0 0.35rem;
    background: transparent;
    box-shadow: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu,
  .has-submenu.open .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu li {
    width: 100%;
  }

  .submenu li a {
    padding: 0.65rem 0.2rem;
    border-top: 1px solid rgba(31, 26, 23, 0.2);
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .submenu .submenu-group-title {
    padding: 0.65rem 0.2rem;
    border-top: 1px solid rgba(31, 26, 23, 0.2);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .submenu .submenu-child-link {
    padding-left: 1.2rem;
    font-size: 1.22rem;
    font-weight: 400;
  }

  .submenu .submenu-main-link {
    padding-left: 0.2rem;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
  }

  .submenu li a:hover {
    background: rgba(47, 79, 63, 0.06);
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .caret {
    display: none;
  }

  .mobile-plus {
    display: inline-block;
    font-size: 1.35rem;
    line-height: 1;
  }

}
