:root {
  --ink: #18110c;
  --muted: #655d52;
  --paper: #f8faf6;
  --white: #ffffff;
  --gold: #f0a81f;
  --gold-soft: #fff1c9;
  --forest: #183f35;
  --forest-soft: #e4f1ea;
  --line: rgba(24, 17, 12, 0.12);
  --radius: 8px;
  --shadow: 0 22px 60px rgba(24, 17, 12, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 142px;
  height: 54px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius);
  background: var(--white);
}

.nav-links,
.actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  text-align: center;
}

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

.hero {
  padding: 72px 0 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 17, 12, 0.94), rgba(24, 17, 12, 0.68)),
    url("Images/Product_Photoshot_4.png") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 42px;
  align-items: center;
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
}

.hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
}

.section {
  padding: 68px 0;
}

.section.white {
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.section-copy {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: start;
}

.article {
  display: grid;
  gap: 18px;
  color: #2c241c;
  font-size: 17px;
}

.article h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.side-panel,
.faq-item,
.link-card,
.point {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.side-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(24, 17, 12, 0.04);
}

.side-panel strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

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

.point {
  padding: 20px;
}

.point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-item,
.link-card {
  padding: 20px;
}

.faq-item strong,
.link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.28;
}

.faq-item p,
.link-card span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 34px 0;
  color: var(--white);
  background: var(--forest);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-grid,
  .section-head,
  .content-grid,
  .points,
  .faq-list,
  .link-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 28px;
  }

  h1 {
    font-size: 42px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
