/* Full-width mega menu override */
.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

body .main-nav>li {
  position: static;
}

.main-nav>li>a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
}

body .mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transform: translateY(10px);

  background: rgba(255, 255, 255, 100);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(35, 31, 27, 0.12);

  padding: clamp(10px, 2vh, 24px) clamp(20px, 5vw, max(40px, calc(50vw - 600px)));

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4px, 1vh, 12px) clamp(20px, 3vw, 32px);
}

body .mega.mega-2 {
  width: 100vw;
  min-width: 100vw;
  grid-template-columns: repeat(2, 1fr);
}

body .main-nav>li:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Theme Name: Bellina | Description: Editorial professional beauty showcase | Version: 2.1.0 | Text Domain: bellina */
:root {
  --ink: #231f1b;
  --ivory: #ffffff;
  --ivory-2: #f7f6f4;
  --gold: #a9803e;
  --gold-light: #c9a76b;
  --line: #e7e4de;
  --muted: #4a443c;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display {
  font:
    500 clamp(44px, 6.2vw, 104px)/0.91 Manrope,
    sans-serif;
  letter-spacing: -0.075em;
}

.title {
  font:
    600 clamp(32px, 3.7vw, 62px)/0.98 Manrope,
    sans-serif;
  letter-spacing: -0.065em;
}

.text {
  color: var(--muted);
  line-height: 1.75;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--ink);
  padding: 15px 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s;
}

.button:hover,
.btn:hover {
  background: var(--ink);
  color: #fff;
}

.button.light,
.btn-outline {
  border-color: #fff;
  color: #fff;
}

.button.light:hover,
.btn-outline:hover {
  background: #fff;
  color: #111;
}

.button .arrow,
.btn .arrow {
  font-size: 18px;
  line-height: 0;
  transition: transform 0.25s;
}

.button:hover .arrow,
.btn:hover .arrow {
  transform: translateX(4px);
}

.announcement {
  background: var(--ink);
  color: var(--ivory-2);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: clamp(4px, 1vh, 9px) 0;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(35, 31, 27, 0.06);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: clamp(8px, 1.5vh, 16px) clamp(16px, 3vw, 40px);
  transition: padding 0.3s var(--ease);
}

