:root {
  --bg: #fbf6ef;
  --bg-soft: #f6ede2;
  --text: #1f2430;
  --muted: #5f6577;
  --card: rgba(255, 255, 255, 0.72);
  --line: rgba(35, 41, 55, 0.09);
  --shadow: 0 28px 70px rgba(42, 34, 24, 0.12);
  --shadow-strong: 0 38px 100px rgba(42, 34, 24, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --font-head: 'Space Grotesk', 'Manrope', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 120, 0.26), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 104, 104, 0.18), transparent 28%),
    radial-gradient(circle at 50% 30%, rgba(100, 164, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #fcf8f2 0%, #f7efe4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page-glow {
  position: fixed;
  inset: auto;
  width: 48vw;
  height: 48vw;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.65;
  z-index: 0;
}

.page-glow-a {
  top: -14vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(255, 162, 94, 0.34), transparent 62%);
}

.page-glow-b {
  bottom: -18vw;
  right: -14vw;
  background: radial-gradient(circle, rgba(90, 123, 255, 0.24), transparent 62%);
}

.hero,
.gallery,
.footer-cta,
.jump-nav {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 28px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.hero-copy,
.hero-notes,
.section-intro,
.poster,
.footer-cta {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 44px;
  padding: clamp(28px, 4vw, 48px);
}

.eyebrow,
.poster-kicker,
.section-intro-kicker,
.note-kicker,
.footer-kicker {
  margin: 0 0 14px;
  font-family: var(--font-head);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(31, 36, 48, 0.62);
}

.hero h1,
.section-intro h2,
.poster h2,
.footer-cta h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}

.lead,
.section-intro p,
.poster-text,
.note-card p,
.footer-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.lead {
  max-width: 62ch;
  margin-top: 22px;
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f2430 0%, #e44737 100%);
  box-shadow: 0 16px 34px rgba(228, 71, 55, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span,
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 36, 48, 0.08);
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: rgba(31, 36, 48, 0.78);
}

.hero-notes {
  display: grid;
  gap: 16px;
  border-radius: 34px;
  padding: 22px;
}

.note-card {
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(255, 173, 96, 0.12), rgba(92, 126, 255, 0.08));
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.note-card p {
  font-size: 0.96rem;
}

.jump-nav {
  max-width: 1280px;
  margin: 10px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 36, 48, 0.08);
  font-family: var(--font-head);
  font-size: 0.76rem;
  color: rgba(31, 36, 48, 0.76);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.jump-nav a:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(31, 36, 48, 0.16);
}

.gallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: grid;
  gap: 28px;
}

.section-intro {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 40px);
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 14ch;
  margin-bottom: 16px;
}

.section-intro p {
  max-width: 68ch;
}

.poster {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  border-radius: 40px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  position: relative;
}

.poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 32%),
    radial-gradient(circle at top left, var(--theme-glow-a, rgba(255,255,255,0.1)), transparent 34%),
    radial-gradient(circle at bottom right, var(--theme-glow-b, rgba(255,255,255,0.12)), transparent 36%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.poster.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.poster.reverse .poster-copy {
  order: 2;
}

.poster.reverse .poster-visual {
  order: 1;
}

.poster-copy {
  position: relative;
  z-index: 1;
  padding: clamp(10px, 1vw, 18px);
}

.poster h2 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  margin-bottom: 16px;
}

.poster-text {
  max-width: 42ch;
  font-size: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.poster-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(31, 36, 48, 0.06);
  box-shadow: var(--shadow-strong);
}

.poster-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.theme-louboutin {
  --theme-glow-a: rgba(255, 26, 64, 0.34);
  --theme-glow-b: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #181315 0%, #2a1114 48%, #f9f1ea 100%);
  color: #fff;
}

.theme-louboutin .poster-text,
.theme-louboutin .poster-kicker {
  color: rgba(255,255,255,0.72);
}

.theme-louboutin .chips span {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}

.theme-fear {
  --theme-glow-a: rgba(175, 14, 25, 0.2);
  --theme-glow-b: rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, #121012 0%, #1c1214 42%, #302225 100%);
  color: #f5f0ef;
}

.theme-fear .poster-text,
.theme-fear .poster-kicker {
  color: rgba(245, 240, 239, 0.7);
}

