* { box-sizing: border-box; }
:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-alt: #f2eadf;
  --text: #2d241d;
  --muted: #6e6255;
  --accent: #8a5a2d;
  --accent-dark: #6f451f;
  --soft: #e9dfd1;
  --banner: #fff3cd;
  --banner-border: #e2b84f;
  --shadow: 0 12px 30px rgba(45, 36, 29, 0.08);
  --radius: 20px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.testing-banner {
  background: var(--banner);
  border-bottom: 1px solid var(--banner-border);
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}
.site-header {
  background: rgba(250, 247, 241, 0.97);
  border-bottom: 1px solid #eadfce;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.brand-mark {
  font-size: 1.8rem;
  background: var(--soft);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.brand h1 {
  margin: 0;
  font-size: 1.25rem;
}
.brand p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}
nav a { color: var(--muted); }
nav a:hover { color: var(--accent-dark); }
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 24, 14, 0.72), rgba(34, 24, 14, 0.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 5rem 0;
  max-width: 700px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  opacity: 0.92;
}
.hero h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.hero p { font-size: 1.1rem; max-width: 620px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.button.primary {
  background: var(--accent);
  color: #fff;
}
.button.primary:hover { background: var(--accent-dark); }
.button.secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.section { padding: 4.8rem 0; }
.section.alt { background: var(--surface-alt); }
.section-heading { margin-bottom: 2rem; }
.section-heading h3, .two-col h3, .contact-panel h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.section-heading p { margin: 0; color: var(--muted); max-width: 720px; }
.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.stock-card, .info-card, .contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.stock-card h4 { margin: 0 0 0.5rem; }
.stock-card .price { font-size: 1.2rem; font-weight: 700; color: var(--accent-dark); margin: 0; }
.stock-card .qty { margin: 0.5rem 0 0; color: var(--muted); }
.stock-card.featured { border: 2px solid #c89a5b; }
.note-box {
  margin-top: 1.2rem;
  background: #fff8ec;
  border-left: 4px solid #c89a5b;
  padding: 1rem 1.1rem;
  border-radius: 12px;
}
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.info-card h4, .contact-card h4 { margin-top: 0; }
.info-card ul, .check-list { padding-left: 1.2rem; }
.info-card.warm { background: #fff8ec; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.contact-card p { margin: 0 0 0.9rem; }
.site-footer {
  background: #2f241c;
  color: rgba(255,255,255,0.9);
  padding: 1.3rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
code {
  background: rgba(45, 36, 29, 0.08);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-family: Consolas, monospace;
}
@media (max-width: 900px) {
  .nav-wrap, .two-col, .contact-panel, .gallery-grid { grid-template-columns: 1fr; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  nav { gap: 0.8rem; }
}
@media (max-width: 640px) {
  .hero { min-height: 65vh; }
  .section { padding: 3.7rem 0; }
  .container { width: min(1120px, calc(100% - 1.25rem)); }
}
