/* Greasy Beaver Website Style */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f1e8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: #0f0f0f;
  border-bottom: 3px solid #c95b1b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #ff7a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 12px;
  color: #f5c16c;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #f5f1e8;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  background: #c95b1b;
  color: #111;
}

.hero {
  min-height: 78vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.82)),
    radial-gradient(circle at center, #56210d 0%, #0b0b0b 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 950px;
}

.kicker {
  color: #f5c16c;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(44px, 8vw, 92px);
  line-height: .95;
  margin: 0 0 16px;
  color: #ff7417;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #1a0b03;
}

.hero h2 {
  font-size: clamp(22px, 4vw, 42px);
  margin: 0 0 16px;
  color: #f5f1e8;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-block;
  background: #ff7417;
  color: #111;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid #ff7417;
}

.btn:hover {
  background: #f5c16c;
  border-color: #f5c16c;
}

.btn-outline {
  background: transparent;
  color: #f5f1e8;
  border: 2px solid #f5c16c;
}

.btn-outline:hover {
  background: #f5c16c;
  color: #111;
}

.section {
  padding: 70px 20px;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
}

.section-dark {
  background: #101010;
}

.section-rust {
  background: linear-gradient(135deg, #1b0d06, #331507);
}

.section h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 18px;
  color: #ff7417;
  text-transform: uppercase;
}

.section p.lead {
  font-size: 20px;
  color: #f4d7a1;
  max-width: 850px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: #171717;
  border: 1px solid #3d2a1b;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.card h3 {
  margin-top: 0;
  color: #f5c16c;
  font-size: 23px;
}

.card p {
  color: #e8dfd2;
}

.callout {
  margin-top: 35px;
  background: #211006;
  border-left: 6px solid #ff7417;
  padding: 24px;
  border-radius: 14px;
}

.page-hero {
  padding: 80px 20px 55px;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.86)),
    radial-gradient(circle at top, #5a210b, #0b0b0b 70%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 7vw, 76px);
}

.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 20px;
  color: #f4d7a1;
}

.list {
  margin-top: 25px;
  padding-left: 22px;
}

.list li {
  margin-bottom: 10px;
}

.footer {
  background: #070707;
  border-top: 3px solid #c95b1b;
  padding: 35px 20px;
  text-align: center;
  color: #cfc3b2;
}

.footer strong {
  color: #ff7417;
}

.phone {
  color: #ff7417;
  font-weight: 900;
  font-size: 24px;
}

.small-note {
  font-size: 14px;
  color: #b9aa95;
}

@media (max-width: 850px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}
/* Greasy Beaver Image Additions */

.hero-image {
  margin-top: 35px;
}

.hero-image img {
  width: 100%;
  max-width: 950px;
  border-radius: 22px;
  border: 3px solid #c95b1b;
  box-shadow: 0 20px 45px rgba(0,0,0,.6);
}

.image-feature {
  margin-top: 35px;
}

.image-feature img {
  width: 100%;
  border-radius: 18px;
  border: 2px solid #3d2a1b;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
}

.image-card {
  background: #171717;
  border: 1px solid #3d2a1b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.image-card img {
  width: 100%;
  display: block;
}

.image-card-content {
  padding: 22px;
}

.image-card-content h3 {
  margin-top: 0;
  color: #f5c16c;
  font-size: 23px;
}

.sleepy-tony {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 38px;
  opacity: 0.18;
  transition: 0.3s ease;
  z-index: 9999;
  border-radius: 8px;
}

.sleepy-tony:hover {
  width: 135px;
  opacity: 1;
}
/* Join the Dam List Popup */

.dam-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dam-popup-box {
  background: linear-gradient(135deg, #171717, #2a1207);
  border: 3px solid #ff7417;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 32px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.75);
  position: relative;
}

.dam-popup-box h2 {
  color: #ff7417;
  font-size: 38px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.dam-popup-box p {
  color: #f5f1e8;
  font-size: 18px;
  margin-bottom: 22px;
}

.dam-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  color: #f5f1e8;
  border: none;
  font-size: 34px;
  cursor: pointer;
}

.dam-popup-no {
  display: block;
  margin: 18px auto 0;
  background: transparent;
  border: none;
  color: #b9aa95;
  cursor: pointer;
  font-size: 14px;
}

.dam-popup-no:hover {
  color: #f5c16c;
}