/** Shopify CDN: Minification failed

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

**/
:root {
  --color-black: #050505;
  --color-charcoal: #111111;
  --color-deep-red: #3A0508;
  --color-burgundy: #6E0F14;
  --color-gold: #C9A45C;
  --color-antique-gold: #9C7838;
  --color-copper: #B66A3C;
  --color-silver: #C7C7C7;
  --color-gunmetal: #2B2D2F;
  --color-text: #F5F1E8;
  --color-muted-text: #B8AFA2;
  --color-border: rgba(201, 164, 92, 0.2);

  --font-heading: 'Perandory', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-spacing: 120px;
  --container-width: 1200px;
  --container-wide: 1400px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Perandory';
  src: url('PerandorySemiCondensed.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

#MainContent {
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 120px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

/* Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--color-deep-red), var(--color-burgundy), var(--color-deep-red));
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid rgba(201, 164, 92, 0.15);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.has-announcement {
  top: 38px;
}

.site-header:not(.scrolled) {
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.85) 0%,
    rgba(5, 5, 5, 0.45) 55%,
    transparent 100%
  );
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.header-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a:not(.header-cta) {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-text);
  transition: color 0.3s ease;
}

.header-nav a:not(.header-cta):hover {
  color: var(--color-gold);
}

.header-nav .header-cta {
  padding: 10px 24px;
  background: rgba(5, 5, 5, 0.85);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-nav .header-cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 65vh;
  min-height: 480px;
  max-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.75) 35%,
    rgba(5, 5, 5, 0.45) 65%,
    rgba(5, 5, 5, 0.25) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 40px 56px;
  max-width: min(100%, 960px);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title-line {
  display: block;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title-line--sub {
  text-transform: lowercase;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-antique-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 92, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(201, 164, 92, 0.1);
  transform: translateY(-2px);
}

/* Section Titles */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-muted-text);
  max-width: 480px;
  line-height: 1.75;
}

/* Gold Divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 40px 0;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Product Intro Section */
.product-intro {
  padding: var(--section-spacing) 0;
  background: var(--color-black);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-intro-image img {
  width: 100%;
  border-radius: 4px;
}

.product-intro-highlights {
  list-style: none;
  margin-top: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-intro-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--color-muted-text);
  letter-spacing: 0.01em;
}

.product-intro-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* What's Inside Section */
.whats-inside {
  padding: var(--section-spacing) 0;
  background: var(--color-charcoal);
}

.whats-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.inside-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.inside-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.inside-item-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside-item-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  fill: none;
}

.inside-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.inside-item p {
  font-size: 14px;
  color: var(--color-muted-text);
  line-height: 1.5;
}

/* Chip Showcase */
.chip-showcase {
  padding: 48px 0 var(--section-spacing);
  background: var(--color-black);
}

.chip-showcase-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.chip-showcase-header .section-title {
  margin-bottom: 0;
}

.chip-showcase-feature {
  margin-top: 48px;
  border-radius: 2px;
  overflow: hidden;
}

.chip-showcase-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.chip-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.chip-panel {
  position: relative;
}

.chip-panel__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1 / 1;
}

.chip-panel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.75) 0%,
    rgba(5, 5, 5, 0.1) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.chip-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chip-panel:hover .chip-panel__media img {
  transform: scale(1.04);
}

.chip-panel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  z-index: 2;
}

.chip-panel__index {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.chip-panel__caption h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

/* Case Showcase */
.case-showcase {
  padding: var(--section-spacing) 0;
  background: var(--color-charcoal);
}

.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.case-image img {
  width: 100%;
  border-radius: 4px;
}

.case-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  align-content: center;
}

.case-feature {
  padding: 0;
  border: none;
}

.case-feature--wide {
  grid-column: 1 / -1;
  max-width: 420px;
}

.case-feature h4 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: 12px;
}

.case-feature p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-muted-text);
  max-width: 320px;
}

/* Lifestyle Section */
.lifestyle-section {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lifestyle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.85) 0%,
    rgba(5, 5, 5, 0.6) 100%
  );
  z-index: 2;
}

