:root {
  --font-base: 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --bg: #ffffff;
  --bg-soft: #faf8f6;
  --surface: #ffffff;
  --surface-elevated: #fcfbfa;
  --text: #111111;
  --text-soft: #5f5f5f;
  --line: #e9e5e1;
  --line-strong: #d8d1ca;
  --accent: #111111;
  --accent-soft: #f2eeea;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 14px 40px rgba(17, 17, 17, 0.05);
  --shadow-hover: 0 20px 44px rgba(17, 17, 17, 0.08);
  --ease: 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #fdfcfb 60%, #fff 100%);
  color: var(--text);
  font-family: var(--font-base);
  overflow-x: hidden;
}

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

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 4.15rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.1rem;
}

.wrap {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: rgba(253, 216, 223, 0.45);
  top: -140px;
  right: -60px;
}

.orb-b {
  width: 340px;
  height: 340px;
  background: rgba(237, 242, 252, 0.55);
  bottom: -160px;
  left: -70px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(233, 229, 225, 0.82);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.logo-image {
  display: block;
  width: auto;
  height: 86px;
}

.menu {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.menu a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #565656;
  padding: 0.25rem 0;
  transition: color var(--ease);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.menu a.active,
.menu a:hover {
  color: #121212;
}

.menu a.active::after,
.menu a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 30px;
  border: 0;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #111;
  margin: 6px 0;
  transition: transform var(--ease), opacity var(--ease);
}

.lang-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  min-width: 74px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: calc(50% - 0.2rem);
  height: calc(100% - 0.4rem);
  border-radius: 999px;
  background: #111;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switch[data-lang="en"]::before {
  transform: translateX(100%);
}

.lang-btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #6d6d6d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--ease);
}

.lang-btn.active {
  background: transparent;
  color: #fff;
}

.lang-btn:not(.active):hover {
  color: #1f1f1f;
}

.hero-video {
  padding: 0;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: calc(100vh - 98px);
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f5f2ef;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-video-media.is-active {
  opacity: 1;
  transform: scale(1.005);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-video-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 2rem 1rem 1.5rem;
  color: #fff;
}

.hero-video-panel {
  width: min(860px, 94vw);
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-video-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-video-title {
  margin-top: 0.8rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 6.2vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-video-sub {
  margin-top: 0.95rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-video-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.hero-video-actions .btn {
  min-width: 188px;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.9);
  color: #111;
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.98);
  color: #111;
}

.hero-video-tabs {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  width: min(920px, 94vw);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1;
}

.hero-video-tab {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.25rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  min-width: 180px;
  text-align: center;
  transition: color var(--ease), border-color var(--ease);
}

.hero-video-tab.active,
.hero-video-tab:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

.hero {
  padding: 5.8rem 0 3.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: 1.4rem 0.4rem 1.4rem 0;
}

.hero-copy h1,
.sub-hero h1 {
  max-width: 14ch;
}

.eyebrow {
  margin-bottom: 0.95rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #767676;
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  font-family: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease), opacity var(--ease);
}

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

.btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: none;
}

.btn-outline {
  background: #fff;
  border-color: #111;
  color: #111;
}

.btn-outline:hover {
  border-color: #111;
  background: #f6f6f6;
  color: #111;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 190px;
  grid-template-rows: 1fr 1fr;
  gap: 0.95rem;
  min-height: 560px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  padding: 0.9rem;
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  box-shadow: var(--shadow-soft);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-card-main {
  grid-row: 1 / span 2;
}

.hero-card-main span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: #252525;
  border: 1px solid rgba(221, 216, 211, 0.85);
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
}

.section {
  padding: 5rem 0;
}

.sub-hero {
  padding: 4.5rem 0 1.9rem;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.15rem;
  align-items: end;
}

