:root {
  --bg: #f7f3ea;
  --surface: #ffffff;
  --surface-soft: #eee4d3;
  --text: #2f2a23;
  --muted: #6d6257;
  --green: #4f6f52;
  --green-dark: #2f4a34;
  --gold: #b4935a;
  --border: #e2d8c8;
  --shadow: 0 16px 36px rgba(47, 42, 35, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--green-dark);
}

.brand img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-dark);
}

/* HERO */

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(28, 24, 20, 0.76),
      rgba(28, 24, 20, 0.48),
      rgba(28, 24, 20, 0.24)
    ),
    url("../images/background/Home1.jpg") center/cover no-repeat;

  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 110px 0;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  padding: 8px 14px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(180, 147, 90, 0.18);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #f3dfb2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
}

/* SECTIONS */

.section {
  padding: 96px 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.services-section {
  background: var(--surface-soft);
}

.cards-grid,
.product-grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  padding: 30px;
}

.card h3,
.product-card h3 {
  color: var(--green-dark);
}

.product-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card h3,
.product-card p {
  padding-left: 26px;
  padding-right: 26px;
}

.product-card h3 {
  padding-top: 24px;
}

.product-card p {
  padding-bottom: 28px;
}

.note-section {
  background:
    linear-gradient(rgba(247, 243, 234, 0.88), rgba(247, 243, 234, 0.88)),
    url("assets/images/background/Home2.jpg") center/cover no-repeat;
}

.note-card,
.contact-card {
  max-width: 880px;
  padding: 42px;
}

.contact-card {
  text-align: center;
  margin: 0 auto;
}

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

/* FOOTER */

.site-footer {
  padding: 34px 20px;
  text-align: center;
  background: var(--green-dark);
}

.site-footer p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-wrapper {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    text-align: center;
    padding: 90px 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid,
  .cards-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .note-card,
  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand img {
    height: 38px;
  }

  .site-nav {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 700px;
  }

  .btn {
    width: 100%;
  }
}
