/* ===== 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(16, 20, 14, 0.66) 0%, rgba(28, 26, 14, 0.54) 55%, rgba(44, 30, 12, 0.52) 100%),
    url("../images/sunrise-band.jpg");
  background-size: cover;
  background-position: center center;
  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;
  /* guards legibility over the sun highlight in the photo */
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.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; }

/* ===== Flagship feature block ===== */

.flagship {
  background: linear-gradient(150deg, #24401f 0%, #2c4d29 45%, #5a4322 100%);
  color: var(--cream);
}

.flagship h2,
.flagship h3 { color: var(--white); }

.flagship p { color: #dbe5d6; }

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

.flagship-lead {
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0 auto 8px;
}

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

.flagship-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}

.flagship-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.flagship-item p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.flagship-item .icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.flagship-points {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  text-align: left;
}

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

.flagship-points li {
  position: relative;
  padding-left: 26px;
  color: #dbe5d6;
  font-size: 0.94rem;
}

.flagship-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #8fc47f;
  font-weight: bold;
}

/* ===== 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);
}

/* ===== Pricing ===== */

.price-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 34px 32px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.price-figure {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-dark);
  font-weight: bold;
}

.price-currency { font-size: 2rem; vertical-align: super; margin-right: 2px; }

.price-period {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: var(--ink-soft);
}

.price-sub {
  margin: 10px 0 22px;
  font-weight: 600;
  color: var(--ink-soft);
}

.price-list { text-align: left; margin-bottom: 20px; }

.price-foot {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 22px;
}

@media (max-width: 560px) {
  .price-figure { font-size: 3rem; }
  .price-card { padding: 26px 20px 24px; }
}

/* ===== Form status message ===== */

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 1px;
}

.form-note.is-ok {
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid #bcd3b4;
  border-radius: 8px;
  padding: 10px 12px;
}

.form-note.is-error {
  color: #7d2c20;
  background: #f9e5e1;
  border: 1px solid #e3b6ad;
  border-radius: 8px;
  padding: 10px 12px;
}

.form-note.is-error a { color: #7d2c20; text-decoration: underline; }

/* ===== 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 p { color: #e9ddcf; }
.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(16, 20, 14, 0.68) 0%, rgba(28, 26, 14, 0.58) 55%, rgba(44, 30, 12, 0.55) 100%),
    url("../images/sunrise-band.jpg");
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.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; }
}