.sub-hero-meta {
  display: grid;
  gap: 0.45rem;
  text-align: right;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.sub-hero-meta p {
  font-size: 0.86rem;
}

.sub-hero-meta strong {
  color: #171717;
}

.section-head {
  text-align: center;
  margin: 0 auto 1.9rem;
  max-width: 760px;
}

.section-head-left {
  text-align: left;
  margin: 0 0 1.2rem;
  max-width: 980px;
}

.section-head-left h2 {
  max-width: none;
}

.section-preview .section-head h2 {
  margin-top: 0.35rem;
}

.home-categories {
  padding-top: 2.2rem;
  padding-bottom: 2.6rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.category-grid-single {
  grid-template-columns: 1fr;
}

.category-grid-catalog {
  grid-template-columns: minmax(220px, 320px) repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.category-tile {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(235, 229, 223, 0.9);
  box-shadow: var(--shadow-soft);
  background: #f7f4f0;
  display: block;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.category-tile-group {
  min-height: 360px;
}

.category-tile-catalog-main {
  min-height: 420px;
  max-width: 320px;
  justify-self: stretch;
  width: 100%;
}

.category-tile-catalog-main .category-media img {
  object-position: center center;
}

.category-tile-placeholder {
  min-height: 320px;
  background: #f4f1ed;
}

.category-tile-placeholder::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 18%, rgba(0, 0, 0, 0.2) 100%);
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(204, 193, 181, 0.9);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
}

.category-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: #f7f4f0;
}

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

.category-media-placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #f2eee9, #ebe5de);
}

.category-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  display: grid;
  place-content: center;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.26);
}

.category-label strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

.category-label small {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: none;
}

.category-label-group strong {
  margin-top: 0;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: none;
}

.tile-dark,
.tile-light,
.tile-pink,
.tile-soft,
.tile-bold,
.tile-earth {
  background: #f7f4f0;
}

