/* ===================================================
   Hoover Wood Shavings LLC — Redesign Stylesheet
   =================================================== */

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

:root {
  --maroon:       #641212;
  --maroon-dark:  #480d0d;
  --maroon-light: #7a1818;
  --gold:         #888888;
  --gold-light:   #a2a2a2;
  --cream:        #FAF7F2;
  --cream-dark:   #f0e9dd;
  --slate:        #28292b;
  --slate-bg:     #e9e7e6;
  --bg:           #e9e7e6;
  --text:         #1a1a1a;
  --text-light:   #666;
  --white:        #ffffff;
  --border:       #ddd9d7;
  --shadow:       0 2px 16px rgba(0,0,0,0.09);
  --radius:       8px;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a { color: var(--maroon); }
a:hover { color: var(--maroon-light); }

/* ── NAVIGATION ── */

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--maroon-dark);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── SITE LOGO MARK ── */
.s-hoover {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  letter-spacing: 0.08em;
}
.s-rule { display: block; width: 100%; }
.s-ws {
  font-family: 'Anton', sans-serif;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
}

/* Nav sizing */
.nav-logo .s-hoover {
  font-size: 2.0rem;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 45%, #ddd0d0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-logo .s-rule { height: 2px; background: rgba(255,255,255,0.45); }
.nav-logo .s-ws { font-size: 0.58rem; color: rgba(255,255,255,0.6); }

/* Footer HWS mark */
.footer-hws {
  font-family: 'Anton', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f0ede8 50%, #c8bfbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.footer-hws::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin: 0.6rem auto 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */

.hero {
  position: relative;
  background: var(--maroon-dark);
  color: white;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('prod-hws-001.jpg');
  background-size: cover;
  background-position: right top;
  transform: scaleX(-1);
}

/* Left solid, right reveals image — on .hero so it isn't mirrored with the bg */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to right,
    rgba(45, 8, 8, 1.00) 0%,
    rgba(45, 8, 8, 1.00) 40%,
    rgba(45, 8, 8, 0.75) 58%,
    rgba(45, 8, 8, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 5rem 3.5rem;
  margin: 0 auto 0 4rem; /* push to left side */
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

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

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

.btn-maroon {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
}

.btn-maroon:hover {
  background: var(--maroon-light);
  border-color: var(--maroon-light);
  color: white;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */

.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── CARDS ── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 4px solid var(--maroon);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.tag-gold { background: rgba(136,136,136,0.15); color: var(--gold); }
.tag-maroon { background: rgba(100,18,18,0.1); color: var(--maroon); }
.tag-green { background: rgba(60,120,60,0.12); color: #3a7a3a; }

/* ── INFO STRIP ── */

.info-strip {
  background: var(--maroon);
  color: white;
}

.info-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3.5rem 2rem;
  text-align: center;
}

.info-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.6;
}

.info-item a:hover { color: white; }

/* ── PRODUCT DETAIL CARD ── */

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2.5rem;
  border-left: 5px solid var(--maroon);
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.product-card .desc {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.product-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-meta-item { font-size: 0.9rem; }
.product-meta-item strong { color: var(--maroon); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

/* ── MISSION / ABOUT ── */

.mission-box {
  background: var(--maroon);
  color: white;
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 15rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.mission-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.mission-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  opacity: 0.92;
}

.mission-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
}

/* ── BENEFITS GRID ── */

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child { border-bottom: none; }

.benefit-check {
  width: 22px;
  height: 22px;
  background: var(--maroon);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(123,28,28,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-row h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 3px;
}

.contact-row p, .contact-row a {
  font-size: 0.93rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
}

.contact-row a:hover { color: var(--maroon); }

/* ── MAP ── */

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 320px;
}

/* ── PAGE HERO (inner pages) ── */

.page-hero {
  background: var(--maroon);
  color: white;
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.82;
  max-width: 500px;
  margin: 0 auto;
}

/* ── DIVIDER ── */

.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ── CALLOUT ── */

.callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.callout strong { color: var(--maroon); }

/* ── FOOTER ── */

footer {
  background: var(--slate);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: white; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    display: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    height: auto;
    padding: 0.85rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom-color: rgba(255,255,255,0.05);
    border-left-color: var(--gold);
  }

  .contact-grid { grid-template-columns: 1fr; }

  .product-card { padding: 1.5rem; }

  .mission-box { padding: 2rem; }

  .section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 640px) {
  .hero-content { padding: 3rem 1.25rem; margin: 0 auto; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: auto; justify-content: center; }
  .horse-grid { grid-template-columns: 1fr !important; }
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .prod-photo-grid { grid-template-columns: 1fr !important; }
  .prod-photo-grid img { height: 200px !important; }
}
