:root {
  --cream: #fff8ec;
  --white: #fffdf8;
  --soft: #f8ecd8;
  --gold: #c69345;
  --brown: #4b2c18;
  --cocoa: #714b2c;
  --sage: #7c8355;
  --border: rgba(113, 75, 44, 0.16);
  --shadow: 0 12px 30px rgba(75, 44, 24, 0.10);
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 96px; }
body { margin: 0; color: var(--brown); background: var(--white); font-family: Arial, system-ui, sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255, 253, 248, 0.96); border-bottom: 1px solid var(--border); box-shadow: 0 6px 20px rgba(75, 44, 24, 0.06); }

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

.brand, h2, h3 { color: var(--brown); font-family: Georgia, "Times New Roman", serif; }

.brand {
  font-size: 1.7rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cocoa);
  font-weight: 700;
}

.main-nav a:hover { background: var(--soft); }

.hero { background: linear-gradient(135deg, var(--cream), #fff4df 55%, #eef0dc); border-bottom: 1px solid var(--border); }

.hero-content { display: grid; gap: 24px; padding: 34px 0 40px; }

.hero-image,
.about-image { margin: 0; }

.hero-image img,
.about-image img {
  width: 100%;
  border: 1px solid rgba(198, 147, 69, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-banner img {
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  background: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(75, 44, 24, 0.18);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.72);
  border-color: rgba(75, 44, 24, 0.22);
}

.button:hover { transform: translateY(-2px); }
.section { padding: 86px 0; }
.products-section, .contact-section { background: var(--white); }
.highlights-section, .orders-section { background: var(--cream); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left,
.section-heading.compact {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h2, h3, p { margin-top: 0; }

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.section-heading p,
.about-text p,
.contact-list p {
  color: var(--cocoa);
  font-size: 1.08rem;
}

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

.product-card,
.about-text,
.orders-panel,
.highlights-list li,
.contact-list p {
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.product-card {
  padding: 30px;
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  margin-bottom: 24px;
  background: var(--cream);
  border: 1px solid rgba(198, 147, 69, 0.22);
  border-radius: 12px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--gold);
  font-size: 1.35rem;
}

.product-card p, .orders-list li { color: var(--cocoa); }

.highlights-content,
.about-content,
.orders-content {
  display: grid;
  gap: 48px;
}

.highlights-content { grid-template-columns: minmax(260px, 0.82fr) 1fr; }
.about-content {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
  align-items: center;
}

.orders-content {
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: center;
}

.highlights-list, .orders-list { list-style: none; margin: 0; padding: 0; }

.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.highlights-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  color: var(--cocoa);
  font-weight: 800;
}

.highlights-list span, .orders-list li::before { color: var(--gold); }

.about-section { background: var(--white); }
.about-text, .orders-panel, .contact-list p { background: var(--cream); }

.about-text, .orders-panel { padding: 34px; }

.about-text p:last-child, .section-heading p, .footer-content p, .product-card p { margin-bottom: 0; }

.orders-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.orders-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.orders-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: -2px;
  font-size: 1.4rem;
}

.contact-content { max-width: 760px; }

.contact-list {
  max-width: 540px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
  font-style: normal;
}

.contact-list p { padding: 18px 22px; }
.contact-list strong { color: var(--brown); }

.contact-list a {
  color: var(--cocoa);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--brown);
  color: var(--cream);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
}

@media (max-width: 900px) {
  section { scroll-margin-top: 142px; }

  .header-content,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .header-content {
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav,
  .section-heading.align-left,
  .section-heading.compact {
    justify-content: center;
    text-align: center;
    margin-inline: auto;
  }

  .cards-grid,
  .highlights-content,
  .about-content,
  .orders-content,
  .highlights-list { grid-template-columns: 1fr; }

  .about-image {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max-width)); }
  .main-nav { gap: 2px; }

  .main-nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .hero-content { padding: 38px 0; }

  .hero-actions,
  .footer-content { align-items: stretch; }

  .button { width: 100%; }
  .section { padding: 64px 0; }

  .product-card,
  .about-text,
  .orders-panel { padding: 24px; }
}
