:root {
  --ink: #191613;
  --muted: #6f625a;
  --paper: #fffaf2;
  --cream: #f4e5cf;
  --sage: #25655c;
  --sage-dark: #123f38;
  --clay: #bd5138;
  --gold: #d9a441;
  --espresso: #2a1711;
  --line: rgba(23, 33, 30, 0.14);
  --shadow: 0 26px 70px rgba(39, 25, 17, 0.18);
  --soft-shadow: 0 16px 44px rgba(39, 25, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0) 0, rgba(255, 250, 242, 0.96) 720px),
    radial-gradient(circle at 12% 18%, rgba(217, 164, 65, 0.16), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: clamp(10px, 2vw, 22px);
  right: clamp(10px, 2vw, 22px);
  top: 14px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 12px clamp(14px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 50px rgba(25, 22, 19, 0.12);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent),
    var(--espresso);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(25, 22, 19, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.site-footer a,
.text-link {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--clay);
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(37, 101, 92, 0.24);
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 13, 9, 0.86), rgba(22, 13, 9, 0.48) 48%, rgba(22, 13, 9, 0.1)),
    linear-gradient(0deg, rgba(22, 13, 9, 0.62), rgba(22, 13, 9, 0.02) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(62px, 10vh, 110px);
  color: #fff;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), var(--paper));
  content: "";
}

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

.hero .eyebrow {
  color: #f1c15c;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(64px, 10vw, 138px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

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

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 25px);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 6vw, 86px);
  bottom: clamp(44px, 8vh, 104px);
  width: min(360px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.hero-card h2 {
  margin-bottom: 8px;
  color: var(--espresso);
  font-size: 30px;
}

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

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.taste-meter {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.taste-meter span {
  position: relative;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.taste-meter span::before,
.taste-meter span::after {
  display: block;
  height: 7px;
  border-radius: 8px;
  content: "";
}

.taste-meter span::before {
  background: rgba(25, 22, 19, 0.12);
}

.taste-meter span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--value);
  background: linear-gradient(90deg, var(--clay), var(--gold));
}

.hero-actions,
.hero-stats,
.filter-bar,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.primary {
  background: linear-gradient(135deg, var(--clay), #8f3829);
  color: #fff;
  box-shadow: 0 16px 34px rgba(182, 79, 61, 0.34);
}

.primary:hover {
  background: #a94434;
}

.secondary {
  background: var(--sage);
  color: #fff;
}

.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.hero-stats {
  margin-top: 34px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  color: #fff;
}

.intro-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 6vw, 84px);
  margin-top: -34px;
  background: transparent;
}

.intro-item {
  min-height: 230px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.intro-item .lucide {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--sage);
}

.intro-item p,
.section-heading p,
.split-content p,
.order-copy p,
.steps p,
.product-card p,
.form-note {
  color: var(--muted);
}

.section,
.split-section,
.order-section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), #fff 36%, #fff 100%);
}

.filter-bar {
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.filter-chip.active {
  background: var(--espresso);
  color: #fff;
  border-color: var(--ink);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.featured {
  border-color: rgba(217, 164, 65, 0.46);
  box-shadow: 0 20px 56px rgba(189, 81, 56, 0.14);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  height: 230px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
}

.price {
  display: block;
  margin: -2px 0 12px;
  color: var(--sage-dark);
  font-size: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(37, 101, 92, 0.1);
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

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

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

.text-link {
  color: var(--clay);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(120deg, #ecf5f0 0%, #fffaf2 100%);
}

.split-media img {
  height: min(620px, 72vh);
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media {
  position: relative;
}

.split-media::after {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    url("https://images.unsplash.com/photo-1610889556528-9a770e32642f?auto=format&fit=crop&w=420&q=80") center/cover;
  box-shadow: 0 18px 44px rgba(39, 25, 17, 0.18);
  content: "";
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list .lucide {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--sage);
}

.process-section {
  background:
    linear-gradient(135deg, rgba(189, 81, 56, 0.16), rgba(37, 101, 92, 0.08)),
    var(--espresso);
  color: #fff;
}

.process-section .section-heading p,
.process-section .steps p {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.steps article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.steps span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 950;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(244, 229, 207, 0.96), rgba(236, 245, 240, 0.96)),
    var(--cream);
}

.order-copy {
  position: sticky;
  top: 110px;
}

.contact-cards {
  margin-top: 26px;
}

.contact-cards a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.98));
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

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

.order-form input,
.order-form select {
  min-height: 48px;
  padding: 0 14px;
}

.order-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(47, 103, 95, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

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

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .split-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    justify-self: start;
    margin: 0 18px 34px;
  }

  .order-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    left: 10px;
    right: 10px;
    padding: 10px 12px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 104px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 38px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-stats {
    margin-top: 24px;
  }

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

  .intro-band,
  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .intro-band {
    padding: 0 14px 48px;
  }

  .hero-card {
    display: none;
  }

  .section,
  .split-section,
  .order-section {
    padding: 58px 14px;
  }

  .split-media img {
    min-height: 320px;
  }

  .steps article {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 22px;
  }

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