:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f3ee;
  --muted: rgba(245, 243, 238, 0.72);
  --gold: #c9a24a;
  --gold-soft: rgba(201, 162, 74, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 162, 74, 0.08), transparent 38%),
    #0a0a0a;
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.proof-strip,
.feature-band,
.collections,
.experience,
.delivery,
.vault,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brandmark__seal {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.03);
}

.brandmark__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark__text strong {
  font-size: 0.98rem;
}

.brandmark__text span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-cta,
.button,
.vault-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  border: 1px solid rgba(201, 162, 74, 0.36);
  color: var(--gold);
}

.header-cta:hover,
.button:hover,
.vault-form button:hover,
.choice-button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-smoke {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.52);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.68) 48%, rgba(10, 10, 10, 0.82) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.76) 100%);
}

.hero-smoke {
  opacity: 0.24;
  mix-blend-mode: screen;
}

.hero-smoke::before,
.hero-smoke::after {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 255, 255, 0.02) 60%, transparent 70%);
  filter: blur(46px);
}

.hero-smoke--one::before {
  top: 12%;
  left: 8%;
  animation: drift 16s ease-in-out infinite;
}

.hero-smoke--one::after {
  bottom: -10%;
  left: 28%;
  animation: drift 21s ease-in-out infinite reverse;
}

.hero-smoke--two::before {
  top: 8%;
  right: -6%;
  animation: drift 19s ease-in-out infinite reverse;
}

.hero-smoke--two::after {
  bottom: 4%;
  right: 18%;
  animation: drift 23s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2.5vw, -2vw, 0) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 96px;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.feature-intro h2,
.experience h2,
.delivery h2,
.vault h2 {
  font-family: "Playfair Display", serif;
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  max-width: 8ch;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions,
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button--gold,
.vault-form button {
  background: var(--gold);
  color: #130f08;
  font-weight: 800;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

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

.hero-meta p {
  margin: 0;
  color: rgba(245, 243, 238, 0.78);
}

.status-pill {
  border: 1px solid rgba(201, 162, 74, 0.3);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -76px;
  position: relative;
  z-index: 3;
}

.proof-card,
.feature-grid article,
.delivery-grid article,
.guide-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 24px;
  border-radius: var(--radius);
}

.proof-card p,
.feature-grid article p,
.delivery-grid article p,
.guide-result,
.section-heading p,
.feature-intro p:last-child,
.experience-copy > p:last-of-type,
.delivery-copy p:last-of-type,
.vault-copy p:last-of-type,
.collection__body p,
.site-footer p,
.site-footer li,
.hours-list {
  color: var(--muted);
  line-height: 1.7;
}

.proof-card p {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}

.proof-card span {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.feature-band,
.collections,
.experience,
.delivery,
.vault,
.site-footer {
  padding: 112px 0;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.feature-intro h2,
.section-heading h2,
.experience h2,
.delivery h2,
.vault h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 12ch;
}

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

.feature-grid article,
.delivery-grid article {
  padding: 26px;
  border-radius: var(--radius);
}

.feature-grid h3,
.collection__body h3,
.guide-box h3,
.delivery-grid strong,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--text);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.collection-list {
  display: grid;
  gap: 28px;
}

.collection {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.collection--reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.collection__media {
  min-height: 420px;
  position: relative;
}

.collection__media img {
  height: 100%;
  object-fit: cover;
}

.collection__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection__label {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.collection__body a {
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
}

.experience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.experience-points,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.experience-points li,
.hours-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-box {
  padding: 32px;
  border-radius: var(--radius);
}

.guide-box__eyebrow {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.guide-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.choice-button {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: var(--radius);
  text-align: left;
}

.choice-button.is-active {
  border-color: rgba(201, 162, 74, 0.46);
  background: rgba(201, 162, 74, 0.12);
}

.guide-result {
  margin: 18px 0 0;
}

.delivery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.delivery-grid strong {
  display: block;
  font-size: 1.05rem;
}

.vault {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vault-form input {
  min-width: min(340px, calc(100vw - 64px));
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.vault-form input::placeholder {
  color: rgba(245, 243, 238, 0.5);
}

.site-footer {
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-note {
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .feature-band,
  .experience,
  .vault {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 880px) {
  .site-nav {
    display: none;
  }

  .proof-strip,
  .feature-grid,
  .delivery-grid,
  .footer-grid,
  .vault-form {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
    padding-top: 24px;
  }

  .feature-band,
  .collections,
  .experience,
  .delivery,
  .vault,
  .site-footer {
    padding: 84px 0;
  }

  .collection,
  .collection--reverse {
    grid-template-columns: 1fr;
  }

  .collection__media {
    min-height: 300px;
  }

  .vault-form {
    display: grid;
  }

  .vault-form input {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .proof-strip,
  .feature-band,
  .collections,
  .experience,
  .delivery,
  .vault,
  .site-footer,
  .hero-content {
    width: min(100% - 24px, 1200px);
  }

  .brandmark__text strong {
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .proof-card,
  .feature-grid article,
  .delivery-grid article,
  .guide-box,
  .collection__body {
    padding: 22px;
  }

  .feature-intro h2,
  .section-heading h2,
  .experience h2,
  .delivery h2,
  .vault h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
