:root {
  --bg: #f7f3eb;
  --surface: #fffdf8;
  --ink: #151515;
  --muted: #6d6961;
  --line: #e4dbce;
  --gold: #b99254;
  --sage: #586b5b;
  --rose: #7b3037;
  --shadow: 0 24px 70px rgba(31, 25, 17, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  background:
    linear-gradient(135deg, rgba(88, 107, 91, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(123, 48, 55, 0.06), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  display: flex;
  width: min(1060px, calc(100% - 32px));
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 10px 7px 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(247, 243, 235, 0.82);
  box-shadow: 0 18px 50px rgba(31, 25, 17, 0.07);
  backdrop-filter: blur(22px) saturate(1.12);
  transform: translateX(-50%);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.navbar.is-scrolled {
  top: 10px;
  border-color: rgba(21, 21, 21, 0.1);
  background: rgba(247, 243, 235, 0.94);
  box-shadow: 0 14px 38px rgba(31, 25, 17, 0.11);
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.logo {
  min-width: 0;
}

.logo-mark {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(21, 21, 21, 0.06);
  transform: translateY(-1px);
}

.nav-links .nav-cta,
.btn-primary,
.buy-btn,
.preorder-btn,
.preorder-cta {
  background: var(--ink);
  color: #fff;
}

.nav-links .nav-cta:hover,
.btn-primary:hover,
.buy-btn:hover,
.preorder-btn:hover,
.preorder-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  flex: 0 0 auto;
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: var(--radius);
  background: rgba(21, 21, 21, 0.92);
  cursor: pointer;
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 25, 17, 0.12);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: 24px;
  white-space: nowrap;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
}

.menu-toggle span + span {
  margin-top: 0;
}

.menu-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 78px) 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.92) 0%, rgba(247, 243, 235, 0.62) 34%, rgba(247, 243, 235, 0.06) 58%, rgba(247, 243, 235, 0) 100%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.01), rgba(31, 25, 17, 0.06)),
    url("../../images/hero/hero-sharp.png") 64% center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 46%, rgba(255, 253, 248, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.01), rgba(247, 243, 235, 0.03));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.hero h1 {
  max-width: 650px;
  margin: 16px 0 24px;
  font-size: clamp(58px, 9vw, 104px);
  line-height: 0.9;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 34px;
}

.btn-primary,
.btn-secondary,
.buy-btn,
.preorder-btn,
.preorder-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-secondary {
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover,
.buy-btn:hover,
.preorder-btn:hover,
.preorder-cta:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-primary,
.btn-secondary,
.buy-btn,
.preorder-btn,
.preorder-cta,
.nav-links a,
.offer-trigger,
.menu-toggle {
  position: relative;
  overflow: hidden;
}

.click-ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-pop 520ms ease-out forwards;
}

.is-clicked {
  transform: translateY(1px) scale(0.98) !important;
}

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

.hero-benefits span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: #3f3b35;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 253, 248, 0.32) 46%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px clamp(20px, 6vw, 78px) 86px;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(31, 25, 17, 0.08);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.product-strip img:hover,
.showcase-image:not(.showcase-stack) img:hover,
.details-image img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 30px 78px rgba(31, 25, 17, 0.16);
}

.intro-section,
.faq-section,
.video-section,
.testimonials {
  padding: 92px clamp(20px, 6vw, 78px);
}

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

.section-heading h2,
.showcase h2,
.quote h2 {
  margin-top: 12px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
}

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

.benefit-card,
.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 48px rgba(31, 25, 17, 0.06);
}

.benefit-card span {
  color: var(--gold);
  font-weight: 800;
}

.benefit-card h3,
.feature-card h2 {
  margin: 28px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.benefit-card p,
.feature-card p,
.showcase p,
.testimonial-card p,
.faq-answer p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.video-section {
  padding-top: 40px;
}

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

.video-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 640ms ease, opacity 260ms ease;
}

.video-card:hover img {
  opacity: 0.88;
  transform: scale(1.045);
}

.video-card strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  font-size: 18px;
}

.play-btn {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}

.video-card:hover .play-btn {
  background: #fff;
  color: #111;
  transform: scale(1.06);
}

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

