:root {
  --ink: #070706;
  --ink-soft: #0f0e0b;
  --panel: #15130f;
  --panel-light: #1b1812;
  --cream: #f5eddd;
  --cream-soft: #cfc5b4;
  --gold: #d9aa4a;
  --gold-bright: #f0c66a;
  --gold-deep: #8a6120;
  --line: rgba(240, 198, 106, 0.2);
  --shell: min(1180px, calc(100% - 40px));
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 6%, rgba(177, 124, 34, 0.12), transparent 24rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.17;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 6px);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(240, 198, 106, 0.11);
  background: rgba(7, 7, 6, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: var(--cream-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--gold-bright);
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), #bf852a);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(183, 126, 33, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(219, 166, 70, 0.25);
  filter: brightness(1.06);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 1px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #0b0a08;
}

.mobile-menu-inner {
  display: grid;
  gap: 18px;
  padding-block: 24px 28px;
}

.mobile-menu-inner > a:not(.button) {
  padding-block: 5px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  right: -7%;
  bottom: -28%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 198, 106, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-glow,
.story-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
  background: radial-gradient(circle, rgba(218, 164, 65, 0.18), rgba(218, 164, 65, 0) 68%);
}

.hero-glow {
  top: 8%;
  right: 5%;
  width: 52vw;
  height: 52vw;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding-block: clamp(54px, 7vw, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  flex: none;
  background: var(--gold-bright);
}

h1,
h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4.6rem, 10vw, 8.8rem);
  text-transform: uppercase;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.hero-lede,
.section-lede,
.story-copy > p,
.faq-heading > p:last-child {
  max-width: 610px;
  color: var(--cream-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-lede {
  max-width: 560px;
  margin: 30px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  padding: 8px 2px;
  border-bottom: 1px solid rgba(240, 198, 106, 0.55);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-note {
  margin: 25px 0 0;
  color: #948b7c;
  font-size: 0.78rem;
}

.fulfillment-note span {
  margin-right: 6px;
  color: var(--gold);
}

.hero-visual,
.product-visual {
  margin: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 198, 106, 0.24);
  background: #100e0a;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
}

.image-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(240, 198, 106, 0.13);
  content: "";
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(240, 198, 106, 0.32);
  color: var(--gold-bright);
  background: rgba(7, 7, 6, 0.78);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.image-frame-front {
  transform: rotate(1deg);
}

.image-frame-back {
  transform: rotate(-0.75deg);
}

.proof-bar {
  border-bottom: 1px solid var(--line);
  background: #0c0b08;
}

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

.proof-grid p {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 22px clamp(18px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.proof-grid p:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}

.proof-grid span {
  color: #9c9384;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(92px, 12vw, 170px);
}

.product-section {
  background: linear-gradient(180deg, #0a0907, #070706);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 126px);
}

.product-copy h2 {
  margin-bottom: 26px;
}

.section-lede {
  margin: 0 0 34px;
}

.spec-list {
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.94rem;
}

.spec-list li span {
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.partner-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: #8f877a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.story-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(213, 158, 52, 0.04), transparent 40%),
    var(--panel);
}

.story-glow {
  top: 2%;
  left: -10%;
  width: 55vw;
  height: 55vw;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.crest-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.crest-stage::before,
.crest-rings {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(240, 198, 106, 0.23);
  border-radius: 50%;
  content: "";
}

.crest-stage::before {
  width: 92%;
  aspect-ratio: 1;
}

.crest-rings {
  width: 70%;
  aspect-ratio: 1;
  box-shadow: 0 0 100px rgba(213, 158, 52, 0.11);
}

.crest-stage img {
  width: min(90%, 490px);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.52));
}

.story-copy > p {
  max-width: 640px;
  margin: 30px 0;
}

.story-copy blockquote {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
}

.faq-section {
  background: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 10vw, 145px);
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.faq-heading > p:last-child {
  margin-top: 24px;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 2px;
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 0 26px;
  padding-right: 48px;
  color: var(--cream-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 241, 188, 0.4), transparent 37%),
    linear-gradient(135deg, #8c5d18 0%, #e8b84e 50%, #98671e 100%);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(105deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 12px);
}

.final-cta-inner {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 90px;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--ink);
}

.final-cta .eyebrow span {
  background: var(--ink);
}

.final-cta h2 {
  font-size: clamp(4rem, 9vw, 8rem);
  text-transform: uppercase;
}

.button-light {
  margin-top: 34px;
  border-color: var(--ink);
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(45, 25, 0, 0.23);
}

.site-footer {
  padding: 78px 0 24px;
  background: #050504;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 70px;
}

.footer-brand {
  margin-bottom: 11px;
}

.footer-grid > div:first-child > p {
  margin: 0;
  color: #81796d;
  font-family: var(--display);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-label {
  margin: 0 0 4px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 198, 106, 0.12);
  color: #716a60;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .nav-links,
  .nav-shop {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .product-grid,
  .story-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
    padding-block: 74px 82px;
  }

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

  .hero-visual,
  .product-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .proof-grid p:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-grid {
    gap: 72px;
  }

  .product-copy {
    max-width: 700px;
  }

  .story-grid {
    gap: 55px;
  }

  .crest-stage {
    min-height: 420px;
  }

  .crest-stage img {
    width: min(78%, 460px);
  }

  .faq-heading {
    position: static;
  }

  .faq-layout {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .nav {
    min-height: 70px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero-grid {
    padding-block: 58px 65px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(3.9rem, 21vw, 6rem);
  }

  h2 {
    line-height: 0.97;
  }

  .hero-lede {
    margin-top: 24px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .proof-grid p {
    min-height: 98px;
    padding: 18px 14px;
  }

  .proof-grid strong {
    font-size: 1.05rem;
  }

  .proof-grid span {
    font-size: 0.65rem;
  }

  .section {
    padding-block: 88px;
  }

  .product-grid {
    gap: 58px;
  }

  .product-copy .button {
    width: 100%;
  }

  .crest-stage {
    min-height: 330px;
  }

  .story-copy blockquote {
    font-size: 1.25rem;
  }

  .faq-list summary {
    min-height: 78px;
  }

  .faq-list details p {
    padding-right: 14px;
  }

  .final-cta-inner {
    min-height: 390px;
  }

  .final-cta h2 {
    font-size: clamp(3.45rem, 17vw, 5.2rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 30px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
