:root {
  --sand: #efe5d5;
  --linen: #f8f2e8;
  --oak: #b7814f;
  --earth: #5a4335;
  --forest: #24342a;
  --ink: #1f1a17;
  --muted: #6d625a;
  --white: #fffdf9;
  --shadow: 0 30px 60px rgba(39, 25, 14, 0.14);
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 129, 79, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #fffdf9 48%, #f4ebdd 100%);
}

h1,
h2,
h3,
.navbar-brand {
  font-family: 'Playfair Display', serif;
}

.site-nav {
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(36, 52, 42, 0.08);
}

.navbar-brand {
  font-size: 1.6rem;
  color: var(--forest);
}

.nav-link {
  color: var(--forest);
  font-weight: 600;
}

.hero-section {
  padding: 5rem 0 3rem;
}

.eyebrow {
  display: inline-block;
  color: var(--oak);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  color: var(--forest);
  line-height: 1.08;
}

.hero-copy,
.section-copy,
.product-card p,
.process-card p,
.feature-copy p,
.contact-box p,
.floating-note p {
  color: var(--muted);
  line-height: 1.7;
}

.btn-accent {
  background: var(--oak);
  border-color: var(--oak);
  color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #9d6b3f;
  border-color: #9d6b3f;
  color: var(--white);
}

.hero-visual {
  position: relative;
  padding: 1rem 0 2rem 2rem;
}

.hero-main-image,
.feature-image,
.product-card img {
  border-radius: 2rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-main-image {
  min-height: 540px;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 280px;
  background: rgba(255, 253, 249, 0.96);
  padding: 1.25rem;
  border-radius: 1.5rem;
}

.note-label {
  display: block;
  color: var(--oak);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.hero-metrics .metric-card,
.process-card,
.testimonial-card,
.contact-box {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(36, 52, 42, 0.08);
  border-radius: 1.5rem;
  padding: 1.25rem;
  height: 100%;
}

.metric-card strong {
  display: block;
  color: var(--forest);
  font-size: 1.5rem;
}

.metric-card span,
.logo-strip,
.testimonial-card p {
  color: var(--muted);
}

.logo-strip {
  background: rgba(36, 52, 42, 0.04);
  border-top: 1px solid rgba(36, 52, 42, 0.05);
  border-bottom: 1px solid rgba(36, 52, 42, 0.05);
}

.section-space {
  padding: 5.5rem 0;
}

.section-warm {
  background: linear-gradient(180deg, rgba(183, 129, 79, 0.08), rgba(255, 253, 249, 0));
}

.product-card {
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(36, 52, 42, 0.08);
  box-shadow: 0 16px 40px rgba(39, 25, 14, 0.07);
}

.product-card img {
  width: 100%;
  height: 280px;
  border-radius: 2rem 2rem 0 0;
  box-shadow: none;
}

.product-card h3,
.process-card h3 {
  color: var(--forest);
  font-size: 1.45rem;
}

.product-card span {
  color: var(--oak);
  font-weight: 800;
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-card span {
  color: var(--oak);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-panel,
.contact-panel {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(36, 52, 42, 0.08);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-copy,
.contact-panel {
  padding: 2rem;
}

.feature-image {
  width: 100%;
  height: 420px;
  border-radius: 0;
  box-shadow: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(160deg, var(--forest), #304336);
  color: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card .eyebrow,
.testimonial-card p {
  color: rgba(255, 253, 249, 0.8);
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.35;
  margin: 1rem 0;
}

.contact-panel {
  background: linear-gradient(145deg, #efe1ce, #fff9f1);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 3rem;
  }

  .hero-visual {
    padding: 0;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: calc(1.7rem + 2vw);
  }

  .feature-image,
  .hero-main-image {
    min-height: 0;
    height: 320px;
  }

  .section-space {
    padding: 4rem 0;
  }
}