.site-header.scrolled .nav-row {
  padding: 10px clamp(16px, 3vw, 40px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo .custom-logo-link,
.logo .custom-logo-link img,
.logo img {
  max-height: clamp(32px, min(5vw, 6vh), 65px);
  width: auto;
  object-fit: contain;
  display: block;
}

.logo .brand-text {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
}

.logo>span:first-child {
  color: var(--gold);
  font-size: 13px;
  vertical-align: top;
  margin-right: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  margin-right: 38px;
}

.main-nav>li {
  position: static;
}

.main-nav>li>a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
}

.main-nav>li>a .car {
  width: 8px;
  height: 8px;
  transition: transform 0.3s var(--ease);
}

.main-nav>li:hover>a .car {
  transform: rotate(180deg);
}

.main-nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.main-nav>li:hover>a::after {
  width: 100%;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}

.header-icons svg {
  width: 19px;
  height: 19px;
  cursor: pointer;
}

.header-icons .btn {
  padding: 11px 22px;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  min-width: 100vw;
  transform: translateY(10px);
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(35, 31, 27, 0.12);
  padding: 40px max(40px, calc(50vw - 600px));
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.mega.mega-2 {
  width: 100vw;
  min-width: 100vw;
  grid-template-columns: repeat(2, 1fr);
}

.main-nav>li:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-image-box {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.5vh, 16px);
  width: 100%;
  max-width: clamp(300px, 80vw, 796px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0px clamp(8px, 1.5vw, 16px);
}

.mega-image-row {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}

.mega-text-row {
  grid-column: 1/-1;
  width: 100%;
  max-width: clamp(300px, 80vw, 796px);
  margin: 0 auto;
  display: flex;
  gap: clamp(20px, 4vw, 80px);
  padding-left: calc(clamp(8px, 1.5vw, 16px) + clamp(70px, 10vw, 140px) + 12px + 24px);
  /* Exactly offset by: box padding + logo width + gap + visual image offset */
  box-sizing: border-box;
}

.mega-image-item {
  flex: 0 0 auto;
  width: clamp(70px, 10vw, 140px);
  text-align: center;
  padding: clamp(2px, 1vh, 12px) clamp(2px, 1vw, 8px);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

a.mega-image-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.mega-image-item .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.mega-image-item .thumb img {
  max-height: clamp(40px, 10vh, 120px);
  max-width: clamp(40px, 10vh, 120px);
  height: auto;
  width: auto;
  object-fit: contain;
}

.mega-image-item h6 {
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.partner-logo-item {
  background: #fcfcfc;
  justify-content: center;
}

.partner-logo-item img,
.partner-logo-item .custom-logo {
  max-height: clamp(60px, 8vw, 120px) !important;
  width: auto !important;
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mega-col {
    margin-top: 16px;
    padding: 0 16px;
  }

  .mega-promo {
    margin-top: 16px;
    padding: 16px;
  }

  .mega-image-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .mega-image-row::-webkit-scrollbar {
    display: none;
  }

  .mega-text-row {
    padding-left: 16px;
    padding-right: 16px;
    gap: 32px;
    flex-direction: column;
  }

  .mega-image-item {
    flex: 0 0 120px;
    scroll-snap-align: start;
  }

  .partner-logo-item {
    flex: 0 0 120px;
  }
}

.mega-image-item:hover h6 {
  color: var(--gold);
}

.mega-image-item:hover .thumb {
  transform: translateY(-3px);
}

.mega-kr-badge {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  padding: 14px 4px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mega-kr-badge img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.mega-kr-badge span {
  font-family: "Manrope", sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.25;
  display: block;
}

.mega-divider {
  display: none;
}

.main-nav>li:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col h5 {
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
}

.mega-col a {
  display: block;
  font-size: clamp(12px, 1.2vw, 14.5px);
  padding: 7px 0;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: all 0.25s var(--ease);
}

.mega-col a:hover {
  color: var(--ink);
  padding-left: 6px;
}

@media (max-height: 620px) {
  body .mega {
    gap: 0px 24px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .mega-text-row .mega-col h5 {
    grid-column: 1 / -1 !important;
    margin-bottom: 4px !important;
  }
  .mega-text-row .mega-col a {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    padding: 3px 0 !important;
  }
  .mega-image-item .thumb img {
    max-height: 60px !important;
  }
  .partner-logo-item img,
  .partner-logo-item .custom-logo {
    max-height: 60px !important;
  }
  .mega-promo {
    padding-top: 10px !important;
    margin-top: 2px !important;
  }
  .site-header .nav-row {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .site-header .logo img {
    max-height: 44px !important;
  }
  .main-nav > li > a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .announcement {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

.mega-promo {
  grid-column: 1/-1;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-promo p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}

.mega-promo a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero {
  position: relative;
  height: clamp(400px, 80vh, 800px);
  min-height: clamp(400px, 60vw, 600px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Dynamic Alignments */
.hero-slide.align-center .wrap {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-slide.align-center .hero-copy {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slide.align-right .wrap {
  grid-template-columns: 1.05fr 0.95fr;
  /* Swap columns visually */
}

.hero-slide.align-right .hero-copy {
  order: 2;
  /* Move to right column */
  text-align: right;
  margin-left: auto;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.hero-slide.align-right .hero-visual {
  order: 1;
  /* Move to left column */
}

/* Background Videos */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-copy .eyebrow {
  color: inherit;
  opacity: 0.85;
}

.hero-copy .eyebrow::before {
  background: currentColor;
  opacity: 0.6;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  margin: 18px 0 22px;
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s 0.25s var(--ease);
  color: #fff;
}

.hero-slide.active .hero-copy h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy p {
  font-size: 16.5px;
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
  opacity: 0.85;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s 0.4s var(--ease);
}

.hero-slide.active .hero-copy p {
  opacity: 0.85;
  transform: translateY(0);
}

.hero-copy .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s 0.55s var(--ease);
}

.hero-slide.active .hero-copy .btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 10px;
}

.hero-visual img {
  max-height: 90vh;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
  transform: scale(0.94) translateY(10px);
  opacity: 0;
  transition: all 1.3s 0.3s var(--ease);
  max-width: 820px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: 0;
}

.hero-slide.active .hero-visual img {
  transform: scale(1.18) translateY(0);
  opacity: 1;
  animation: kenburns 9s ease-in-out infinite alternate;
}

.hero-bg-ring {
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bg-ring::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
}

.hero-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
}

.hero-dot.active::after {
  animation: fillDot 6.5s linear forwards;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  z-index: 5;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
}

.hero-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
}

.slide-hair {
  background: linear-gradient(120deg, #3b2a1d 0%, #5a3e28 55%, #6e4a32 100%);
}

.slide-skin {
  background: linear-gradient(120deg, #3a2a33 0%, #5e3f4b 55%, #8c5468 100%);
}

.slide-new {
  background: linear-gradient(120deg, #1f1c19 0%, #332b23 55%, #4a3a28 100%);
}

.slide-hair .hero-copy,
.slide-skin .hero-copy,
.slide-new .hero-copy {
  color: #fff;
}

@keyframes kenburns {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.12) translateY(-10px);
  }
}

@keyframes fillDot {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
  padding: 120px 100px;
  background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
  position: relative;
  overflow: hidden;
}

.intro:before,
.intro:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.intro:before {
  width: 520px;
  height: 520px;
  right: -150px;
  top: -220px;
  background: radial-gradient(circle,
      rgba(169, 128, 62, 0.18),
      rgba(169, 128, 62, 0));
}

.intro:after {
  width: 440px;
  height: 440px;
  left: -180px;
  bottom: -180px;
  background: radial-gradient(circle,
      rgba(136, 104, 80, 0.15),
      rgba(136, 104, 80, 0));
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro .eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
}

.intro .title,
.featured .title,
.videos .title {
  max-width: 650px;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.intro .text {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  align-self: center;
}

.intro-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  min-height: 180px;
  margin-top: 10px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 31, 27, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(35, 31, 27, 0.08);
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  animation: floatCard 7s ease-in-out infinite;
  text-align: center;
}

.mini-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e8d3, #d9bb7f);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(35, 31, 27, 0.06);
}

.card-a {
  transform: translateY(10px);
}

.card-b {
  transform: translateY(-8px);
  animation-delay: 1s;
}

.card-c {
  transform: translateY(18px);
  animation-delay: 2s;
}

.mini-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(35, 31, 27, 0.12);
}

.mini-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.9;
}

.orb-one {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #d9bb7f 0%, rgba(217, 187, 127, 0) 68%);
  right: 30px;
  top: -16px;
  animation: pulse 5s ease-in-out infinite;
}

.orb-two {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle,
      rgba(169, 128, 62, 0.22) 0%,
      rgba(169, 128, 62, 0) 72%);
  left: 10px;
  bottom: -28px;
  animation: pulse 7s ease-in-out infinite;
}

.section {
  padding: 120px 0;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}

.section-head .text {
  max-width: 340px;
}

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

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

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ivory-2);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}

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

.product-copy {
  padding: 18px 0;
}

.product-copy h3 {
  margin: 8px 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.product-copy p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.discover {
  display: inline-flex;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discover:after {
  content: "→";
  margin-left: 8px;
  transition: 0.2s;
}

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

.category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--ink);
  color: #fff;
}

.category.reverse {
  direction: rtl;
  background: var(--ivory-2);
  color: var(--ink);
}

.category>* {
  direction: ltr;
}

.category-visual {
  position: relative;
  overflow: hidden;
  background: #28221c;
}

.category.reverse .category-visual {
  background: var(--ivory-2);
}

.category-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 10%;
  transition: 0.6s;
}

.category:hover img {
  transform: scale(1.035);
}

.category-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 8vw, 130px);
}

.category-copy .text {
  max-width: 390px;
  margin: 26px 0 32px;
  color: inherit;
  opacity: 0.7;
}

.category-preview {
  display: flex;
  gap: 13px;
  margin-top: 45px;
}

.category-preview img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: #fff;
}

.campaign {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #e9e1d7;
}

.campaign-copy {
  padding: 110px clamp(35px, 7vw, 130px);
}

.campaign-copy .text {
  max-width: 430px;
  margin: 28px 0;
}

.campaign-image {
  display: grid;
  place-items: center;
  min-height: 550px;
  background: #c5b09a;
}

.campaign-image img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 18px rgba(0, 0, 0, 0.15));
}

