/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --red:         #c1121f;
  --red-light:   #f4d0d0;
  --dark:        #1b1b1b;
  --text:        #2a2a2a;
  --muted:       #666;
  --bg:          #f4f7f4;
  --bg-alt:      #f7faf8;
  --gold:        #e9a800;
  --gold-pale:   #fff8e0;
  --border:      #dde8e1;
  --chalk:       #0a1a0f;
  --radius:      12px;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --transition:  0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover { background: var(--green-pale); }

.btn-nav {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  font-size: 0.9rem;
}
.btn-nav:hover { background: #a00f1a; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8ede9;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  font-size: 1.35rem;
  line-height: 1;
  background: var(--green-pale);
  border: 1px solid #dde8e1;
  border-radius: 8px;
  cursor: pointer;
  color: var(--green);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}
.logo span { color: var(--green); }

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
nav a:hover { color: var(--green); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #40916c 100%);
  color: #fff;
  padding: 80px 0 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #c8e6d1;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

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

.hero-cta .btn-primary { background: var(--red); }
.hero-cta .btn-primary:hover { background: #a00f1a; }
.hero-cta .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,0.1); }

.hero-badge { flex-shrink: 0; }
.hero-image {
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.7);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    0 0 0 10px rgba(255,255,255,0.12);
}

.badge-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
}

.badge-top, .badge-bot {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
}
.badge-mid { font-size: 1.6rem; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--green-pale);
  border-bottom: 1px solid #b7e4c7;
  padding: 14px 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); }
.section-dark .section-header, .section-dark .section-header p { color: #fff; }
.section-dark .section-header p { color: #aaa; }
.section-green { background: var(--green); }
.section-green .section-header { color: #fff; }
.section-green .section-header p { color: #c8e6d1; }

.order-with-bg { background: #1b4332; }
.order-container-bg {
  border-radius: 16px;
  border: 1px solid rgba(216,243,220,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  padding: 44px 28px;
  background:
    linear-gradient(135deg, rgba(13,44,30,0.84) 0%, rgba(27,67,50,0.76) 50%, rgba(45,106,79,0.72) 100%),
    url("./img/store-front-w-staff.png") center top / 100% auto no-repeat;
  background-color: #1b4332;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-alt);
  border: 1px solid #e5ede8;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.highlight-card {
  background: var(--green-pale);
  border-color: var(--green-light);
}

.product-icon { font-size: 2rem; margin-bottom: 12px; }

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}
.card-link:hover { text-decoration: underline; }

/* === SPECIALTY GRID === */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.specialty-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--transition);
}
.specialty-card:hover { border-color: var(--green-mid); }

.specialty-emoji { font-size: 2rem; margin-bottom: 12px; }

.specialty-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.specialty-card p {
  font-size: 0.92rem;
  color: #999;
  line-height: 1.55;
}

.badge-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  letter-spacing: 0.3px;
}

.specialty-showcase {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2f2f2f;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.specialty-photo {
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: initial;
  background: transparent;
  border-radius: 0;
}

/* === GIFT BUNDLE === */
.gift-bundle {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  border-radius: 0;
  padding: 40px 40px;
}

.gift-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.gift-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}

.gift-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.gift-text p {
  color: #c8e6d1;
  font-size: 0.95rem;
  max-width: 400px;
  margin-bottom: 20px;
}

.gift-text .btn-primary { background: var(--red); }
.gift-text .btn-primary:hover { background: #a00f1a; }

.gift-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 3.1rem;
  flex-shrink: 0;
}
.gift-icons span:nth-child(even) {
  font-size: 1.45rem;
  color: var(--green-light);
  font-weight: 700;
}

/* === ABOUT === */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5ede8;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.value-item strong {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}
.value-item span {
  font-size: 0.88rem;
  color: var(--muted);
}

.about-stat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-team-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 12px;
  border: 1px solid #e5ede8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  margin-bottom: 14px;
}

.stat-card {
  background: var(--bg-alt);
  border: 1px solid #e5ede8;
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* === ORDER === */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.order-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
  cursor: default;
}
a.order-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a.order-card:hover { background: rgba(255,255,255,0.18); }

.order-icon { font-size: 2rem; }

.order-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.order-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  flex: 1;
}

.order-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-light);
}

.bulk-callout {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.bulk-callout strong { color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-badge {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
  .hero-image {
    width: min(62vw, 280px);
  }

  .nav-toggle {
    display: flex;
  }
  .site-header .nav-inner > nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 4px 0 8px;
    display: none;
  }
  .site-header.nav-open .nav-inner > nav {
    display: flex;
  }
  .site-header .nav-inner > nav a {
    padding: 10px 8px;
    border-radius: 6px;
  }
  .site-header .nav-inner > nav a:hover {
    background: var(--green-pale);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-stat-col {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card { flex: 1; min-width: 130px; }

  .gift-bundle { padding: 28px 20px; }
  .gift-bundle-inner { flex-direction: column; }
  .gift-icons { font-size: 2.4rem; }
  .specialty-photo { height: auto; }
  .about-team-photo { height: 190px; }
  .order-container-bg { padding: 32px 18px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-image {
    width: min(72vw, 250px);
    border-width: 4px;
  }
  .specialty-photo { height: auto; }
  .about-team-photo { height: 170px; }
  .order-container-bg { padding: 28px 14px; }
  .trust-inner { flex-direction: column; align-items: center; gap: 8px; }
}
