/* ============================================================
   CowHorseSaddle.com — Mobile-First Stylesheet
   Base = mobile, 640px = tablet, 1024px = desktop
   Brand: deep teal/slate + copper/gold — distinct from reiningsaddles.com cognac
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400;1,600&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Oswald:wght@300;400;500;600&display=swap');

:root {
  --teal:        #1B4F5A;
  --deep-teal:   #0F2E35;
  --copper:      #B5541A;
  --copper-light:#D4682A;
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --tan:         #C8A97D;
  --parchment:   #F4EDD8;
  --cream:       #F8F4EC;
  --charcoal:    #1A1A14;
  --mid:         #4A6B72;
  --warm-gray:   #7A8C8E;
  --white:       #FFFDF8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Crimson Pro', 'Book Antiqua', Georgia, serif;
  --font-label:   'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ── Utility ── */
.container { width: 100%; padding: 0 16px; }
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { max-width: 1140px; margin: 0 auto; padding: 0 32px; } }

.section-label {
  font-family: var(--font-label);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.75rem); color: var(--deep-teal); line-height: 1.2; margin-bottom: 16px;
}
@media (min-width: 640px)  { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-intro { font-size: 1rem; color: var(--mid); margin-bottom: 32px; line-height: 1.75; }
@media (min-width: 640px) { .section-intro { font-size: 1.1rem; } }

.btn {
  display: inline-block; font-family: var(--font-label);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 24px; border: 2px solid var(--copper); color: var(--copper);
  transition: all .25s; cursor: pointer; background: transparent; text-align: center;
}
.btn:hover { background: var(--copper); color: var(--white); }
.btn-solid { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn-solid:hover { background: var(--deep-teal); border-color: var(--deep-teal); color: var(--white); }
.btn-teal { border-color: var(--teal); color: var(--teal); }
.btn-teal:hover { background: var(--teal); color: var(--white); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--white); }
.btn-block { display: block; width: 100%; }

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  margin: 20px 0 28px;
}
@media (min-width: 640px) { .divider { width: 64px; margin: 24px 0 36px; } }

/* ── NAV ── */
.site-nav {
  background: var(--deep-teal); position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--copper);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 54px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; height: 58px; } }
@media (min-width: 1024px) { .nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; height: 62px; } }

.nav-logo { font-family: var(--font-display); font-size: 1rem; color: var(--parchment); white-space: nowrap; z-index: 2; }
@media (min-width: 640px) { .nav-logo { font-size: 1.15rem; } }
.nav-logo span { color: var(--gold-light); }

.nav-links {
  display: none; position: absolute; top: 54px; left: 0; right: 0;
  background: var(--deep-teal); flex-direction: column;
  padding: 8px 0 16px; border-bottom: 2px solid var(--copper); list-style: none; z-index: 99;
}
@media (min-width: 640px) { .nav-links { top: 58px; } }
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-label); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tan); padding: 12px 20px; border-left: 3px solid transparent; display: block; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); border-left-color: var(--gold-light); }
.nav-cta { margin: 8px 16px 0; background: var(--copper) !important; color: var(--white) !important; text-align: center; border-left: none !important; padding: 12px 16px !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

@media (min-width: 1024px) {
  .nav-links { display: flex !important; position: static; flex-direction: row; background: none; padding: 0; border: none; gap: 0; align-items: center; }
  .nav-links a { padding: 0 10px; height: 62px; display: flex; align-items: center; border-left: none; border-bottom: 3px solid transparent; font-size: 11px; }
  .nav-links a:hover, .nav-links a.active { border-left-color: transparent; border-bottom-color: var(--gold-light); }
  .nav-cta { margin: 0; padding: 8px 14px !important; height: auto !important; border-bottom: none !important; }
}
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--tan); display: block; transition: all .3s; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ── SPONSOR BAR ── */
.sponsor-bar {
  background: var(--copper); padding: 8px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
}
@media (min-width: 640px) { .sponsor-bar { flex-direction: row; justify-content: center; gap: 20px; padding: 10px 24px; } }
.sponsor-bar-label { font-family: var(--font-label); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,253,248,.6); }
.sponsor-name { font-family: var(--font-display); font-size: .9rem; color: var(--white); font-weight: 600; }
.sponsor-pipe { display: none; color: rgba(255,253,248,.3); }
@media (min-width: 640px) { .sponsor-pipe { display: inline; } }

