:root {
  --ink: #f6f1ea;
  --muted: rgba(246, 241, 234, .68);
  --soft: rgba(246, 241, 234, .12);
  --line: rgba(246, 241, 234, .18);
  --night: #08070a;
  --panel: #111014;
  --violet: #7b5cff;
  --blue: #aebfff;
  --ruby: #7d1730;
  --gold: #d8c18f;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --font-sans: "Inter", "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(123, 92, 255, .22), transparent 32rem),
    radial-gradient(circle at 82% 24%, rgba(125, 23, 48, .18), transparent 28rem),
    linear-gradient(180deg, #08070a 0%, #100b12 44%, #070609 100%);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("assets/meuse-pattern.png");
  background-size: 144px 156px;
  background-position: center top;
  opacity: .055;
  pointer-events: none;
}

.section-pad {
  position: relative;
}

.section-pad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/meuse-pattern.png");
  background-size: 144px 156px;
  background-position: center top;
  opacity: .032;
  pointer-events: none;
}

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 6, 9, .66);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .28);
}

.brand {
  width: 190px;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, .74);
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  transition: color .28s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: transform .28s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 13px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.nav-cta {
  justify-self: end;
  background: rgba(255, 255, 255, .08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .42);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 150px max(32px, calc((100vw - 1180px) / 2)) 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 7, .86) 0%, rgba(5, 4, 7, .48) 44%, rgba(5, 4, 7, .22) 100%),
    linear-gradient(0deg, rgba(8, 7, 10, 1) 0%, rgba(8, 7, 10, .08) 42%);
}

.hero-media picture,
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-media video {
  display: block;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(174, 191, 255, .18) 42%, transparent 58%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: sheen 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  max-width: 720px;
  animation: heroRise .9s ease both;
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: clamp(52px, 9vw, 118px);
  font-weight: 300;
  line-height: .95;
}

.hero-title {
  position: relative;
  display: grid;
  max-width: 760px;
  margin: 0 0 28px;
  padding: 10px 0 18px;
  font-family: var(--font-sans);
  font-size: clamp(54px, 7vw, 102px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: .02em;
  color: transparent;
  text-shadow: 0 18px 38px rgba(0, 0, 0, .36);
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 224, 196, .95), rgba(236, 224, 196, 0));
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: min(420px, 62%);
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 214, 234, .78), rgba(236, 224, 196, .36), rgba(236, 224, 196, 0));
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
  background: linear-gradient(102deg, #ffffff 0%, #f6efe0 42%, #b7eaf2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform-origin: left center;
}

.hero-title span:first-child {
  font-size: .68em;
  line-height: 1.18;
  letter-spacing: .18em;
  opacity: .92;
}

.hero-title span:last-child {
  margin-top: 6px;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: .12em;
}

h2 {
  font-family: var(--font-sans);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: .015em;
}

h3 {
  font-size: 21px;
  font-weight: 500;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

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

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: #f5f0e8;
  color: #0b090c;
  border: 1px solid #f5f0e8;
  border-color: #f5f0e8;
  cursor: pointer;
  font: inherit;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
}

.button-ghost {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.hero-video-card {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  width: min(336px, 24vw);
  min-width: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: heroRise .9s .18s ease both;
}

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

.hero-video-card div {
  padding: 14px 18px 15px;
  background: linear-gradient(180deg, rgba(15, 14, 18, .82), rgba(15, 14, 18, .96));
}

.hero-video-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-video-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .08em;
}

.hero-video-card .video-dots {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 7px;
  padding: 0;
  background: transparent;
}

.video-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.video-dots button.is-active {
  width: 20px;
  background: #fff;
}

.section-pad {
  padding: 88px max(32px, calc((100vw - 1180px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 14px;
}

.intro-text p:not(.eyebrow) {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.intro-grid article,
.moment-rail article,
.journal-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.intro-grid article:hover,
.moment-rail article:hover,
.journal-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(174, 191, 255, .48);
  background: rgba(255, 255, 255, .09);
}

.intro-grid span,
.moment-rail span,
.journal-grid span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro-grid p,
.moment-rail p,
.journal-grid p,
.section-heading p,
.atelier-copy p,
.appointment-card p {
  color: var(--muted);
}

.intro-grid p {
  line-height: 1.82;
}

.journal-grid h3 a {
  color: inherit;
}

.journal-link {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  border-bottom: 1px solid rgba(174, 191, 255, .58);
  font-size: 13px;
}

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

.section-heading.compact {
  max-width: none;
}

.collections {
  padding-top: 26px;
}

.collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, .76fr);
  grid-template-rows: repeat(3, 214px);
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: 0 16px 64px rgba(0, 0, 0, .22);
}

.collection-card.feature {
  grid-row: 1 / span 3;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .12) 62%);
}

