:root {
  --ink: #26312a;
  --ink-soft: #566259;
  --paper: #fbf7ef;
  --paper-deep: #f1e5d4;
  --sage: #5f7664;
  --sage-dark: #354b3b;
  --clay: #a45d3f;
  --clay-dark: #713b2a;
  --gold: #c49b56;
  --line: rgba(38, 49, 42, 0.15);
  --white: #fffdf8;
  --shadow: 0 22px 55px rgba(50, 39, 28, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(95, 118, 100, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #f8f0e4 62%, #eef0e8);
  background-size: 72px 72px, auto;
  font-family: "Avenir Next", "Segoe UI", Verdana, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 12px 35px rgba(38, 49, 42, 0.11);
  backdrop-filter: blur(14px);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: 148px clamp(20px, 5vw, 72px) 96px;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 31, 25, 0.4), rgba(24, 31, 25, 0.55)),
    url("https://unsplash.com/photos/Ms542g2coSg/download?force=true&w=1800") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 36, 29, 0.7), rgba(29, 36, 29, 0.32) 54%, rgba(29, 36, 29, 0.1)),
    radial-gradient(circle at 18% 86%, rgba(196, 155, 86, 0.22), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-top: clamp(20px, 4vw, 56px);
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c47b;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
}

h2 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 253, 248, 0.76);
}

.button-secondary {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.intro-strip {
  display: flex;
  justify-content: center;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--sage-dark);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  width: min(var(--max-width), 100%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.38;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-heading.center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 42px;
  align-items: start;
}

.lead {
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.85rem);
  line-height: 1.16;
}

.text-panel {
  display: grid;
  gap: 20px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
}

.product-section {
  width: min(1280px, calc(100% - 40px));
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(50, 39, 28, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-deep);
  transition: transform 240ms ease;
}

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

.product-card div {
  min-height: 178px;
  padding: 22px;
}

.product-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.wholesale-section {
  width: 100%;
  max-width: none;
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
  background: #e9efe5;
  border-top: 1px solid rgba(95, 118, 100, 0.18);
  border-bottom: 1px solid rgba(95, 118, 100, 0.18);
}

.wholesale-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.86fr);
  gap: clamp(34px, 6vw, 92px);
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  align-items: start;
}

.wholesale-copy {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(95, 118, 100, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wholesale-copy h3 {
  margin-top: 6px;
  font-size: 1.25rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "\2713";
  font-weight: 900;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.advantage-grid article {
  padding: 28px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.advantage-grid span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 700;
}

.advantage-grid h3 {
  margin-top: 18px;
}

.advantage-grid p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.customers-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.customer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-tags span {
  padding: 10px 14px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(95, 118, 100, 0.22);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 49, 42, 0.95), rgba(53, 75, 59, 0.92)),
    linear-gradient(45deg, transparent, rgba(196, 155, 86, 0.14));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: #e5b86d;
}

.contact-card h2 {
  margin-top: 14px;
}

.contact-card p {
  margin-top: 20px;
  color: rgba(255, 253, 248, 0.78);
}

.contact-details {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-details p {
  margin-top: 0;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

address {
  color: rgba(255, 253, 248, 0.78);
  font-style: normal;
}

.contact-card .button-outline {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.32);
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 34px 20px 42px;
  color: rgba(255, 253, 248, 0.78);
  text-align: center;
  background: var(--ink);
}

.site-footer .logo {
  color: var(--white);
}

.footer-meta {
  font-size: 0.88rem;
}

@media (max-width: 1050px) {
  .product-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customers-section,
  .wholesale-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    color: inherit;
    background: transparent;
  }

  .nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 28px 48px;
    color: var(--ink);
    background: rgba(251, 247, 239, 0.98);
    font-size: 1.35rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 78vh;
    padding: 118px 20px 74px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 1rem;
  }

  .intro-strip p {
    max-width: 330px;
    font-size: 1.05rem;
  }

  .hero-overlay {
    background: linear-gradient(rgba(29, 36, 29, 0.68), rgba(29, 36, 29, 0.64));
  }

  h1 {
    font-size: clamp(2rem, 7.8vw, 2.25rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .section,
  .product-section {
    width: min(100% - 32px, var(--max-width));
    padding: 66px 0;
  }

  .about-grid,
  .product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .text-panel {
    padding-left: 18px;
  }

  .product-card div {
    min-height: auto;
  }

  .wholesale-section {
    padding: 66px 16px;
  }

  .wholesale-copy,
  .advantage-grid article,
  .contact-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }

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