
:root {
  --black: #090909;
  --white: #ffffff;
  --gold: #d8b36a;
  --gold2: #f0d49e;
  --gray: #f4f4f4;
  --text: #171717;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  background: #050505;
  color: #fff;
  min-height: 34px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  padding: 7px 5%;
  font-size: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  background: rgba(255,255,255,.97);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 0 5%;
  border-bottom: 1px solid #eaeaea;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover { color: #9f772c; }

.cart {
  background: #111;
  color: white;
  padding: 10px 13px;
  border-radius: 20px;
}

.menu-btn {
  display: none;
  border: 0;
  font-size: 25px;
  background: transparent;
}

.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 43%, rgba(0,0,0,.28) 68%, rgba(0,0,0,.15) 100%),
    url("images/hero.jpg") center/cover no-repeat;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 90%);
  margin-left: 6%;
  padding: 80px 0;
}

.eyebrow {
  color: var(--gold2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  margin: 18px 0 24px;
  letter-spacing: -3px;
}

.hero h1 span { color: var(--gold2); }

.hero p {
  font-size: 18px;
  max-width: 650px;
  line-height: 1.7;
  color: #eee;
}

.hero-actions, .cta-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid;
}

.btn-gold {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #111;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.benefits {
  display: flex;
  gap: 35px;
  margin-top: 55px;
}

.benefits div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefits small { color: #bbb; max-width: 140px; }

.section {
  padding: 70px 5%;
}

.section h2, .customize h2, .cta h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.divider {
  text-align: center;
  color: #b78d45;
  margin: 15px auto 35px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.icon-grid > div {
  text-align: center;
  padding: 20px 8px;
}

.icon-grid span {
  display: block;
  font-size: 35px;
  margin-bottom: 12px;
}

.icon-grid b { font-size: 12px; }

.products { background: #f7f7f7; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1500px;
  margin: auto;
}

.product-card {
  background: #fff;
  padding: 12px 12px 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  position: relative;
}

.product-card img {
  aspect-ratio: 1/1.07;
  object-fit: cover;
  background: #ddd;
}

.product-card h3 {
  margin: 16px 0 5px;
  font-size: 16px;
}

.price {
  font-weight: 800;
  font-size: 20px;
}

.product-card button {
  width: 100%;
  border: 0;
  background: #111;
  color: white;
  padding: 13px 8px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.product-card button:hover { background: #98702d; }

.badge {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--gold2);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.customize {
  background: #080808;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

.customize-text {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customize h2 {
  text-align: left;
  margin: 8px 0 15px;
}

.customize-text p {
  color: #ccc;
  line-height: 1.7;
}

.customize-text ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.customize-text .btn { align-self: flex-start; margin-top: 10px; }

.customize-image img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
}

.steps {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.steps > div {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.steps > div:last-child { border-right: none; }

.steps span {
  font-family: "Playfair Display", serif;
  font-size: 55px;
  color: #dbc79e;
}

.steps h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.steps p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.gallery { background: #f7f7f7; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #ddd;
}

.cta {
  background: #080808;
  color: white;
  padding: 60px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  text-align: left;
  text-transform: none;
  max-width: 900px;
  margin-top: 8px;
}

.cta p { color: #bbb; }

footer {
  background: #111;
  color: #aaa;
  padding: 55px 7%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
}

footer h3, footer h4 { color: white; }

#toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #111;
  color: white;
  padding: 15px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: .25s;
  pointer-events: none;
  z-index: 100;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .topbar { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .icon-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .header {
    grid-template-columns: 1fr auto auto;
    min-height: 65px;
  }

  .menu-btn { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 25px 5%;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
  }

  nav.open { display: flex; }

  .hero {
    min-height: 680px;
    background:
      linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.35)),
      url("images/hero.jpg") center/cover no-repeat;
    align-items: flex-end;
  }

  .hero-content {
    margin: 0 auto;
    padding: 120px 0 55px;
  }

  .benefits { flex-direction: column; gap: 15px; }

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

  .customize { grid-template-columns: 1fr; }
  .customize-image { order: -1; }
  .customize-image img { min-height: 400px; }

  .cta { flex-direction: column; align-items: flex-start; }

  footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .logo { font-size: 17px; }
  .cart { padding: 8px 10px; }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero p { font-size: 15px; }

  .section { padding: 55px 18px; }

  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps > div { border-right: none; border-bottom: 1px solid #ddd; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

.product-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:12px;
}
.product-link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:8px 10px;
  background:#111;
  color:#fff;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
}
.product-link.gold{
  background:var(--gold2);
  color:#111;
}
.legal-page{
  max-width:900px;
  margin:0 auto;
  padding:70px 20px;
  line-height:1.75;
}
.legal-page h1{font-size:36px;margin-bottom:25px;}
.legal-page h2{font-size:22px;margin-top:32px;}
.legal-note{
  background:#f6f6f6;
  border-left:4px solid var(--gold);
  padding:18px;
  margin:20px 0;
}
