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

:root {
  --black: #101010;
  --cream: #fff8e8;
  --gold: #f5c400;
  --orange: #ff6a00;
  --red: #df2100;
  --white: #ffffff;
  --gray: #d9d5ca;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--black);
}
.nav-wrap {
  max-width: var(--max); margin: auto; min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; padding: 8px 24px;
}
.brand { width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 50%; }
.brand img { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; display: block; }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  color: white; font-size: .85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
}
nav a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 2rem; }

/* ---------- hero + type ---------- */
.hero { width: 100%; background: var(--black); display: flex; justify-content: center; overflow: hidden; }
.hero-image { width: 100%; height: auto; max-height: 720px; display: block; object-fit: contain; }
.eyebrow {
  font-size: .78rem; font-weight: 800; letter-spacing: .18em;
  color: var(--orange); margin-bottom: 12px;
}
h1, h2 { font-family: 'Anton', Impact, sans-serif; text-transform: uppercase; line-height: .95; letter-spacing: .02em; }
h1 { font-size: clamp(4rem, 10vw, 8.5rem); }
h2 { font-size: clamp(3rem, 7vw, 5.5rem); }
.tagline {
  font-size: clamp(1.5rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--gold); text-transform: uppercase; margin-top: 14px;
}
.button {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 15px 24px; border: 3px solid var(--black);
  font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  transition: transform .15s, background .15s;
}
.button:hover { transform: translateY(-3px); background: var(--orange); }

/* ---------- full-width section dividers ---------- */
.divider { width: 100%; height: 4px; border: 0; margin: 0; display: block; }
.divider-gold { background: var(--gold); }
.divider-black { background: var(--black); }

/* ---------- layout ---------- */
.section { max-width: var(--max); margin: auto; padding: 90px 24px; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro > p { font-size: 1.15rem; font-weight: 600; }
.dark-section { max-width: none; background: var(--black); color: white; padding-left: max(24px, calc((100% - var(--max))/2)); padding-right: max(24px, calc((100% - var(--max))/2)); }
.section-heading { margin-bottom: 45px; }
.section-heading p:last-child { margin-top: 15px; color: var(--gray); max-width: 650px; }

/* ---------- product cards ---------- */
/* minmax(0, 1fr) lets a column shrink below the natural width of a large image.
   Plain 1fr does not, which is what was blowing out the third column.
   Cards span the full container width; image height is fixed below. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card { background: #1c1c1c; border: 1px solid #383838; display: flex; flex-direction: column; min-width: 0; }

/* fixed height on both card tops — change this one number to make cards taller/shorter */
.product-placeholder {
  height: 320px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: radial-gradient(circle at center, #363636, #171717); color: #aaa; gap: 6px;
}
.product-placeholder span { font-size: 3rem; }
.product-placeholder strong { color: white; text-transform: uppercase; }
.product-placeholder small { color: #888; }

/* grid-auto-rows means this works with one image OR two stacked — no CSS change needed */
.product-images {
  height: 320px;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 2px;
  background: #111;
  overflow: hidden;
  min-width: 0;
}
.product-images img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
  display: block;
}

.product-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-size: 1.3rem; text-transform: uppercase; line-height: 1.2; }
.product-info p { color: #bbb; margin: 8px 0 18px; font-size: .95rem; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; }
.product-bottom span { color: var(--gold); font-weight: 800; font-size: .8rem; }
.product-bottom a { color: white; font-weight: 800; text-transform: uppercase; font-size: .8rem; }

/* ---------- colors page ---------- */
.page-head { padding-bottom: 45px; }
.page-head p:last-child { margin-top: 15px; color: #5a5a5a; max-width: 650px; }

.color-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.color-card { background: #1c1c1c; border: 1px solid #383838; display: flex; flex-direction: column; min-width: 0; }
.color-swatch { height: 220px; width: 100%; }
.color-swatch-empty {
  display: grid; place-items: center;
  background: radial-gradient(circle at center, #363636, #171717);
  color: #7a7a7a; font-weight: 800; font-size: .8rem; letter-spacing: .08em;
}
.color-card-info { padding: 20px; }
.color-card-info h3 { font-size: 1.15rem; text-transform: uppercase; }
.color-card-info p { color: #bbb; margin-top: 8px; font-size: .9rem; }

/* ---------- custom colors ---------- */
.custom-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.custom-copy p:not(.eyebrow) { max-width: 600px; margin: 24px 0 30px; font-size: 1.1rem; font-weight: 600; }
.accent-text { color: var(--red); }
.dark-button { background: var(--black); color: white; border-color: var(--black); }
.color-showcase {
  min-height: 360px; border: 8px solid var(--black); background: white;
  display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden;
}
.color-showcase p { position: relative; z-index: 2; text-align: center; font-size: 1.6rem; font-weight: 800; transform: rotate(-8deg); }
.color-dot { width: 150px; height: 150px; border-radius: 50%; position: absolute; opacity: .9; }
.dot-one { background: #f4d000; top: 20px; left: 20px; }
.dot-two { background: #ff5b00; bottom: 20px; left: 70px; }
.dot-three { background: #20a35a; top: 40px; right: 25px; }
.dot-four { background: #d92922; bottom: 30px; right: 70px; }
.dot-five { background: #6e35a5; top: 110px; left: 45%; }

/* ---------- gallery ---------- */
.gallery-section {
  background: var(--black);
  color: white;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max))/2));
  padding-right: max(24px, calc((100% - var(--max))/2));
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-placeholder {
  aspect-ratio: 1; display: grid; place-items: center; border: 3px dashed #4a4a4a;
  color: #7a7a7a; font-weight: 800; background: #1a1a1a;
}

/* ---------- order ---------- */
.order-section { background: var(--cream); color: var(--black); max-width: none; text-align: center; padding-left: max(24px, calc((100% - var(--max))/2)); padding-right: max(24px, calc((100% - var(--max))/2)); }
.order-section > div:first-child { max-width: 700px; margin: auto; }
.order-section > div:first-child p:last-child { color: #5a5a5a; margin: 18px auto 35px; }
.order-steps { max-width: 950px; margin: 0 auto 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.order-steps div { border-top: 3px solid var(--black); padding: 22px; }
.order-steps span { color: var(--black); font-family: 'Anton'; font-size: 2rem; }
.order-steps h3 { text-transform: uppercase; margin: 5px 0; }
.order-steps p { color: #5a5a5a; font-size: .9rem; }
/* black button reads better than gold-on-cream here */
.order-section .button { background: var(--black); color: white; border-color: var(--black); }
.order-section .button:hover { background: var(--red); color: white; }
.small-note { margin-top: 14px; color: #777; font-size: .75rem; }

/* ---------- footer ---------- */
footer { background: #070707; color: #888; text-align: center; padding: 35px 24px; font-size: .8rem; }
footer img { width: 95px; height: 95px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }

/* ---------- responsive (keep these last) ---------- */
@media (max-width: 800px) {
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--black); padding: 20px 24px; flex-direction: column; align-items: stretch; gap: 18px; }
  nav.open { display: flex; }
  .intro, .custom-section { grid-template-columns: 1fr; gap: 30px; }
  .product-grid { grid-template-columns: minmax(0, 1fr); max-width: 420px; margin: auto; }
  .color-grid { grid-template-columns: minmax(0, 1fr); max-width: 420px; margin: auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-steps { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .brand { width: 54px; height: 54px; }
  .brand img { width: 70px; height: 70px; }
  .nav-wrap { padding: 8px 16px; }
  .section { padding: 65px 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .color-showcase { min-height: 300px; }
  .color-dot { width: 105px; height: 105px; }
}
