:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5d6b7a;
  --paper: #fffaf1;
  --panel: #ffffff;
  --primary: #c2410c;
  --primary-dark: #9a3412;
  --accent: #facc15;
  --line: #eadfcf;
  --shadow: 0 20px 60px rgba(67, 45, 22, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a { text-decoration: none; }

.hero, .section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 7vw, 5.25rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.05em; }
h3 { font-size: 1.5rem; letter-spacing: -0.03em; }

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions, .callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.2);
}

.button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.button.secondary { background: transparent; color: var(--primary); box-shadow: none; }
.button.small { padding: 0.55rem 0.85rem; font-size: 0.9rem; }

.hero-card, .product-card, .callout, details, .photo-placeholder {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero-card { padding: 2rem; }
.product-title { font-size: 1.25rem; font-weight: 850; }
.price { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin: 0.75rem 0 0.25rem; }
.note { color: var(--muted); font-size: 0.95rem; }

.section-heading { max-width: 760px; margin-bottom: 1.5rem; }
.section-heading p { color: var(--muted); }

.product-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
}

.product-card ul { padding-left: 1.3rem; color: var(--muted); }
.product-card aside { border-left: 1px solid var(--line); padding-left: 1.5rem; }

.callout {
  justify-content: space-between;
  padding: 2rem;
}
.callout div { max-width: 720px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.gallery-card.wide { grid-column: span 2; }

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #f4f2ee;
}

.gallery-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}

details {
  padding: 1.2rem 1.4rem;
  margin: 0.9rem 0;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p { color: var(--muted); margin-bottom: 0; }

.footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .product-card { grid-template-columns: 1fr; }
  .product-card aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: span 1; }
}
