/* Base & Layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-primary: #ba6a14;
  --color-primary-dark: #8a4a0e;
  --color-accent: #f3b343;
  --color-deep-green: #18462f;
  --color-bg: #fffdf6;
  --color-muted: #f3eee0;
  --color-text: #2b2418;
  --color-text-soft: #6d5b3a;
  --radius-card: 18px;
  --shadow-soft: 0 16px 35px rgba(0, 0, 0, 0.08);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e2d7c3;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  font-weight: 500;
  color: var(--color-text-soft);
}

.main-nav a:hover {
  color: var(--color-primary-dark);
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #ffecc1 0, #fffdf6 40%, #f5efe0 100%);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-soft);
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.hero-highlights span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #e1d3b7;
  padding: 0.35rem 0.85rem;
}

.hero-image {
  justify-self: center;
}

.hero-image img {
  max-width: 260px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-light {
  background-color: #fff;
}

.section-muted {
  background-color: var(--color-muted);
}

.section-inner {
  display: grid;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--color-text-soft);
  margin-bottom: 2rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-soft);
}

/* Product */
.product-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: center;
}

.product-details h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.product-details p {
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.product-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
}

.product-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-info p {
  color: var(--color-text-soft);
}

.contact-details {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-soft);
}

.contact-details a {
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #d7c9ae;
  font: inherit;
  resize: vertical;
  background-color: #fffdf9;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(186, 106, 20, 0.2);
  border-color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.1s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  background-color: #fff;
  color: var(--color-primary-dark);
}

.btn-secondary:hover {
  background-color: #f8f1e1;
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  border-top: 1px solid #e2d7c3;
  background-color: #fffaf1;
  padding: 1.6rem 0;
  margin-top: 1.5rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.footer-note {
  margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .product-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-image {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    gap: 1.8rem;
  }

  .feature-card,
  .contact-form {
    padding: 1.4rem 1.3rem;
  }
}
