:root {
  --blue-900: #2a145a;
  --blue-700: #6f35c8;
  --blue-500: #9a6cff;
  --blue-100: #f1eaff;
  --cyan-100: #fbf8ff;
  --ink: #21172f;
  --muted: #6d617d;
  --line: #e7ddf5;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(74, 35, 130, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC", "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(22, 10, 46, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.brand-logo {
  width: 220px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: stretch;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.mobile-nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav a,
.nav-dropdown-toggle {
  padding: 27px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--white);
  border-color: var(--blue-500);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: inherit;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  content: "";
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  vertical-align: middle;
}

.nav-dropdown-menu {
  position: absolute;
  top: 76px;
  left: -18px;
  display: none;
  min-width: 168px;
  padding: 14px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 22px 48px rgba(74, 35, 130, 0.18);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  border: 0;
  color: #2d2340;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--blue-700);
  background: var(--blue-100);
  border: 0;
}

.header-cta,
.btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.btn.primary,
.contact-form button {
  color: var(--white);
  background: var(--blue-700);
}

.btn.secondary {
  color: var(--blue-900);
  background: var(--blue-100);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 76px);
  padding: 70px 6vw 56px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--blue-900);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 21px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #473a5f;
  font-size: 19px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  max-width: 680px;
}

.hero-proof span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(74, 35, 130, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  color: var(--blue-700);
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-media {
  position: relative;
  margin-right: -9vw;
}

.hero-media::before {
  position: absolute;
  inset: 8% 6% 2% 16%;
  content: "";
  background: linear-gradient(135deg, rgba(112, 53, 200, 0.16), rgba(255, 255, 255, 0));
  border-radius: 8px;
  filter: blur(2px);
}

.hero-media img {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.hero-carousel {
  overflow: hidden;
}

.hero-carousel-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 6vw 18px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(112, 53, 200, 0.55) rgba(236, 226, 250, 0.75);
  scrollbar-width: thin;
}

.hero-slide {
  position: relative;
  min-height: 420px;
  max-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #f7f1ff;
  scroll-snap-align: start;
}

.hero-slide img {
  display: block;
  height: 100%;
  min-height: inherit;
}

.hero-slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  max-width: min(420px, calc(100% - 48px));
  padding: 14px 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 214, 245, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(56, 25, 105, 0.14);
  backdrop-filter: blur(14px);
}

.hero-slide figcaption strong {
  font-size: 17px;
}

.hero-slide figcaption span {
  color: #6a5e7c;
  font-size: 14px;
  line-height: 1.45;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 6vw;
  background: var(--line);
  border: 1px solid var(--line);
}

.signal-strip div {
  padding: 26px;
  background: var(--white);
}

.signal-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
}

.signal-strip strong {
  font-size: 18px;
}

.section {
  padding: 96px 6vw;
}

.about-lbg {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: start;
  padding: 96px 6vw 44px;
}

.about-page-hero {
  padding: 96px 6vw 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5efff 100%);
}

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

.about-page-section {
  padding-top: 60px;
}

.about-lbg-copy {
  max-width: 760px;
}

.about-lbg-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.about-lbg-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-lbg-points article {
  padding: 28px;
  background: var(--white);
}

.about-lbg-points span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue-500);
  font-weight: 800;
}

.about-lbg-points p {
  color: var(--muted);
}

.people-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: end;
  padding: 96px 6vw 72px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f1ff 70%, #eadcff 100%);
}

.people-hero h1 {
  max-width: 940px;
}

.people-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.people-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.people-principles span {
  min-height: 128px;
  padding: 26px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 800;
}

.people-policy {
  padding-bottom: 76px;
}

.policy-grid,
.practice-grid {
  display: grid;
  gap: 18px;
}

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

.policy-grid article,
.practice-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.05);
}

.policy-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue-500);
  font-weight: 800;
}

.policy-grid p,
.practice-grid p,
.people-timeline p,
.people-band-copy p,
.people-cta p {
  color: var(--muted);
}

