* { box-sizing: border-box; }

:root {
  --green: #2f5a32;
  --green-dark: #1d3b20;
  --cream: #f6f0df;
  --cream-2: #fbf9f2;
  --gold: #b1843f;
  --red: #8f3d32;
  --orange: #a96f27;
  --ink: #20251f;
  --muted: #687067;
  --white: #ffffff;
  --border: #dedfd8;
  --shadow: 0 14px 40px rgba(35,45,32,.08);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .03em;
}
.brand h1 { font-size: 1.12rem; margin: 0; }
.brand p { margin: 2px 0 0; color: var(--muted); font-size: .82rem; }

.nav-links { display: flex; gap: 22px; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .92rem; }
.nav-links a:hover { color: var(--green); }

.hero {
  background:
    radial-gradient(circle at 75% 25%, rgba(177,132,63,.18), transparent 30%),
    linear-gradient(135deg, #f7f2e5, #ece5cf);
  padding: 82px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}
.hero h2, .section h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.04;
  margin: 12px 0 18px;
  color: var(--green-dark);
}
.hero-copy { max-width: 680px; font-size: 1.14rem; color: #4f574f; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-line { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.contact-line a { color: var(--green-dark); font-weight: 800; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 9px;
  padding: 14px 20px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: .95rem;
}
.btn:hover { background: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-small { padding: 10px 15px; }

.hero-card, .product-card, .summary-card, .order-form, .notice-card, .contact-card, .equipment-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: 0; }
.stat-row strong { color: var(--green); }

.availability-strip { background: var(--green-dark); color: white; }
.availability-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.availability-grid div { padding: 18px 24px; border-right: 1px solid rgba(255,255,255,.18); }
.availability-grid div:last-child { border-right: 0; }
.availability-grid strong, .availability-grid span { display: block; }
.availability-grid strong { color: #f2cf8d; text-transform: uppercase; font-size: .76rem; letter-spacing: .07em; }
.availability-grid span { margin-top: 4px; font-weight: 800; }

.section { padding: 76px 0; }
.section-alt { background: #f7f8f4; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.section-heading p { color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card { padding: 26px; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.45rem; margin: 16px 0 10px; color: var(--green-dark); }
.product-card p { color: var(--muted); flex: 1; }
.card-topline { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.status, .cutting {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
}
.status.coming { background: #f4e5c8; color: #765417; }
.status.out { background: #e8e9e6; color: #535951; }
.status.sold { background: #f0deda; color: var(--red); }
.cutting { background: #e6efe5; color: var(--green-dark); }
.muted-card { opacity: .88; }

.price-lines { margin: 20px 0; border-top: 1px solid var(--border); }
.price-lines div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.price-lines span { color: var(--muted); font-size: .9rem; }
.price-lines strong { color: var(--green); white-space: nowrap; }

.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.order-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .btn.full { grid-column: 1 / -1; }
label { font-weight: 900; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd3cb;
  border-radius: 8px;
  padding: 13px;
  font: inherit;
  background: white;
}
input:focus, select:focus, textarea:focus { outline: 2px solid #9eb79f; border-color: var(--green); }

.summary-card { padding: 28px; position: sticky; top: 100px; }
.total { font-size: 2.6rem; font-weight: 900; color: var(--green-dark); margin: 8px 0; }
.small { font-size: .87rem; color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.delivery-field { display: none; }

.notice-section { padding-top: 10px; }
.notice-card { padding: 34px; background: var(--cream-2); }
.notice-card h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.notice-card p { color: #565e55; max-width: 950px; }

.equipment-placeholder {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.equipment-placeholder h3 { margin: 0 0 8px; color: var(--green-dark); }
.equipment-placeholder p { margin: 0; color: var(--muted); }

.contact-card {
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-card h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 10px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

footer { background: var(--green-dark); color: white; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
footer p { margin: 5px 0 0; color: #cbd6ca; }
.footer-note { color: #cbd6ca; font-size: .88rem; }

@media (max-width: 950px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .order-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0; }
  .availability-grid, .product-grid { grid-template-columns: 1fr; }
  .availability-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .order-form { grid-template-columns: 1fr; }
  .field.full, .btn.full { grid-column: auto; }
  .equipment-placeholder, .contact-card, .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .brand p { display: none; }
  .nav { min-height: 68px; }
  .hero-actions .btn, .contact-actions .btn, .equipment-placeholder .btn { width: 100%; }
  .order-form, .product-card, .hero-card, .summary-card, .notice-card, .contact-card { padding: 20px; }
}
