/* ...existing code... */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4efe9;
  --bg-soft: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #eef3ee;
  --primary: #1f4d3a;
  --primary-dark: #163b2d;
  --primary-soft: #e1efe7;
  --accent: #c89d62;
  --text: #1e2a27;
  --muted: #586660;
  --border: rgba(31, 77, 58, 0.12);
  --shadow: 0 18px 45px rgba(22, 59, 45, 0.12);
  --shadow-soft: 0 12px 28px rgba(22, 59, 45, 0.08);
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 157, 98, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #f8f5f1 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 82px;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: block;
}

.brand-text {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.nav-list {
  gap: 0.5rem;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
  padding: 0.7rem 0.95rem !important;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(31, 77, 58, 0.06);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(22, 59, 45, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  border-color: var(--border);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-inner {
  display: block;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero-copy h1 {
  margin: 1.25rem auto 1rem;
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--primary-dark);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-copy .brand-logo {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0.75rem auto 1rem;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-actions,
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  margin-top: 2rem;
}

.mini-stat {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.mini-stat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.mini-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.image-shell {
  position: relative;
  width: min(100%, 1200px);
  aspect-ratio: 16 / 9;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 77, 58, 0.08);
  overflow: hidden;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(24, 42, 34, 0.18);
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: rgba(255,255,255,0.38);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--primary-dark);
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.card h3 {
  margin: 0 0 0.7rem;
  color: var(--primary-dark);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.card p {
  color: var(--muted);
}

.contact-panel {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 600;
}

.page-hero {
  padding: 4.25rem 0 2rem;
}

.page-intro {
  max-width: 760px;
}

.page-title {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--primary-dark);
}

.page-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.story-grid,
.info-grid,
.product-grid,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 1.4rem;
}

.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid,
.product-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.product-card,
.feature-card,
.stat-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
}

.info-card h3,
.product-card h3,
.feature-card h3 {
  margin: 0 0 0.8rem;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.info-card p,
.product-card p,
.feature-card p {
  color: var(--muted);
}

.info-list,
.product-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.info-list li,
.product-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.info-list li::before,
.product-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.page-image-wrap {
  margin-top: 2rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.contact-form-panel,
.contact-details-panel {
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.7);
  color: var(--text);
}

.form-control:focus {
  border-color: rgba(31, 77, 58, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(31, 77, 58, 0.08);
  outline: none;
}

.contact-details-panel h3,
.contact-form-panel h3 {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  color: var(--muted);
}

.contact-list span {
  display: block;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.site-footer {
  padding: 2.3rem 0 2.8rem;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 600;
}

.hero-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .story-grid,
  .info-grid,
  .product-grid,
  .feature-grid,
  .stats-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-image-wrap img {
    height: 420px;
  }
}
