:root {
  --bg: #f7f3eb;
  --bg-alt: #eee6d9;
  --text: #1f2520;
  --muted: #657064;
  --primary: #31543d;
  --primary-dark: #213a2a;
  --accent: #a8662b;
  --border: #ddd2c1;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(31, 37, 32, 0.09);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  padding: 96px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 7vw, 5.25rem);
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.hero-text {
  max-width: 720px;
  font-size: 1.13rem;
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.full-width {
  width: 100%;
}

.hero-card,
.info-card,
.order-card,
.legal-box,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.hero-card h2 {
  font-size: 1.85rem;
}

.hero-card p:last-child {
  color: var(--muted);
}

.notice-strip {
  background: var(--primary);
  color: var(--white);
  padding: 17px 0;
  font-size: 0.98rem;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p,
.content-block p,
.contact-panel p,
.info-card p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.content-block {
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.legal-box {
  padding: 40px;
}

.legal-box p {
  color: var(--muted);
}

.order-card {
  padding: 30px;
}

.order-card ul {
  padding-left: 20px;
  margin-bottom: 26px;
}

.small-text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-panel {
  padding: 46px;
  text-align: center;
  max-width: 860px;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 56px 0 24px;
  background: #151c17;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.73);
}

.footer-bottom {
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .split,
  .cards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .section {
    padding: 64px 0;
  }

  .contact-panel,
  .legal-box {
    padding: 30px;
  }
}


/* Product page additions */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.product-card .status {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-meta {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.meta-row span:first-child {
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.product-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.disabled-note {
  border-left: 4px solid var(--accent);
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 12px;
  color: var(--text);
  margin: 18px 0;
}

@media (max-width: 820px) {
  .catalog-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }
}


/* Logo image additions */
.logo-image-link {
  display: inline-flex;
  align-items: center;
  max-width: 280px;
}

.site-logo-img {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 10px;
}

@media (max-width: 820px) {
  .site-logo-img {
    width: 178px;
  }

  .logo-image-link {
    max-width: 200px;
  }
}
