/* ===== BDR, LLC — Black Dog Ranch ===== */

:root {
  --cream: #fbf8f2;
  --cream-2: #f3ede0;
  --wood: #8a5a3c;
  --wood-dark: #5f3a24;
  --green: #3f6b3a;
  --green-dark: #2c4d29;
  --green-light: #e7efe2;
  --barn-red: #a33b2d;
  --ink: #2b2620;
  --ink-soft: #5c5449;
  --border: #e2d9c6;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(60, 45, 20, 0.08);
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Nav ===== */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(200deg, #f6d488 0%, #eea94a 45%, #d97b3f 100%);
  color: var(--wood-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 0.75rem;
  box-shadow: 0 1px 4px rgba(120, 70, 20, 0.35);
}

.brand small {
  display: block;
  font-family: "Segoe UI", sans-serif;
  font-weight: normal;
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-dark);
  cursor: pointer;
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

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

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-light); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-red {
  background: var(--barn-red);
  color: var(--white);
}
.btn-red:hover { background: #862c21; }

/* ===== Hero ===== */

.hero {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 16, 0.62) 0%, rgba(40, 24, 10, 0.42) 55%, rgba(60, 32, 10, 0.35) 100%),
    url("../images/sunrise-band.jpg");
  background-size: cover;
  background-position: center bottom;
  border-bottom: 1px solid var(--border);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  padding: 48px 24px;
  text-align: center;
  max-width: 780px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f2c879;
  margin-bottom: 14px;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--white);
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

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

/* ===== Sections ===== */

section { padding: 64px 0; }

.section-alt { background: var(--cream-2); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 8px;
  display: block;
}

/* ===== Cards / Grid ===== */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 10px;
}

.badge-soon {
  background: #f5e6d8;
  color: var(--wood-dark);
}

.badge-beta {
  background: #f5dbd6;
  color: var(--barn-red);
}

/* ===== Feature list ===== */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--green);
  font-weight: bold;
}

/* ===== Stats strip ===== */

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.stats .stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--green-dark);
}

.stats .stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===== CTA band ===== */

.cta-band {
  background: linear-gradient(120deg, var(--green-dark) 0%, #33502a 55%, #5a4322 100%);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 { color: var(--cream); }
.cta-band p { color: #d8e3d4; }

/* ===== Forms ===== */

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--ink);
}

input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 18px;
  background: var(--cream);
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

/* ===== Footer ===== */

.site-footer {
  background: var(--wood-dark);
  color: #e9ddcf;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  color: var(--cream);
  font-size: 1rem;
  font-family: "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer a { color: #e9ddcf; }
.site-footer a:hover { color: var(--white); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #c9bba6;
  text-align: center;
}

/* ===== Utility ===== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.page-hero {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 16, 0.66) 0%, rgba(40, 24, 10, 0.48) 55%, rgba(60, 32, 10, 0.4) 100%),
    url("../images/sunrise-band.jpg");
  background-size: cover;
  background-position: center bottom;
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f2c879;
  margin-bottom: 10px;
}

.page-hero h1 { color: var(--white); }

/* ===== Responsive nav ===== */

@media (max-width: 780px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
  }

  .hero h1 { font-size: 2rem; }

  .hero, .page-hero { min-height: 460px; }
}
