:root {
  --ink: #181612;
  --muted: #6d665b;
  --paper: #fffaf0;
  --cream: #f4ead8;
  --grain: #d8b36a;
  --green: #28583f;
  --red: #a83224;
  --line: rgba(24, 22, 18, 0.12);
  --shadow: 0 24px 80px rgba(45, 35, 18, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 179, 106, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(241, 232, 216, 0.9)),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(90deg, rgba(24, 22, 18, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(24, 22, 18, 0.028) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 10px 40px rgba(24, 22, 18, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark,
.team-grid span {
  display: grid;
  place-items: center;
  color: #fffaf0;
  background: linear-gradient(135deg, var(--red), var(--green));
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  letter-spacing: 0;
}

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

.brand strong {
  font-family: Manrope, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(24, 22, 18, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95) 0%, rgba(255, 250, 240, 0.78) 42%, rgba(255, 250, 240, 0.16) 100%),
    url("https://images.unsplash.com/photo-1536304993881-ff6e9eefa2a6?auto=format&fit=crop&w=1800&q=90") center / cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, var(--paper));
}

.grain-texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.3;
  background-image:
    radial-gradient(ellipse at center, rgba(168, 50, 36, 0.13) 0 1px, transparent 1px),
    radial-gradient(ellipse at center, rgba(40, 88, 63, 0.12) 0 1px, transparent 1px);
  background-size: 22px 14px, 36px 20px;
  background-position: 0 0, 14px 8px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 104px;
  line-height: 0.93;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 60px;
  line-height: 1;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #4e463a;
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(24, 22, 18, 0.14);
}

.button.primary {
  color: #fffaf0;
  background: var(--red);
  border-color: var(--red);
}

.button.ghost {
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(8px);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 250, 240, 0.8);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.hero-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.split p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.process-band {
  padding-top: 0;
}

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

.process-grid article,
.product-card,
.team-grid article,
.quality-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(244, 234, 216, 0.72)),
    var(--cream);
  box-shadow: 0 16px 40px rgba(45, 35, 18, 0.08);
}

.process-grid article {
  padding: 34px;
}

.process-grid article::after,
.product-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: linear-gradient(135deg, transparent 0 46%, rgba(24, 22, 18, 0.09) 47% 48%, transparent 49% 100%);
  background-size: 12px 12px;
}

.process-grid span {
  color: var(--grain);
  font-family: Manrope, sans-serif;
  font-size: 44px;
  font-weight: 800;
}

.process-grid p,
.product-card p,
.team-grid p,
.quality-list p {
  color: var(--muted);
  line-height: 1.65;
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-art {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 250, 240, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(168, 50, 36, 0.12), rgba(40, 88, 63, 0.12));
}

.bag {
  width: 112px;
  height: 146px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #fffaf0;
  text-align: center;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(160deg, var(--red), var(--green));
  box-shadow: 0 18px 35px rgba(24, 22, 18, 0.25);
  font-weight: 900;
}

.product-card h3 {
  margin-top: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.product-meta span {
  padding: 7px 9px;
  border-radius: 5px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.quality {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: #1c1a15;
  color: #fffaf0;
}

.quality-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quality-image img {
  height: min(72vw, 640px);
  object-fit: cover;
}

.quality .section-kicker {
  color: #d8b36a;
}

.quality-content h2 {
  color: #fffaf0;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.quality-list article {
  padding: 22px;
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.12);
}

.quality-list strong {
  display: block;
  margin-bottom: 8px;
}

.quality-list p {
  color: rgba(255, 250, 240, 0.68);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.gallery-grid .wide {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 5px;
  color: #fffaf0;
  background: rgba(24, 22, 18, 0.64);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.leadership {
  background: rgba(255, 255, 255, 0.32);
}

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

.team-grid article {
  padding: 28px;
}

.team-grid span {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(244, 234, 216, 0.84)),
    var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--green);
  font-weight: 800;
}

form {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(168, 50, 36, 0.1);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(255, 250, 240, 0.7);
  background: var(--ink);
}

footer strong {
  color: #fffaf0;
}

footer p {
  margin: 8px 0 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 14px 16px;
  border-radius: 6px;
  color: #fffaf0;
  background: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 46px;
  }

  .split,
  .quality,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 250, 240, 0.72);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-panel,
  .process-grid,
  .product-grid,
  .team-grid,
  .quality-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-grid .wide {
    grid-row: span 1;
  }

  footer {
    flex-direction: column;
  }
}
