:root {
  color-scheme: light;
  --primary: #25221f;
  --primary-dark: #12100e;
  --primary-soft: #f3eadb;
  --accent: #d9901f;
  --accent-dark: #9a5d08;
  --ink: #171512;
  --muted: #6f6a61;
  --line: #e7ded2;
  --paper: #fbf7f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 16, 14, 0.06);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.brand span,
.footer-brand span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-size: 21px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  color: #5c574f;
  text-decoration: none;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(18, 16, 14, 0.18);
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(18, 16, 14, 0.84), rgba(18, 16, 14, 0.91)),
    url("https://images.unsplash.com/photo-1565814329452-e1efa11c5b89?q=80&w=2200&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 7px 14px;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.page-title h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--accent);
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d9d0c3;
  font-size: 20px;
}

.actions,
.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 16, 14, 0.18);
}

.button.light {
  border-color: white;
  background: white;
  color: var(--primary);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button.outline-light {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.trust-bar {
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  background: var(--primary);
  color: white;
  text-align: center;
}

.trust-bar p {
  margin: 0 0 14px;
  color: #f0d29a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-bar div {
  display: flex;
  justify-content: center;
  gap: 28px 56px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.section,
.why-section,
.about-band,
.contact-section,
.page-title,
.grid,
.detail-grid,
.faq-list,
.form-shell,
.article {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section,
.why-section,
.contact-section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.why-section h2,
.about-band h2,
.contact-section h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.section-heading p,
.why-section p,
.contact-section p,
.page-title p,
.article p {
  color: var(--muted);
  font-size: 18px;
}

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

.solution-grid article,
.card,
.empty-state,
.detail-grid article,
details,
.article,
.form-shell {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(18, 16, 14, 0.05);
}

.solution-grid article {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-grid article:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 16, 14, 0.12);
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--accent-dark);
}

.solution-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-grid h3,
.card h3,
.product-card h3,
.contact-panel h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 22px;
  line-height: 1.25;
}

.solution-grid p,
.card p,
.product-card p,
.empty-state p,
.detail-grid p,
.detail-grid li {
  color: var(--muted);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.check-list li::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--accent);
}

.check-list strong,
.check-list span {
  grid-column: 2;
}

.check-list strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.check-list span {
  color: var(--muted);
}

.why-section figure {
  position: relative;
  margin: 0;
}

.why-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(18, 16, 14, 0.22);
}

.why-section figcaption {
  position: absolute;
  left: -24px;
  bottom: -24px;
  max-width: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 40px rgba(18, 16, 14, 0.12);
}

.why-section figcaption strong {
  display: block;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
}

.why-section figcaption span {
  color: var(--muted);
  font-weight: 700;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e7ded2;
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(37, 34, 31, 0.88), rgba(18, 16, 14, 0.94)),
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.28), transparent 34%);
}

.product-placeholder span {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-body,
.card,
.empty-state,
.detail-grid article {
  padding: 24px;
}

.product-body {
  min-height: 158px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-body a,
.card h3 a,
.blog-card a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.product-body > a {
  margin-top: 4px;
}

.about-band {
  width: 100%;
  padding: 86px max(24px, calc((100vw - 860px) / 2));
  background: var(--primary);
  color: white;
  text-align: center;
}

.about-band h2 {
  color: white;
}

.about-band p {
  color: #f0d29a;
  font-size: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(18, 16, 14, 0.12);
}

.contact-panel aside {
  padding: 44px;
  background: var(--primary);
  color: white;
}

.contact-panel aside p,
.contact-panel aside dd {
  color: #f0d29a;
}

.contact-panel dl {
  display: grid;
  gap: 24px;
  margin: 32px 0 0;
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-panel dt {
  color: white;
  font-weight: 800;
}

.contact-panel dd {
  margin: 0;
  text-align: left;
}

.contact-panel form,
.form-shell form {
  display: grid;
  gap: 18px;
  padding: 44px;
}

label {
  display: grid;
  gap: 8px;
  color: #3f3a33;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cdbc;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(217, 144, 31, 0.18);
}

.page-title {
  padding: 72px 0 36px;
}

.page-title h1 {
  color: var(--primary-dark);
  font-size: clamp(38px, 5vw, 62px);
}

.compact-spec,
.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.compact-spec div,
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 54px;
}

.faq-list {
  display: grid;
  gap: 14px;
  padding-bottom: 72px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 900;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
  padding: 24px;
}

.article {
  max-width: 860px;
  padding: 34px;
}

.blog-grid {
  padding-bottom: 80px;
}

.blog-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.article footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.site-footer {
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  background: var(--primary-dark);
  color: #94a3b8;
  font-size: 14px;
}

.footer-brand {
  margin-bottom: 16px;
  color: white;
  font-size: 20px;
}

.footer-brand span {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 18px;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  nav {
    gap: 14px 20px;
  }

  .solution-grid,
  .product-grid,
  .grid,
  .why-section,
  .contact-panel,
  .form-shell,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .why-section figcaption {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .trust-bar,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section,
  .why-section,
  .contact-section,
  .page-title,
  .grid,
  .detail-grid,
  .faq-list,
  .form-shell,
  .article {
    width: min(100% - 32px, 1180px);
  }

  .hero h1,
  .page-title h1 {
    font-size: 40px;
  }

  .contact-panel aside,
  .contact-panel form,
  .form-shell form {
    padding: 28px;
  }
}
