:root {
  --ink: #1f2430;
  --muted: #667085;
  --paper: #fbf7ef;
  --porcelain: #fffdf8;
  --sand: #eadcc9;
  --linen: #f3eadf;
  --line: #ded4c7;
  --night: #252b3d;
  --slate: #58657c;
  --blue: #8fa8c4;
  --clay: #bd7358;
  --coral: #e36642;
  --gold: #c79a54;
  --white: #ffffff;
  --stage: linear-gradient(145deg, #f2e5d4 0%, #dfd2c5 100%);
  --shadow: 0 28px 80px rgba(31, 36, 48, 0.14);
  --soft-shadow: 0 16px 44px rgba(31, 36, 48, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 9%, rgba(199, 154, 84, 0.14), transparent 30%),
    radial-gradient(circle at 88% 7%, rgba(143, 168, 196, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf7ef 0%, #f6efe5 42%, #fbf7ef 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(31, 36, 48, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 36, 48, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 62%);
  pointer-events: none;
}

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

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

button,
input {
  font: inherit;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 9px clamp(18px, 5vw, 76px);
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.announcement a {
  color: #f4c178;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 76px);
  background: rgba(251, 247, 239, 0.9);
  border-bottom: 1px solid rgba(31, 36, 48, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 36, 48, 0.14);
  border-radius: 8px;
  background: var(--porcelain);
  color: var(--night);
  font-weight: 900;
}

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

.brand strong {
  color: var(--ink);
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: #4f5667;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.primary-button,
.secondary-button,
.inquiry-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.header-cta {
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.primary-button {
  padding: 0 26px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(227, 102, 66, 0.24);
}

.secondary-button {
  padding: 0 24px;
  border: 1px solid rgba(31, 36, 48, 0.18);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(120deg, rgba(251, 247, 239, 0.98) 0%, rgba(243, 234, 223, 0.96) 50%, rgba(222, 214, 208, 0.94) 100%),
    radial-gradient(circle at 86% 18%, rgba(143, 168, 196, 0.25), transparent 28%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 13%;
  right: 5%;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 50%;
  animation: halo-breathe 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.78));
  pointer-events: none;
}

.hero-copy,
.hero-atelier {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 30px;
  color: #515969;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.hero-stats article {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.66);
  box-shadow: var(--soft-shadow);
}

.hero-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 24px;
  font-weight: 900;
}

.hero-stats strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.hero-atelier {
  min-height: 650px;
}

.hero-card,
.feature-product,
.gallery-card,
.tab-panel,
.custom-visual {
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.7), transparent 28%),
    var(--stage);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  overflow: hidden;
}

.hero-card img,
.feature-product img,
.gallery-card img,
.tab-panel img,
.custom-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(31, 36, 48, 0.16));
}

.hero-card-main {
  right: 10%;
  bottom: 42px;
  width: min(78%, 520px);
  height: 520px;
  padding: 42px 42px 92px;
  animation: float-main 6s ease-in-out infinite alternate;
}

.hero-card-main div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 36, 48, 0.12);
}

.hero-card-main span,
.feature-product span,
.gallery-card span,
.tab-panel span,
.process-list span,
.proof-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-main strong {
  color: var(--ink);
  font-size: 20px;
}

.hero-card.mini {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 190px;
  height: 210px;
  padding: 18px;
  animation: float-soft 5.2s ease-in-out infinite alternate;
}

.hero-card.mini img {
  min-height: 0;
}

.hero-card.mini strong {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 36, 48, 0.1);
  font-size: 14px;
}

.card-notes {
  top: 18px;
  left: 8%;
}

.card-bag {
  top: 36%;
  left: 0;
  animation-delay: 0.4s;
}

.card-tape {
  top: 11%;
  right: 0;
  animation-delay: 0.8s;
}

.video-orb {
  position: absolute;
  right: 0;
  bottom: 110px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(31, 36, 48, 0.24);
  animation: pulse-orb 3.4s ease-in-out infinite;
}

.video-orb span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.video-orb strong {
  margin-top: -26px;
  font-size: 13px;
}

.buyer-strip {
  display: grid;
  grid-template-columns: 0.8fr repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 76px) 34px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.2), rgba(251, 247, 239, 0.92));
}

.buyer-strip span,
.buyer-strip strong {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  background: rgba(255, 253, 248, 0.72);
}