.testimonial-card,
.confidence-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 48px rgba(31, 25, 17, 0.06);
}

.testimonial-card h3,
.confidence-card h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.56);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-box {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-modal-preview {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(88, 107, 91, 0.16), rgba(185, 146, 84, 0.16)),
    url("../../images/gallery/steps-2.jpg") center / cover no-repeat;
  color: #fff;
  font-size: 44px;
}

.video-modal-box h2 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.video-modal-box p {
  color: var(--muted);
  line-height: 1.75;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.newsletter-section {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  margin: 20px auto 52px;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 5vw, 64px);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 55px rgba(31, 25, 17, 0.07);
}

.newsletter-copy h2 {
  max-width: 720px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
}

.newsletter-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.newsletter-form {
  max-width: 430px;
  margin-top: 24px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-input-row {
  display: grid;
  grid-template-columns: 1fr 46px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.newsletter-input-row input {
  height: 46px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: none;
}

.newsletter-input-row button {
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  transition: transform 180ms ease;
}

.newsletter-input-row button:hover {
  transform: translateX(4px);
}

.newsletter-status {
  min-height: 22px;
  margin-top: 12px !important;
  font-size: 14px !important;
}

.newsletter-icon {
  position: relative;
  width: 120px;
  height: 120px;
  justify-self: center;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.newsletter-icon span {
  font-size: 104px;
  line-height: 1;
}

.newsletter-icon b {
  position: absolute;
  top: 18px;
  right: 4px;
  font-size: 52px;
  font-weight: 500;
}

.showcase,
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 70px clamp(20px, 6vw, 78px) 100px;
}

.showcase-dark {
  scroll-margin-top: 104px;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  margin: 24px auto 100px;
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.06), transparent 34%),
    #121210;
  color: #fffdf8;
  box-shadow: 0 30px 90px rgba(31, 25, 17, 0.18);
}

.showcase-dark .eyebrow {
  color: rgba(255, 253, 248, 0.66);
}

.showcase-dark h2 {
  max-width: 430px;
  margin-top: 10px;
  color: #fffdf8;
  font-size: clamp(42px, 5.2vw, 68px);
}

.showcase-dark .showcase-content {
  align-self: center;
}

.showcase-stack {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(255, 253, 248, 0)),
    url("../../images/gallery/steps-2.jpg") center bottom / cover no-repeat;
}

.showcase-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(18, 18, 16, 0.16)),
    radial-gradient(circle at 72% 22%, rgba(255, 253, 248, 0.16), transparent 34%);
  pointer-events: none;
}

.showcase-stack img {
  position: absolute;
  width: min(280px, 42%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.showcase-stack img:first-child {
  left: 12%;
  top: 13%;
  z-index: 3;
  transform: rotate(-8deg);
}

.showcase-stack img:nth-child(2) {
  left: 30%;
  top: 18%;
  z-index: 2;
  transform: rotate(5deg);
}

.showcase-stack img:nth-child(3) {
  left: 48%;
  top: 24%;
  z-index: 1;
  transform: rotate(13deg);
}

.showcase-dark .check-list {
  gap: 16px;
  margin-top: 26px;
}

.showcase-dark .check-list li {
  align-items: flex-start;
  color: rgba(255, 253, 248, 0.9);
}

.showcase-dark .check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(185, 146, 84, 0.56);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}

.showcase-dark .check-list strong,
.showcase-dark .check-list span {
  display: block;
}

.showcase-dark .check-list strong {
  margin-bottom: 3px;
  color: #fffdf8;
  font-size: 14px;
}

.showcase-dark .check-list span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.showcase-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.showcase-image:not(.showcase-stack) img,
.details-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.showcase-content p,
.details-content p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #38342d;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.quote {
  margin: 20px clamp(20px, 6vw, 78px);
  padding: clamp(60px, 9vw, 110px) 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
}

