:root {
  --ink: #3d1f0a;
  --deep: #7a2e0e;
  --mango: #e8891a;
  --gold: #c47b17;
  --leaf: #2d6a4f;
  --cream: #fff6ea;
  --paper: #fffdf8;
  --muted: #6b5344;
  --line: #edd9c3;
  --shadow: 0 18px 40px rgba(61, 31, 10, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .logo-word { font-family: "Fraunces", serif; }

.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 246, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner, .nav {
  display: flex;
  align-items: center;
}
.header-inner { justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo { height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.logo-word { font-size: 1.28rem; letter-spacing: -0.02em; }
.nav { gap: 26px; }
.nav a { color: var(--muted); font-weight: 700; }
.nav a:hover, .nav a.active { color: var(--deep); }
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.btn-primary { background: var(--deep); color: #fff; }
.btn-ghost { background: #fff; color: var(--deep); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-1px); }

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero h1, .page-head h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 10px 0 16px;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-card {
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { height: 420px; width: 100%; object-fit: cover; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 700;
  gap: 12px;
}

.section { padding: 64px 0; }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 12px; }
.section-intro { color: var(--muted); max-width: 46rem; margin-bottom: 28px; }
.grid-3, .grid-2, .grid-4 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .product, .quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .quote { padding: 26px; }
.card h3 { margin: 0 0 8px; }
.card p:last-child { margin-bottom: 0; }
.product img { height: 210px; width: 100%; object-fit: cover; border-radius: 22px 22px 0 0; }
.product-body { padding: 20px 22px 24px; }
.product-body h3 { margin: 0 0 8px; }
.meta { margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 0.92rem; }
.meta li { margin: 6px 0; }
.meta strong { color: var(--ink); }

.markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.market {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 720px;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: #7a2e0e;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
tr:nth-child(even) td { background: #fff8f1; }
.source { color: var(--muted); font-size: 0.88rem; margin-top: 12px; }

.spec-list { margin: 0; padding-left: 18px; }
.spec-list li { margin: 6px 0; }

.banner {
  background: var(--deep);
  color: #fde8d0;
  border-radius: 32px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.banner h2 { color: #fff; margin-top: 0; }
.banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
}
.gallery .tall { height: 100%; min-height: 280px; }

form { display: grid; gap: 14px; }
label { font-weight: 800; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}
.form-note { color: var(--muted); min-height: 1.4em; }
.form-note.ok { color: var(--leaf); }
.honey { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.page-head { padding: 56px 0 12px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-line { line-height: 1.7; }
.contact-line a { text-decoration: underline; text-underline-offset: 2px; }
.social { width: 100%; margin: 0; }
.social a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 76px 20px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .hero, .grid-3, .grid-2, .grid-4, .banner, .gallery { grid-template-columns: 1fr; }
  .hero-card img, .gallery img { height: 260px; }
  .logo { height: 40px; max-width: 160px; }
}