.collection-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.collection-card span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection-card p {
  max-width: 420px;
  color: rgba(255, 255, 255, .72);
}

.collection-card.feature div {
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.collection-card.feature h3 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 58px);
}

.collection-card.feature p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
}

.collection-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}

.store-experience {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 48%),
    radial-gradient(circle at 82% 16%, rgba(174, 191, 255, .12), transparent 34rem);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.experience-video {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0a0e;
  box-shadow: var(--shadow);
}

.experience-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, transparent 48%);
  pointer-events: none;
}

.video-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.video-caption span,
.experience-copy span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.video-caption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: .02em;
}

.experience-copy {
  display: grid;
  gap: 16px;
}

.experience-copy article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
}

.experience-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.store-gallery {
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: 18px;
  margin-top: 18px;
}

.store-gallery figure {
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #09080b;
}

.store-gallery img,
.store-gallery video {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform .7s ease;
}

.store-gallery figure:hover img,
.store-gallery figure:hover video {
  transform: scale(1.04);
}

.brand-advantages {
  position: relative;
}

.brand-advantages::before {
  content: "MEUSE FINE JEWELRY";
  position: absolute;
  top: 24px;
  left: -2vw;
  color: rgba(255, 255, 255, .035);
  font-family: var(--font-sans);
  font-size: 12vw;
  font-weight: 200;
  white-space: nowrap;
}

.brand-advantage-board {
  position: relative;
  display: grid;
  gap: 24px;
}

.brand-advantage-board figure,
.brand-timeline-panel {
  margin: 0;
  border: 1px solid rgba(150, 126, 255, .22);
  background: rgba(7, 5, 9, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.brand-advantage-board picture,
.brand-timeline-panel picture {
  display: block;
}

.brand-advantage-board img,
.brand-timeline-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-advantage-board figure {
  transition: transform .55s ease, border-color .55s ease, box-shadow .55s ease;
}

.brand-advantage-board figure:hover {
  transform: translateY(-4px);
  border-color: rgba(150, 126, 255, .48);
  box-shadow: 0 30px 92px rgba(70, 52, 150, .22);
}

.brand-advantage-board figcaption {
  padding: 28px 32px 32px;
  border-top: 1px solid rgba(150, 126, 255, .18);
}

.brand-advantage-board figcaption h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
}

.brand-advantage-board figcaption p {
  max-width: 880px;
  margin: 0;
  color: rgba(246, 241, 234, .72);
  line-height: 1.85;
}

.brand-timeline-panel {
  margin-top: 54px;
  padding-top: 34px;
}

.brand-timeline-panel .section-heading {
  padding: 0 36px;
  margin-bottom: 24px;
}

.atelier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 14px;
}

.atelier-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.atelier-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform .7s ease;
}

.atelier-media:hover img {
  transform: scale(1.05);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.steps div {
  display: grid;
  grid-template-columns: 46px 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(174, 191, 255, .48);
  color: var(--blue);
}

.steps p {
  margin-bottom: 0;
}

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

.journal {
  padding-top: 26px;
}

.journal-heading {
  max-width: 820px;
}

.journal-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.journal-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: .015em;
  font-weight: 300;
}

.all-articles-link {
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding: 11px 17px;
  border: 1px solid rgba(246, 241, 234, .34);
  color: rgba(246, 241, 234, .84);
  font-size: 13px;
  letter-spacing: .14em;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.all-articles-link:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 241, 234, .76);
  background: rgba(246, 241, 234, .08);
}

.journal-heading p:last-child {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

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

.journal-guide-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
}

.journal-guide-grid h3 {
  margin: 0 0 26px;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.35;
}

.journal-guide-grid p {
  margin-top: auto;
  line-height: 1.85;
}

.journal-guide-grid .journal-link {
  margin-top: 26px;
  border-bottom: 0;
  color: rgba(246, 241, 234, .9);
  letter-spacing: .05em;
}

.article-shell {
  overflow: visible;
}

.series-hero {
  padding-top: 118px;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.series-hero h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.series-hero .section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.series-hero .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 8px;
  line-height: 1.68;
}

.series-stat {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
}

.series-stat strong {
  color: #fff;
  font-size: 22px;
  font-weight: 320;
  line-height: 1;
}

.series-stat span {
  color: var(--muted);
  font-size: 13px;
}

.series-board {
  padding-top: 18px;
}

.series-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, .36fr) 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.series-toolbar h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
}

.series-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.series-filters button {
  min-height: 42px;
  padding: 0 15px;
  color: rgba(246, 241, 234, .78);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.series-filters button span {
  margin-left: 6px;
  color: rgba(174, 191, 255, .78);
}

.series-filters button.is-active,
.series-filters button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .12);
}

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