.faq-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  font-size: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  max-width: 760px;
  padding: 0 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.footer {
  padding: 52px clamp(20px, 6vw, 78px);
  background: #111;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-logo {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer p {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.offer-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--rose);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(123, 48, 55, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.offer-trigger:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.preorder-overlay,
.preorder-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.preorder-overlay.active,
.preorder-modal.show-preorder-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preorder-popup {
  position: relative;
  width: min(980px, 100%);
  max-height: min(720px, 92svh);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.95fr);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.preorder-overlay.active .preorder-popup,
.preorder-modal.show-preorder-modal .preorder-box,
.preorder-modal.show-preorder-modal .shop-preorder-popup {
  transform: translateY(0) scale(1);
}

.preorder-close,
.close-preorder {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.preorder-image {
  min-height: 620px;
  overflow: hidden;
  background: #151515;
}

.preorder-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  box-shadow: none;
}

.preorder-content,
.preorder-box {
  padding: clamp(28px, 5vw, 52px);
}

.preorder-content h2,
.preorder-box h2 {
  margin: 14px 0 16px;
  font-size: clamp(40px, 6vw, 58px);
  line-height: 0.98;
}

.preorder-content p,
.preorder-box p {
  color: var(--muted);
  line-height: 1.7;
}

.preorder-price,
.preorder-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.old-price,
.preorder-old {
  color: #918b81;
  font-size: 22px;
  text-decoration: line-through;
}

.new-price,
.preorder-new {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
}

.save-badge,
.preorder-save {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 107, 91, 0.14);
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preorder-input,
.preorder-email {
  width: 100%;
  height: 56px;
  margin-bottom: 14px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.preorder-quantity-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preorder-quantity {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  margin-bottom: 18px;
}

.preorder-quantity button,
.preorder-quantity input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}

.preorder-quantity button {
  cursor: pointer;
}

.preorder-input:focus,
.preorder-email:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(88, 107, 91, 0.12);
}

