
@font-face {
  font-family: 'EB Garamond';
  src: url('/assets/fonts/eb-garamond-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('/assets/fonts/eb-garamond-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('/assets/fonts/eb-garamond-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('/assets/fonts/eb-garamond-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
  :root {
    --bg: #0d0d0f;
    --bg-panel: #141417;
    --bg-panel-2: #101013;
    --text: #ebe3d6;
    --text-soft: #c6bcad;
    --text-muted: #9d9588;
    --line-soft: rgba(198, 169, 107, 0.22);
    --accent: #8f3f2f;
    --accent-hover: #a24a37;
    --accent-border: #b46c56;
    --gold: #c3a56e;
    --shadow: rgba(0, 0, 0, 0.35);
    --max-width: 1100px;
    --radius: 14px;
    --section-space: clamp(3.5rem, 7vw, 6rem);
    --container-pad: clamp(1.1rem, 3vw, 2rem);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background:
      radial-gradient(circle at top, rgba(195, 165, 110, 0.05), transparent 28%),
      linear-gradient(180deg, #121216 0%, var(--bg) 30%, #0a0a0c 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

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

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

  .site-shell {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 20%),
      radial-gradient(circle at 80% 0%, rgba(255,255,255,0.04), transparent 22%),
      radial-gradient(circle at 50% 100%, rgba(255,255,255,0.03), transparent 30%);
    mix-blend-mode: soft-light;
  }

  .container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(195, 165, 110, 0.12);
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(10px);
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .brand {
    color: var(--text);
    font-family: "EB Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .nav a {
    color: var(--text-soft);
    font-size: 0.98rem;
    transition: color 0.2s ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--text);
  }

  .hero {
    padding: clamp(3rem, 7vw, 5.5rem) 0 var(--section-space);
  }

  .hero-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(195, 165, 110, 0.16);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
      linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
    box-shadow:
      0 20px 40px var(--shadow),
      inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .hero-card::before,
  .hero-card::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line-soft), transparent);
  }

  .hero-card::before {
    top: 1.1rem;
  }

  .hero-card::after {
    bottom: 1.1rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }

  .hero-copy > * + * {
    margin-top: 0.25rem;
  }

  .hero-eyebrow {
    margin: 0 0 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-descriptor,
  .hero-title,
  .hero-subtitle {
    font-family: "EB Garamond", serif;
  }

  .hero-descriptor {
   margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.15;
  color: #d8d0c2;
  letter-spacing: 0.01em;
  }

  .hero-title {
    margin: 0.1rem 0 0.3rem;
    color: var(--text);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
  }

  .hero-subtitle {
    margin: 0 0 0.7rem;
    color: #ddd4c7;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
  }

  .hero-body {
    margin: 0;
    max-width: 31rem;
    color: #cfc5b7;
    font-size: clamp(0.96rem, 1.1vw, 1.04rem);
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.3rem;
  }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    background: linear-gradient(180deg, #a24b37, var(--accent));
    color: #fff7f2;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255,255,255,0.12);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .button:hover,
  .button:focus-visible {
    background: linear-gradient(180deg, #b6553f, var(--accent-hover));
    transform: translateY(-1px);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255,255,255,0.16);
  }

  .button-secondary {
    border: 1px solid rgba(195, 165, 110, 0.25);
    background: transparent;
    color: var(--text);
    box-shadow: none;
  }

  .button-secondary:hover,
  .button-secondary:focus-visible {
    background: rgba(255,255,255,0.03);
    transform: translateY(-1px);
  }

  .hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-panel {
    width: min(100%, 430px);
    padding: 1.1rem 1.1rem 0.95rem;
    border: 1px solid rgba(195, 165, 110, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .product-frame {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(195, 165, 110, 0.12);
    border-radius: 14px;
    background: #070708;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.03),
      0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .product-image {
    display: block;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    background: #d8cfbf;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  }

  .product-status {
    margin: 0.9rem 0 0;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
  }

  .section {
    padding: 0 0 var(--section-space);
  }

  .section-card {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid rgba(195, 165, 110, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .section-label::before,
  .section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(195, 165, 110, 0.22), transparent);
  }

  .section h2 {
    margin: 0 0 0.9rem;
    color: var(--text);
    font-family: "EB Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
  }

  .section p {
  margin: 0;
  color: #d2c8ba;
  max-width: 52rem;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  }

  .section p strong {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: var(--text);
}

  .footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(195, 165, 110, 0.12);
    background: rgba(8, 8, 10, 0.75);
  }

  .footer-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-soft);
  }

  .footer-line + .footer-line {
    border-top: 1px solid rgba(195, 165, 110, 0.08);
  }

  .footer-brand {
    color: var(--text);
    font-family: "EB Garamond", serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }

  .footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-meta {
    color: var(--text-muted);
    font-size: 0.96rem;
  }

  .footer-meta a {
    color: var(--text-soft);
  }

  .footer-meta a:hover,
  .footer-meta a:focus-visible {
    color: var(--text);
  }

  /* ==========================================
   PRE-ORDER PAGE
   ========================================== */

.preorder-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.preorder-page .hero-copy > * + * {
  margin-top: 0;
}

.preorder-page .hero-eyebrow {
  margin-bottom: 0.9rem;
}

.preorder-page .hero-descriptor {
  margin-bottom: 0.35rem;
}

.preorder-page .hero-title {
  margin: 0 0 0.45rem;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 0.94;
}

.preorder-page .hero-subtitle {
  margin: 0 0 1.2rem;
}

.preorder-page .hero-body {
  max-width: 34rem;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.58;
}

.preorder-page .hero-body + .hero-body {
  margin-top: 0.7rem;
}

.preorder-page .hero-actions {
  margin-top: 1.6rem;
}

.preorder-page .button {
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 650;
}

.preorder-page .hero-media {
  align-self: center;
}

.preorder-page .product-panel {

  padding: 1rem 1rem 0.9rem;
}

.preorder-page .product-frame {
  padding: 0.9rem;
}

.preorder-page .product-image {
  max-width: 300px;
}

.preorder-page .product-status {
  margin: 0.75rem 0 0;
  color: #a79f92;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
}

.preorder-page .preorder-section .section-card {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.preorder-details {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.preorder-facts ul {
  margin: 0;
  padding-left: 1.2rem;
}

.preorder-facts li {
  margin-bottom: 0.42rem;
  color: #d2c8ba;
  font-size: 1.02rem;
  line-height: 1.55;
}

.preorder-facts li:last-child {
  margin-bottom: 0;
}

.preorder-facts strong {
  color: var(--text);
  font-weight: 600;
}

.preorder-copy p {
  margin: 0;
  max-width: 42rem;
  color: #d2c8ba;
  font-size: clamp(1.06rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.preorder-copy p + p {
  margin-top: 0.9rem;
}

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

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

  .preorder-page .hero-copy {
    text-align: center;
  }

  .preorder-page .hero-body {
    margin-left: auto;
    margin-right: auto;
  }

  .preorder-page .hero-actions {
    justify-content: center;
  }

  .preorder-page .hero-media {
    width: min(100%, 480px);
    margin: 0 auto;
  }

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

  .preorder-facts {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .preorder-page .hero-title {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .preorder-page .hero-subtitle {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }

  .preorder-page .button {
    width: 100%;
  }

  .preorder-page .product-panel {
    width: 100%;
  }

  .preorder-page .product-image {
    max-width: 270px;
  }

  .preorder-facts li,
  .preorder-copy p {
    font-size: 1rem;
  }
}

/* --- Pre-order page refinements --- */

.preorder-page .hero-body {
  max-width: 33rem;
  font-size: clamp(0.98rem, 1.08vw, 1.04rem);
  line-height: 1.6;
}

.preorder-page .product-status {
  margin: 0.7rem 0 0;
  color: #b0a79a;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
}

.preorder-page .section-label {
  margin-bottom: 1.35rem;
}

.preorder-page .preorder-facts li {
  margin-bottom: 0.46rem;
  line-height: 1.5;
}

.preorder-page .preorder-copy p {
  max-width: 40rem;
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.68;
}

.preorder-page .preorder-copy p + p {
  margin-top: 1rem;
}

.preorder-page .section-card {
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.02);
}

.preorder-page .hero-card {
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.preorder-page .button {
  min-width: 11rem;
}

.preorder-page .button:hover,
.preorder-page .button:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .preorder-page .hero-card,
  .preorder-page .section-card {
    padding: 1.35rem;
  }

  .preorder-page .product-status {
    font-size: 0.88rem;
  }
}

.preorder-page .product-panel {
  width: min(100%, 372px);
}

.preorder-note {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #9d9588;
  line-height: 1.4;
  max-width: fit-content;
  opacity: 0.9;
}

/* --- Footer --- */
.footer-privacy {
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(195, 165, 110, 0.06);
  padding-top: 1.4rem;
}

.footer-privacy-inner {
  max-width: 460px;
}

.footer-privacy p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.footer-privacy a {
  display: inline-block;
  margin-top: 0.18rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-privacy a:hover,
.footer-privacy a:focus-visible {
  color: var(--text);
}


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

    .hero-copy {
      text-align: center;
    }

    .hero-body {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-media {
      width: min(100%, 520px);
      margin: 0 auto;
    }

    .footer-line {
      flex-direction: column;
      text-align: center;
    }

    .footer-nav {
      justify-content: center;
    }
  }

/* ==========================================
   PRIVACY POLICY PAGE
   ========================================== */

.privacy-hero {
  padding-bottom: 2rem;
}

.privacy-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.privacy-intro {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.privacy-title {
  margin: 0;
  color: var(--text);
  font-family: "EB Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.privacy-lead {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.privacy-section {
  padding-top: 0;
}

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.privacy-content h3 {
  margin: 2.6rem 0 0.8rem;
  color: var(--text);
  font-family: "EB Garamond", serif;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
}

.privacy-content p,
.privacy-content li {
  color: #d2c8ba;
  font-size: clamp(1rem, 1.1vw, 1.06rem);
  line-height: 1.72;
  opacity: 0.92;
}

.privacy-content p {
  margin: 0;
  max-width: none;
}

.privacy-content p + p,
.privacy-content p + h3,
.privacy-content ul + p {
  margin-top: 1rem;
}

.privacy-content p + ul {
  margin-top: 1.6rem;
}

.privacy-content ul {
  margin: 0.6rem 0 0 1.2rem;
  padding: 0;
}

.privacy-content li + li {
  margin-top: 0.35rem;
}

.privacy-content a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-content a:hover,
.privacy-content a:focus-visible {
  color: var(--text);
}


  /* --- Mobile --- */
  @media (max-width: 620px) {
    .topbar-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .nav {
      justify-content: center;
      gap: 0.9rem;
    }

    .button,
    .button-secondary {
      width: 100%;
    }

    .hero-actions {
      flex-direction: column;
    }

    .container {
      width: min(var(--max-width), calc(100% - 1rem));
    }

    .hero-card,
    .section-card {
      padding: 1.25rem;
    }

    .footer-brand {
      font-size: 1.6rem;
    }

    .product-panel {
      padding: 1rem 1rem 0.9rem;
      border-radius: 14px;
    }

    .product-frame {
      padding: 0.8rem;
      border-radius: 12px;
    }

    .product-image {
      max-width: 280px;
      border-radius: 8px;
    }

    .product-status {
      font-size: 0.92rem;
    }
  }