.people-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  padding: 92px 6vw;
  background: #fbf8ff;
}

.people-band-copy {
  max-width: 620px;
}

.people-timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.people-timeline div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px 28px;
  padding: 26px;
  background: var(--white);
}

.people-timeline span {
  grid-row: span 2;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.people-timeline strong {
  color: var(--blue-900);
  font-size: 21px;
}

.people-timeline p {
  grid-column: 2;
  margin: 0;
}

.practice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.people-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 6vw 88px;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 8px;
}

.people-cta h2,
.people-cta .eyebrow {
  color: var(--white);
}

.people-cta p {
  max-width: 820px;
  color: #e9ddff;
}

.sustainability-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
  gap: 46px;
  align-items: end;
  padding: 96px 6vw 78px;
  background: linear-gradient(135deg, #ffffff 0%, #f5efff 64%, #f8f1ff 100%);
}

.sustainability-hero h1 {
  max-width: 940px;
}

.sustainability-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.sustainability-scorecard {
  display: grid;
  gap: 14px;
}

.sustainability-scorecard article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.06);
}

.sustainability-scorecard strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: 24px;
}

.sustainability-scorecard span,
.sustainability-pillars p,
.sustainability-options span,
.environment-grid p,
.sustainability-band-copy p,
.sustainability-cta p {
  color: var(--muted);
}

.sustainability-pillars,
.environment-grid {
  display: grid;
  gap: 18px;
}

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

.sustainability-pillars article,
.environment-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.05);
}

.sustainability-pillars span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue-500);
  font-weight: 800;
}

.sustainability-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(320px, 1.16fr);
  gap: 48px;
  padding: 92px 6vw;
  background: #fbf8ff;
}

.sustainability-band-copy {
  max-width: 640px;
}

.sustainability-options {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sustainability-options div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  background: var(--white);
}

.sustainability-options strong {
  color: var(--blue-900);
  font-size: 20px;
}

.environment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sustainability-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 6vw 88px;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 8px;
}

.sustainability-cta h2,
.sustainability-cta .eyebrow {
  color: var(--white);
}

.sustainability-cta p {
  max-width: 860px;
  color: #e9ddff;
}

.creations-section {
  padding: 96px 6vw 30px;
}

.list-hero {
  padding: 92px 6vw 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f5efff 100%);
  text-align: center;
}

.list-hero h1 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.list-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.category-tabs {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.category-tabs a {
  padding: 11px 16px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.category-tabs a.is-active,
.category-tabs a:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.list-section {
  padding-top: 54px;
}

.products-hero {
  padding: 110px 6vw 54px;
  text-align: center;
  background: #fbfcff;
}

.products-hero h1 {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  color: #232833;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.22;
}

.products-hero p:not(.eyebrow) {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.product-category-stage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 6vw 76px;
  background: #fbfcff;
}

.product-category-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: #e9eef4;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.06);
  isolation: isolate;
}

.product-category-tile::after {
  position: absolute;
  inset: 16px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.product-category-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(8, 22, 43, 0), rgba(32, 13, 57, 0.28));
  pointer-events: none;
}

.product-category-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02);
  transform: scale(1);
  transition: transform 240ms ease, filter 240ms ease;
}

.product-category-tile:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.04);
}