.preview-action {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.chips {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.chip {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.62rem 0.95rem;
  color: #555;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

.chip:hover {
  border-color: #cfc6bd;
  color: #222;
}

.chip.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.products,
.preview-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #d5ccc3;
}

.product-link {
  display: block;
}

.product-visual {
  height: 360px;
  position: relative;
  background: radial-gradient(circle at 50% 12%, #ffffff 0%, #f7f4f1 70%, #f4f1ee 100%);
  border-bottom: 1px solid #f0ebe7;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  display: block;
}

.product-index {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(230, 225, 219, 0.9);
  border-radius: 999px;
  padding: 0.34rem 0.48rem;
}

.product-body {
  padding: 1rem 1rem 1.15rem;
}

.meta {
  font-size: 0.69rem;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-body h3,
.product .js-product-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: 1.1rem;
  color: #171717;
}

.product-copy {
  margin-top: 0.52rem;
  font-size: 0.9rem;
  color: #666;
}

.vision {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-simple {
  max-width: 860px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.vision-quote {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.vision-quote h2 {
  line-height: 1.02;
}

.vision-quote p + p,
.vision-story {
  margin-top: 0.9rem;
}

.vision-story {
  font-size: 0.98rem;
  color: #555;
  max-width: 60ch;
}

.vision-cards {
  display: grid;
  gap: 0.85rem;
}

.vision-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.88);
}

.vision-card h3 {
  font-size: 1.2rem;
}

.vision-card p {
  margin-top: 0.35rem;
}

.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-copy {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbf9f7 100%);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  margin-top: 0.15rem;
}

.contact-copy p {
  margin-top: 0.8rem;
  max-width: 48ch;
}

.contact-link,
.contact-address {
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: #212121;
}

.contact-link {
  transition: color var(--ease);
}

.contact-link:hover {
  color: #000;
}

.contact-address {
  margin-top: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  color: #4b4b4b;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.15rem;
  display: grid;
  gap: 0.52rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3e3e3e;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: #161616;
  border: 1px solid #e7e2dc;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a29a92;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #bcb0a4;
  box-shadow: 0 0 0 4px rgba(197, 185, 173, 0.15);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.form-status {
  min-height: 1.15rem;
  margin-top: 0.1rem;
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
}

.product-detail {
  padding-top: 4rem;
}

.detail-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.detail-gallery {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.detail-gallery-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.detail-gallery-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 0;
}

.detail-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.detail-gallery-track {
  display: flex;
}

.detail-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.detail-slide img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  padding: 0;
  display: block;
  background: #fff;
}

.detail-slide .view-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.view-badge {
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  color: #313131;
  border: 1px solid #e5ddd6;
  border-radius: 999px;
  padding: 0.26rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 198, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: #161616;
  font-size: 1.05rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.07);
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.gallery-nav:hover {
  background: #fff;
  border-color: #c9bfb6;
}

.gallery-nav.prev {
  left: 0.65rem;
}

.gallery-nav.next {
  right: 0.65rem;
}

.detail-gallery-meta {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem 0.8rem;
  align-items: start;
  padding: 0.15rem 0;
}

.detail-gallery-meta > * {
  min-width: 0;
}

.detail-thumbs {
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.detail-thumb {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  color: #535353;
  border-radius: 8px;
  width: 78px;
  height: 78px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 0.15rem;
  display: block;
}

.detail-thumb-badge {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.17rem 0.36rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 214, 206, 0.85);
  color: #2b2b2b;
}

.detail-thumb:hover {
  transform: translateY(-1px);
  border-color: #cec3b8;
}

.detail-thumb.active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.detail-thumb.active .detail-thumb-badge {
  background: #111;
  border-color: #111;
  color: #fff;
}

.detail-zoom-note {
  font-size: 0.75rem;
  color: #757575;
  letter-spacing: 0.04em;
  align-self: end;
}

.detail-gallery-meta .detail-variant-picker {
  grid-column: 1 / -1;
  margin-top: 0.1rem;
  width: 100%;
  min-width: 0;
}

.detail-copy {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.detail-copy p {
  margin-top: 0.9rem;
}

.detail-copy #detailDescription {
  font-size: 1rem;
  color: #505050;
}

.detail-variant-picker {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.detail-variant-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f4f4f;
}

.detail-variant-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.detail-variant-option {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.35rem;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.detail-variant-option:hover {
  border-color: #c7bbb0;
  transform: translateY(-1px);
}

.detail-variant-option.active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.detail-variant-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f2ef;
  border: 1px solid #eee7e0;
}

.detail-variant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.15rem;
}

.detail-variant-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.2;
}

.detail-specs {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.detail-specs p {
  color: #2f2f2f;
  line-height: 1.55;
}

.detail-features {
  margin: 1rem 0 0;
  padding-left: 1.05rem;
  color: #333;
}

.detail-features li {
  margin-bottom: 0.4rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 13, 13, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-dialog {
  position: relative;
  width: min(980px, 96vw);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(24, 24, 24, 0.92);
  padding: 0.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 12%, #2b2b2b 0%, #191919 100%);
}

.image-lightbox img {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: contain;
  display: block;
  padding: 1rem;
}

.image-lightbox-close {
  position: absolute;
  top: -0.65rem;
  right: -0.65rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.image-lightbox .gallery-nav {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.image-lightbox .gallery-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1rem 0 1.15rem;
}

.footer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #6b6b6b;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.delay-3 {
  transition-delay: 250ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .vision-grid,
  .contact-grid,
  .detail-grid,
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero-meta {
    text-align: left;
    max-width: 460px;
  }

  .hero-media {
    min-height: 480px;
    grid-template-columns: 1fr 170px;
  }

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

  .category-tile {
    min-height: 260px;
  }

  .hero-video-frame {
    height: 62vh;
    min-height: 420px;
  }

  .hero-video-title {
    font-size: clamp(2.15rem, 6.2vw, 3.8rem);
  }

  .hero-video-kicker {
    font-size: 0.82rem;
  }

  .detail-slide img {
    height: 520px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 86px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .menu.open {
    display: flex;
  }

  .nav-right {
    gap: 0.55rem;
  }

  .logo-image {
    height: 68px;
  }

  .lang-switch {
    min-width: 68px;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .hero-video-frame {
    height: 74svh;
    min-height: 560px;
    max-height: 760px;
  }

  .hero-video-content {
    padding: 1rem 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .hero-video-panel {
    margin-top: 1.2rem;
    align-content: start;
  }

  .hero-video-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-video-title {
    margin-top: 0.55rem;
    font-size: clamp(1.75rem, 8.8vw, 2.7rem);
  }

  .hero-video-sub {
    margin-top: 0.65rem;
    font-size: 0.84rem;
    line-height: 1.4;
    max-width: 34ch;
  }

  .hero-video-actions {
    margin-top: 0.95rem;
    gap: 0.5rem;
  }

  .hero-video-actions .btn {
    min-width: unset;
    width: 100%;
  }

  .hero-video-tabs {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    gap: 0.45rem;
    margin-top: 0.8rem;
  }

  .hero-video-tab {
    min-width: unset;
    width: 100%;
    font-size: 0.72rem;
    padding: 0.25rem 0.2rem 0.4rem;
  }

  .home-categories {
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }

  .section-head-left h2 {
    max-width: 14ch;
  }

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

  .category-grid-single {
    grid-template-columns: 1fr;
  }

  .category-grid-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile {
    min-height: 210px;
    border-radius: 14px;
  }

  .category-tile-group {
    min-height: 250px;
  }

  .category-tile-catalog-main {
    min-height: 260px;
    max-width: none;
    grid-column: auto;
    aspect-ratio: 0.85 / 1;
  }

  .category-tile-catalog-main .category-media img {
    object-position: center 58%;
  }

  .category-tile-catalog-main .category-label {
    place-content: end center;
    align-content: end;
    padding: 0.75rem;
    text-align: center;
  }

  .category-tile-catalog-main .category-label-group strong {
    font-size: 1.05rem;
    line-height: 1.02;
  }

  .category-tile-catalog-main .category-label small {
    margin-top: 0.35rem;
    font-size: 0.62rem;
    line-height: 1.22;
    max-width: 22ch;
  }

  .category-tile-placeholder {
    min-height: 220px;
  }

  .category-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    padding: 0.75rem;
  }

  .category-label strong {
    margin-top: 0.28rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .category-label small {
    margin-top: 0.38rem;
    font-size: 0.58rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .category-label-group strong {
    font-size: 1.2rem;
    line-height: 1;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-media {
    min-height: 370px;
    grid-template-columns: 1fr 122px;
    gap: 0.7rem;
  }

  .hero-card {
    padding: 0.6rem;
  }

  .section,
  .sub-hero {
    padding-top: 4rem;
  }

  .section {
    padding-bottom: 4rem;
  }

  .products,
  .preview-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .product-visual {
    height: 210px;
  }

  .product-body {
    padding: 0.75rem 0.75rem 0.9rem;
  }

  .product-body h3,
  .product .js-product-name {
    font-size: 0.95rem;
    line-height: 1.08;
  }

  .product-copy {
    font-size: 0.78rem;
  }

  .contact-copy,
  .contact-form,
  .detail-copy,
  .vision-quote {
    padding: 1rem;
    border-radius: 18px;
  }

  .detail-gallery {
    padding: 0;
    border-radius: 0;
  }

  .detail-slide img {
    height: 380px;
    padding: 0;
  }

  .gallery-nav {
    width: 34px;
    height: 34px;
  }

  .detail-gallery-meta {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .detail-zoom-note {
    order: 2;
  }

  .detail-gallery-meta .detail-variant-picker {
    order: 3;
    margin-top: 0;
  }

  .detail-variant-title {
    font-size: 0.72rem;
  }

  .detail-variant-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
    margin-top: 0.55rem;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    touch-action: pan-x;
  }

  .detail-variant-grid::-webkit-scrollbar {
    display: none;
  }

  .detail-variant-option {
    flex: 0 0 136px;
    width: 136px;
    grid-template-columns: 38px 1fr;
    gap: 0.45rem;
    padding: 0.3rem;
  }

  .detail-variant-thumb {
    width: 38px;
    height: 38px;
  }

  .detail-variant-label {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer-wrap {
    font-size: 0.8rem;
  }
}