.lifestyle-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.lifestyle-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.lifestyle-content p {
  font-size: 17px;
  color: var(--color-muted-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Gallery Section */
.gallery-section {
  padding: var(--section-spacing) 0;
  background: var(--color-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* Purchase Section */
.purchase-section {
  padding: var(--section-spacing) 0;
  background: var(--color-charcoal);
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.purchase-gallery {
  position: sticky;
  top: 120px;
  align-self: start;
}

.purchase-gallery-main {
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-charcoal);
  margin-bottom: 12px;
}

.purchase-gallery-main img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.purchase-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
  padding-bottom: 4px;
}

.purchase-gallery-thumbs::-webkit-scrollbar {
  height: 3px;
}

.purchase-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.purchase-gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.purchase-gallery-thumbs img:hover,
.purchase-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.purchase-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: normal;
  line-height: 1.08;
  margin-bottom: 16px;
}

.purchase-info .price {
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.purchase-info .description {
  font-size: 16px;
  color: var(--color-muted-text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.variant-selector {
  margin-bottom: 24px;
}

.variant-selector label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-muted-text);
}

.variant-options {
  display: flex;
  gap: 12px;
}

.variant-option {
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.variant-option:hover,
.variant-option.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.quantity-selector label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted-text);
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.quantity-controls button {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.quantity-controls button:hover {
  color: var(--color-gold);
}

.quantity-controls input {
  width: 50px;
  height: 40px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  text-align: center;
  font-size: 15px;
}

.purchase-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.purchase-buttons .btn-primary,
.purchase-buttons .btn-secondary {
  width: 100%;
  text-align: center;
}

.trust-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted-text);
}

.trust-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
}

/* Specs Section */
.specs-section {
  padding: var(--section-spacing) 0;
  background: var(--color-black);
}

.specs-table {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  border-collapse: collapse;
}

.specs-table-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs-table-wrapper .specs-table {
  margin: 0;
  min-width: 320px;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table td {
  padding: 20px 24px;
  font-size: 15px;
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--color-gold);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--color-muted-text);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-spacing) 0;
  background: var(--color-charcoal);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-muted-text);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-muted-text);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--color-muted-text);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--color-muted-text);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
  border-radius: 4px;
}

.newsletter-form input::placeholder {
  color: var(--color-muted-text);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--color-antique-gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-muted-text);
}

