:root {
  --sand-50: #f7f2e8;
  --sand-100: #efe5d2;
  --sand-200: #deceb0;
  --leaf-500: #2b6b43;
  --leaf-700: #19452d;
  --ocean-400: #44a7b5;
  --ocean-600: #1e6d7e;
  --cocoa-700: #55311d;
  --ink-900: #18201c;
  --white: #fffdf8;
  --shadow-lg: 0 28px 80px rgba(29, 51, 45, 0.14);
  --shadow-md: 0 18px 45px rgba(29, 51, 45, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(68, 167, 181, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #f7f0e2 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  margin-top: 18px;
  border: 1px solid rgba(25, 69, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(25, 69, 45, 0.08);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(25, 69, 45, 0.08);
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(24, 32, 28, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--leaf-500);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--leaf-500), var(--ocean-600));
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(30, 109, 126, 0.25);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  box-shadow: none;
}

.button--ghost {
  border-color: rgba(25, 69, 45, 0.18);
  background: rgba(255, 253, 248, 0.65);
  color: var(--leaf-700);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-500);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 84px 0 54px;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.lead,
.section__intro p,
.section__body p,
.product-card p,
.value-grid p,
.export-grid p,
.step-item p,
.signal-bar span,
.site-footer p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(24, 32, 28, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__highlights li,
.pill,
.signal-bar div {
  border: 1px solid rgba(25, 69, 45, 0.1);
  background: rgba(255, 253, 248, 0.78);
}

.hero__highlights li {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-card img,
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--landscape {
  position: absolute;
  inset: 28px 0 80px 24px;
  transform: rotate(-3deg);
}

.hero-card--portrait {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 48%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  transform: rotate(5deg);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.signal-bar div {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
}

.signal-bar strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.section {
  padding: 82px 0;
}

.section--split,
.section--banner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

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

.section__intro h2,
.section__body h2,
.cta-band h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.frame--tall {
  min-height: 580px;
}

.frame--soft {
  border: 1px solid rgba(25, 69, 45, 0.08);
}

.value-grid,
.export-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.value-grid article,
.export-grid article,
.product-card,
.steps-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(25, 69, 45, 0.08);
  box-shadow: 0 10px 25px rgba(25, 69, 45, 0.06);
}

.value-grid h3,
.product-card h3,
.export-grid h3,
.step-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

.product-card {
  grid-column: span 4;
}

.product-card--featured {
  display: grid;
  grid-column: span 8;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(222, 206, 176, 0.36));
}

.product-card__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-500);
}

.messenger-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.steps-card {
  display: grid;
  gap: 18px;
  align-content: center;
}

.step-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.step-item span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf-500), var(--ocean-600));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-grid .frame {
  min-height: 380px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  margin-top: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(25, 69, 45, 0.98), rgba(30, 109, 126, 0.98));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-band .eyebrow,
.cta-band p,
.cta-band h2 {
  color: var(--white);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-band .button {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: none;
}

.cta-band .button--ghost {
  background: rgba(255, 253, 248, 0.06);
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 12px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .section--split,
  .section--banner,
  .messenger-layout,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    border-radius: 28px;
  }

  .hero__visual {
    width: 100%;
    min-height: 520px;
  }

  .value-grid,
  .export-grid,
  .signal-bar,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--featured {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    padding: 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero-card--landscape {
    inset: 0 0 56px 0;
  }

  .hero-card--portrait {
    right: 0;
    bottom: 0;
    width: 46%;
  }

  .frame--tall,
  .gallery-grid .frame {
    min-height: auto;
  }

  .product-card--featured {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}