:root {
  --black: #030302;
  --gold: #d99b43;
  --gold-light: #ffd083;
  --gold-soft: #f3b75f;
  --text: #f7efe2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, #050402 0%, #000 44%, #040301 100%);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.image-page {
  display: grid;
  place-items: start center;
  overflow-x: hidden;
}

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

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

.stage {
  position: relative;
  width: 100%;
  min-width: 760px;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 0 80px rgba(217, 155, 67, 0.08);
}

.image-page .stage:not(.tall-stage) {
  width: min(100vw, calc((100vh - var(--image-page-offset, 0px) - 4px) * 1.77272727));
  min-width: 0;
}

.image-page:not(.native-nav):not(.complete-page) {
  --image-page-offset: 82px;
}

.tall-stage {
  max-width: 1080px;
  min-width: 320px;
  min-height: 0;
}

.stage picture,
.stage img {
  display: block;
}

.stage img {
  width: 100%;
  height: auto;
  filter: contrast(1.028) saturate(0.99) brightness(1.006);
  user-select: none;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 2px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.hotspot:hover {
  background: rgba(255, 208, 131, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 208, 131, 0.24), 0 0 26px rgba(217, 155, 67, 0.16);
}

.hotspot:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  background: rgba(255, 208, 131, 0.12);
}

.top-buy,
.home-buy,
.buy-page-button,
.complete-buy-link {
  box-shadow: 0 0 0 rgba(255, 208, 131, 0);
  animation: lucinCtaBreath 3.8s ease-in-out infinite;
}

.top-buy:hover,
.home-buy:hover,
.buy-page-button:hover,
.complete-buy-link:hover,
.top-buy:focus-visible,
.home-buy:focus-visible,
.buy-page-button:focus-visible,
.complete-buy-link:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 229, 173, 0.34), 0 0 32px rgba(255, 208, 131, 0.28);
}

@keyframes lucinCtaBreath {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 208, 131, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 208, 131, 0.18);
  }
}

.brand-link {
  left: 3.9%;
  top: 2%;
  width: 9%;
  height: 5.3%;
}

.nav-notes {
  left: 34%;
  top: 3.1%;
  width: 5.6%;
  height: 3.8%;
}

.nav-why {
  left: 42.1%;
  top: 3.1%;
  width: 8.5%;
  height: 3.8%;
}

.nav-unisex {
  left: 52.5%;
  top: 3.1%;
  width: 6.4%;
  height: 3.8%;
}

.nav-reviews {
  left: 61.1%;
  top: 3.1%;
  width: 7.5%;
  height: 3.8%;
}

.top-buy {
  left: 86%;
  top: 2%;
  width: 10.2%;
  height: 5.1%;
}

.home-buy {
  left: 4.45%;
  top: 75%;
  width: 20.5%;
  height: 7.6%;
}

.home-notes {
  left: 26.55%;
  top: 75%;
  width: 19.2%;
  height: 7.6%;
  display: none;
}

.buy-page-button {
  left: 4.2%;
  top: 50.1%;
  width: 28.2%;
  height: 8.4%;
}

.floating-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 58px);
  min-width: 760px;
  padding: 16px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(185, 117, 35, 0.76);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
}

.floating-brand {
  margin-right: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.floating-buy {
  margin-left: auto;
  min-width: 132px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 199, 111, 0.42);
  background:
    linear-gradient(100deg, rgba(146, 87, 15, 0.2), transparent 33%, rgba(255, 208, 131, 0.24)),
    linear-gradient(180deg, #f0bb6b, #c87d28);
  color: #0d0802;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-align: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.floating-buy:hover,
.floating-buy:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.complete-brand {
  left: 3.6%;
  top: 1%;
  width: 14%;
  height: 2.3%;
}

.complete-notes-link {
  left: 27.6%;
  top: 1.25%;
  width: 6.2%;
  height: 1.7%;
}

.complete-why-link {
  left: 35.7%;
  top: 1.25%;
  width: 9.2%;
  height: 1.7%;
}

.complete-unisex-link {
  left: 45.8%;
  top: 1.25%;
  width: 7.4%;
  height: 1.7%;
}

.complete-reviews-link {
  left: 54.3%;
  top: 1.25%;
  width: 8.2%;
  height: 1.7%;
}

.complete-buy-link {
  left: 83%;
  top: 0.9%;
  width: 13.2%;
  height: 2.5%;
}

.checkout-page {
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 42%, rgba(0, 0, 0, 0.5) 100%),
    #000;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  height: calc(100dvh - 82px);
  min-height: 0;
  overflow: hidden;
}

.checkout-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgba(217, 155, 67, 0.36);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 211, 130, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(16, 11, 5, 0.96), rgba(0, 0, 0, 0.98));
}

