* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #2d3b2d;
  background: #f8f9f4;
}

/* ── Header & Nav ── */
header {
  background: #3a5a40;
  color: #fff;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo span { color: #a3b18a; }

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: #dad7cd; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #a3b18a;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(rgba(58,90,64,0.82), rgba(58,90,64,0.82)),
              url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=2120') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 7rem 5%;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

/* ── Buttons ── */
.btn {
  background: #588157;
  color: #fff;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #3a5a40;
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.product-btn {
  width: 100%;
  margin-top: 0.75rem;
  background: #3a5a40;
}

.product-btn:hover { background: #2d4a33; }

/* ── Sections ── */
section {
  padding: 4.5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 3rem;
  color: #344e41;
}

.section-sub {
  text-align: center;
  max-width: 700px;
  margin: -2rem auto 2.5rem;
  color: #556b55;
  font-size: 1.05rem;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-card {
  border: 2px solid #dda15e;
  background: #fffdf7;
}

.service-card h3 {
  color: #344e41;
  margin: 0.75rem 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p { color: #4a5a4a; font-size: 0.95rem; }

.svc-price { margin-top: 0.4rem; color: #344e41; }

.service-icon { font-size: 2.4rem; }

.bundle-badge {
  background: #dda15e;
  color: #fff;
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  display: inline-block;
  margin-left: 0.3rem;
  font-weight: 700;
  vertical-align: middle;
}

/* ── Disclaimer ── */
.disclaimer {
  background: #fefae0;
  border-left: 4px solid #dda15e;
  padding: 1rem 1.2rem;
  margin: 0 auto;
  max-width: 900px;
  font-size: 0.88rem;
  border-radius: 0 5px 5px 0;
  color: #5a4a2a;
}

/* ── Totalearth Section ── */
.totalearth-section {
  background: #f0f5e8;
  max-width: 100%;
  padding: 4.5rem 5%;
}

.totalearth-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Products Grid ── */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.product-img-wrap {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
}

.product-img-balm {
  background: linear-gradient(135deg, #a8c5a0 0%, #6b9a6b 100%);
  background-image: url('img/photo-1608248597279-f99d160bfcbc.jpg'), linear-gradient(135deg, #a8c5a0 0%, #6b9a6b 100%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f2e6;
}

.product-img-tincture {
  background: linear-gradient(135deg, #8fad7e 0%, #5a8050 100%);
  background-image: url('img/photo-1587854692152-cbe660dbde88.jpg'), linear-gradient(135deg, #8fad7e 0%, #5a8050 100%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f2e6;
}

.product-img-oil {
  background: linear-gradient(135deg, #c5b89a 0%, #9a8560 100%);
  background-image: url('img/photo-1596178065887-1198b6148b2b.jpg'), linear-gradient(135deg, #c5b89a 0%, #9a8560 100%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f2e6;
}

.product-img-tea {
  background: linear-gradient(135deg, #b5c9a0 0%, #7a9a60 100%);
  background-image: url('img/photo-1556679343-c7306c1976bc.jpg'), linear-gradient(135deg, #b5c9a0 0%, #7a9a60 100%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f2e6;
}

.product-info { padding: 1.4rem; }

.product-info h3 {
  margin: 0.4rem 0 0.5rem;
  color: #344e41;
  font-size: 1.05rem;
}

.product-info p { color: #4a5a4a; font-size: 0.92rem; line-height: 1.5; }

.price {
  color: #588157;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0.6rem 0 0.25rem;
}

.totalearth-badge {
  background: #a3b18a;
  color: #344e41;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
}

/* ── Forms ── */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 1.4rem; }

.form-group > label,
.form-group > label:not(.checkbox-item) {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #344e41;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c8d5c0;
  border-radius: 6px;
  font-size: 0.97rem;
  font-family: inherit;
  color: #2d3b2d;
  background: #f9fbf7;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #588157;
  box-shadow: 0 0 0 3px rgba(88,129,87,0.15);
  background: #fff;
}

textarea { resize: vertical; }

.datetime-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Checkboxes ── */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  border: 1.5px solid #d8e8d0;
  border-radius: 7px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-weight: normal;
  color: #2d3b2d;
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkbox-item:hover {
  border-color: #588157;
  background: #f5fbf0;
}

.checkbox-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 0.15rem;
  accent-color: #588157;
  cursor: pointer;
}

.checkbox-item.checked {
  border-color: #588157;
  background: #eef6e8;
}

/* ── Price Summary ── */
.total-box {
  background: #f1f8e9;
  border: 1.5px solid #c5ddb5;
  padding: 1.4rem 1.5rem;
  border-radius: 8px;
  margin: 1.25rem 0;
}

.total-line {
  display: flex;
  justify-content: space-between;
  margin: 0.45rem 0;
  font-size: 0.95rem;
  color: #4a5a4a;
}

.total-line.discount {
  color: #588157;
  font-weight: 700;
}

.total-line.final {
  font-size: 1.15rem;
  font-weight: 700;
  color: #344e41;
  border-top: 2px solid #b5d5a0;
  padding-top: 0.6rem;
  margin-top: 0.6rem;
}

/* ── Payment Instructions ── */
.instructions {
  background: #e8f5e9;
  border-left: 4px solid #588157;
  padding: 1rem 1.2rem;
  border-radius: 0 6px 6px 0;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #2d4a2d;
  line-height: 1.6;
}

/* ── Form Messages ── */
.form-msg {
  padding: 1.1rem 1.2rem;
  border-radius: 7px;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.form-msg.success {
  background: #e8f5e9;
  color: #2d5a2d;
  border: 1px solid #b5d5b0;
}

.form-msg.error {
  background: #fff3e0;
  color: #8a3000;
  border: 1px solid #f0c090;
}

/* ── Footer ── */
footer {
  background: #344e41;
  color: #dad7cd;
  text-align: center;
  padding: 2.5rem 5%;
  margin-top: 1rem;
}

.footer-sub {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 5rem 5%; }
  .hero h1 { font-size: 2rem; }

  nav ul { display: none; flex-direction: column; gap: 0; }
  nav ul.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3a5a40;
    padding: 1rem 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  nav ul.open li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .nav-toggle { display: block; }

  header { position: relative; }

  .checkbox-group { grid-template-columns: 1fr; }
  .datetime-group { grid-template-columns: 1fr; }

  .contact-form { padding: 1.5rem 1.2rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
}
