:root {
  --bg: #f6f2ec;
  --surface: #ffffff;
  --surface-2: #fdfaf6;
  --text: #1f1a17;
  --muted: #6f655d;
  --line: rgba(31, 26, 23, 0.08);
  --gold: #c69a3a;
  --gold-dark: #9f7828;
  --shadow: 0 18px 45px rgba(31, 26, 23, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 154, 58, 0.08), transparent 30%),
    linear-gradient(to bottom, #fbf9f6, #f3efea);
  line-height: 1.6;
}


img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(198, 154, 58, 0.16);
}


.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}


.logo strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.logo span {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color .25s ease;
}

nav a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--text);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.nav-cta:hover,
.btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.hero-copy {
  padding: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(198, 154, 58, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(198, 154, 58, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 22px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 18px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-copy p,
.section-head p,
.highlight-copy p,
.newsletter-box p,
.meta,
.price-wrap span,
.feature span,
.footer-row,
code {
  color: var(--muted);
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.04rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #dfb65e);
  color: white;
  padding: 14px 24px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(198, 154, 58, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 13px 22px;
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-image {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-card-image img,
.highlight-media img {
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  max-width: 250px;
}

.floating-note small {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.floating-note strong {
  font-size: 1rem;
}

.hero-price {
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 4px;
}

.section {
  padding: 48px 0 12px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.section-head p {
  max-width: 58ch;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: all .25s ease;
}

.chip:hover,
.chip.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,26,23,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(31,26,23,0.12);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: var(--surface-2);
}

.card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--line);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.meta {
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-wrap strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-dark);
}

.price-wrap span {
  font-size: 0.82rem;
}

.mini-btn {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform .25s ease;
}

.highlight {
  padding: 70px 0 16px;
}

.highlight-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  background: linear-gradient(135deg, #1f1a17, #342c27);
  color: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.highlight-copy {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-copy .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #f2d392;
  border-color: rgba(255,255,255,0.12);
}

.highlight-copy p,
.feature span {
  color: rgba(255,255,255,0.8);
}

.highlight-copy p {
  margin: 18px 0 24px;
  max-width: 54ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.feature {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 18px;
}

.feature strong {
  display: block;
  margin-bottom: 6px;
}

.newsletter {
  padding: 72px 0 84px;
}

.newsletter-box {
  text-align: center;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 52px 22px;
  box-shadow: var(--shadow);
}

.newsletter-box h2 {
  margin-bottom: 14px;
}

.newsletter-box p {
  max-width: 60ch;
  margin: 0 auto 22px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 15px 18px;
  font: inherit;
  outline: none;
}

.newsletter-form button {
  padding: 15px 22px;
  background: var(--text);
  color: white;
  font: inherit;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .highlight-box {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-image {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 16px 0;
  }

  nav {
    gap: 14px;
  }

  .logo img {
    height: 58px;
  }

  .hero-copy,
  .highlight-copy,
  .newsletter-box {
    padding: 28px 22px;
  }

  .hero-stats,
  .features,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .card-body h3 {
    font-size: 1.2rem;
  }

  h1 {
    max-width: none;
  }
}