.checkout-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.035) saturate(0.99) brightness(0.995);
}

.checkout-panel {
  position: relative;
  overflow: hidden;
  align-self: center;
  width: min(560px, calc(100% - 56px));
  margin: 24px auto;
  max-height: calc(100dvh - 112px);
  padding: clamp(18px, 2.1vw, 28px);
  border: 1px solid rgba(217, 155, 67, 0.55);
  background:
    linear-gradient(180deg, rgba(20, 13, 5, 0.92), rgba(0, 0, 0, 0.92)),
    #050402;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65), inset 0 0 36px rgba(217, 155, 67, 0.05);
}

.checkout-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 131, 0.86), transparent);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.checkout-panel h1,
.thank-you h1 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.7vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.checkout-copy,
.thank-you p {
  margin: 14px 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.product-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 14px 0;
  border: 1px solid rgba(217, 155, 67, 0.35);
  background: rgba(217, 155, 67, 0.35);
}

.product-summary div {
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.78);
}

.product-summary dt {
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.product-summary dd {
  margin: 8px 0 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-trust-grid li {
  min-height: 0;
  padding: 9px 12px;
  border: 1px solid rgba(217, 155, 67, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 208, 131, 0.075), transparent 52%),
    rgba(255, 248, 236, 0.035);
}

.checkout-trust-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.25;
}

.checkout-trust-grid span {
  display: none;
}

.text-paypal-link {
  display: inline-block;
  color: var(--gold-light);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.text-paypal-link:hover,
.text-paypal-link:focus-visible {
  color: #ffe1a3;
  text-shadow: 0 0 20px rgba(255, 208, 131, 0.32);
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.92rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(217, 155, 67, 0.42);
  border-radius: 0;
  padding: 0 14px;
  background: rgba(255, 248, 236, 0.06);
  color: #fff8ec;
  font: inherit;
}

.checkout-form textarea {
  min-height: 140px;
  padding-block: 12px;
  resize: vertical;
}

.checkout-form select option {
  color: #111;
}

.checkout-form input:focus,
.checkout-form select:focus {
  outline: 2px solid rgba(255, 208, 131, 0.55);
  outline-offset: 2px;
}

.checkout-form button {
  min-height: 54px;
  margin-top: 8px;
  border: 1px solid rgba(255, 199, 111, 0.48);
  background:
    linear-gradient(100deg, rgba(146, 87, 15, 0.18), transparent 34%, rgba(255, 208, 131, 0.26)),
    linear-gradient(180deg, #f5c676, #c87d28);
  color: #0d0802;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
  transition: filter 180ms ease, transform 180ms ease;
}

.checkout-form button:hover,
.checkout-form button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.paypal-button {
  display: grid;
  min-height: 56px;
  place-items: center;
  margin-top: 10px;
  border: 1px solid rgba(255, 199, 111, 0.48);
  background:
    linear-gradient(100deg, rgba(146, 87, 15, 0.18), transparent 34%, rgba(255, 208, 131, 0.26)),
    linear-gradient(180deg, #f5c676, #c87d28);
  color: #0d0802;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 34px rgba(217, 155, 67, 0.2);
  transition: filter 180ms ease, transform 180ms ease;
}

.paypal-primary {
  margin-top: 16px;
}

.paypal-button:hover,
.paypal-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.thank-you {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18vh 0;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.info-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 155, 67, 0.14), transparent 28rem),
    linear-gradient(180deg, #050402 0%, #000 72%);
}

.info-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0;
}

.info-shell h1 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
}

.info-shell > p:not(.eyebrow):not(.legal-note) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(217, 155, 67, 0.36);
  background: rgba(217, 155, 67, 0.36);
}

.info-grid section {
  min-height: 180px;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
}

