:root {
  --ink: #1f1a17;
  --muted: #776b61;
  --paper: #fffaf1;
  --rice: #f7ead8;
  --red: #c7472d;
  --green: #537d58;
  --blue: #376f8f;
  --gold: #d49a3a;
  --line: rgba(31, 26, 23, 0.14);
  --shadow: 0 24px 70px rgba(74, 47, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 71, 45, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 20%, rgba(55, 111, 143, 0.15), transparent 28rem),
    linear-gradient(180deg, #fff8eb 0%, #fffdf8 42%, #f7ead8 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.section-heading.split,
.text-link,
.button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffaf1;
  background: var(--red);
  border-radius: 10px 10px 10px 2px;
  box-shadow: 0 10px 24px rgba(199, 71, 45, 0.28);
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--red);
}

.nav-cta {
  padding: 10px 16px;
  color: #fffaf1;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px) 60px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 36px;
}

.button {
  min-height: 48px;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 800;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: #fffaf1;
  background: var(--red);
  box-shadow: 0 15px 32px rgba(199, 71, 45, 0.26);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.trust-row {
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row div {
  min-width: 118px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 18px;
}

.trust-row strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 250, 241, 0.88), rgba(255, 250, 241, 0.72)),
    repeating-linear-gradient(45deg, rgba(31, 26, 23, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px dashed rgba(31, 26, 23, 0.18);
  border-radius: 50%;
}

.route-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(199, 71, 45, 0.48);
  stroke-width: 3;
  stroke-dasharray: 8 12;
}

.route-card,
.parcel {
  position: absolute;
  box-shadow: var(--shadow);
}

.route-card {
  z-index: 2;
  min-width: 128px;
  padding: 15px 16px;
  color: #fffaf1;
  border-radius: 18px;
}

.route-card span {
  display: block;
  opacity: 0.8;
  font-size: 13px;
}

.route-card strong {
  display: block;
  font-size: 19px;
}

.route-west {
  top: 72px;
  left: 44px;
  background: var(--gold);
}

.route-east {
  top: 120px;
  right: 36px;
  background: var(--green);
}

.route-south {
  right: 82px;
  bottom: 70px;
  background: var(--blue);
}

.parcel-stack {
  position: absolute;
  inset: 0;
}

.parcel {
  display: grid;
  place-items: center;
  z-index: 3;
  width: min(44vw, 260px);
  max-width: 260px;
  aspect-ratio: 1.28;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 28px;
  background: #fffaf1;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.parcel::before,
.parcel::after {
  content: "";
  position: absolute;
  background: rgba(199, 71, 45, 0.12);
}

.parcel::before {
  inset: 0 46%;
}

.parcel::after {
  inset: 44% 0;
}

.parcel span {
  position: relative;
  z-index: 2;
  padding: 8px 14px;
  color: var(--red);
  background: var(--paper);
  border: 1px solid rgba(199, 71, 45, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.parcel-two {
  transform: translate(-43%, -38%) rotate(8deg);
}

.parcel-three {
  transform: translate(-58%, -60%) rotate(3deg);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.band {
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid rgba(31, 26, 23, 0.08);
}

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

.section-heading.split {
  max-width: none;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.feature-grid,
.product-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.feature,
.product-card,
.steps article,
.quote-panel,
.join-form {
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 24px;
}

.feature {
  padding: 28px;
}

.feature svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--red);
}

.feature p,
.product-card p,
.steps p,
.story-copy p,
.join-copy p {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  padding: 14px 14px 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(74, 47, 27, 0.14);
}

.product-art {
  display: grid;
  min-height: 178px;
  margin-bottom: 18px;
  place-items: center;
  color: #fffaf1;
  border-radius: 18px;
  font-size: 52px;
  font-weight: 900;
}

.art-sun {
  background: linear-gradient(135deg, #c7472d, #d49a3a);
}

.art-green {
  background: linear-gradient(135deg, #537d58, #8fa76f);
}

.art-blue {
  background: linear-gradient(135deg, #376f8f, #72a2b8);
}

.art-rose {
  background: linear-gradient(135deg, #b84d6a, #d38b73);
}

.region {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.steps-section {
  background: var(--ink);
  color: #fffaf1;
}

.steps-section .eyebrow,
.steps-section h2 {
  color: #fffaf1;
}

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

.steps article {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.14);
}

.steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--ink);
  background: #fffaf1;
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  color: rgba(255, 250, 241, 0.68);
}

.stories,
.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.quote-panel {
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.quote-panel svg {
  width: 42px;
  height: 42px;
  color: var(--red);
}

blockquote {
  margin: 20px 0;
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1.28;
  font-weight: 800;
}

.quote-panel span {
  color: var(--muted);
}

.join-section {
  background:
    linear-gradient(rgba(255, 250, 241, 0.72), rgba(255, 250, 241, 0.92)),
    repeating-linear-gradient(90deg, rgba(83, 125, 88, 0.08) 0 2px, transparent 2px 28px);
}

.join-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

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

input,
select {
  width: 100%;
  min-height: 50px;
  color: var(--ink);
  border: 1px solid rgba(31, 26, 23, 0.14);
  border-radius: 14px;
  outline: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.74);
}

input:focus,
select:focus {
  border-color: rgba(199, 71, 45, 0.52);
  box-shadow: 0 0 0 4px rgba(199, 71, 45, 0.1);
}

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .stories,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 470px;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 43px;
  }

  .button {
    width: 100%;
  }

  .trust-row div {
    flex: 1 1 30%;
    min-width: 94px;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .route-card {
    min-width: 106px;
    padding: 11px 12px;
  }

  .route-card strong {
    font-size: 16px;
  }

  .route-west {
    left: 18px;
  }

  .route-east {
    right: 16px;
  }

  .route-south {
    right: 36px;
    bottom: 36px;
  }

  .parcel {
    width: 220px;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .steps article {
    min-height: auto;
  }

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

  .footer {
    flex-direction: column;
  }
}
