/** Shopify CDN: Minification failed

Line 38:0 All "@import" rules must come first

**/
/* Critical Above-the-fold CSS — loaded synchronously, no defer/async */
/* Purpose: Render-blocking styles for above-the-fold content */

/* ── Design Tokens (Dark Default) ── */
:root {
  --color-surface: #121212;
  --color-surface-low: #1A1A1A;
  --color-primary: #D4AF37;
  --color-text-primary: #E8E8E8;
  --color-text-secondary: #9A9A9A;
  --color-outline: #333333;
  --glass-bg: rgba(18, 18, 18, 0.85);
  --glass-border: rgba(255, 255, 255, 0.03);
  --font-heading: 'Noto Serif', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', 'Inter', 'Helvetica Neue', sans-serif;
  --header-height: 80px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Design Tokens (Light Mode) ── */
[data-theme="light"] {
  --color-surface: #FAFAF8;
  --color-surface-low: #F2F1EF;
  --color-primary: #9E7E1E;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #5A5A5A;
  --color-outline: #E5E3DF;
  --glass-bg: rgba(250, 250, 248, 0.88);
  --glass-border: rgba(0, 0, 0, 0.06);
}

/* ── Google Fonts (Critical) ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Manrope:wght@400;600;800&display=swap');

/* ── Reset (Critical) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Glass Header (Above fold — blocks 80px) ── */
.glass-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease,
              backdrop-filter 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform;
}

/* Initial state — solid, no transparency */
.glass-header.is-solid {
  background: var(--color-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--color-outline);
}

/* Glass state — liquid glass effect */
.glass-header.is-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 40px rgba(0,0,0,0.15);
}

/* Hidden state — slides up */
.glass-header.is-hidden {
  transform: translateY(-100%);
}

[data-theme="light"] .glass-header.is-glass {
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.header__logo a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary);
  letter-spacing: 4px;
  font-weight: 700;
}
.header__right a { color: var(--color-text-secondary); }

/* ── Hero (Full viewport — above the fold) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 100%);
}
[data-theme="light"] .hero__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 24px;
}
.hero__tag {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--color-primary);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  color: #ffffff;
  line-height: 1.08;
  font-style: italic;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ── Buttons (Stitch) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 18px 44px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #000000; font-weight: 800; }
.btn--secondary { background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); }
.btn--secondary:hover { background: var(--color-primary); color: #000000; }

/* ── Toast Container (Prevent CLS) ── */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + 16px);
  right: 16px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

/* ── Responsive (Critical breakpoints) ── */
@media (max-width: 768px) {
  :root { --header-height: 56px; }
  .glass-header { padding: 0 16px; }
  .hero { min-height: 70vh; }
  .hero__tag { font-size: 9px; letter-spacing: 4px; }
  .hero__title { font-size: clamp(28px, 8vw, 42px); }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; margin-top: 32px; }
  .hero__actions .btn { width: 80%; max-width: 280px; padding: 16px 24px; }
}