.product-category-tile span {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  min-height: 78px;
  margin: 0 16px 16px;
  padding: 18px 18px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 216, 248, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(34, 15, 61, 0.11);
  font-size: clamp(19px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-shadow: none;
  text-wrap: balance;
  backdrop-filter: blur(14px);
}

.skincare-tile {
  background: linear-gradient(145deg, #f6f7f8 0%, #e8edf3 100%);
}

.skincare-tile img {
  opacity: 0.88;
  filter: grayscale(1) saturate(0.88);
}

.fragrance-tile {
  background: radial-gradient(circle at 50% 54%, rgba(190, 95, 38, 0.74), transparent 32%),
    linear-gradient(90deg, #ad5e32 0%, #e2a35b 48%, #5b4539 100%);
}

.fragrance-tile::after {
  border-color: rgba(255, 255, 255, 0.38);
}

.fragrance-tile span {
  color: var(--blue-900);
  text-shadow: none;
}

.makeup-tile {
  background: radial-gradient(circle at 75% 18%, rgba(190, 22, 31, 0.36), transparent 26%),
    linear-gradient(135deg, #fff4f2 0%, #f1c2bc 52%, #be262f 100%);
}

.pet-tile {
  background: linear-gradient(145deg, #ffffff 0%, #dff3ff 58%, #9ccfed 100%);
}

.pet-tile img,
.ampoule-tile img {
  object-fit: cover;
}

.ampoule-tile {
  background: linear-gradient(145deg, #ffffff 0%, #eaf7ff 52%, #c6d9f1 100%);
}

.mold-gallery-section {
  padding-top: 84px;
  background: #fbfcff;
}

.mold-category-hero {
  padding: 82px 6vw 36px;
  background: linear-gradient(135deg, #ffffff 0%, #f5efff 100%);
}

.mold-category-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
}

.mold-category-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.category-gallery-section {
  padding-top: 42px;
}

.mold-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.mold-category-tabs a {
  padding: 11px 16px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.mold-category-tabs a.is-active,
.mold-category-tabs a:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.mold-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.mold-filter button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mold-filter button.is-active,
.mold-filter button:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

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

.mold-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.05);
}

.mold-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f6f9fc;
}

.mold-card div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px;
}

.mold-card span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mold-card strong {
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.3;
}

.public-mold-section {
  padding-top: 84px;
}

.public-mold-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.public-mold-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(74, 35, 130, 0.05);
}

.public-mold-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue-500);
  font-weight: 800;
}

.public-mold-grid p {
  color: var(--muted);
}

.product-category-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 6vw;
  color: var(--white);
  background: var(--blue-900);
}

.product-category-note div {
  max-width: 760px;
}

.product-category-note h2,
.product-category-note .eyebrow {
  color: var(--white);
}

.product-category-note p:not(.eyebrow) {
  color: #e9ddff;
  font-size: 17px;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 92px 6vw 56px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f1ff 100%);
}

.market-copy {
  max-width: 760px;
}

.market-copy h1 {
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: clamp(48px, 7vw, 96px);
}

.market-copy h2 {
  color: #222d3b;
  font-size: clamp(27px, 3.5vw, 44px);
  font-weight: 400;
}

.market-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.market-image-wrap {
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
}

.market-image-wrap img {
  width: min(86%, 560px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 38px 42px rgba(74, 35, 130, 0.18));
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 6vw;
  background: var(--line);
  border: 1px solid var(--line);
}

.market-stats div {
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.market-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 28px;
  line-height: 1.15;
}

.market-stats span {
  color: var(--muted);
  font-weight: 700;
}

.market-decoration {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  gap: 44px;
  padding: 96px 6vw;
  background: var(--white);
}

.market-decoration p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.market-lines {
  padding: 96px 6vw;
  background: #f8fbff;
}

.line-filter {
  display: inline-flex;
  margin: -12px 0 28px;
  padding: 10px 16px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

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

.line-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.line-image {
  display: grid;
  height: 260px;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #eaf6ff);
}

.line-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(74, 35, 130, 0.14));
}

.line-card p {
  color: var(--muted);
}

.creation-list-section {
  min-height: 680px;
  padding: 34px 6vw 96px;
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 54%, #f7f3ff 100%);
}

.creation-list-heading {
  margin-bottom: 24px;
}

.creation-list-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.creation-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 36px;
  align-items: start;
}

.creation-list {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.creation-list-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(260px, 0.44fr) 120px;
  gap: 26px;
  align-items: center;
  min-height: 96px;
  padding: 18px 24px;
  color: var(--ink);
  border-radius: 8px;
  transition: background 180ms ease, transform 180ms ease;
  min-width: 0;
}

