:root {
  --charcoal: #2d2d2d;
  --charcoal-2: #3a3a3a;
  --orange: #e46f2f;
  --orange-dark: #bd5421;
  --paper: #f7f3ec;
  --white: #ffffff;
  --line: #ded5c8;
  --muted: #69645d;
  --shadow: 0 18px 50px rgba(38, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 243, 236, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 230px;
  max-width: 42vw;
  height: auto;
  display: block;
}

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

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--charcoal-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--orange-dark);
  background: #fff7ee;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 88px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(115deg, rgba(45, 45, 45, 0.94), rgba(45, 45, 45, 0.79)),
    repeating-linear-gradient(135deg, rgba(228, 111, 47, 0.16) 0 2px, transparent 2px 44px);
  color: var(--white);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 5.8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  color: #f1e9df;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.product-card a {
  background: var(--orange);
  color: var(--white);
}

.button.primary:hover,
.product-card a:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  border-color: var(--orange);
  color: #ffe7d7;
}

.hero-media {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.section,
.page-hero {
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.page-hero {
  background: var(--charcoal);
  color: var(--white);
}

.page-hero p {
  max-width: 830px;
  color: #f1e9df;
  font-size: 1.08rem;
}

.split,
.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 66px);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog {
  padding-top: 0;
}

.product-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(38, 35, 31, 0.06);
}

.product-card h2 {
  margin: 0;
  font-size: 1.22rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-card strong {
  margin-top: auto;
  font-size: 1.45rem;
  color: var(--charcoal);
}

.product-tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff0e6;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.center-action {
  margin-top: 26px;
  text-align: center;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 26px;
  color: var(--white);
  background: var(--charcoal);
}

.contact-list {
  display: grid;
  gap: 10px;
  align-content: center;
}

.contact-list a,
.contact-list span {
  color: var(--white);
  text-decoration-color: var(--orange);
}

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

.info-list div,
.contact-panel,
.contact-form,
.policy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-list dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.statement {
  padding-top: 0;
}

.contact-panel p {
  margin: 10px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfc5b8;
  border-radius: 6px;
  font: inherit;
  color: var(--charcoal);
  background: #fffdf9;
}

textarea {
  resize: vertical;
}

.policy {
  max-width: 980px;
  margin: 0 auto;
}

.policy h2 {
  margin-top: 26px;
  font-size: 1.4rem;
}

.policy h2:first-child {
  margin-top: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fffaf2;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .two-column,
  .contact-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 200px;
    max-width: 82vw;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .actions,
  .actions .button,
  .product-card a,
  .contact-form button {
    width: 100%;
  }

  .product-grid,
  .info-list {
    grid-template-columns: 1fr;
  }
}