/* Responsive */
@media (max-width: 1200px) {
  .header-nav {
    gap: 20px;
  }

  .header-nav a:not(.header-cta) {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .header-nav .header-cta {
    padding: 8px 18px;
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: clamp(44px, 6.5vw, 72px);
  }

  .chip-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .product-intro-grid,
  .purchase-grid,
  .case-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .gallery-item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .announcement-bar {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.08em;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 8px 16px 20px;
    border-bottom: 1px solid var(--color-border);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a:not(.header-cta) {
    padding: 14px 0;
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-nav .header-cta {
    margin-top: 12px;
    padding: 14px 24px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.has-announcement {
    top: 34px;
  }

  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  [id] {
    scroll-margin-top: 100px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-inner {
    padding: 14px 16px;
  }

  .header-logo {
    font-size: 17px;
    letter-spacing: 0.1em;
    gap: 10px;
  }

  .header-logo-img {
    width: 48px;
    height: 48px;
  }

  .hero-section {
    height: 60vh;
    min-height: 380px;
    max-height: 500px;
  }

  .hero-content {
    padding: 0 16px 40px;
  }

  .hero-content h1,
  .hero-content h1 .hero-title-line {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.06;
    white-space: normal;
  }

  .product-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .product-intro-text {
    order: 1;
  }

  .product-intro-image {
    order: 2;
  }

  input,
  select,
  textarea,
  .newsletter-form input {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary,
  .variant-option,
  .faq-question,
  .product-accordion-trigger {
    min-height: 48px;
  }

  .quantity-controls button {
    min-width: 44px;
    min-height: 44px;
  }

  .specs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    text-align: center;
    padding: 14px 24px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 12px;
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(38px, 10vw, 52px);
    margin-bottom: 18px;
    line-height: 1.06;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .product-intro {
    padding: var(--section-spacing) 0;
  }

  .product-intro-image img {
    border-radius: 4px;
  }

  .product-intro-highlights {
    margin-top: 24px;
  }

  .product-intro-highlights li {
    font-size: 14px;
  }

  .chip-showcase {
    padding: 48px 0 var(--section-spacing);
  }

  .chip-showcase-feature {
    margin-top: 32px;
  }

  .chip-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .chip-panel {
    flex: none;
    scroll-snap-align: none;
  }

  .chip-panel__media {
    aspect-ratio: 1 / 1;
  }

  .chip-panel__caption {
    padding: 20px 16px;
  }

  .chip-panel__caption h3 {
    font-size: 26px;
  }

  .case-showcase {
    padding: var(--section-spacing) 0;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .case-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-feature--wide {
    max-width: 100%;
  }

  .case-feature h4 {
    font-size: 26px;
  }

  .case-feature p {
    font-size: 14px;
    max-width: 100%;
  }

  .lifestyle-section {
    padding: 80px 0;
  }

  .lifestyle-content h2 {
    font-size: clamp(40px, 10vw, 52px);
    line-height: 1.06;
  }

  .lifestyle-content p {
    font-size: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    border-radius: 4px;
  }

  .gallery-item img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }

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

  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .purchase-gallery {
    position: static;
  }

  .purchase-gallery-thumbs img {
    width: 60px;
    height: 60px;
  }

  .purchase-info h2 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.06;
  }

  .purchase-info .price {
    font-size: 24px;
  }

  .purchase-info .description {
    font-size: 14px;
  }

  .variant-options {
    flex-wrap: wrap;
  }

  .variant-option {
    padding: 12px 20px;
    font-size: 13px;
    flex: 1;
    text-align: center;
    min-width: 0;
  }

  .purchase-buttons .btn-primary,
  .purchase-buttons .btn-secondary {
    padding: 16px 24px;
    font-size: 13px;
  }

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

  .specs-table-wrapper {
    margin-top: 40px;
  }

  .specs-table {
    margin-top: 0;
  }

  .specs-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .specs-table td:first-child {
    width: 45%;
  }

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

  .faq-list {
    margin-top: 40px;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 14px;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Product Page Styles */
.product-page {
  padding-top: 100px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 60px 0 var(--section-spacing);
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  position: sticky;
  top: 120px;
  align-self: start;
}

.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.product-gallery-thumbs::-webkit-scrollbar {
  width: 3px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-charcoal);
}

.product-gallery-main img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.product-info {
  padding-top: 20px;
}

.product-info h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.product-info .product-price {
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.product-info .product-description {
  font-size: 16px;
  color: var(--color-muted-text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-accordion {
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
}

.product-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.product-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-accordion-trigger:hover {
  color: var(--color-gold);
}

.product-accordion-trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  transition: transform 0.3s ease;
}

.product-accordion-item.active .product-accordion-trigger svg {
  transform: rotate(45deg);
}

.product-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.product-accordion-item.active .product-accordion-content {
  max-height: 400px;
}

.product-accordion-content p,
.product-accordion-content ul {
  font-size: 14px;
  color: var(--color-muted-text);
  line-height: 1.7;
  padding-bottom: 20px;
}

.product-accordion-content ul {
  padding-left: 20px;
}

.product-accordion-content li {
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    order: 2;
    padding-bottom: 4px;
  }

  .product-gallery-thumbs img {
    width: 64px;
    height: 64px;
  }

  .product-gallery-main {
    order: 1;
  }
}

/* 404 Page */
.not-found-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.not-found-page__inner {
  max-width: 480px;
}

.not-found-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: normal;
  margin-bottom: 16px;
  color: var(--color-text);
}

.not-found-page p {
  font-size: 16px;
  color: var(--color-muted-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Small phone */
@media (max-width: 400px) {
  .chip-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-content h1,
  .hero-content h1 .hero-title-line {
    font-size: clamp(36px, 10vw, 48px);
  }

  .section-title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .purchase-info h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .variant-options {
    flex-direction: column;
  }

  .variant-option {
    width: 100%;
  }

  .not-found-page {
    padding-top: 100px;
  }

  .not-found-page h1 {
    font-size: 32px;
  }
}

/* Mobile overrides — must come after base product page styles */
@media (max-width: 768px) {
  .product-page {
    padding-top: calc(96px + env(safe-area-inset-top));
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0 var(--section-spacing);
  }

  .product-gallery {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .product-gallery-thumbs img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .product-info {
    padding-top: 0;
  }

  .product-info h1 {
    font-size: clamp(36px, 9vw, 44px);
    line-height: 1.06;
  }

  .product-info .product-price {
    font-size: 22px;
  }

  .product-info .product-description {
    font-size: 15px;
  }

  .product-accordion-trigger {
    padding: 18px 0;
    font-size: 14px;
  }

  .not-found-page {
    padding: calc(100px + env(safe-area-inset-top)) 16px 64px;
  }
}

.header-cart {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-text);
  transition: color 0.3s ease;
}

.header-cart:hover {
  color: var(--color-gold);
}

.variant-option:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.variant-option:disabled:hover {
  border-color: var(--color-border);
  color: var(--color-text);
}

.product-form-error {
  margin-top: 12px;
  font-size: 14px;
  color: #e57373;
}

.product-form-notice {
  padding: 48px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-muted-text);
}

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

.cart-page {
  padding: calc(120px + env(safe-area-inset-top)) 0 var(--section-spacing);
  background: var(--color-black);
  min-height: 60vh;
}

.cart-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
}

.cart-item-title a {
  color: var(--color-text);
}

.cart-item-variant,
.cart-item-price {
  font-size: 14px;
  color: var(--color-muted-text);
}

.cart-item-quantity input {
  width: 72px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  text-align: center;
  font-size: 16px;
}

.cart-summary {
  max-width: 420px;
  margin-left: auto;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.cart-subtotal strong {
  color: var(--color-gold);
}

.cart-note {
  font-size: 14px;
  color: var(--color-muted-text);
  margin-bottom: 24px;
}

.cart-actions {
  display: flex;
  gap: 12px;
}

.cart-actions .btn-primary,
.cart-actions .btn-secondary {
  flex: 1;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 48px 24px;
}

.cart-empty p {
  margin-bottom: 24px;
  color: var(--color-muted-text);
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
  }

  .cart-item-quantity {
    grid-column: 1 / -1;
  }

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

  .cart-summary {
    max-width: none;
  }
}