.professional {
  padding: 150px 0;
  background: #111;
  color: #fff;
}

.professional-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
}

.professional .text {
  color: #bdbab5;
  max-width: 430px;
  margin: 30px 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.principle {
  padding: 32px 24px 20px 0;
  border-right: 1px solid var(--line);
}

.principle:not(:first-child) {
  padding-left: 24px;
}

.principle h3 {
  font-size: 14px;
  letter-spacing: -0.03em;
}

.principle p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-hero {
  padding: 120px 0 70px;
  background: var(--ivory-2);
}

.filter {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.filter a {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.filter a:hover,
.filter a.active {
  border-color: #111;
}

.single-product {
  padding: 70px 0 130px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
}

.product-gallery {
  min-height: 640px;
  background: var(--ivory-2);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: contain;
  padding: 8%;
}

.product-detail {
  padding-top: 35px;
}

.product-detail .text {
  margin: 25px 0;
}

.product-meta {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  font-size: 13px;
  line-height: 2;
}

.product-meta strong {
  display: inline-block;
  width: 110px;
}

.footer {
  background: #111;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 35px;
}

.footer h4 {
  margin: 0 0 17px;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: #bbb7b1;
  font-size: 12px;
  line-height: 1.7;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-logo-wrapper img,
.footer-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer .brand {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}

.footer .brand span {
  color: var(--gold);
  font-size: 13px;
  margin-right: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 10px;
}

.shell {
  width: min(calc(100% - 80px), var(--max));
  margin: auto;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  margin-left: 12px;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 800px) {

  .shell,
  .wrap {
    width: min(calc(100% - 40px), var(--max));
    padding: 0;
  }

  .nav-row {
    padding: 14px 0;
  }

  .header-icons .btn {
    display: none;
  }

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav>li {
    margin: 0;
    width: 100%;
  }

  .main-nav>li>a {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .main-nav>li:last-child>a {
    border-bottom: none;
  }

  .main-nav>li .mega {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    padding: 10px 0;
    width: 100%;
    min-width: 100%;
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav>li.accordion-open .mega {
    display: flex;
  }

  .main-nav>li.accordion-open>a .car {
    transform: rotate(180deg);
    transition: transform 0.3s var(--ease);
  }

  .mega.mega-2 {
    display: flex;
    flex-direction: column;
  }

  .hero,
  .category,
  .campaign,
  .professional-grid,
  .product-layout,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 100px 20px 75px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .intro,
  .section {
    padding: 80px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .text {
    margin-top: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category {
    min-height: 0;
  }

  .category.reverse .category-visual {
    order: 2;
  }

  .category-copy {
    padding: 70px 20px;
  }

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

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle {
    padding: 25px 14px !important;
  }

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

  .display {
    font-size: 52px;
  }

  .product-gallery,
  .product-gallery img {
    min-height: 380px;
  }

  .catalog-hero {
    padding: 80px 0 45px;
  }
}

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

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

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

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.announcement {
  background: var(--ink);
  color: var(--ivory-2);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(35, 31, 27, 0.06);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px clamp(16px, 3vw, 40px);
  transition: padding 0.3s var(--ease);
}

.site-header.scrolled .nav-row {
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo .custom-logo-link,
.logo .custom-logo-link img,
.logo img {
  max-height: clamp(32px, 5vw, 65px);
  width: auto;
  object-fit: contain;
  display: block;
}

.logo .brand-text {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
}

.logo>span:first-child {
  color: var(--gold);
  font-size: 13px;
  vertical-align: top;
  margin-right: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav>li {
  position: relative;
}

.main-nav>li>a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
}

.main-nav>li>a .car {
  width: 8px;
  height: 8px;
  transition: transform 0.3s var(--ease);
}

.main-nav>li:hover>a .car {
  transform: rotate(180deg);
}

.main-nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.main-nav>li:hover>a::after {
  width: 100%;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}

.header-icons svg {
  width: 19px;
  height: 19px;
  cursor: pointer;
}

.header-icons .btn {
  padding: 11px 22px;
}

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(35, 31, 27, 0.12);
  min-width: 420px;
  padding: 30px 34px;
  opacity: 0;
  visibility: hidden;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}



.mega-col h5 {
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
}

.mega-col a {
  display: block;
  font-size: clamp(12px, 1.2vw, 14.5px);
  padding: 7px 0;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: all 0.25s var(--ease);
}

.mega-col a:hover {
  color: var(--ink);
  padding-left: 6px;
}

.mega-promo {
  grid-column: 1/-1;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-promo p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}

.mega-promo a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy .eyebrow {
  color: inherit;
  opacity: 0.85;
}

.hero-copy .eyebrow::before {
  background: currentColor;
  opacity: 0.6;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  margin: 18px 0 22px;
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s 0.25s var(--ease);
  color: #fff;
}

.hero-slide.active .hero-copy h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy p {
  font-size: 16.5px;
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
  opacity: 0.85;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s 0.4s var(--ease);
}

.hero-slide.active .hero-copy p {
  opacity: 0.85;
  transform: translateY(0);
}

.hero-copy .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s 0.55s var(--ease);
}

.hero-slide.active .hero-copy .btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 10px;
}

.hero-visual img {
  max-height: 90vh;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
  transform: scale(0.94) translateY(10px);
  opacity: 0;
  transition: all 1.3s 0.3s var(--ease);
  max-width: 820px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: 0;
}

.hero-slide.active .hero-visual img {
  transform: scale(1.18) translateY(0);
  opacity: 1;
  animation: kenburns 9s ease-in-out infinite alternate;
}

.hero-bg-ring {
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bg-ring::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
}

.hero-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
}

.hero-dot.active::after {
  animation: fillDot 6.5s linear forwards;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  z-index: 5;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
}

.hero-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
}

.slide-hair {
  background: linear-gradient(120deg, #3b2a1d 0%, #5a3e28 55%, #6e4a32 100%);
}

.slide-skin {
  background: linear-gradient(120deg, #3a2a33 0%, #5e3f4b 55%, #8c5468 100%);
}

.slide-new {
  background: linear-gradient(120deg, #1f1c19 0%, #332b23 55%, #4a3a28 100%);
}

.slide-hair .hero-copy,
.slide-skin .hero-copy,
.slide-new .hero-copy {
  color: #fff;
}

@keyframes kenburns {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.12) translateY(-10px);
  }
}

@keyframes fillDot {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
  padding: 120px 100px;
  background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
  position: relative;
  overflow: hidden;
}

.intro:before,
.intro:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.intro:before {
  width: 520px;
  height: 520px;
  right: -150px;
  top: -220px;
  background: radial-gradient(circle,
      rgba(169, 128, 62, 0.18),
      rgba(169, 128, 62, 0));
}

.intro:after {
  width: 440px;
  height: 440px;
  left: -180px;
  bottom: -180px;
  background: radial-gradient(circle,
      rgba(136, 104, 80, 0.15),
      rgba(136, 104, 80, 0));
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro .eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
}

.intro .title,
.featured .title,
.videos .title {
  max-width: 650px;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.intro .text {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  align-self: center;
}

.intro-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  min-height: 180px;
  margin-top: 10px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 31, 27, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(35, 31, 27, 0.08);
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  animation: floatCard 7s ease-in-out infinite;
  text-align: center;
}

.mini-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e8d3, #d9bb7f);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(35, 31, 27, 0.06);
}

.card-a {
  transform: translateY(10px);
}

.card-b {
  transform: translateY(-8px);
  animation-delay: 1s;
}

.card-c {
  transform: translateY(18px);
  animation-delay: 2s;
}

.mini-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(35, 31, 27, 0.12);
}

.mini-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.9;
}

.orb-one {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #d9bb7f 0%, rgba(217, 187, 127, 0) 68%);
  right: 30px;
  top: -16px;
  animation: pulse 5s ease-in-out infinite;
}

.orb-two {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle,
      rgba(169, 128, 62, 0.22) 0%,
      rgba(169, 128, 62, 0) 72%);
  left: 10px;
  bottom: -28px;
  animation: pulse 7s ease-in-out infinite;
}

.section {
  padding: 120px 0;
}

.@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}