.theme-fear .chips span {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.theme-sephora {
  --theme-glow-a: rgba(255, 147, 31, 0.34);
  --theme-glow-b: rgba(255, 88, 0, 0.16);
  background: linear-gradient(135deg, #3a1707 0%, #ff8a1e 52%, #ffe2bc 100%);
  color: #1f140c;
}

.theme-sephora .poster-text,
.theme-sephora .poster-kicker {
  color: rgba(31, 20, 12, 0.82);
}

.theme-passion {
  --theme-glow-a: rgba(132, 183, 76, 0.18);
  --theme-glow-b: rgba(255, 106, 77, 0.2);
  background: linear-gradient(135deg, #f3e4d4 0%, #c8d06b 40%, #4f6b24 100%);
}

.theme-passion .poster-copy {
  color: #3a322a;
}

.theme-yamibana {
  --theme-glow-a: rgba(255, 149, 37, 0.22);
  --theme-glow-b: rgba(208, 78, 24, 0.3);
  background: linear-gradient(135deg, #2d110a 0%, #723116 46%, #f1c38a 100%);
  color: #fff7ef;
}

.theme-yamibana .poster-text,
.theme-yamibana .poster-kicker {
  color: rgba(255, 247, 239, 0.72);
}

.theme-horizon {
  --theme-glow-a: rgba(69, 198, 255, 0.24);
  --theme-glow-b: rgba(255, 87, 87, 0.22);
  background: linear-gradient(135deg, #551310 0%, #b83d36 42%, #112b4f 100%);
  color: #fff;
}

.theme-horizon .poster-text,
.theme-horizon .poster-kicker {
  color: rgba(255,255,255,0.74);
}

.theme-r6 {
  --theme-glow-a: rgba(59, 89, 255, 0.2);
  --theme-glow-b: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #f4f1eb 0%, #edf2fc 46%, #7a96ff 100%);
}

.theme-montblanc {
  --theme-glow-a: rgba(42, 176, 109, 0.18);
  --theme-glow-b: rgba(43, 133, 255, 0.22);
  background: linear-gradient(135deg, #d3ecff 0%, #9ae2c0 42%, #4370cf 100%);
  color: #11212f;
}

.theme-montblanc .poster-text,
.theme-montblanc .poster-kicker {
  color: rgba(17, 33, 47, 0.78);
}

.theme-northface {
  --theme-glow-a: rgba(63, 77, 255, 0.2);
  --theme-glow-b: rgba(255, 181, 90, 0.2);
  background: linear-gradient(135deg, #11162b 0%, #2c225a 44%, #ffb15f 100%);
  color: #fff;
}

.theme-northface .poster-text,
.theme-northface .poster-kicker {
  color: rgba(255,255,255,0.74);
}

.theme-seiko {
  --theme-glow-a: rgba(255, 255, 255, 0.14);
  --theme-glow-b: rgba(146, 146, 146, 0.2);
  background: linear-gradient(135deg, #111111 0%, #6a6a6a 50%, #e7e7e7 100%);
  color: #f7f5f2;
}

.theme-seiko .poster-text,
.theme-seiko .poster-kicker {
  color: rgba(247,245,242,0.74);
}

.theme-branding-1 {
  --theme-glow-a: rgba(158, 114, 44, 0.18);
  --theme-glow-b: rgba(59, 104, 74, 0.18);
  background: linear-gradient(135deg, #f3e9d8 0%, #dac49a 46%, #52644a 100%);
}

.theme-branding-2 {
  --theme-glow-a: rgba(94, 86, 186, 0.18);
  --theme-glow-b: rgba(241, 104, 49, 0.18);
  background: linear-gradient(135deg, #faf3ea 0%, #d9d1ff 45%, #ff9967 100%);
}

.theme-branding-3 {
  --theme-glow-a: rgba(81, 120, 240, 0.18);
  --theme-glow-b: rgba(255, 204, 97, 0.18);
  background: linear-gradient(135deg, #e6edf9 0%, #c0d7ff 42%, #f4ce7b 100%);
}

.theme-branding-1 .poster-copy,
.theme-branding-2 .poster-copy,
.theme-branding-3 .poster-copy {
  color: #243043;
}

.theme-branding-1 .poster-text,
.theme-branding-1 .poster-kicker,
.theme-branding-2 .poster-text,
.theme-branding-2 .poster-kicker,
.theme-branding-3 .poster-text,
.theme-branding-3 .poster-kicker {
  color: rgba(36, 48, 67, 0.78);
}

.reverse .poster-copy {
  padding-left: 0;
}

.section-intro-branding {
  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(250,243,232,0.8));
}

.footer-cta {
  max-width: 1280px;
  margin: 0 auto 28px;
  border-radius: 40px;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  max-width: 16ch;
  margin-top: 6px;
}

.footer-cta p {
  color: rgba(31,36,48,0.66);
}

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

  .poster,
  .poster.reverse,
  .footer-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .poster.reverse .poster-copy,
  .poster.reverse .poster-visual {
    order: initial;
  }

  .footer-cta {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .hero,
  .gallery,
  .jump-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-notes,
  .section-intro,
  .poster,
  .footer-cta {
    border-radius: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .poster {
    gap: 18px;
  }

  .poster h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .poster-visual {
    border-radius: 24px;
  }

  .footer-cta {
    margin-bottom: 18px;
  }
}
