/* Wagner Moisture Tools - Microsite Styles */
/* Domain: wagnermoisturetools.com */
/* Target: Flooring Retailers & Distributors */
/* Visual: Forest green + gold, serif headings, warm professional */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --primary-light: #40916c;
  --accent: #d4a03c;
  --accent-hover: #b8862e;
  --text: #2c3e2c;
  --text-light: #5a6b5a;
  --bg: #ffffff;
  --bg-light: #fafaf7;
  --bg-section: #f0f4ee;
  --border: #d5ddd2;
  --success: #40916c;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}

/* HEADER - white bar with gold bottom accent */
.site-header {
  background: var(--white);
  color: var(--text);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.site-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.site-logo span { color: var(--accent); }

nav { display: flex; gap: 2px; }

nav a {
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  color: var(--primary-dark);
  background: var(--bg-section);
}

/* HERO - warm green gradient */
.hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero p {
  font-size: 19px;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.hero-small { padding: 52px 0; }
.hero-small h1 { font-size: 32px; margin-bottom: 12px; }
.hero-small p { font-size: 17px; margin-bottom: 0; }

/* BUTTONS - pill shaped */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,160,60,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
section { padding: 68px 0; }
section.alt { background: var(--bg-section); }

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 44px;
}

/* CARDS - rounded, soft shadow */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: box-shadow 0.25s;
}

.card:hover { box-shadow: 0 8px 24px rgba(45,106,79,0.08); }

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.card p { color: var(--text-light); font-size: 15px; line-height: 1.65; }

/* PRODUCT CARDS */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.product-card .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin: 10px 0;
}

.product-card .price-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: -6px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 21px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.product-card .tagline {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 14px;
  font-style: italic;
}

.product-card ul {
  list-style: none;
  text-align: left;
  margin: 16px 0 24px;
}

.product-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--bg-section);
}

.product-card ul li:last-child { border-bottom: none; }

.product-card ul li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

/* ARTICLE CONTENT */
.article-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 28px;
}

.article-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 23px;
  color: var(--primary-dark);
  margin: 44px 0 16px;
  padding-top: 16px;
}

.article-content h2:first-of-type { margin-top: 0; }

.article-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text);
}

.article-content ul, .article-content ol {
  margin: 0 0 16px 24px;
  line-height: 1.8;
}

.article-content li { margin-bottom: 6px; }

.article-callout {
  background: var(--bg-section);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 12px 12px 0;
}

.article-callout p { margin-bottom: 0; font-size: 15px; }

.article-cta {
  background: var(--primary);
  color: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin: 44px 0;
}

.article-cta h3 { font-family: 'Lora', Georgia, serif; font-size: 21px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.88); margin-bottom: 20px; }

/* STATS */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stat { text-align: center; padding: 24px; }

.stat .number {
  font-family: 'Lora', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat .label { font-size: 14px; color: var(--text-light); margin-top: 8px; }

/* CONTACT */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.contact-detail:last-child { border-bottom: none; }

/* FOOTER */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 36px 0 22px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .header-inner { height: auto; padding: 14px 28px; flex-wrap: wrap; gap: 8px; }
  nav { gap: 0; flex-wrap: wrap; }
  nav a { padding: 6px 10px; font-size: 13px; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
  .section-title { font-size: 24px; }
}
