/* =================== RESET & VARIABLES =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --dark-blue: #0D1B2A;
  --gold: #C9A84C;
  --gold-light: #D4AF6B;
  --white: #F5F5F5;
  --off-white: #E8E4DC;
  --charcoal: #1A1A1A;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.display-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
}

.body-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--off-white);
}

/* =================== LAYOUT =================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

 section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section { padding: 100px 0; }
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 245, 245, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--gold-light);
}

/* =================== NAVBAR =================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta { display: flex; }
}

.nav-cart {
  display: flex;
  align-items: center;
  color: var(--off-white);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
}

@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 96px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.0;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--off-white);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

/* =================== BRAND STATEMENT =================== */
.brand-statement {
  background: var(--charcoal);
  padding: 100px 24px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.brand-statement-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
  color: var(--white);
}

.brand-statement p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--off-white);
  margin-bottom: 20px;
}

.brand-statement-accent {
  color: var(--gold);
}

/* =================== PHILOSOPHY =================== */
.philosophy {
  padding: 100px 24px;
  background: var(--black);
}

.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 64px;
}

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

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

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

.pillar {
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.06);
  transition: all 0.3s ease;
}

.pillar:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--off-white);
}

/* =================== PRODUCT GRID =================== */
.products-section {
  padding: 100px 24px;
  background: var(--black);
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .products-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

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

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--charcoal);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-category {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.product-colorway {
  font-size: 13px;
  color: var(--off-white);
  margin-bottom: 8px;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* =================== EMAIL CAPTURE =================== */
.email-capture {
  padding: 100px 24px;
  background: var(--charcoal);
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.email-capture-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.email-capture h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.email-capture p {
  font-size: 15px;
  color: var(--off-white);
  margin-bottom: 32px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .email-form {
    flex-direction: row;
  }
}

.email-input {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--black);
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: var(--white);
  min-height: 44px;
  transition: border-color 0.2s;
}

.email-input::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

.email-input:focus {
  outline: none;
  border-color: var(--gold);
}

.email-success {
  padding: 16px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 14px;
  display: none;
}

.email-success.visible {
  display: block;
}

/* =================== TRUST SIGNALS =================== */
.trust-signals {
  padding: 60px 24px;
  background: var(--black);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--off-white);
}

.trust-check {
  color: var(--gold);
  font-size: 16px;
}

/* =================== PAGE HEADER =================== */
.page-header {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.page-header h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 16px;
  color: var(--off-white);
  max-width: 600px;
  margin: 0 auto;
}

/* =================== PRODUCT DETAIL =================== */
.product-detail {
  padding: 100px 24px;
  background: var(--black);
}

.product-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .product-detail-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.product-gallery {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--charcoal);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.product-colorway-detail {
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 24px;
}

.product-price-detail {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 32px;
}

.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.product-meta-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.product-meta-label {
  color: var(--off-white);
  min-width: 100px;
}

.product-meta-value {
  color: var(--white);
}

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

.size-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover,
.size-btn.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.size-guide-toggle {
  font-size: 13px;
  color: var(--gold);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 12px;
}

.size-guide {
  display: none;
  margin-top: 16px;
  padding: 20px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.08);
}

.size-guide.visible {
  display: block;
}

.size-guide table {
  width: 100%;
  border-collapse: collapse;
}

.size-guide th,
.size-guide td {
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.size-guide th {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.size-guide td {
  color: var(--off-white);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .product-actions {
    flex-direction: row;
  }
}

/* =================== COLLECTIONS =================== */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.collection-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.collection-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black);
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.05);
}

.collection-info {
  padding: 20px;
}

.collection-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.collection-tagline {
  font-size: 13px;
  color: var(--gold);
}

/* =================== ABOUT / BRAND STORY =================== */
.story-section {
  padding: 100px 24px;
  background: var(--black);
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.story-block {
  margin-bottom: 64px;
}

.story-block h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
  color: var(--white);
}

.story-block p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--off-white);
  margin-bottom: 20px;
}

.story-highlight {
  color: var(--gold);
}

.story-quote {
  padding: 40px;
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  margin: 40px 0;
}

.story-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.story-quote-author {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.story-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 40px 0;
  background: var(--charcoal);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-full {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 40px 0;
  background: var(--charcoal);
}

.story-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Architecture blocks */
.story-architecture {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .story-architecture {
    grid-template-columns: 1fr 1fr;
  }
}

.architecture-block {
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.06);
}

.architecture-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.architecture-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--off-white);
}

/* =================== DROP PAGE =================== */
.drop-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.drop-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.drop-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.drop-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.drop-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.drop-hero h1 {
  font-size: clamp(32px, 6vw, 64px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.drop-body {
  padding: 80px 24px;
  background: var(--black);
}

.drop-body-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.drop-body h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 24px;
}

.drop-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--off-white);
  margin-bottom: 24px;
}

.drop-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
  text-align: left;
}

@media (min-width: 600px) {
  .drop-items {
    grid-template-columns: 1fr 1fr;
  }
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.06);
}

.drop-item-icon {
  color: var(--gold);
  font-size: 18px;
}

.drop-item-text {
  font-size: 14px;
  color: var(--white);
}

/* =================== FAQ =================== */
.faq-section {
  padding: 100px 24px;
  background: var(--black);
}

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

.faq-item {
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-text {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--off-white);
}

/* =================== CONTACT =================== */
.contact-section {
  padding: 100px 24px;
  background: var(--black);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--off-white);
  margin-bottom: 32px;
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 18px;
}

.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: var(--white);
  transition: border-color 0.2s;
  min-height: 44px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  align-self: flex-start;
}

/* =================== SHIPPING & RETURNS =================== */
.policy-section {
  padding: 100px 24px;
  background: var(--black);
}

.policy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 48px;
}

.policy-block h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 20px;
  color: var(--white);
}

.policy-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 16px;
}

.policy-block ul {
  list-style: none;
  padding: 0;
}

.policy-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--off-white);
}

.policy-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.size-guide-standalone {
  margin-top: 48px;
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.08);
}

.size-guide-standalone h2 {
  font-size: 20px;
  margin-bottom: 24px;
}

.size-guide-standalone table {
  width: 100%;
  border-collapse: collapse;
}

.size-guide-standalone th,
.size-guide-standalone td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.size-guide-standalone th {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.size-guide-standalone td {
  color: var(--off-white);
}

/* =================== FOOTER =================== */
.footer {
  background: var(--charcoal);
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 14px;
  color: var(--off-white);
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-nav-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nav-group a {
  display: block;
  font-size: 14px;
  color: var(--off-white);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(232, 228, 220, 0.5);
}

/* =================== ANIMATIONS =================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* =================== UTILITIES =================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* Body padding for fixed navbar */
.main-content {
  padding-top: 72px;
}

/* =================== ACCESSORIES =================== */
.accessories-section {
  padding: 100px 24px;
  background: var(--black);
}

.accessories-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.accessories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .accessories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .accessories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.accessory-card {
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.06);
  transition: all 0.3s ease;
}

.accessory-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.accessory-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.accessory-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--off-white);
  margin-bottom: 16px;
}

.accessory-placeholder {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
}
