:root {
  --bg: #f6f3eb;
  --surface: #fffefb;
  --text: #1f2a24;
  --muted: #5b665f;
  --accent: #0e7c55;
  --accent-2: #d46f2d;
  --border: #d8d2c5;
  --shadow: 0 20px 45px rgba(22, 33, 27, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(160deg, #f8f5ef 0%, #f2efe6 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

figure {
  margin: 0;
}

.bg-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.bg-glow-1 {
  background: #f2a166;
  top: -160px;
  left: -110px;
  animation: floatA 14s ease-in-out infinite alternate;
}

.bg-glow-2 {
  background: #6ebd99;
  right: -180px;
  bottom: -220px;
  animation: floatB 18s ease-in-out infinite alternate;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f9f7f0 0%, #f1ede3 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 245, 239, 0.88);
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-logo {
  width: auto;
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(125deg, var(--accent), #169f6d);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 89, 62, 0.25);
}

.btn-small {
  padding: 10px 18px;
}

.btn-ghost {
  border-color: rgba(31, 42, 36, 0.22);
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  box-shadow: none;
  background: rgba(31, 42, 36, 0.07);
}

.hero {
  padding-top: 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.eyebrow {
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 36, 0.09);
  box-shadow: var(--shadow);
  background: #f5efe3;
}

.hero-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.section-head {
  max-width: 760px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  align-items: center;
  gap: 24px;
}

.section-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.metric-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background: linear-gradient(150deg, #fffdfa 0%, #f6f0e4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-thumb {
  border-radius: 14px;
  overflow: hidden;
  margin: -8px -8px 16px;
  border: 1px solid rgba(31, 42, 36, 0.09);
  background: #f2ece0;
}

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

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: #1f2a24;
  color: #f7f4ec;
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(212, 111, 45, 0.2);
  border-radius: 50%;
  top: -80px;
  right: -50px;
}

.step span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: #cfddcf;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.step p {
  margin: 0;
  color: #d8dfd9;
}

.quality-banner {
  margin-top: 28px;
}

.quality-banner img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.contact {
  background: radial-gradient(circle at 10% 10%, #ffe7ce 0%, transparent 45%),
    radial-gradient(circle at 90% 90%, #cde9d9 0%, transparent 45%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.contact-visual {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 10px;
}

.contact-card .btn {
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(31, 42, 36, 0.09);
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.footer-wrap p {
  margin: 0;
}

.footer-wrap a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@keyframes floatA {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(55px, 42px);
  }
}

@keyframes floatB {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-38px, -34px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-layout,
  .contact-wrap,
  .metrics,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-visual {
    max-width: 640px;
  }

  .section-visual,
  .contact-visual {
    max-width: 700px;
  }

  .section {
    padding: 82px 0;
  }
}

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

  .btn-small {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .hero {
    padding-top: 86px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual img,
  .section-visual img,
  .contact-visual img {
    min-height: 240px;
    object-fit: cover;
  }
}
