
:root {
  --teal: #087f91;
  --teal-dark: #075f6d;
  --ink: #111827;
  --muted: #5d6b70;
  --paper: #ffffff;
  --soft: #f3f7f7;
  --line: #d7e3e5;
  --shadow: 0 12px 32px rgba(17, 24, 39, .10);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 34px), var(--max)); margin-inline: auto; }
.topbar {
  background: var(--ink);
  color: white;
  font-size: .92rem;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 66px; height: 66px; object-fit: contain; }
.brand-copy strong { display: block; letter-spacing: .11em; font-size: 1.02rem; }
.brand-copy span { color: var(--teal); font-family: Georgia, serif; font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 19px; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1rem;
}
.hero {
  min-height: 540px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(4,14,18,.22), rgba(4,14,18,.52)),
    url("images/bar-jm-banner.jpg") center/cover no-repeat;
  color: white;
}
.hero-card {
  width: min(820px, calc(100% - 36px));
  text-align: center;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  background: rgba(5, 18, 22, .64);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--teal);
}
.hero .eyebrow { color: #8ce7f1; }
.hero h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  margin: 10px 0 16px;
}
.hero p { font-size: clamp(1.05rem, 2.3vw, 1.3rem); max-width: 690px; margin: 0 auto; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--teal);
  background: var(--teal);
  color: white;
}
.button:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.button.secondary { background: transparent; border-color: white; }
.button.dark-secondary { background: white; color: var(--ink); border-color: var(--line); }
section { padding: 78px 0; }
section.soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 {
  margin: 6px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(17,24,39,.06);
}
.card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 24px; }
.card h3 { margin: 0 0 7px; font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; }
.card .meta { color: var(--teal-dark); font-weight: 800; margin-bottom: 8px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.checks { padding: 0; list-style: none; }
.checks li { margin: 9px 0; padding-left: 29px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.stat-band { background: var(--ink); color: white; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { display: block; color: #82dfeb; font-size: 1.8rem; font-family: Georgia, serif; }
.stat span { color: #d8e1e3; }
.page-hero {
  padding: 86px 0;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(4,14,18,.60), rgba(4,14,18,.72)),
    url("images/bar-jm-banner.jpg") center/cover no-repeat;
}
.page-hero p { max-width: 720px; margin: 0 auto; font-size: 1.12rem; }
.winner-card { position: relative; }
.ribbon {
  position: absolute; top: 15px; left: 15px; z-index: 3;
  background: var(--teal); color: white; padding: 8px 12px;
  border-radius: 999px; font-weight: 900; font-size: .8rem;
  box-shadow: var(--shadow);
}
.year-heading { display: flex; align-items: center; gap: 14px; margin: 46px 0 22px; }
.year-heading::after { content: ""; height: 2px; background: var(--line); flex: 1; }
.year-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 2.2rem; }
.sale-status {
  display: inline-block; margin-top: 15px; padding: 6px 11px; border-radius: 999px;
  background: #e6f5f7; color: var(--teal-dark); font-weight: 900; font-size: .82rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 800; margin-bottom: 5px; }
input, textarea, select {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid #c7d6d8;
  font: inherit; background: white;
}
textarea { min-height: 150px; resize: vertical; }
.notice {
  padding: 18px 20px;
  background: #e9f6f8;
  border-left: 5px solid var(--teal);
  border-radius: 10px;
  color: #264b52;
}
footer { background: #0c1518; color: white; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
footer h3 { margin-top: 0; }
footer a { color: #d9e9eb; text-decoration: none; display: block; margin: 5px 0; }
footer .fine { border-top: 1px solid #314044; margin-top: 36px; padding-top: 20px; color: #9fb1b6; font-size: .9rem; }
.gallery { columns: 3 260px; column-gap: 18px; }
.gallery figure { break-inside: avoid; margin: 0 0 18px; background: white; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.gallery img { width: 100%; }
.gallery figcaption { padding: 13px 15px; color: var(--muted); font-size: .92rem; }
@media (max-width: 900px) {
  .menu-button { display: inline-block; }
  .nav-links {
    display: none; position: absolute; left: 17px; right: 17px; top: 80px;
    flex-direction: column; align-items: stretch; gap: 0; background: white;
    border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .grid.three, .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand-copy { display: none; }
  .hero { min-height: 590px; }
  .hero-card { padding: 30px 20px; }
  section { padding: 58px 0; }
  .grid.three, .grid.two, .stats, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .topbar .container { min-height: 46px; font-size: .82rem; }
}

/* V3 cleaner mobile header */
.topbar .desktop-contact{display:flex;gap:18px;align-items:center;justify-content:center;width:100%}.topbar .mobile-contact{display:none;width:100%;justify-content:center;gap:26px}.topbar a{color:#fff;text-decoration:none;font-weight:800}.history-brand{display:grid;grid-template-columns:220px 1fr;gap:28px;align-items:center;padding:28px;background:#fff;border:1px solid var(--line);border-radius:var(--radius)}.history-brand img{width:100%;border-radius:14px}.hero-v3{min-height:650px;display:grid;align-items:end;background:linear-gradient(to top,rgba(5,15,18,.9),rgba(5,15,18,.08) 65%),url("images/grand-champion-steer.jpg") center/cover no-repeat;color:#fff}.hero-v3 .hero-inner{padding:72px 0 58px;max-width:780px}.hero-v3 h1{font-family:Georgia,serif;font-size:clamp(2.7rem,7vw,5.5rem);line-height:.98;margin:.35rem 0 1rem}.hero-v3 p{font-size:clamp(1.02rem,2vw,1.25rem)}.badge{display:inline-flex;padding:7px 11px;border-radius:999px;background:#e7f5f7;color:var(--teal-dark);font-weight:900;font-size:.8rem;margin:4px}.badge.homebred{background:#111827;color:#fff}@media(max-width:700px){.topbar .desktop-contact{display:none}.topbar .mobile-contact{display:flex}.topbar .container{min-height:42px}.nav-wrap{min-height:72px}.brand img{width:56px;height:56px}.hero-v3{min-height:570px;background-position:52% center}.hero-v3 .hero-inner{padding:52px 0 42px}.history-brand{grid-template-columns:1fr;text-align:center}.history-brand img{max-width:180px;margin:auto}}

.site-version {
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid #314044;
  border-radius: 10px;
  color: #8ce7f1;
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}