.series-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
}

.series-card[hidden] {
  display: none;
}

.series-card-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.series-card-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .55s ease;
}

.series-card:hover .series-card-button img {
  transform: scale(1.045);
  filter: brightness(1.05);
}

.series-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: rgba(246, 241, 234, .9);
  background: rgba(6, 6, 9, .66);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
}

.series-card-copy {
  padding: 22px;
}

.series-card-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 14px 0;
}

.series-card-thumbs button {
  padding: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
  overflow: hidden;
}

.series-card-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.series-card-thumbs button:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.series-card-copy span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.series-card-copy h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.series-card-copy p {
  min-height: 54px;
  color: var(--muted);
  line-height: 1.7;
}

.series-card-copy button {
  margin-top: 12px;
  padding: 0;
  color: rgba(246, 241, 234, .9);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(174, 191, 255, .58);
  cursor: pointer;
}

.series-cta {
  padding-top: 58px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 24px;
  overflow: auto;
  background: rgba(15, 14, 18, .96);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.product-modal-media {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
}

.product-modal-media img {
  width: 100%;
  height: min(660px, calc(100vh - 108px));
  object-fit: contain;
  display: block;
}

.product-modal-copy {
  padding: 18px 10px 10px;
}

.product-modal-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.product-modal-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.product-thumbs button {
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  cursor: pointer;
  opacity: .72;
}

.product-thumbs button.is-active,
.product-thumbs button:hover {
  border-color: rgba(255, 255, 255, .64);
  opacity: 1;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.article-main {
  padding: 136px 24px 96px;
}

.article-page,
.academy-index {
  width: min(920px, 100%);
  margin: 0 auto;
}

.article-page h1,
.academy-index h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 300;
}

.article-lead,
.academy-index > p {
  max-width: 760px;
  color: rgba(246, 241, 234, .76);
  font-size: 19px;
}

.article-meta {
  margin: 28px 0 42px;
  color: rgba(246, 241, 234, .46);
  font-size: 13px;
}

.article-content {
  padding-top: 10px;
  color: rgba(246, 241, 234, .82);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 52px 0 18px;
  color: #fff;
  font-weight: 400;
}

.article-content h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.article-content h3 {
  font-size: 26px;
}

.article-content p,
.article-content li {
  color: rgba(246, 241, 234, .78);
  font-size: 17px;
  line-height: 1.9;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35em;
}

.article-cta {
  margin-top: 72px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}

.article-cta span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 36px);
}

.article-cta-actions {
  display: flex;
  gap: 12px;
}

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

.academy-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.052);
}

.academy-card span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .16em;
}

.academy-card h3 {
  margin: 20px 0 14px;
}

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

.appointment-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.appointment-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.appointment-card div {
  padding: 28px 38px 28px 0;
}

.appointment-card h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
}

.appointment-card p {
  max-width: 650px;
  margin: 0 0 14px;
  line-height: 1.75;
}

.appointment-card .button {
  margin-top: 12px;
}

.case-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 170px;
  background:
    linear-gradient(180deg, rgba(8, 7, 10, .18), rgba(8, 7, 10, .92)),
    url("assets/hero-stellar-store.jpg") center / cover;
}

.case-hero h1 {
  margin-bottom: 24px;
}

.case-board {
  padding-top: 80px;
}

.case-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.case-toolbar span {
  color: var(--muted);
  font-size: 13px;
  margin-right: 6px;
}

.case-toolbar button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  cursor: pointer;
}

.case-toolbar button.is-active {
  color: #09080b;
  background: #f6f1ea;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.case-card div {
  padding: 24px;
}

.case-card span,
.case-card small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
}

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

.case-card a {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-size: 13px;
}

.contact-footer {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 70px max(32px, calc((100vw - 1180px) / 2)) 36px;
  overflow: hidden;
  background: url("assets/contact-store-bg-optimized.webp") center / cover;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 48%, rgba(0,0,0,.9) 100%),
    linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.28));
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1.3fr .72fr;
  gap: 46px;
  align-items: start;
}

.contact-title h2 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .02em;
}

.contact-title p,
.contact-social h3,
.contact-info h3,
.contact-qr p {
  color: rgba(246, 241, 234, .58);
}

.contact-social h3,
.contact-info h3 {
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 400;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 46px);
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: rgba(246, 241, 234, .82);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.social-icon span {
  line-height: 1;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.12);
}

