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

:root {
  --white:   #f5f3ee;
  --surface: #eceae4;
  --line:    #dedad2;
  --text:    #1a1917;
  --muted:   #8a8680;
  --font:    'DM Sans', system-ui, -apple-system, sans-serif;
  --r:       14px;
}

html { font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  min-height: 100vh;
}

/* ---- Page wrapper ---- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Header ---- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.logo {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 0.25rem;
}

.nav a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}

.nav a:hover {
  background: var(--surface);
  color: var(--text);
}

/* ---- Homepage two-up ---- */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-info {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
}

.card-info span:last-child { color: var(--muted); }

/* ---- Contact strip ---- */
.contact {
  background: var(--surface);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 2rem;
  overflow: hidden;
}

.contact-label {
  padding: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.contact-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}

.contact-email {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-email:hover { opacity: 0.5; }

/* ---- Page row (breadcrumb) ---- */
.page-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-row a { color: inherit; text-decoration: none; }
.page-row a:hover { color: var(--text); }

/* ---- Product layout ---- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.75rem;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--r);
}

.product-img--hero { aspect-ratio: 16/11; }

.product-placeholder {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--r);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-info {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
}

.product-info-inner {
  padding: 2rem 2rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-name {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.5rem;
}

.product-price {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.product-desc + .product-desc { margin-top: -1rem; }

/* ---- Button ---- */
.btn {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.82rem;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.72; }

/* ---- Spec table ---- */
.meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.meta-row span { padding: 0.75rem 2rem; }
.meta-row span:first-child { color: var(--muted); }

/* ---- B-roll strip ---- */
.broll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

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

.broll-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r);
}

.broll-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.broll-cell img:hover { opacity: 0.82; }

/* ---- Footer ---- */
.footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  margin-bottom: 1rem;
}

/* ---- Mobile ---- */
@media (max-width: 720px) {
  .page { padding: 0 1.25rem; }
  .two-up,
  .product-layout,
  .contact { grid-template-columns: 1fr; }
  .contact-label { border-right: none; border-bottom: 1px solid var(--line); }
  .product-info { position: static; }
  .broll { grid-template-columns: repeat(3, 1fr); }
}
