:root {
  --ink: #25312d;
  --muted: #68766f;
  --cream: #fbf6ed;
  --paper: #fffdf9;
  --sage: #55766b;
  --sage-dark: #35564d;
  --terracotta: #c96f52;
  --gold: #d9a441;
  --line: #e8dfd1;
  --shadow: 0 16px 42px rgba(55, 62, 54, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.announcement {
  padding: 0.45rem 1rem;
  color: white;
  background: var(--sage-dark);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  color: var(--sage-dark);
  font-family: Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo span { display: block; color: var(--terracotta); font: 600 0.64rem "Segoe UI", Arial, sans-serif; letter-spacing: 0.24em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a { color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.nav a:hover, .nav a.active { color: var(--terracotta); }
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  color: white !important;
  background: var(--sage);
  border-radius: 999px;
}
.cart-count {
  min-width: 1.3rem;
  padding: 0 0.25rem;
  color: var(--sage-dark);
  background: white;
  border-radius: 999px;
  font-size: 0.74rem;
  text-align: center;
}
.menu-toggle { display: none; border: 0; background: none; color: var(--sage-dark); font-size: 1.6rem; cursor: pointer; }

.hero { padding: 5.6rem 0 4rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 3rem; }
.eyebrow { color: var(--terracotta); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.14; }
h1 { margin-bottom: 1rem; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; letter-spacing: -0.075em; }
h2 { margin-bottom: 0.75rem; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; letter-spacing: -0.055em; }
h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.lead { max-width: 640px; color: var(--muted); font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: white;
  background: var(--sage);
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-secondary { color: var(--sage-dark); background: transparent; }
.btn-secondary:hover { color: white; }
.hero-art {
  position: relative;
  min-height: 430px;
  border-radius: 45% 45% 18% 18%;
  background: #e1d9c8;
  box-shadow: var(--shadow);
}
.hero-art::before, .hero-art::after { position: absolute; content: ""; border-radius: 50%; }
.hero-art::before { width: 240px; height: 240px; right: -30px; top: -46px; background: rgba(201, 111, 82, 0.82); }
.hero-art::after { width: 170px; height: 170px; left: -32px; bottom: -34px; background: rgba(217, 164, 65, 0.78); }
.hero-art img { position: absolute; z-index: 1; width: 72%; left: 14%; bottom: 2%; filter: drop-shadow(0 20px 14px rgba(54, 62, 55, 0.18)); }

.section { padding: 4.8rem 0; }
.section-soft { background: #f4eddf; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.7rem; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 1.2rem; transition: 0.2s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-image { display: grid; min-height: 245px; place-items: center; padding: 1rem; background: #eee5d7; }
.product-image img { max-height: 215px; }
.product-body { padding: 1rem; }
.product-meta { display: flex; justify-content: space-between; gap: 0.6rem; align-items: start; }
.price { color: var(--terracotta); font-weight: 900; white-space: nowrap; }
.product-body p { min-height: 3rem; margin: 0.3rem 0 0.9rem; color: var(--muted); font-size: 0.9rem; }
.small-btn { width: 100%; padding: 0.62rem 0.9rem; font-size: 0.88rem; }
.tag { display: inline-block; margin-bottom: 0.55rem; padding: 0.2rem 0.55rem; color: var(--sage-dark); background: #e6efeb; border-radius: 99px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature { padding: 1.3rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); }
.feature strong { display: block; margin-bottom: 0.3rem; color: var(--sage-dark); }
.feature p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.page-hero { padding: 4.2rem 0 2.5rem; background: #f4eddf; }
.page-hero h1 { max-width: 740px; font-size: clamp(2.8rem, 5vw, 4.9rem); }
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.filter-btn { padding: 0.5rem 0.85rem; border: 1px solid var(--line); border-radius: 99px; color: var(--sage-dark); background: var(--paper); cursor: pointer; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { color: white; background: var(--terracotta); border-color: var(--terracotta); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-card { padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1.2rem; box-shadow: var(--shadow); }
.story-card img { width: 100%; border-radius: 0.9rem; }
.values { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.value { padding-left: 1rem; border-left: 4px solid var(--gold); }
.value p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.form-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.2rem; }
.contact-card, .form-card, .cart-panel { padding: 1.4rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--paper); }
.field { display: grid; gap: 0.3rem; margin-bottom: 0.95rem; }
label { color: var(--sage-dark); font-weight: 800; font-size: 0.88rem; }
input, textarea, select { width: 100%; padding: 0.74rem; border: 1px solid #d7cdbf; border-radius: 0.6rem; background: white; }
textarea { min-height: 125px; resize: vertical; }
.form-status { min-height: 1.5rem; margin-top: 0.7rem; color: var(--sage-dark); font-weight: 700; }

.cart-layout { display: grid; grid-template-columns: 1fr 330px; gap: 1.4rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--paper); }
.cart-table th, .cart-table td { padding: 0.9rem; border-bottom: 1px solid var(--line); text-align: left; }
.cart-table th { color: var(--sage-dark); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.remove-btn { border: 0; color: var(--terracotta); background: transparent; cursor: pointer; font-weight: 800; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; }
.summary-total { margin-top: 0.5rem; padding-top: 0.75rem; border-top: 1px solid var(--line); font-size: 1.18rem; font-weight: 900; }
.empty-state { padding: 2rem; color: var(--muted); text-align: center; }

.site-footer { padding: 2.8rem 0 1.4rem; color: #e7efe9; background: var(--sage-dark); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 2rem; }
.site-footer .logo { color: white; }
.site-footer .logo span { color: #efd7bb; }
.site-footer p, .site-footer a { color: #d1dfda; font-size: 0.9rem; }
.site-footer a { display: block; margin-bottom: 0.25rem; }
.copyright { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.8rem; }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 1rem 4%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .hero { padding-top: 3.4rem; }
  .hero-grid, .two-col, .form-grid, .cart-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 330px; margin-top: 1rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-head { display: block; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
}