.section-head .text {
  max-width: 340px;
}

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

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

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}

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

.product-copy {
  padding: 18px 0;
}

.product-copy h3 {
  margin: 8px 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.product-copy p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.discover {
  display: inline-flex;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discover:after {
  content: "→";
  margin-left: 8px;
  transition: 0.2s;
}

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

.category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--ink);
  color: #fff;
}

.category.reverse {
  direction: rtl;
  background: var(--paper);
  color: var(--ink);
}

.category>* {
  direction: ltr;
}

.category-visual {
  position: relative;
  overflow: hidden;
  background: #28221c;
}

.category-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 10%;
  transition: 0.6s;
}

.category:hover img {
  transform: scale(1.035);
}

.category-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 8vw, 130px);
}

.category-copy .text {
  max-width: 390px;
  margin: 26px 0 32px;
  color: inherit;
  opacity: 0.7;
}

.category-preview {
  display: flex;
  gap: 13px;
  margin-top: 45px;
}

.category-preview img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: #fff;
}

.campaign {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #e9e1d7;
}

.campaign-copy {
  padding: 110px clamp(35px, 7vw, 130px);
}

.campaign-copy .text {
  max-width: 430px;
  margin: 28px 0;
}

.campaign-image {
  display: grid;
  place-items: center;
  min-height: 550px;
  background: #c5b09a;
}

