/* Kelstead — kelstead.com (concept)
   Institutional equestrian: deep navy, gold, silver-gray, cool paper. */

:root {
  --navy: #1B2A44;
  --navy-deep: #101B2E;
  --navy-soft: #2C3E5C;
  --gold: #C9A24B;
  --gold-light: #E2C27A;
  --cream: #EAEDF2;
  --paper: #F8F9FB;
  --ink: #1A2230;
  --ink-soft: #4E586A;
  --tan: #AEB7C4;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

img, svg { max-width: 100%; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--navy); }

a { color: var(--navy); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */

.topline {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .04em;
  text-align: center;
  padding: 7px 16px;
}
.topline a { color: var(--gold-light); text-decoration: none; }

header.site {
  background: var(--paper);
  border-bottom: 1px solid rgba(16,27,46,.15);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .n1 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .17em;
  color: var(--navy);
  white-space: nowrap;
}
.brand-name .bay { color: var(--gold); }
.brand-name .n2 {
  font-size: 10.5px;
  letter-spacing: .34em;
  color: var(--gold);
  margin-top: 3px;
}
nav.links { display: flex; gap: 28px; align-items: center; }
nav.links a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--ink);
}
nav.links a:hover { color: var(--gold); }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s ease;
}
.btn:hover { background: #a1762f; }
.btn.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(234,237,242,.55);
}
.btn.ghost:hover { background: rgba(234,237,242,.1); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201,162,75,.18), transparent 60%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 90%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero .watermark {
  position: absolute;
  right: -160px;
  bottom: -60px;
  width: 720px;
  height: auto;
  opacity: .08;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 110px 24px 120px;
  max-width: 1120px;
  margin: 0 auto;
}
.hero .kicker {
  font-size: 13px;
  letter-spacing: .32em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 66px);
  max-width: 13em;
  font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lede {
  margin: 26px 0 38px;
  max-width: 34em;
  font-size: 19px;
  color: rgba(234,237,242,.85);
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--cream);
  border-bottom: 1px solid rgba(16,27,46,.12);
}
.trust .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.trust span {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust b { color: var(--navy); font-weight: 700; }
.trust .shoe { width: 24px; height: auto; flex: none; }

/* ---------- Sections ---------- */

section { padding: 88px 0; }

.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 10px;
}
.sec-head h2 { font-size: clamp(30px, 4vw, 42px); }
.sec-head p { margin-top: 14px; color: var(--ink-soft); }

/* Coverage cards */

.coverage { background: var(--paper); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid rgba(16,27,46,.14);
  border-top: 3px solid var(--gold);
  padding: 30px 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10,18,32,.12);
}
.card h3 { font-size: 24px; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Why / about */

.why { background: var(--navy); color: var(--cream); }
.why .sec-head h2, .why h3 { color: var(--cream); }
.why .sec-head p { color: rgba(234,237,242,.8); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.why-list { list-style: none; }
.why-list li {
  padding: 18px 0 18px 40px;
  position: relative;
  border-bottom: 1px solid rgba(234,237,242,.16);
  font-size: 17px;
  color: rgba(234,237,242,.92);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 20px;
  height: 20px;
  background: url('assets/logo-mark-reverse.svg') no-repeat center / contain;
  opacity: .9;
}
.about-card {
  background: var(--navy-deep);
  border: 1px solid rgba(234,237,242,.16);
  padding: 36px 34px;
}
.about-card h3 { font-size: 26px; margin-bottom: 12px; }
.about-card p { color: rgba(234,237,242,.82); font-size: 16px; margin-bottom: 12px; }
.about-card .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  margin-top: 18px;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--cream);
  border: 1px solid rgba(16,27,46,.14);
  padding: 34px 30px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

/* FAQ */

.faq { background: var(--cream); }
.faq details {
  border-bottom: 1px solid rgba(16,27,46,.16);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 26px;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; max-width: 46em; color: var(--ink-soft); }

/* Quote form */

.quote { background: var(--paper); }
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quote form {
  background: #fff;
  border: 1px solid rgba(16,27,46,.14);
  border-top: 3px solid var(--gold);
  padding: 36px 34px;
  display: grid;
  gap: 16px;
}
.quote label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.quote input, .quote textarea, .quote select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(16,27,46,.25);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
}
.quote input:focus, .quote textarea:focus, .quote select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.contact-lines { margin-top: 26px; display: grid; gap: 10px; font-size: 17px; }
.contact-lines b { color: var(--navy); }

/* ---------- Footer ---------- */

footer.site {
  background: var(--navy-deep);
  color: rgba(234,237,242,.75);
  padding: 56px 0 40px;
  font-size: 14px;
}
footer .foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
footer .brand-name .n1 { color: var(--cream); }
footer a { color: var(--gold-light); text-decoration: none; }
footer .fine {
  border-top: 1px solid rgba(234,237,242,.15);
  padding-top: 22px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(234,237,242,.55);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  nav.links a:not(.btn) { display: none; }
  .why-grid, .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { padding: 72px 24px 84px; }
  section { padding: 64px 0; }
}

/* Kelstead wordmark uses Cinzel */
.brand-name .n1 { font-family: "Cinzel", Georgia, serif; font-size: 19px; letter-spacing: .15em; }

/* --- Chrome-lockup showcase hero (2026-08-04) --- */
.hero.hero-showcase {
  background: radial-gradient(1100px 700px at 50% 30%, #17253f 0%, #0d1828 72%);
}
.hero.hero-showcase .hero-inner {
  padding: 44px 24px 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: min(560px, 90vw);
  height: auto;
  margin-bottom: 4px;
  -webkit-mask-image: radial-gradient(ellipse 60% 56% at 50% 50%, #000 52%, transparent 96%);
  mask-image: radial-gradient(ellipse 60% 56% at 50% 50%, #000 52%, transparent 96%);
}
.hero.hero-showcase h1 { font-size: clamp(30px, 4.4vw, 46px); max-width: 17em; }
.hero.hero-showcase p.lede { margin-left: auto; margin-right: auto; font-size: 18px; }
.hero.hero-showcase .cta-row { justify-content: center; }
