:root {
  --ink: #172018;
  --muted: #617064;
  --paper: #fbfaf4;
  --surface: #ffffff;
  --line: #dfe5d9;
  --green: #2f7d4f;
  --green-dark: #1f5f3a;
  --gold: #d59d35;
  --sky: #d8eef4;
  --shadow: 0 18px 50px rgba(34, 47, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

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

button,
select,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.main-nav,
.site-footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

select {
  min-width: 120px;
  padding: 10px 12px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 10vw, 130px) clamp(18px, 5vw, 72px) clamp(36px, 7vw, 76px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(23, 32, 24, 0.76), rgba(23, 32, 24, 0.25)), url("https://lollicupstore.com/cdn/shop/files/C5000-2.jpg?v=1730258666");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 20px;
}

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

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 28px;
  max-width: 1160px;
  align-items: end;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
}

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

.category-grid article,
.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(34, 47, 37, 0.06);
}

.category-grid img {
  height: 210px;
}

.category-grid h3 {
  padding: 16px;
  margin: 0;
}

.products-section {
  background: #eef5eb;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 88px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filters h3 {
  margin-bottom: 14px;
}

.filter-button {
  width: 100%;
  margin-bottom: 8px;
  justify-content: flex-start;
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.filter-button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.product-card img {
  height: 220px;
}

.product-card div {
  padding: 18px;
}

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

.sku {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  color: #fff;
  background: var(--green-dark);
}

.service-band h2 {
  margin-bottom: 10px;
}

.service-band p {
  max-width: 620px;
  margin-bottom: 0;
  color: #dceee2;
}

.service-list span {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--sky);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

input,
textarea {
  padding: 12px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #172018;
  color: #fff;
}

@media (max-width: 900px) {
  .site-header,
  .section-heading.split,
  .catalog-layout,
  .service-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    gap: 14px;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .filters {
    position: static;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84vh;
    padding-top: 58px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
  }

  .hero p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .brand {
    font-size: 15px;
  }

  .site-footer,
  .site-footer nav {
    flex-direction: column;
  }
}
