/* DELITE LUXURY — Website styles */
:root {
  --gold-1: #d4b16a;
  --gold-2: #b8923e;
  --gold-3: #8c6a24;
  --gold-gradient: linear-gradient(135deg, #e6c78a 0%, #c5a25a 35%, #9e7b2e 100%);
  --ink: #1a1714;
  --ink-soft: #4a4339;
  --cream: #faf7f2;
  --cream-warm: #f3ece0;
  --line: #e8e1d3;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 25px 60px rgba(26, 23, 20, 0.12);
  --radius: 6px;
  --radius-lg: 16px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.35rem; font-weight: 500; }

p { color: var(--ink-soft); }

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

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(158, 123, 46, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img { width: auto; display: block; }
.nav-d-mark {
  height: 38px;
  object-fit: contain;
}
.nav-wordmark {
  height: 26px;
  object-fit: contain;
  opacity: 0.95;
}
@media (max-width: 560px) {
  .nav-wordmark { display: none; }
  .nav-d-mark { height: 34px; }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: inline-flex; gap: 0.7rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.4rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-warm);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.2) 0%, rgba(26,23,20,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--cream);
  padding: 4rem 2rem;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-content h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  color: rgba(250, 247, 242, 0.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- SECTION ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250,247,242, 0.78); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header p { font-size: 1.08rem; margin-top: 1rem; }

/* ---------- VALUE GRID ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.value {
  text-align: center;
  padding: 2rem 1rem;
}
.value-icon {
  width: 54px; height: 54px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.value h3 { margin-bottom: 0.6rem; }
.value p { font-size: 0.95rem; }

/* ---------- COLLECTION STRIP ---------- */
.collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,23,20,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  color: var(--cream);
}
.collection-card h3 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.collection-card p { color: rgba(250,247,242, 0.85); margin-bottom: 1rem; font-size: 0.95rem; }
.collection-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform 0.3s;
}
.collection-card:hover .arrow { transform: translateX(8px); }

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.25rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 1.5rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.product-card-body h3 { font-size: 1.3rem; color: #000; }
.product-card-body .material {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.product-card-body p { font-size: 0.92rem; margin-bottom: 0.25rem; color: #000; }
.swatches { display: flex; gap: 0.45rem; margin-top: 0.2rem; flex-wrap: wrap; }
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  padding: 0;
  background-clip: padding-box;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--gold-2);
}
.selected-color {
  font-size: 0.78rem;
  color: #000;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
  min-height: 1em;
}
.selected-color strong { color: #000; font-weight: 600; }
.product-card-body .btn {
  margin-top: auto;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  justify-content: center;
}

/* ---------- FILTERS ---------- */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-pill {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-pill:hover { border-color: var(--gold-2); color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- STORY / ABOUT ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-body h2 { margin-bottom: 1.25rem; }
.story-body p { margin-bottom: 1rem; font-size: 1.02rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  padding: 2rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: left;
}
.timeline-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 2.3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.timeline-step h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.9rem; }

/* ---------- AMAZON CTA BAND ---------- */
.amazon-band {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}
.amazon-band h2 { color: var(--cream); margin-bottom: 0.75rem; }
.amazon-band p { color: rgba(250,247,242,0.8); max-width: 560px; margin: 0 auto 1.75rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
}
.stars {
  color: var(--gold-2);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(250,247,242,0.8);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer-wordmark {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(0) invert(70%) sepia(35%) saturate(580%) hue-rotate(5deg) brightness(95%) contrast(88%);
}
.footer p, .footer li { font-size: 0.9rem; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer a { color: rgba(250,247,242,0.78); transition: color 0.2s; }
.footer a:hover { color: var(--gold-1); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.6);
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
  background: var(--cream-warm);
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 0.5rem; }
.page-banner p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- MATERIALS COMPARISON ---------- */
.materials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.material-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.material-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.material-card-img img { width: 100%; height: 100%; object-fit: cover; }
.material-card-body { padding: 2rem; }
.material-card-body h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.material-card-body ul { list-style: none; margin: 1rem 0; }
.material-card-body li {
  padding: 0.5rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.material-card-body li:last-child { border-bottom: 0; }
.material-card-body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-size: 0.7rem;
  top: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold-2);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 1rem; font-size: 0.98rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .collections { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { aspect-ratio: 5 / 4; }
  .materials { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Compact default buttons on mobile */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  /* Slim nav Amazon Store button on mobile */
  .nav { position: sticky; }
  .nav-inner { padding: 0.85rem 1.1rem; gap: 0.5rem; }
  .nav-cta { gap: 0.5rem; align-items: center; }
  .nav-cta .btn-gold {
    padding: 0.5rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    white-space: nowrap;
  }
  .nav-toggle { font-size: 1.25rem; padding: 0.2rem 0.35rem; }

  /* Hero */
  .hero { min-height: 78vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-content p { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.6rem; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* Section spacing */
  .section { padding: 3.25rem 0; }
  .section-header { margin-bottom: 2.25rem; }

  /* Product grid — more compact cards */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-card-body { padding: 1.1rem 1.1rem 1.3rem; }
  .product-card-body h3 { font-size: 1.15rem; }
  .product-card-body .btn {
    padding: 0.7rem 1rem;
    font-size: 0.7rem;
  }

  /* Amazon CTA band — scale down generous padding */
  .amazon-band { padding: 2.5rem 1.25rem; }
  .amazon-band .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.72rem;
    max-width: 100%;
    white-space: normal;
  }

  /* Values stack nicer */
  .values { gap: 1.25rem; }
  .value { padding: 1.25rem 0.5rem; }

  /* Collections */
  .collection-card-overlay { padding: 1.5rem; }
  .collection-card h3 { font-size: 1.5rem; }

  /* Testimonials */
  .testimonial { padding: 1.6rem 1.4rem; }
  .testimonial blockquote { font-size: 1.05rem; }

  /* Footer tighter */
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }

  /* Page banner */
  .page-banner { padding: 3rem 1.25rem 2rem; }

  /* Product tile extra readability */
  .product-card-body .material { color: #000; }
  .product-card-body p, .product-card-body h3, .selected-color, .selected-color strong { color: #000; }
}

@media (max-width: 400px) {
  .nav-cta .btn-gold {
    padding: 0.45rem 0.7rem;
    font-size: 0.58rem;
  }
  .hero-content h1 { font-size: 2.15rem; }
}