.popup-colors {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.popup-color,
.color-btn {
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, outline 160ms ease;
}

.popup-color:hover,
.color-btn:hover {
  transform: scale(1.08);
}

.active-popup-color,
.active-color {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.preorder-btn,
.preorder-cta {
  width: 100%;
  border: 0;
}

.preorder-box {
  position: relative;
  width: min(560px, 100%);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  filter: saturate(1);
  transform: none;
}

.reveal img,
.hero-media.reveal {
  filter: saturate(0.88);
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 760ms ease;
}

.reveal.is-visible img,
.hero-media.reveal.is-visible {
  filter: saturate(1);
  transform: translateY(0) scale(1);
}

.page-home .navbar {
  animation: premium-nav-in 640ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.page-home .hero-content > * {
  opacity: 1;
  transform: none;
  animation: none;
}

.page-home .hero-content .eyebrow {
  animation-delay: 0ms;
}

.page-home .hero-content h1 {
  animation-delay: 60ms;
}

.page-home .hero-copy {
  animation-delay: 140ms;
}

.page-home .hero-actions {
  animation-delay: 240ms;
}

.page-home .hero-benefits {
  animation-delay: 340ms;
}

.page-home .hero-media {
  opacity: 1;
  filter: none;
  transform: none;
  transform-origin: 50% 62%;
  animation: none;
}

.page-home .hero {
  animation: none;
}

.page-home .hero-media::before {
  animation: premium-sheen 1250ms cubic-bezier(0.24, 0.78, 0.22, 1) 640ms both;
}

.page-home .product-strip {
  animation-delay: 680ms;
}

@keyframes ripple-pop {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes premium-nav-in {
  from {
    opacity: 0.38;
    transform: translate(-50%, -16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes premium-mobile-nav-in {
  from {
    opacity: 0.38;
    transform: translateY(-14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes premium-copy-in {
  0% {
    opacity: 0.18;
    transform: translateY(22px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premium-image-in {
  0% {
    opacity: 0.18;
    filter: blur(12px) saturate(0.9);
    transform: translateY(26px) scale(0.975);
  }
  62% {
    opacity: 1;
    filter: blur(0) saturate(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes premium-hero-bg-in {
  0% {
    background-size: 106%;
    filter: saturate(0.9);
  }
  100% {
    background-size: 100%;
    filter: saturate(1);
  }
}

@keyframes premium-sheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  24% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

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

@media (max-width: 980px) {
  .navbar {
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .showcase,
  .details-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
    background-position: 68% center;
  }

  .hero-media {
    min-height: 100%;
  }

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

  .video-grid,
  .testimonial-grid,
  .video-modal-box,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .newsletter-icon {
    justify-self: start;
  }

  .preorder-popup {
    grid-template-columns: 1fr;
  }

  .showcase-dark {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-dark .showcase-content {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .navbar {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    min-height: 64px;
    padding: 10px;
    padding-right: 68px;
    transform: none;
  }

  .page-home .navbar {
    animation-name: premium-mobile-nav-in;
  }

  .menu-toggle {
    position: fixed;
    top: 18px;
    right: auto;
    left: calc(100vw - 62px);
    z-index: 1200;
    display: flex !important;
    width: 44px;
    height: 44px;
    background: rgba(21, 21, 21, 0.92);
    box-shadow: 0 10px 24px rgba(31, 25, 17, 0.12);
    transform: none;
  }

  .logo {
    font-size: 27px;
  }

  .hero {
    min-height: 100svh;
    overflow: hidden;
    gap: 24px;
    padding: 104px 16px 36px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(247, 243, 235, 0.96) 0%, rgba(247, 243, 235, 0.84) 54%, rgba(247, 243, 235, 0.08) 82%),
      linear-gradient(90deg, rgba(247, 243, 235, 0.74), rgba(247, 243, 235, 0.02)),
      url("../../images/hero/hero-sharp.png") 50% calc(100% + 84px) / 108% auto no-repeat;
  }

  .hero-media {
    min-height: 100%;
    order: 0;
    background: transparent;
  }

  .hero-content,
  .section-heading,
  .showcase-content,
  .details-content {
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    max-width: 36ch;
  }

  .hero h1 {
    max-width: 100%;
    margin: 12px 0 18px;
    font-size: clamp(42px, 12.5vw, 50px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
    margin: 24px 0 22px;
  }

  .btn-primary,
  .btn-secondary,
  .buy-btn,
  .preorder-btn,
  .preorder-cta {
    min-height: 50px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-benefits {
    width: 100%;
    max-width: 34ch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-benefits span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .product-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 16px 58px;
  }

  .intro-section,
  .faq-section,
  .showcase,
  .details-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-section,
  .faq-section,
  .video-section,
  .testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .video-grid {
    gap: 12px;
  }

  .video-card {
    min-height: 270px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .newsletter-section {
    width: calc(100% - 32px);
    margin: 24px auto 54px;
    padding: 28px 22px;
  }

  .newsletter-copy h2 {
    font-size: clamp(28px, 8.6vw, 38px);
  }

  .newsletter-copy p {
    margin-top: 20px;
    font-size: 15.5px;
  }

  .newsletter-icon {
    width: 118px;
    height: 118px;
  }

  .newsletter-icon span {
    font-size: 104px;
  }

  .newsletter-icon b {
    top: 18px;
    right: 8px;
    font-size: 52px;
  }

  .showcase,
  .details-section {
    gap: 26px;
    padding-top: 46px;
    padding-bottom: 64px;
  }

  .showcase-dark {
    width: calc(100% - 32px);
    margin: 20px auto 72px;
    padding: 16px;
  }

  .showcase-stack {
    min-height: 360px;
    background-position: center bottom;
  }

  .showcase-stack img {
    width: 46%;
  }

  .showcase-stack img:first-child {
    left: 8%;
    top: 18%;
  }

  .showcase-stack img:nth-child(2) {
    left: 28%;
    top: 20%;
  }

  .showcase-stack img:nth-child(3) {
    left: 48%;
    top: 22%;
  }

  .showcase-dark h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .showcase h2,
  .quote h2,
  .details-content h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  .benefit-card,
  .feature-card {
    min-height: 0;
    padding: 22px;
  }

  .faq-question {
    min-height: 76px;
  }

  .faq-question span:first-child {
    font-size: 28px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-trigger {
    display: none;
  }

  .preorder-overlay,
  .preorder-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .preorder-popup,
  .preorder-box {
    max-height: 92svh;
  }

  .preorder-image {
    display: none;
  }
}
