:root {
  --gold: #c59a35;
  --gold-soft: #fde2ad;
  --gold-pale: #fff6e4;
  --ink: #1e1d19;
  --muted: #6d665d;
  --line: #eadcc5;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(80, 58, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  max-width: 100vw;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
  background: #181714;
  box-shadow: 0 10px 26px rgba(111, 82, 24, 0.12);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.site-nav a,
.header-cta,
.button,
.text-link,
.back-link {
  text-decoration: none;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a.active,
.site-nav a:hover {
  background: var(--gold-pale);
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 48px);
  min-height: 620px;
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(105deg, var(--gold-pale), var(--paper) 54%);
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8c6720;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-media {
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 72px);
  min-width: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.intro-band p:last-child {
  margin: 0;
  color: #f2e5d0;
  font-size: 19px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

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

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(80, 58, 20, 0.08);
}

.product-image-link {
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--gold-pale);
}

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

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

.product-card-body {
  padding: 22px;
}

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

.product-card-body ul {
  min-height: 104px;
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.text-link,
.back-link {
  color: #8c6720;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--gold-pale);
}

.trust-grid article {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.trust-grid span {
  color: var(--muted);
}

.page-hero,
.detail-hero {
  padding: clamp(50px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--gold-pale);
  min-width: 0;
}

.page-hero.compact {
  padding-bottom: clamp(36px, 5vw, 60px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  padding-bottom: 0;
}

.category-strip a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
}

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

.detail-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-panel h2 {
  font-size: 24px;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 8px;
}

.catalog-product-link {
  color: var(--muted);
  text-decoration-color: rgba(140, 103, 32, 0.35);
  text-underline-offset: 4px;
}

.catalog-product-link:hover {
  color: #8c6720;
  text-decoration-color: currentColor;
}

.catalog-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: start;
  background: var(--gold-pale);
}

.catalog-preview img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-layout img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-layout p {
  color: var(--muted);
  font-size: 17px;
}

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

.contact-card {
  min-height: 178px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a:not(.button),
.contact-card p {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr 1.2fr;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p,
.site-footer a,
.site-footer span {
  margin: 0;
  color: #e8dcc8;
}

.site-footer span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    flex: 0 0 100%;
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .hero,
  .intro-band,
  .detail-hero,
  .catalog-preview,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 360px;
  }

  .product-grid,
  .all-products,
  .detail-layout,
  .trust-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .detail-hero,
  .section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero > *,
  .section > *,
  .detail-hero > *,
  .catalog-preview > *,
  .about-layout > *,
  .product-grid > *,
  .contact-layout > * {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
    padding: 10px 14px;
    min-height: 70px;
  }

  .nav-toggle {
    position: absolute;
    top: 14px;
    right: max(14px, calc(100vw - 376px));
  }

  .brand {
    width: 158px;
    height: 58px;
  }

  h1 {
    width: min(calc(100vw - 96px), 270px);
    max-width: min(calc(100vw - 96px), 270px);
    font-size: 24px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .page-hero p,
  .detail-hero p,
  .hero-copy p {
    width: min(calc(100vw - 96px), 270px);
    max-width: min(calc(100vw - 96px), 270px);
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button,
  .category-strip,
  .hero-media,
  .product-card,
  .catalog-preview img {
    width: min(calc(100vw - 48px), 342px);
    max-width: min(calc(100vw - 48px), 342px);
  }

  .category-strip a {
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .catalog-preview img,
  .detail-hero img,
  .product-image-link img {
    max-width: 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 280px;
  }

  .product-card-body ul {
    min-height: 0;
  }

  .contact-card a:not(.button),
  .contact-card p {
    font-size: 18px;
  }
}
