:root{
  --bg: #0f1212;
  --paper: #121717;
  --card: #151c1c;
  --text: #e9eceb;
  --muted: #b7c0bd;
  --line: rgba(233,236,235,.14);
  --accent: #cbb26a;
  --accent2:#7fb3a6;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(203,178,106,.12), transparent 60%),
    radial-gradient(800px 600px at 90% 10%, rgba(127,179,166,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #0b0d0d 80%);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 16px; top: 16px; width:auto; height:auto; padding:10px 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  z-index: 9999;
}

.header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15,18,18,.72);
  border-bottom: 1px solid var(--line);
}
.topbar{
  display:flex; align-items:flex-start; justify-content:space-between;
  padding: 14px 0 10px;
  gap: 16px;
}
.brand__name{
  display:inline-block;
  font-family: var(--serif);
  letter-spacing: .2px;
  font-size: 22px;
}
.brand__tag{
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}
.topbar__right{
  display:flex; align-items:center; gap: 12px;
}
.contact-mini{
  display:flex; flex-wrap:wrap; gap: 10px 12px;
  justify-content:flex-end;
}
.contact-mini__item{
  color: var(--muted);
  font-size: 12.5px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21,28,28,.55);
}
.nav{
  border-top: 1px solid var(--line);
}
.nav__inner{
  display:flex; gap: 12px;
  padding: 10px 0 12px;
  flex-wrap: wrap;
  overflow: visible;
}
.nav__link{
  white-space: nowrap;
  font-size: 13.5px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
}
.nav__link:hover{
  background: rgba(203,178,106,.10);
  border-color: rgba(203,178,106,.25);
  color: var(--text);
  text-decoration:none;
}
.nav__link.is-active{
  background: rgba(203,178,106,.14);
  border-color: rgba(203,178,106,.35);
  color: var(--text);
}

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(21,28,28,.55);
  cursor: pointer;
}
.nav-toggle__bar{
  display:block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: var(--text);
  opacity: .85;
}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.hero{
  padding: 34px 0 10px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}
.hero__title{
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 10px;
}
.hero__sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.hero__actions{
  display:flex; gap: 12px; flex-wrap:wrap;
  margin-bottom: 12px;
}
.hero__note{
  color: rgba(233,236,235,.75);
  font-size: 12.5px;
  margin: 0;
}
.hero__note code{
  background: rgba(233,236,235,.07);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 8px;
}

.photo{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 30% 0%, rgba(203,178,106,.18), transparent 60%),
    radial-gradient(500px 500px at 70% 40%, rgba(127,179,166,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.22));
  box-shadow: var(--shadow);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.photo--hero{ min-height: 320px; }
.photo__label{
  position:absolute;
  right: 14px; bottom: 14px;
  font-size: 12.5px;
  color: rgba(233,236,235,.8);
  background: rgba(15,18,18,.55);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.section{
  padding: 22px 0 44px;
}
.kicker{
  color: rgba(233,236,235,.85);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  margin: 0 0 10px;
}
.h2{
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 10px;
}
.lead{
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  grid-column: span 4;
  border: 1px solid var(--line);
  background: rgba(21,28,28,.58);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.card--wide{ grid-column: span 6; }
.card--full{ grid-column: 1 / -1; }
.card__title{
  font-weight: 600;
  margin: 0 0 6px;
  font-size: 16px;
}
.card__meta{
  color: var(--muted);
  font-size: 12.5px;
  margin: 0 0 10px;
}
.card__text{
  color: rgba(233,236,235,.88);
  font-size: 14px;
  margin: 0 0 14px;
}
.badges{
  display:flex; flex-wrap:wrap; gap: 8px;
}
.badge{
  font-size: 12px;
  color: rgba(233,236,235,.9);
  background: rgba(233,236,235,.06);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}
.badge--accent{
  background: rgba(203,178,106,.14);
  border-color: rgba(203,178,106,.35);
}

.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(21,28,28,.55);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{ text-decoration:none; }
.btn--primary{
  background: rgba(203,178,106,.18);
  border-color: rgba(203,178,106,.35);
}
.btn--ghost{
  background: transparent;
}
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(233,236,235,.88);
}
.list li{ margin: 6px 0; }

.notice{
  border: 1px dashed rgba(203,178,106,.45);
  background: rgba(203,178,106,.08);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin: 14px 0 0;
  color: rgba(233,236,235,.9);
}

.table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  text-align:left;
  font-size: 13.5px;
}
.table th{
  background: rgba(233,236,235,.05);
  color: rgba(233,236,235,.9);
  font-weight: 600;
}
.table td{
  color: rgba(233,236,235,.86);
}
.table tr:last-child td{ border-bottom: 0; }

.footer{
  border-top: 1px solid var(--line);
  background: rgba(10,12,12,.65);
  padding: 26px 0 18px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer__title{
  font-family: var(--serif);
  font-size: 18px;
}
.footer__text{
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.footer__cols{
  display:flex; gap: 28px; flex-wrap:wrap;
}
.footer__heading{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,236,235,.85);
  margin-bottom: 8px;
}
.footer__link{
  display:block;
  color: var(--muted);
  font-size: 13px;
  margin: 6px 0;
}
.footer__link:hover{ color: var(--text); text-decoration:none; }
.footer__bottom{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(233,236,235,.75);
  font-size: 12.5px;
  flex-wrap:wrap;
}
.footer__sep{ opacity: .55; }

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .card{ grid-column: 1 / -1; }
  .card--wide{ grid-column: 1 / -1; }
}

@media (max-width: 720px){
  .contact-mini{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; flex-direction:column; }
  .nav{ display:none; }
  .nav.is-open{ display:block; }
  .nav__inner{ padding: 12px 0 14px; flex-wrap:wrap; }
  .nav__link{ white-space: normal; }
}


/* Clickable horse cards */
.card--link{
  display:block;
  text-decoration:none;
  color: inherit;
}
.card--link:hover{
  text-decoration:none;
  border-color: rgba(203,178,106,.45);
  background: rgba(21,28,28,.70);
}
.card__cta{
  margin-top: 12px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(233,236,235,.85);
}
