/* ══════════════════════════════════════════════
   Creekside Red Angus — Shared Styles
   ══════════════════════════════════════════════ */

:root {
  --red: #8B2500;
  --red-light: #A03000;
  --red-deep: #6B1D00;
  --cream: #FAF6F0;
  --warm-white: #FDF9F3;
  --dark: #1a1a1a;
  --darker: #111;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --text-muted: #888;
  --green: #2d5016;
  --green-light: #3a6620;
  --gold: #C49B3C;
  --border: #e0d8cc;
  --border-light: #ede6da;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 2rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.nav-brand span { color: var(--gold); }

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── Hero ── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--darker);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg,
      rgba(10,5,2,0.95) 0%,
      rgba(50,20,5,0.88) 40%,
      rgba(107,29,0,0.75) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 850px;
}

.hero-location {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Page Hero (interior pages) ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: var(--darker);
  color: white;
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg,
      rgba(10,5,2,0.95) 0%,
      rgba(50,20,5,0.88) 40%,
      rgba(107,29,0,0.75) 100%
    );
  z-index: 1;
}

.page-hero-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--red-light);
}

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

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

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: #d4a940;
}

.btn-secondary {
  background: white;
  color: var(--red);
  border: 2px solid var(--red);
}

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

/* ── Photo placeholder strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 280px;
  overflow: hidden;
}

.photo-slot {
  position: relative;
  overflow: hidden;
}

.photo-slot-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.photo-slot:nth-child(1) .photo-slot-inner { background: linear-gradient(135deg, #3a2810, #5a3a18); }
.photo-slot:nth-child(2) .photo-slot-inner { background: linear-gradient(135deg, #2d4a1a, #3a5a22); }
.photo-slot:nth-child(3) .photo-slot-inner { background: linear-gradient(135deg, #4a2a12, #6a3a1a); }
.photo-slot:nth-child(4) .photo-slot-inner { background: linear-gradient(135deg, #1a3a2a, #2a4a32); }

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Section Styles ── */
section { padding: 5rem 2rem; }

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

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

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

/* ── About Section ── */
.about-section { background: white; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  background: linear-gradient(135deg, #3a2810, #5a3a18);
  border-radius: 10px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

/* ── Why Section ── */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 2rem 1.75rem;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Statement Banner ── */
.statement {
  background: var(--darker);
  color: white;
  padding: 4.5rem 2rem;
  text-align: center;
}

.statement-inner {
  max-width: 750px;
  margin: 0 auto;
}

.statement blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}

.statement cite {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Program Section ── */
.program-section { background: white; }

.program-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.program-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.program-step:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.program-sidebar {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.sidebar-header {
  background: var(--dark);
  color: white;
  padding: 1.25rem 1.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-item {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  min-width: 70px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── Bulls Section ── */
.bulls-section { background: var(--cream); }

.bulls-coming {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.bulls-coming h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.bulls-coming > p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.bulls-coming .timeline {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.timeline-item {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  min-width: 140px;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--border);
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 0.75rem;
}

.timeline-date {
  font-weight: 700;
  color: var(--red);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.timeline-event {
  font-size: 0.82rem;
  color: var(--text-light);
}

.bulls-cta {
  margin-top: 2.5rem;
}

/* ── Guarantee Section ── */
.guarantee-section {
  background: var(--darker);
  color: white;
}

.guarantee-section .section-label { color: var(--gold); }
.guarantee-section .section-title { color: white; }
.guarantee-section .section-desc { color: rgba(255,255,255,0.6); }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.guarantee-item {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.guarantee-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── Contact Section ── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
  margin-top: 1.5rem;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p, .contact-info a {
  color: var(--text-light);
  line-height: 1.7;
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-info a:hover { color: var(--red); }

.contact-badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  background: white;
  padding: 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--warm-white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.contact-form .btn-primary {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.95rem;
}

/* ── Footer ── */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.4);
  padding: 2rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

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

footer a:hover { color: var(--gold); }

/* ── Teaser cards (homepage) ── */
.teaser-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.teaser-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.teaser-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.teaser-card .btn {
  margin-top: 0.5rem;
}

/* ── Why Red Angus expanded sections ── */
.why-expanded-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.why-expanded-section:last-child {
  border-bottom: none;
}

.why-expanded-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.why-expanded-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 780px;
}

.why-expanded-section p:last-child {
  margin-bottom: 0;
}

/* ── FAQ Section ── */
.faq-section { background: white; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 780px;
}

/* ── Blog / Article Styles ── */
.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: var(--text);
}

.article-cta {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About page expanded ── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-value-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2rem 1.5rem;
}

.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.about-value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { height: 260px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
  }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 5rem 1.5rem 3rem; }
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 3rem; }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }

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

  .timeline-item { padding: 0 1rem; }
}