.creation-list-item:hover,
.creation-list-item.is-active {
  background: linear-gradient(90deg, rgba(247, 241, 255, 0.96), rgba(232, 216, 252, 0.8));
}

.creation-list-item:hover {
  transform: translateX(4px);
}

.list-brand {
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.list-product {
  color: #1f2d3d;
  font-size: clamp(18px, 1.6vw, 27px);
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}

.list-read {
  justify-self: end;
  color: var(--ink);
  font-weight: 800;
}

.list-read::after {
  display: inline-block;
  margin-left: 8px;
  content: "";
  border-top: 6px solid currentColor;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  vertical-align: middle;
}

.creation-preview {
  position: sticky;
  top: 104px;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.creation-preview img {
  width: min(100%, 500px);
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 36px 42px rgba(74, 35, 130, 0.2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

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

.creation-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(74, 35, 130, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.creation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(74, 35, 130, 0.12);
}

.creation-visual {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
}

.creation-visual::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.gradient-blue {
  background: linear-gradient(145deg, #fbf8ff 0%, #8a63ce 58%, #21103f 100%);
}

.blush {
  background: linear-gradient(145deg, #fff8fb 0%, #ead6ff 50%, #f5ecff 100%);
}

.ruby {
  background: linear-gradient(145deg, #fff4f6 0%, #c72043 58%, #5d071b 100%);
}

.black {
  background: linear-gradient(145deg, #f7f9fb 0%, #222938 54%, #020611 100%);
}

.cherry {
  background: linear-gradient(145deg, #fff2f0 0%, #dc2441 56%, #7b0c18 100%);
}

.clear {
  background: linear-gradient(145deg, #ffffff 0%, #f1eaff 56%, #d8c2ff 100%);
}

.bottle-shape {
  position: relative;
  z-index: 1;
  display: block;
  width: 92px;
  height: 154px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 14px 0 26px rgba(255, 255, 255, 0.28), 0 30px 50px rgba(0, 0, 0, 0.22);
}

.bottle-shape::before {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 36px;
  height: 34px;
  content: "";
  background: rgba(255, 255, 255, 0.68);
  border: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.bottle-shape.rectangle {
  border-radius: 14px 14px 8px 8px;
}

.bottle-shape.prism {
  width: 108px;
  transform: skewX(-7deg);
}

.bottle-shape.oval {
  width: 116px;
  border-radius: 50%;
}

.bottle-shape.monolith {
  width: 88px;
  background: linear-gradient(90deg, rgba(10, 14, 24, 0.9), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.bottle-shape.square {
  width: 118px;
  height: 148px;
  border-radius: 10px;
}

.bottle-shape.cylinder {
  width: 90px;
  border-radius: 32px 32px 12px 12px;
}

.creation-copy {
  padding: 24px;
}

.creation-brand {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creation-copy p {
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  color: var(--blue-700);
  border-bottom: 2px solid var(--blue-500);
  font-weight: 800;
}

.creation-page {
  background: #f8fbff;
}

.creation-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: calc(100vh - 76px);
}

.detail-media {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
}

.detail-product-image {
  position: relative;
  z-index: 1;
  width: min(78%, 620px);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 38px 46px rgba(0, 0, 0, 0.22));
}

.detail-media::before,
.gallery-panel:not(.gallery-copy)::before {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.detail-media::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  color: rgba(255, 255, 255, 0.22);
  content: "LBG";
  font-size: clamp(86px, 14vw, 190px);
  font-weight: 800;
  line-height: 1;
}

.detail-bottle {
  position: relative;
  z-index: 1;
  display: block;
  width: min(30vw, 260px);
  height: min(48vw, 430px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.16));
  border: 3px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 22px 0 44px rgba(255, 255, 255, 0.28), 0 42px 80px rgba(0, 0, 0, 0.22);
}

.detail-bottle::before {
  position: absolute;
  top: -72px;
  left: 50%;
  width: 72px;
  height: 72px;
  content: "";
  background: rgba(255, 255, 255, 0.7);
  border: 3px solid rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.detail-bottle.small {
  width: 112px;
  height: 190px;
}

.detail-bottle.small::before {
  top: -40px;
  width: 40px;
  height: 40px;
}

.detail-bottle.alternate {
  transform: rotate(-8deg);
}

.detail-bottle.rectangle {
  border-radius: 18px 18px 10px 10px;
}

.detail-bottle.prism {
  transform: skewX(-7deg);
}

.detail-bottle.oval {
  width: min(34vw, 300px);
  border-radius: 50%;
}

.detail-bottle.monolith {
  background: linear-gradient(90deg, rgba(10, 14, 24, 0.9), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
}

.detail-bottle.square {
  width: min(34vw, 310px);
  height: min(44vw, 390px);
  border-radius: 12px;
}

.detail-bottle.cylinder {
  border-radius: 72px 72px 16px 16px;
}

.detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 6vw 72px 52px;
  background: var(--white);
}

.detail-panel h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.back-link {
  width: fit-content;
  margin-bottom: 34px;
  color: var(--blue-700);
  border-bottom: 2px solid var(--blue-500);
  font-weight: 800;
}

.case-note {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: 92px 6vw;
  background: var(--white);
}

.detail-story {
  max-width: 720px;
}

.detail-story p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.detail-specs {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-specs div {
  padding: 24px;
  background: var(--white);
}

.detail-specs span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.detail-specs strong {
  color: var(--blue-900);
  font-size: 22px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 440px;
}

.gallery-panel {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
}

.gallery-product-image {
  position: relative;
  z-index: 1;
  width: min(78%, 330px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
}

.gallery-product-image.alternate {
  transform: rotate(-7deg);
}

.gallery-copy {
  align-content: center;
  padding: 42px;
  background: var(--blue-900);
  color: var(--white);
}

.gallery-copy h2,
.gallery-copy .eyebrow {
  color: var(--white);
}

.gallery-copy ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.gallery-copy li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #e9ddff;
}

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

.product-card {
  min-height: 290px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(74, 35, 130, 0.05);
}

.integration-grid .product-card {
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 246, 255, 0.96) 100%),
    #ffffff;
  border-color: rgba(214, 196, 239, 0.74);
  box-shadow: 0 24px 60px rgba(54, 25, 97, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.integration-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 74, 214, 0.34);
  box-shadow: 0 30px 72px rgba(54, 25, 97, 0.13);
}

.matrix-photo {
  display: block;
  width: 100%;
  height: 300px;
  margin: 0;
  object-fit: cover;
  object-position: center 56%;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 255, 255, 0.98) 0%, rgba(246, 240, 255, 0.85) 52%, rgba(226, 211, 249, 0.55) 100%);
  border: 0;
  border-radius: 0;
}

.integration-grid .product-card h3 {
  margin: 30px 30px 12px;
  font-size: 24px;
  letter-spacing: 0;
}

.integration-grid .product-card p {
  margin: 0 30px 34px;
  font-size: 16px;
  line-height: 1.75;
}

.product-card p,
.quality-grid p,
.process p {
  color: var(--muted);
}

.product-icon {
  display: block;
  width: 58px;
  height: 72px;
  margin-bottom: 28px;
  background: linear-gradient(180deg, #ffffff, #eadcff);
  border: 2px solid var(--blue-500);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.75);
}

.product-icon.bottle {
  border-radius: 18px 18px 10px 10px;
}

.product-icon.jar {
  width: 72px;
  height: 58px;
  border-radius: 10px;
}

.product-icon.pump {
  width: 48px;
  height: 78px;
  border-radius: 10px;
}

.product-icon.refill {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.product-icon.metal {
  width: 70px;
  height: 52px;
  background: linear-gradient(135deg, #ffffff 0%, #c9b8e8 45%, #f4edff 100%);
  border-color: #9174c6;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.48), 0 10px 24px rgba(74, 35, 130, 0.12);
}

.product-icon.sprayer {
  width: 58px;
  height: 70px;
  border-radius: 12px;
}

.product-icon.sprayer::before {
  display: block;
  width: 38px;
  height: 16px;
  margin: -18px auto 0;
  content: "";
  background: var(--blue-500);
  border-radius: 4px 12px 4px 4px;
}

.product-icon.pet {
  width: 50px;
  height: 78px;
  border-style: dashed;
  border-radius: 20px 20px 10px 10px;
}

.product-icon.ampoule {
  width: 42px;
  height: 84px;
  border-radius: 20px;
}

.product-icon.ampoule::before {
  display: block;
  width: 18px;
  height: 20px;
  margin: -18px auto 0;
  content: "";
  background: #eadcff;
  border: 2px solid var(--blue-500);
  border-radius: 10px 10px 2px 2px;
}

.integration-grid {
  grid-template-columns: repeat(3, 1fr);
}

.band {
  background: linear-gradient(180deg, var(--cyan-100), #ffffff);
}

.compact {
  max-width: 680px;
}

.capacity-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.capacity-copy,
.capacity-stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(74, 35, 130, 0.06);
}

.capacity-copy {
  padding: 30px;
}

.capacity-copy h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: 28px;
}

.capacity-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.capacity-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.capacity-stats div {
  min-height: 150px;
  padding: 24px;
}

.capacity-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 42px;
  line-height: 1;
}

.capacity-stats span {
  color: var(--muted);
  font-weight: 700;
}

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

.process div {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process span,
.quality-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue-500);
  font-weight: 700;
}

.process strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 21px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 96px 6vw;
}

.text-link {
  color: var(--blue-700);
  font-weight: 700;
  border-bottom: 2px solid var(--blue-500);
}

.sustain-list {
  display: grid;
  gap: 16px;
}

.sustain-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: var(--blue-900);
  color: var(--white);
  border-radius: 8px;
}

.sustain-list strong {
  font-size: 20px;
}

.sustain-list span {
  color: #e9ddff;
}

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

.quality-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: start;
  margin: 0 6vw 90px;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 8px;
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact p {
  color: #e9ddff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
  font: inherit;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
  min-height: calc(100vh - 112px);
  padding: 90px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(154, 108, 255, 0.35), transparent 34%),
    linear-gradient(135deg, #110724 0%, var(--blue-900) 58%, #25104b 100%);
}

.contact-page-copy {
  position: sticky;
  top: 120px;
  max-width: 640px;
}

.contact-page-copy .eyebrow,
.contact-page-copy h1 {
  color: var(--white);
}

.contact-page-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.98;
}

.contact-page-copy p {
  max-width: 560px;
  color: #e9ddff;
  font-size: 20px;
  line-height: 1.75;
}

.contact-page-copy .btn {
  margin-top: 22px;
}

.contact-office-panel {
  display: grid;
  gap: 16px;
}

.office-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.office-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #d9c7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 32px;
}

.office-card p {
  margin: 0 0 18px;
  color: #e9ddff;
  font-size: 18px;
  line-height: 1.65;
}

.office-card strong,
.office-card a {
  color: var(--white);
}

.office-card a {
  text-decoration: none;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 72px 6vw 90px;
  background: var(--white);
}

.contact-map-section h2 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
}

.contact-map-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-map-section iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--blue-900);
}

@media (max-width: 1000px) {
  .site-header {
    align-items: center;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav {
    display: none;
  }

  .site-header.is-nav-open .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 8px 6vw 18px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(22, 10, 46, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(22, 10, 46, 0.22);
  }

  .site-header.is-nav-open .nav a,
  .site-header.is-nav-open .nav-dropdown-toggle {
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .site-header.is-nav-open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px 0 8px 14px;
    color: rgba(255, 255, 255, 0.84);
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: none;
  }

  .site-header.is-nav-open .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.84);
  }

  .hero,
  .split-section,
  .creation-hero-detail,
  .about-lbg,
  .people-hero,
  .people-band,
  .sustainability-hero,
  .sustainability-band,
  .detail-content,
  .contact,
  .contact-page,
  .contact-map-section {
    grid-template-columns: 1fr;
  }

  .contact-page-copy {
    position: static;
  }

  .detail-panel {
    padding: 48px 6vw;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .creation-showcase {
    grid-template-columns: 1fr;
  }

  .market-hero,
  .market-decoration {
    grid-template-columns: 1fr;
  }

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

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

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

  .product-category-tile {
    min-height: 340px;
  }

  .product-category-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .creation-preview {
    position: relative;
    top: auto;
    order: -1;
    min-height: 360px;
  }

  .creation-list-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .list-read {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-media {
    margin-right: 0;
  }

  .hero-carousel-track {
    padding-right: 0;
  }

  .product-grid,
  .creations-grid,
  .capacity-panel,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-strip,
  .quality-grid,
  .policy-grid,
  .practice-grid,
  .sustainability-pillars,
  .environment-grid,
  .public-mold-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 38px 20px 34px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .product-grid,
  .creations-grid,
  .capacity-panel,
  .capacity-stats,
  .process {
    grid-template-columns: 1fr;
  }

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

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .hero-slide {
    min-height: 300px;
  }

  .hero-slide figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 12px 13px;
  }

  .signal-strip {
    margin: 0 20px;
  }

  .section,
  .split-section,
  .creations-section,
  .about-lbg,
  .people-hero,
  .people-band,
  .sustainability-hero,
  .sustainability-band,
  .creation-list-section,
  .detail-content {
    padding: 68px 20px;
  }

  .people-principles {
    grid-template-columns: 1fr;
  }

  .people-principles span {
    min-height: 92px;
  }

  .people-timeline div {
    grid-template-columns: 1fr;
  }

  .people-timeline span,
  .people-timeline p {
    grid-column: auto;
    grid-row: auto;
  }

  .people-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 20px 60px;
    padding: 28px;
  }

  .sustainability-options div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sustainability-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 20px 60px;
    padding: 28px;
  }

  .list-hero {
    padding: 58px 20px 28px;
  }

  .products-hero {
    padding: 64px 20px 32px;
  }

  .products-hero h1 {
    font-size: 34px;
  }

  .products-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-category-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 20px 58px;
  }

  .product-category-tile {
    min-height: 330px;
  }

  .product-category-tile span {
    min-height: 70px;
    font-size: 24px;
  }

  .mold-gallery {
    grid-template-columns: 1fr;
  }

  .mold-card img {
    height: 250px;
  }

  .product-category-note {
    padding: 46px 20px;
  }

  .market-hero,
  .market-decoration,
  .market-lines {
    padding: 64px 20px;
  }

  .market-copy h1 {
    font-size: 46px;
  }

  .market-image-wrap {
    min-height: 360px;
  }

  .market-stats {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

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

  .line-image {
    height: 230px;
  }

  .list-hero h1 {
    font-size: 52px;
  }

  .creation-preview {
    min-height: 300px;
  }

  .creation-preview img {
    max-height: 310px;
  }

  .list-brand {
    font-size: 34px;
    line-height: 1.08;
  }

  .detail-media {
    min-height: 500px;
  }

  .detail-panel {
    padding: 36px 20px 54px;
  }

  .detail-bottle {
    width: 160px;
    height: 280px;
  }

  .detail-bottle.square,
  .detail-bottle.oval {
    width: 190px;
    height: 270px;
  }

  .gallery-panel {
    min-height: 330px;
  }

  .sustain-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact {
    margin: 0 20px 60px;
    padding: 28px;
  }

  .footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}
