:root {
  --ink: #18201c;
  --muted: #5d665f;
  --line: #d9ded6;
  --paper: #f7f5ef;
  --white: #ffffff;
  --leaf: #315d46;
  --moss: #778b62;
  --tea: #c9a866;
  --clay: #a45f43;
  --mist: #e9eee7;
  --shadow: 0 20px 60px rgba(24, 32, 28, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 222, 214, 0.75);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

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

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

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--leaf);
}

.header-cta {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  color: var(--leaf);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 31, 24, 0.74) 0%, rgba(20, 31, 24, 0.4) 48%, rgba(20, 31, 24, 0.08) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 0 clamp(20px, 6vw, 88px) 11vh;
  color: var(--white);
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-slogan {
  max-width: 680px;
  margin: 18px 0 0;
  color: #f4dfae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.08;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.55;
}

.lead-sub {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

section {
  scroll-margin-top: 78px;
}

.intro-section,
.ingredients,
.products,
.standard,
.story,
.contact,
.site-footer {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

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

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.78;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.language-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.language-note strong {
  color: var(--leaf);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--mist);
}

.proof-band div {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.proof-band strong {
  display: block;
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
}

.proof-band span {
  display: block;
  max-width: 220px;
  color: var(--muted);
  line-height: 1.55;
}

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

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.ingredient-photo,
.story-image {
  min-height: 620px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(24, 32, 28, 0.06), rgba(24, 32, 28, 0.42)),
    url("https://images.unsplash.com/photo-1461354464878-ad92f492a5a0?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.ingredient-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ingredient-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
}

.ingredient-list span {
  color: var(--tea);
  font-family: Georgia, serif;
  font-size: 26px;
}

.ingredient-list p {
  grid-column: 2;
  margin: 8px 0 0;
}

.products {
  background: #f0ede3;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(24, 32, 28, 0.08);
}

.product-image {
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.96) 0 17%, transparent 18%),
    linear-gradient(180deg, var(--moss), var(--leaf));
}

.product-image.serum {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    linear-gradient(180deg, #c7d8d0, #6f9b8e);
}

.product-image.cream {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 0 20%, transparent 21%),
    linear-gradient(180deg, #e7d5a9, #a97d4d);
}

.product-image.mask {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.94) 0 18%, transparent 19%),
    linear-gradient(180deg, #b8b98b, #6f7346);
}

.product-body {
  padding: 22px;
}

.product-body p:last-child {
  margin-bottom: 0;
}

.standard {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--leaf);
  color: var(--white);
}

.standard p,
.standard .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.standard-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.standard-list div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.story-image {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(24, 32, 28, 0.04), rgba(24, 32, 28, 0.22)),
    url("https://images.unsplash.com/photo-1608248543803-ba4f8c70ae0b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.story-logo {
  display: block;
  width: min(100%, 420px);
  margin: 0 0 30px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--leaf);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  background: #e8ecdf;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-mail {
  margin-top: 18px;
  color: var(--leaf);
  font-size: 22px;
  font-weight: 700;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.legal {
  align-self: end;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .product-grid,
  .proof-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }
}

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

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(20, 31, 24, 0.72) 0%, rgba(20, 31, 24, 0.48) 62%, rgba(20, 31, 24, 0.16) 100%),
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80") center/cover;
  }

  .intro-grid,
  .ingredient-layout,
  .standard,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .proof-band,
  .product-grid,
  .standard-list {
    grid-template-columns: 1fr;
  }

  .ingredient-photo,
  .story-image {
    min-height: 360px;
  }

  .ingredient-list article {
    grid-template-columns: 42px 1fr;
    padding: 22px;
  }

  .site-footer {
    display: block;
  }
}