.info-grid h2,
.faq-list summary {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.info-grid p,
.faq-list p,
.legal-note {
  color: rgba(255, 250, 244, 0.68);
  line-height: 1.7;
}

.legal-note {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 0.95rem;
}

.compact-form {
  max-width: 680px;
  margin-top: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-top: 36px;
}

.faq-list details {
  border: 1px solid rgba(217, 155, 67, 0.4);
  background: rgba(0, 0, 0, 0.72);
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
}

.complete-shipping-link {
  left: 27%;
  top: 97.1%;
  width: 7.4%;
  height: 1.4%;
}

.complete-returns-link {
  left: 36.5%;
  top: 97.1%;
  width: 7.2%;
  height: 1.4%;
}

.complete-contact-link {
  left: 45.8%;
  top: 97.1%;
  width: 7.2%;
  height: 1.4%;
}

.complete-faq-link {
  left: 55.3%;
  top: 97.1%;
  width: 5.2%;
  height: 1.4%;
}

.complete-privacy-link {
  left: 63.1%;
  top: 97.1%;
  width: 7.2%;
  height: 1.4%;
}

.complete-terms-link {
  left: 72.4%;
  top: 97.1%;
  width: 6.6%;
  height: 1.4%;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .stage {
    min-width: 0;
  }

  .stage img {
    width: 100%;
    min-height: 0;
    object-fit: initial;
    object-position: top center;
  }

  .home-page.native-nav .brand-link {
    left: 3.6%;
    top: 1%;
    width: 14%;
    height: 2.3%;
  }

  .home-page.native-nav .nav-notes {
    left: 27.6%;
    top: 1.25%;
    width: 6.2%;
    height: 1.7%;
  }

  .home-page.native-nav .nav-why {
    left: 35.7%;
    top: 1.25%;
    width: 9.2%;
    height: 1.7%;
  }

  .home-page.native-nav .nav-unisex {
    left: 45.8%;
    top: 1.25%;
    width: 7.4%;
    height: 1.7%;
  }

  .home-page.native-nav .nav-reviews {
    left: 54.3%;
    top: 1.25%;
    width: 8.2%;
    height: 1.7%;
  }

  .home-page.native-nav .top-buy {
    left: 83%;
    top: 0.9%;
    width: 13.2%;
    height: 2.5%;
  }

  .home-page.native-nav .home-buy {
    left: 4%;
    top: 20.1%;
    width: 20%;
    height: 2%;
  }

  .home-page.native-nav .home-notes {
    display: block;
    left: 25.4%;
    top: 20.1%;
    width: 17%;
    height: 2%;
  }

  .floating-nav {
    position: sticky;
    display: block;
    min-width: 0;
    height: 70px;
    overflow: hidden;
    padding: 14px 16px;
  }

  .checkout-page .floating-nav {
    height: 64px;
    padding: 12px 16px;
  }

  .floating-brand {
    position: absolute;
    left: 16px;
    top: 14px;
    margin-right: 0;
    font-size: 1.76rem;
  }

  .floating-nav a:not(.floating-brand):not(.floating-buy) {
    display: none;
  }

  .floating-buy {
    position: absolute;
    right: 16px;
    top: 12px;
    display: grid;
    width: 104px;
    min-width: 104px;
    margin-left: 0;
    padding: 9px 14px;
    place-items: center;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(150px, 32svh) minmax(0, 1fr);
    height: calc(100dvh - 64px);
    min-height: 0;
    overflow: hidden;
  }

  .checkout-visual {
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 155, 67, 0.36);
    background:
      radial-gradient(circle at 50% 46%, rgba(255, 211, 130, 0.24), transparent 44%),
      linear-gradient(180deg, rgba(16, 11, 5, 0.96), rgba(0, 0, 0, 0.98));
  }

  .checkout-visual img {
    padding: 7px 0;
    object-fit: contain;
    object-position: center;
  }

  .checkout-panel {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 12px 18px 14px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .checkout-panel * {
    max-width: 100%;
  }

  .checkout-panel h1,
  .thank-you h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.6rem);
  }

  .checkout-copy,
  .thank-you p {
    max-width: none;
    overflow-wrap: anywhere;
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .checkout-panel .eyebrow {
    margin-bottom: 6px;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
  }

  .paypal-button {
    min-height: 46px;
    margin-top: 10px;
    font-size: 0.95rem;
  }

  .checkout-trust-grid span {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .product-summary {
    grid-template-columns: repeat(3, 1fr);
    margin: 10px 0 0;
  }

  .product-summary div {
    padding: 8px 7px;
  }

  .product-summary dt {
    font-size: 0.68rem;
  }

  .product-summary dd {
    margin-top: 5px;
    font-size: 0.9rem;
  }

  .checkout-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin: 9px 0 0;
  }

  .checkout-trust-grid li {
    min-height: 0;
    padding: 7px 8px;
  }

  .checkout-trust-grid strong {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .checkout-trust-grid span {
    display: none;
  }

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

  .info-shell {
    width: min(680px, calc(100% - 32px));
  }
}

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