.campaign-image img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 18px rgba(0, 0, 0, 0.15));
}

.professional {
  padding: 150px 0;
  background: #111;
  color: #fff;
}

.professional-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
}

.professional .text {
  color: #bdbab5;
  max-width: 430px;
  margin: 30px 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.principle {
  padding: 32px 24px 20px 0;
  border-right: 1px solid var(--line);
}

.principle:not(:first-child) {
  padding-left: 24px;
}

.principle h3 {
  font-size: 14px;
  letter-spacing: -0.03em;
}

.principle p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-hero {
  padding: 120px 0 70px;
  background: var(--paper);
}

.filter {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.filter a {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.filter a:hover,
.filter a.active {
  border-color: #111;
}

.single-product {
  padding: 70px 0 130px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
}

.product-gallery {
  min-height: 640px;
  background: var(--paper);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: contain;
  padding: 8%;
}

.product-detail {
  padding-top: 35px;
}

.product-detail .text {
  margin: 25px 0;
}

.product-meta {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  font-size: 13px;
  line-height: 2;
}

.product-meta strong {
  display: inline-block;
  width: 110px;
}

.footer {
  background: #111;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 35px;
}

.footer h4 {
  margin: 0 0 17px;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: #bbb7b1;
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 10px;
}

.shell {
  width: min(calc(100% - 80px), var(--max));
  margin: auto;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 800px) {

  .shell,
  .wrap {
    width: min(calc(100% - 40px), var(--max));
    padding: 0;
  }

  .nav-row {
    padding: 14px 0;
  }

  .main-nav {
    display: none;
  }

  .header-icons .btn {
    display: none;
  }

  .hero,
  .category,
  .campaign,
  .professional-grid,
  .product-layout,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 100px 20px 75px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .intro,
  .section {
    padding: 80px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .text {
    margin-top: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category {
    min-height: 0;
  }

  .category.reverse .category-visual {
    order: 2;
  }

  .category-copy {
    padding: 70px 20px;
  }

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

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle {
    padding: 25px 14px !important;
  }

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

  .display {
    font-size: 52px;
  }

  .product-gallery,
  .product-gallery img {
    min-height: 380px;
  }

  .catalog-hero {
    padding: 80px 0 45px;
  }
}

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

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

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

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Premium Featured Section */
.featured-dark-section {
  padding: 140px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.featured-dark-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(169, 128, 62, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.featured-head.text-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.gold-text {
  color: var(--gold);
}

.light-text {
  color: #ffffff;
}

.light-muted-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
}

.featured-dark-section .product-card .product-copy h3 {
  color: #ffffff !important;
}

.featured-dark-section .product-card .product-copy .product-price {
  color: var(--gold) !important;
}

.featured-dark-section .product-card .product-copy .product-collection {
  color: rgba(255, 255, 255, 0.5) !important;
}

.featured-dark-section .product-image {
  background: #1a1714 !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-dark-section .product-card:hover .product-image {
  border-color: rgba(169, 128, 62, 0.3);
}

.featured-dark-section .discover:after {
  color: var(--gold);
}

/* New Product Grid & Cards */
.prod-grid {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  margin-top: 60px;
  overflow-x: auto;
  padding-bottom: 60px;
  scrollbar-width: none;
  /* Firefox */
  scroll-snap-type: x mandatory;
}

.full-width-slider {
  padding-left: max(40px, calc((100vw - var(--max)) / 2 + 40px));
  padding-right: max(40px, calc((100vw - var(--max)) / 2 + 40px));
}

.prod-grid::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.prod-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(200px, 28vw, 280px);
  scroll-snap-align: start;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.prod-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0;
  z-index: 10;
}

.prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prod-card:hover .prod-img img {
  transform: scale(1.08) translateY(-4px);
}

.prod-info {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.prod-info .cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2px;
}

.prod-info h4 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Fraunces", serif;
  margin-bottom: 4px;
  line-height: 1.2;
  color: var(--ink);
}

.prod-info .desc {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #777;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}
.prod-quick {
  margin-top: auto;
}

.prod-quick a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #fcfcfc;
  border: 1px solid #ebebeb;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.prod-card:hover .prod-quick a {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}


/* Slider Arrows */
.slider-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: scale(1.05);
}

/* Product Stories / Video Grid */
.videos {
  padding: 100px 0;
  background: var(--ink);
  color: var(--ivory);
}

.videos .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.videos .sec-head p {
  color: var(--ivory);
  opacity: 0.8;
  max-width: 400px;
}


.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 20px;
  padding-bottom: 40px;
}

.video-grid a.main-vid {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.video-grid a {
  display: block;
  height: 100%;
}

.vid-tile {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.vid-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: transform 0.8s var(--ease);
}

.vid-hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.vid-tile:hover .vid-bg {
  transform: scale(1.05);
}

.vid-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 13, 11, 0.8) 0%, rgba(15, 13, 11, 0) 60%);
  z-index: 3;
}

.vid-content {
  position: relative;
  z-index: 4;
}

.vid-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease), transform 0.4s var(--ease);
}

.vid-play svg {
  width: 20px;
  height: 20px;
  color: #fff;
  margin-left: 2px;
}

.vid-tile:hover .vid-play {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.vid-content h5 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.vid-content span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 800px) {
  .video-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-grid a.main-vid,
  .video-grid a.sub-vid {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .vid-tile {
    aspect-ratio: auto;
    height: 350px;
  }
}

/* Dynamic Slide Layouts */
.hero-slide.layout-text_only .hero-copy {
  max-width: 900px;
}

.hero-slide.layout-text_only.align-center .hero-copy {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero-slide.layout-text_only.align-center .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 800px) {
  .featured {
    padding: 80px 20px !important;
  }
}
@media (min-width: 1024px) { .featured { display: grid; grid-template-columns: 350px 1fr; gap: 60px; align-items: center; } .featured .prod-grid { margin-top: 0; } }