.social-svg {
  width: 27px;
  height: 27px;
  color: rgba(246, 241, 234, .86);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-logo {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: .9;
  transition: opacity .25s ease, transform .25s ease;
}

.social-svg rect,
.social-svg ellipse,
.social-svg circle {
  fill: none;
  stroke: currentColor;
}

.dianping-svg rect {
  fill: none;
}

.social-icon:hover .social-svg {
  color: #fff;
}

.social-icon:hover .social-logo {
  opacity: 1;
  transform: scale(1.04);
}

.contact-info p {
  margin-bottom: 10px;
  color: rgba(246, 241, 234, .72);
  font-size: 15px;
  line-height: 1.7;
}

.contact-qr img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  background: #fff;
  padding: 8px;
}

.contact-qr p {
  margin-top: 10px;
  font-size: 13px;
}

.site-copyright {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(246, 241, 234, .48);
  font-size: 12px;
  letter-spacing: .04em;
}

.site-copyright a {
  color: rgba(246, 241, 234, .56);
}

.wechat-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.wechat-modal.is-open {
  display: grid;
}

.wechat-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  cursor: pointer;
}

.wechat-modal-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  padding: 28px;
  text-align: center;
  color: #111;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.wechat-modal-card img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
}

.wechat-modal-card h3 {
  color: #111;
}

.wechat-modal-card p {
  margin-bottom: 0;
  color: #777;
}

.wechat-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  cursor: pointer;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes sheen {
  0%, 46% {
    transform: translateX(-120%);
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 0 20px;
  }

  .nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-video-card {
    display: none;
  }

  .intro,
  .atelier,
  .appointment-card {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .journal-grid,
  .academy-grid {
    grid-template-columns: 1fr;
  }

  .brand-advantage-board {
    gap: 16px;
  }

  .brand-timeline-panel {
    margin-top: 28px;
    padding-top: 22px;
  }

  .brand-timeline-panel .section-heading {
    padding: 0 18px;
    margin-bottom: 16px;
  }

  .journal-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .series-hero,
  .series-toolbar,
  .product-modal-panel {
    grid-template-columns: 1fr;
  }

  .series-hero {
    padding-top: 96px;
    padding-bottom: 18px;
    gap: 16px;
  }

  .series-stat {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .series-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .series-board {
    padding-top: 12px;
  }

  .series-toolbar {
    gap: 16px;
    margin-bottom: 18px;
  }

  .series-filters {
    justify-content: flex-start;
  }

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

  .product-modal-panel {
    max-height: calc(100vh - 32px);
    padding: 18px;
  }

  .product-modal-media img {
    height: auto;
    max-height: 52vh;
  }

  .all-articles-link {
    margin: 0 0 20px;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

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

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-copyright {
    grid-column: 1 / -1;
  }

  .experience-layout,
  .store-gallery {
    grid-template-columns: 1fr;
  }

  .experience-video {
    min-height: 520px;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .collection-card.feature {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 640px) {
  .nav {
    top: 0;
    width: 100%;
    height: 70px;
    grid-template-columns: 112px minmax(0, 1fr) 72px;
    gap: 10px;
    padding: 0 10px;
  }

  .brand {
    width: 112px;
    height: 34px;
  }

  .nav-links {
    gap: 14px;
    padding: 20px 0;
    font-size: 12px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
    justify-content: center;
  }

  .hero {
    min-height: 760px;
    padding: 124px 20px 48px;
  }

  .hero-title {
    margin-bottom: 22px;
    font-size: clamp(44px, 13vw, 68px);
    letter-spacing: .035em;
  }

  .hero-title span:first-child {
    letter-spacing: .08em;
  }

  .hero-title::after {
    width: 72%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-pad {
    padding: 62px 20px;
  }

  .intro {
    padding-bottom: 24px;
  }

  .collections {
    padding-top: 30px;
  }

  .atelier {
    padding-bottom: 24px;
  }

  .journal {
    padding-top: 30px;
  }

  .article-main {
    padding: 108px 20px 72px;
  }

  .article-page h1,
  .academy-index h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .article-cta {
    padding: 24px;
  }

  .article-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    grid-template-rows: none;
  }

  .collection-card.feature {
    grid-row: auto;
    grid-column: auto;
  }

  .collection-card.feature div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .steps div {
    grid-template-columns: 42px 1fr;
  }

  .steps p {
    grid-column: 2;
  }

  .appointment-card div {
    padding: 10px 6px 6px;
  }

  .appointment-card img {
    height: 340px;
  }

  .contact-footer {
    min-height: auto;
    padding: 54px 20px 28px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-social h3,
  .contact-info h3 {
    margin-bottom: 14px;
  }

  .contact-title h2 {
    font-size: 24px;
  }

  .social-icons {
    grid-template-columns: repeat(3, 44px);
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

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

  .series-card-copy p {
    min-height: 0;
  }

  .product-modal {
    padding: 16px;
  }

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

  .site-copyright {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 16px;
    font-size: 11px;
  }

  .hero-video-card {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .hero {
    align-items: center;
  }

  .experience-video {
    min-height: 460px;
  }
}
