/* Base layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #f6a54d;
  --primary-dark: #e0872a;
  --text: #222222;
  --muted: #6c757d;
  --bg: #ffffff;
  --light-bg: #f5f5f5;
  --about-bg: #f29b47;
  --card-radius: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 480px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 4.5rem 4rem 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--primary-dark);
  margin: 0 0 0.8rem;
}

.eyebrow.light {
  color: #ffe4c0;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 26rem;
  margin-bottom: 1.7rem;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease,
    box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffe4c0;
}

.btn-outline:hover {
  background: #ffffff;
  color: #d07119;
}

.btn-primary.full-width {
  width: 100%;
}

/* About */
.about {
  background: var(--about-bg);
  padding: 4.5rem 0;
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  margin: 0 0 1.1rem;
  font-size: 2rem;
}

.about-text p {
  margin: 0 0 1rem;
  line-height: 1.6;
  max-width: 32rem;
}

.about-text .btn-outline {
  margin-top: 0.5rem;
}

.about-media img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Products */
.products {
  padding: 4.5rem 0 4rem;
}

.products h2 {
  margin-top: 0.4rem;
  margin-bottom: 2.3rem;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-body h3 {
  font-size: 1.05rem;
  margin: 0;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Contact */
.contact {
  padding: 4.5rem 0;
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-intro h2 {
  font-size: 2rem;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.contact-intro p {
  color: var(--muted);
  max-width: 26rem;
}

.contact-form {
  background: #f1f1f1;
  border-radius: 18px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--muted);
}

.field span {
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  border: none;
  border-bottom: 1px solid #c6d4e1;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
}

.field textarea {
  border: 1px solid #c6d4e1;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  resize: vertical;
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-field input {
  width: auto;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-height: 360px;
    overflow: hidden;
  }

  .hero-content {
    padding: 2.5rem 1.8rem 3rem;
  }

  .about-grid,
  .contact-wrapper,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 3.2rem 0;
  }

  .products {
    padding: 3.2rem 0;
  }

  .contact-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
