/* ============================================
   KAP365 — Brand Stylesheet
   Colors, fonts per KAP365 Brand Identity Guide v1.0
   ============================================ */

:root {
  --deep-forest: #1B4332;
  --hunter-green: #2D6A4F;
  --mint-accent: #52B788;
  --antique-gold: #C9A84C;
  --warm-cream: #F5F0E8;
  --midnight-forest: #0D1F17;
  --dark-gray: #444444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-body: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--warm-cream);
  line-height: 1.6;
}

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

a { color: var(--hunter-green); text-decoration: none; }
a:hover { color: var(--mint-accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--hunter-green);
  margin: 0 0 0.5em;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--antique-gold);
}

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

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--deep-forest);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--antique-gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { width: 44px; height: 44px; }

.brand span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--warm-cream);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--warm-cream);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover { color: var(--mint-accent); }

.nav-cta {
  background: var(--antique-gold);
  color: var(--midnight-forest) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--mint-accent); color: var(--midnight-forest) !important; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--deep-forest) 0%, var(--midnight-forest) 100%);
  color: var(--warm-cream);
  padding: 90px 0 100px;
  text-align: center;
}

.hero img.hero-logo {
  width: 130px;
  margin: 0 auto 28px;
}

.hero h1 {
  color: var(--warm-cream);
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero .tagline {
  font-family: var(--font-mono);
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--warm-cream);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--mint-accent);
  color: var(--midnight-forest);
}

.btn-primary:hover { background: var(--antique-gold); color: var(--midnight-forest); }

.btn-outline {
  background: transparent;
  color: var(--warm-cream);
  border: 1.5px solid var(--antique-gold);
  margin-left: 12px;
}

.btn-outline:hover { background: var(--antique-gold); color: var(--midnight-forest); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 12px; }

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 50px;
  color: var(--dark-gray);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid #e5ddc8;
  border-top: 3px solid var(--antique-gold);
  border-radius: 6px;
  padding: 32px 26px;
  text-align: left;
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-card h3 { font-size: 1.2rem; }

.service-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--dark-gray);
}

.service-card ul li { margin-bottom: 6px; }

/* ---------- About / Why ---------- */
.about {
  background: var(--warm-cream);
  border-top: 1px solid #e5ddc8;
  border-bottom: 1px solid #e5ddc8;
}

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

.about-grid .badge-circle {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 { font-size: 1.1rem; margin-top: 24px; }

.contact-info p { margin: 4px 0; }

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form.contact-form label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hunter-green);
  margin-bottom: 4px;
  display: block;
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfc6ab;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
}

form.contact-form textarea { min-height: 130px; resize: vertical; }

form.contact-form button {
  align-self: flex-start;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8a8265;
  margin-top: -6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--midnight-forest);
  color: var(--warm-cream);
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--warm-cream);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  color: var(--warm-cream);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.social-links a:hover { color: var(--mint-accent); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.15);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #9aa89f;
  text-align: center;
}

/* ---------- Custom Label Printing section ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.price-card {
  background: #fff;
  border: 1px solid #e5ddc8;
  border-radius: 6px;
  padding: 26px 18px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--antique-gold);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
}

.price-card .qty {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 2.6rem;
  color: var(--deep-forest);
  margin-bottom: 4px;
  line-height: 1.1;
}

.price-card .price {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--hunter-green);
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-block {
  background: #fff;
  border: 1px solid #e5ddc8;
  border-left: 3px solid var(--mint-accent);
  border-radius: 6px;
  padding: 26px 28px;
  margin: 30px 0;
}

.order-block h3 { font-size: 1.05rem; margin-bottom: 10px; }

.order-block ol { padding-left: 20px; margin: 10px 0 0; }
.order-block ol li { margin-bottom: 6px; font-size: 0.92rem; }

.sample-bag-box {
  background: #fdf6ea;
  border: 1px solid #e0d6b3;
  border-radius: 6px;
  padding: 22px 26px;
  margin: 24px 0;
}

/* ---------- Products page ---------- */
.products-hero {
  background: linear-gradient(160deg, var(--deep-forest) 0%, var(--midnight-forest) 100%);
  color: var(--warm-cream);
  padding: 60px 0 60px;
  text-align: center;
}

.products-hero h1 { color: var(--warm-cream); }

.disclosure {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--dark-gray);
  background: #efe9d8;
  border: 1px solid #e0d6b3;
  border-radius: 4px;
  padding: 14px 18px;
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid #e5ddc8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--deep-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.product-card .product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 { font-size: 1.05rem; margin-bottom: 6px; }

.product-card p.blurb {
  font-size: 0.9rem;
  color: var(--dark-gray);
  flex: 1;
  margin-bottom: 16px;
}

.product-card .price-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--hunter-green);
  margin-bottom: 10px;
}

.product-card .btn {
  text-align: center;
  width: 100%;
}

.product-card.placeholder {
  opacity: 0.55;
}

.product-card.placeholder .product-img { background: #d8d2bd; color: #8a8265; }

.product-card.placeholder .btn {
  background: #cfc6ab;
  color: #6b644d;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .footer-grid { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
}