.buyer-strip span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buyer-strip strong {
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.section {
  padding: clamp(58px, 7vw, 108px) clamp(18px, 5vw, 76px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.editorial-intro p:last-child {
  margin-bottom: 8px;
  color: #545c6c;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.product-marquee {
  overflow: visible;
  padding: 4px 0 28px;
}

.marquee-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.feature-product[aria-hidden="true"] {
  display: none;
}

.feature-product {
  position: relative;
  display: grid;
  grid-template-rows: 268px auto auto;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-product::after,
.gallery-card::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 130px;
  left: 12%;
  height: 20px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.13);
  filter: blur(14px);
}

.feature-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 88px rgba(31, 36, 48, 0.18);
}

.feature-product img {
  position: relative;
  z-index: 1;
  height: 268px;
}

.feature-product span {
  display: block;
  margin-top: 22px;
}

.feature-product strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.12;
}

.collection-tabs {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(37, 43, 61, 0.97), rgba(77, 86, 109, 0.92)),
    radial-gradient(circle at 80% 30%, rgba(227, 102, 66, 0.2), transparent 28%);
  color: var(--white);
}

.tab-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.tab-buttons {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.tab-buttons button {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.tab-buttons button:hover,
.tab-buttons button.active {
  background: var(--white);
  color: var(--night);
  transform: translateX(8px);
}

.tab-stage {
  position: relative;
  min-height: 480px;
}

.tab-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.tab-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

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

.panel-products img {
  aspect-ratio: 1;
  padding: 14px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.42);
}

.tab-panel h3 {
  margin: 12px 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.96;
}

.tab-panel p {
  color: #545c6c;
  line-height: 1.65;
}

.category-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 360px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 88px rgba(31, 36, 48, 0.16);
}

.gallery-card img {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 10px;
}

.gallery-card div {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 36, 48, 0.12);
}

.gallery-card h3 {
  margin: 8px 0 0;
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.08;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.86fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}

.custom-visual {
  position: relative;
  min-height: 560px;
  padding: 54px;
  overflow: hidden;
}

.custom-visual img {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 450px;
}

.material-chip {
  position: absolute;
  z-index: 2;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--soft-shadow);
}

.chip-one {
  top: 50px;
  left: 42px;
}

.chip-two {
  right: 42px;
  top: 45%;
}

.chip-three {
  bottom: 48px;
  left: 54px;
}

.custom-copy > p:not(.eyebrow) {
  color: #545c6c;
  line-height: 1.65;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.process-list article {
  padding: 20px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--soft-shadow);
}

.process-list strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(58px, 7vw, 108px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, #efe4d7, #f9f4ed);
}

.video-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #545c6c;
  line-height: 1.65;
}

.video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.video-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(31, 36, 48, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.proof-panel {
  position: sticky;
  top: 110px;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 26px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--soft-shadow);
}

.proof-grid strong {
  display: block;
  margin: 10px 0;
  font-size: 24px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  padding: clamp(58px, 7vw, 108px) clamp(18px, 5vw, 76px);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 16%, rgba(143, 168, 196, 0.24), transparent 28%),
    linear-gradient(135deg, var(--night), #4c5368);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.inquiry-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 14px;
}

.inquiry-form button {
  border: 0;
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(31, 36, 48, 0.1);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@keyframes halo-breathe {
  from {
    transform: scale(0.96);
    opacity: 0.5;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes float-main {
  from {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  to {
    transform: translate3d(0, -18px, 0) rotate(1deg);
  }
}

@keyframes float-soft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes pulse-orb {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes product-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 72px));
  }
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .collection-tabs,
  .custom-section,
  .video-section,
  .proof-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-atelier {
    min-height: 560px;
  }

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

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

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

  .proof-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .announcement {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-stats,
  .editorial-intro,
  .buyer-strip,
  .marquee-track,
  .category-gallery {
    grid-template-columns: 1fr;
  }

  .hero-atelier {
    min-height: 620px;
  }

  .hero-card-main {
    right: 0;
    bottom: 24px;
    width: 100%;
    height: 420px;
  }

  .hero-card.mini {
    width: 150px;
    height: 170px;
  }

  .card-notes {
    left: 0;
  }

  .card-bag {
    top: 27%;
  }

  .card-tape {
    right: 0;
  }

  .video-orb {
    right: 12px;
    bottom: 32px;
    width: 118px;
    height: 118px;
  }

  .tab-stage {
    min-height: 620px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .panel-products {
    grid-template-columns: 1fr;
  }

  .panel-products img {
    height: 180px;
  }

  .gallery-card.large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