/* ── SECTIONS ── */
.section { padding: 40px 0; }
@media (min-width: 640px) { .section { padding: 56px 0; } }
@media (min-width: 1024px) { .section { padding: 72px 0; } }
.section-alt { background: var(--parchment); }
.section-dark { background: var(--deep-teal); }
.section-teal { background: var(--teal); }
.section-dark .section-title, .section-teal .section-title { color: var(--parchment); }
.section-dark .section-intro, .section-teal .section-intro { color: var(--tan); }
.section-dark p, .section-teal p { color: var(--tan); }

/* ── CARDS ── */
.card-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.card { background: var(--white); border: 1px solid rgba(27,79,90,.15); border-top: 3px solid var(--teal); padding: 24px 20px; transition: box-shadow .25s, transform .25s; }
@media (min-width: 640px) { .card { padding: 28px 24px; } }
.card:hover { box-shadow: 0 6px 28px rgba(15,46,53,.1); transform: translateY(-2px); }
.card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--deep-teal); margin-bottom: 8px; }
.card p { font-size: .95rem; color: var(--warm-gray); }

/* ── SADDLE CARDS (shop) ── */
.saddle-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .saddle-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .saddle-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.saddle-card { background: var(--white); border: 1px solid rgba(27,79,90,.15); border-top: 3px solid var(--copper); display: flex; flex-direction: column; overflow: hidden; }
.saddle-img-wrap { aspect-ratio: 3/4; overflow: hidden; background: var(--parchment); }
.saddle-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .3s; }
.saddle-card:hover .saddle-img-wrap img { transform: scale(1.04); }
.saddle-card-body { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.saddle-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--deep-teal); margin-bottom: 8px; }
.saddle-specs { display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; flex: 1; }
.spec-item { font-family: var(--font-label); font-size: .75rem; letter-spacing: .04em; color: var(--warm-gray); }
.saddle-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--copper); font-weight: 700; margin-bottom: 12px; }

/* ── FEATURE TABLE ── */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 480px; }
@media (min-width: 640px) { .compare-table { font-size: .95rem; } }
.compare-table th { background: var(--deep-teal); color: var(--parchment); font-family: var(--font-label); letter-spacing: .08em; text-transform: uppercase; font-size: 11px; padding: 12px 14px; text-align: left; }
.compare-table td { padding: 11px 14px; border-bottom: 1px solid rgba(27,79,90,.1); }
.compare-table tr:nth-child(even) td { background: rgba(200,169,125,.08); }
.compare-table tr:hover td { background: rgba(27,79,90,.05); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(27,79,90,.15); padding: 18px 0; }
.faq-q { font-family: var(--font-display); font-size: 1.05rem; color: var(--deep-teal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--copper); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding-top: 12px; font-size: .95rem; color: var(--warm-gray); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CERT BADGE ── */
.cert-badge { background: var(--parchment); border-left: 4px solid var(--gold); padding: 16px 18px; display: flex; gap: 14px; align-items: center; margin: 20px 0; }
.cert-badge span { font-size: .9rem; color: var(--mid); line-height: 1.6; }
.cert-badge strong { color: var(--deep-teal); }

/* ── CONTACT CARD ── */
.contact-card { background: var(--parchment); border: 1px solid rgba(27,79,90,.15); border-top: 3px solid var(--copper); padding: 20px 18px; margin: 20px 0; }
.contact-card-label { font-family: var(--font-label); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); border-top: 3px solid var(--deep-teal); padding: 40px 0 24px; }
@media (min-width: 640px) { .site-footer { padding: 52px 0 28px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; } }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--parchment); margin-bottom: 10px; }
.footer-brand span { color: var(--gold-light); }
.footer-tagline { font-size: .9rem; line-height: 1.65; color: var(--warm-gray); margin-bottom: 16px; }
.footer-col h4 { font-family: var(--font-label); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--tan); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: var(--warm-gray); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; font-size: .8rem; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; } }
.footer-bottom p { color: rgba(138,121,104,.7); }
