/* ==========================================================================
   MUNGATTA MURRAY GREY STUD - Heritage Editorial
   Type:    Libre Baskerville (display) / Inter (UI) / IBM Plex Mono (stud data)
   Palette: Wongan Hills wheatbelt, soft autumn.
   Contrast: body copy 14:1+, all accent text on its ground >= 4.5:1 (WCAG AA)
   ========================================================================== */

:root {
  /* ---- ground ---- */
  --paper:      #FAF7F1;
  --surface:    #FFFFFF;
  --sand:       #F1E9DA;
  --sand-deep:  #E4D8C0;
  --line:       #DDD1BA;
  --line-soft:  #EBE2D2;

  /* ---- ink ---- */
  --ink:        #1F1B17;   /* on paper = 16.8:1 */
  --ink-2:      #554C42;   /* on paper =  7.9:1 */
  --ink-3:      #7A6F62;   /* on paper =  4.8:1 */

  /* ---- accents ---- */
  --ochre:      #915A16;   /* harvest;  on paper = 6.4:1 */
  --ochre-lit:  #D6A254;   /* on charcoal = 8.1:1 */
  --clay:       #9C542F;
  --eucalypt:   #47563F;   /* bush green; on paper = 8.6:1 */
  --eucalypt-lit:#9DB08F;
  --charcoal:   #23201C;
  --charcoal-2: #2E2A25;

  /* ---- type ---- */
  --fd: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --fu: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  --fm: "IBM Plex Mono", "SF Mono", Menlo, monospace;

  --maxw: 1200px;
  --r-sm: 4px; --r-md: 10px; --r-lg: 18px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(31,27,23,.06);
  --shadow-md: 0 2px 6px rgba(31,27,23,.07), 0 14px 34px rgba(31,27,23,.07);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fu);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ochre); }

h1, h2, h3, h4 {
  font-family: var(--fd);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0 0 .55em;
  color: var(--ink);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
.narrow { max-width: 780px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- eyebrow, rule, mono ---------- */
.eyebrow {
  font-family: var(--fm);
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--ochre); margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; flex: none;
}
.eyebrow.on-dark { color: var(--ochre-lit); }
.rule { width: 58px; height: 2px; background: var(--ochre); margin: 22px 0; border: 0; }
.mono { font-family: var(--fm); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,241,.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; padding: 14px 30px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.brand .mark     { height: 62px; width: auto; }
.brand .wordmark { height: 40px; width: auto; }

.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a {
  color: var(--ink); text-decoration: none;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.site-nav a:hover { color: var(--ochre); border-bottom-color: var(--ochre); }
.site-nav a[aria-current="page"] { color: var(--ochre); border-bottom-color: var(--ochre); }

/* the contact item is a solid pill so it stands out */
.site-nav a.nav-cta {
  background: var(--ochre); color: #fff; border: 0; border-radius: var(--r-pill);
  padding: 11px 24px; box-shadow: 0 2px 10px rgba(145,90,22,.28);
}
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta[aria-current="page"] {
  background: var(--charcoal); color: #fff; box-shadow: 0 2px 14px rgba(31,27,23,.3);
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 9px 13px; font: 600 13px/1 var(--fu);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink); cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: flex-end;
  background: var(--charcoal); overflow: hidden;
}
.hero.short { min-height: 56vh; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,15,13,.5) 0%, rgba(18,15,13,.16) 36%, rgba(18,15,13,.9) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 30px 78px;
  max-width: var(--maxw); margin: 0 auto; width: 100%; color: #FAF7F1;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5rem); max-width: 15ch; color: #FAF7F1;
  text-shadow: 0 2px 26px rgba(0,0,0,.45);
}
.hero p.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 48ch; color: #EFE6D6;
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer;
  font-family: var(--fu); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  padding: 15px 30px; border-radius: var(--r-pill);
  border: 2px solid var(--ochre); background: var(--ochre); color: #fff;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); background: var(--charcoal); border-color: var(--charcoal); }
.btn.ghost { background: transparent; color: #FAF7F1; border-color: rgba(250,247,241,.75); }
.btn.ghost:hover { background: #FAF7F1; color: var(--ink); border-color: #FAF7F1; }
.btn.dark { background: var(--ink); border-color: var(--ink); }
.btn.dark:hover { background: var(--ochre); border-color: var(--ochre); }
.btn svg { width: 17px; height: 17px; }

/* ---------- sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.band-sand { background: var(--sand); }
.band-dark { background: var(--charcoal); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: var(--paper); }
.band-dark p, .band-dark li { color: #D5C9B6; }
.band-euc { background: var(--eucalypt); }
.band-euc h2, .band-euc h3 { color: #F4F1E7; }
.band-euc p { color: #DCE3D4; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(2.05rem, 3.8vw, 3.05rem); }
.section-head p { color: var(--ink-2); font-size: 1.06rem; margin: 0; }
.band-dark .section-head p { color: #C2B6A3; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 34px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- icon cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 34px 30px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card h3 { font-size: 1.42rem; margin-bottom: .4em; }
.card p { color: var(--ink-2); margin: 0; font-size: .97rem; }
.band-dark .card { background: var(--charcoal-2); border-color: rgba(221,209,186,.14); }
.band-dark .card:hover { border-color: rgba(221,209,186,.3); }

.icon {
  width: 54px; height: 54px; margin-bottom: 20px;
  display: grid; place-items: center; border-radius: var(--r-md);
  background: var(--sand); color: var(--ochre); border: 1px solid var(--line);
}
.icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.band-dark .icon { background: rgba(214,162,84,.14); border-color: rgba(214,162,84,.3); color: var(--ochre-lit); }

/* ---------- numbered pillars ---------- */
.pillar .num {
  font-family: var(--fm); font-size: 12px; font-weight: 600; letter-spacing: .16em;
  color: var(--ochre); display: block; margin-bottom: 14px;
}

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split-media { position: relative; }
.split-media img {
  width: 100%; height: 100%; max-height: 580px; object-fit: cover;
  border-radius: var(--r-md);
}
.split.reverse .split-media { order: 2; }
.media-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(35,32,28,.86); color: #EFE6D6; backdrop-filter: blur(6px);
  font-family: var(--fm); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--r-pill);
}

/* ---------- enterprise strip ---------- */
.enterprise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.enterprise > div { padding: 38px 32px; border-right: 1px solid var(--line-soft); }
.enterprise > div:last-child { border-right: 0; }
.enterprise h3 { font-size: 1.3rem; margin-bottom: .35em; }
.enterprise p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.enterprise .icon { width: 46px; height: 46px; margin-bottom: 16px; }
.enterprise .icon svg { width: 24px; height: 24px; }

/* ---------- sire cards ---------- */
.sire {
  display: grid; grid-template-columns: 400px 1fr; gap: 48px;
  align-items: start; padding: 52px 0; border-top: 1px solid var(--line);
}
.sire:first-of-type { border-top: 0; padding-top: 8px; }
.sire-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--sand-deep); border-radius: var(--r-md);
}
.sire h3 { font-size: 2.1rem; margin-bottom: .1em; }
.sire .reg {
  font-family: var(--fm); font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--ochre); margin: 0;
}
.spec {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0; margin: 24px 0 26px;
  border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden;
}
.spec div { padding: 13px 16px; border-right: 1px solid var(--line-soft); background: var(--surface); }
.spec div:last-child { border-right: 0; }
.spec .k {
  font-family: var(--fm); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); display: block; margin-bottom: 3px;
}
.spec .v { font-family: var(--fm); font-size: 14px; font-weight: 600; color: var(--ink); }
.lines {
  margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line);
  font-size: .93rem; color: var(--ink-2);
}
.lines strong {
  font-family: var(--fm); color: var(--ink-3); letter-spacing: .12em;
  font-size: 10.5px; text-transform: uppercase; display: inline-block; width: 52px;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat .figure {
  font-family: var(--fd); font-weight: 600; font-size: clamp(2.7rem, 5.2vw, 4rem);
  color: var(--ochre-lit); line-height: 1; display: block;
}
.stat .label {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #B5A896; margin-top: 12px; display: block;
}

/* ---------- timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 34px 42px; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--ochre);
}
.timeline .yr {
  font-family: var(--fm); font-size: 12px; font-weight: 600; letter-spacing: .14em;
  color: var(--ochre); display: block; margin-bottom: 4px;
}
.timeline h3 { font-size: 1.25rem; margin-bottom: .25em; }
.timeline p { color: var(--ink-2); margin: 0; font-size: .96rem; }

/* ---------- quote ---------- */
.pullquote {
  font-family: var(--fd); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.35;
  color: var(--ink); border-left: 3px solid var(--ochre); padding: 6px 0 6px 30px; margin: 0;
}
.band-dark .pullquote { color: var(--paper); border-left-color: var(--ochre-lit); }

/* ---------- map ---------- */
.map-wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--surface);
}
#satmap { width: 100%; height: 470px; background: var(--sand-deep); }
.map-side { padding: 38px 34px; border-left: 1px solid var(--line-soft); }
.map-side h3 { font-size: 1.5rem; }
.map-side p { color: var(--ink-2); font-size: .95rem; }
.coords {
  font-family: var(--fm); font-size: 12.5px; color: var(--ink-2);
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; margin-top: 18px;
}
.leaflet-container { font-family: var(--fu) !important; }
.pin-label {
  background: var(--charcoal); color: #fff; font-family: var(--fm);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* locator svg */
.locator { width: 100%; height: auto; }
.locator .land { fill: var(--sand-deep); stroke: var(--line); stroke-width: 1.4; stroke-linejoin: round; }
.locator .wa   { fill: var(--sand); stroke: var(--ochre); stroke-width: 1.6; }
.locator .ring { fill: none; stroke: var(--ochre); stroke-width: 1.4; opacity: .55;
  transform-box: fill-box; transform-origin: center; animation: pulse 2.8s var(--ease) infinite; }
.locator .dot  { fill: var(--ochre); }
.locator text  { font-family: var(--fm); font-size: 11px; letter-spacing: .08em; fill: var(--ink-2); }
.locator .place { fill: var(--ink); font-weight: 600; }
@keyframes pulse {
  0%   { transform: scale(.8); opacity: .75; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; gap: 18px; }
.contact-list .ic { flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: var(--r-sm); background: var(--sand); color: var(--ochre); border: 1px solid var(--line); }
.contact-list .ic svg { width: 19px; height: 19px; stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list .k {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); display: block; margin-bottom: 3px;
}
.contact-list .v { font-size: 1.08rem; color: var(--ink); }
.contact-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-list a:hover { border-bottom-color: var(--ochre); color: var(--ochre); }

form label {
  display: block; font-family: var(--fm); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 600; color: var(--ink-2); margin: 22px 0 7px;
}
form input, form textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 16px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: var(--r-sm);
}
form input:focus, form textarea:focus {
  outline: 2px solid var(--ochre); outline-offset: 1px; border-color: var(--ochre);
}
form textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .86rem; color: var(--ink-2); margin-top: 16px; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 0;
  font-family: var(--fd); font-size: 1.28rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--fm); color: var(--ochre); font-size: 1.4rem; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0 0 22px; color: var(--ink-2); max-width: 72ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: #B5A896; padding: 74px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 52px; }
.site-footer h4 {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper); margin: 0 0 18px; font-weight: 600;
}
.site-footer a { color: #B5A896; text-decoration: none; }
.site-footer a:hover { color: var(--ochre-lit); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-brand img { /* assets are pre-inverted (mark-light/wordmark-light); see legibility pass */ }
.footer-brand .mark { height: 62px; }
.footer-brand .wordmark { height: 40px; }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(221,209,186,.18);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: #8F8474;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .map-wrap { grid-template-columns: 1fr; }
  .map-side { border-left: 0; border-top: 1px solid var(--line-soft); }
  .enterprise { grid-template-columns: 1fr; }
  .enterprise > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .enterprise > div:last-child { border-bottom: 0; }
}
@media (max-width: 900px) {
  .g2, .g3, .g4, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .split { gap: 38px; }
  .split.reverse .split-media { order: 0; }
  .sire { grid-template-columns: 1fr; gap: 28px; }
  .sire-photo { max-width: 400px; }
  section { padding: 66px 0; }
  .brand .mark { height: 52px; }
  .brand .wordmark { height: 32px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 0 16px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 30px; border-bottom: 0; }
  .site-nav a.nav-cta { margin: 10px 30px 0; text-align: center; justify-content: center; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .brand .wordmark { display: none; }
  .brand .mark { height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   DENSITY COMPONENTS
   ========================================================================== */

/* ---------- identity strip: mono facts under the hero ---------- */
.idstrip { background: var(--charcoal-2); border-bottom: 1px solid rgba(221,209,186,.14); }
.idstrip ul {
  list-style: none; margin: 0 auto; padding: 0 30px; max-width: var(--maxw);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 34px;
}
.idstrip li {
  font-family: var(--fm); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: #C2B6A3; padding: 17px 0; display: flex; align-items: center; gap: 10px;
}
.idstrip li b { color: var(--ochre-lit); font-weight: 600; }
.idstrip li svg { width: 15px; height: 15px; stroke: var(--ochre-lit); fill: none; stroke-width: 1.6; flex: none; }

/* ---------- comparison table ---------- */
.tbl-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
table.cmp th, table.cmp td {
  text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line-soft);
  font-size: .92rem; white-space: nowrap;
}
table.cmp thead th {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); background: var(--sand); border-bottom: 1px solid var(--line); font-weight: 600;
}
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp tbody tr:hover { background: var(--sand); }
table.cmp td.name { font-family: var(--fd); font-size: 1.06rem; font-weight: 600; }
table.cmp td.name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
table.cmp td.name a:hover { color: var(--ochre); border-bottom-color: var(--ochre); }
table.cmp td.m { font-family: var(--fm); font-size: .84rem; color: var(--ink-2); }
table.cmp td.m b { color: var(--ochre); font-weight: 600; }

/* ---------- pedigree fork ---------- */
.ped {
  display: grid; grid-template-columns: auto 1fr; gap: 0 18px; align-items: center;
  margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line);
}
.ped .who {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); grid-column: 1; padding: 7px 0;
}
.ped .val { font-size: .93rem; color: var(--ink); padding: 7px 0; }
.ped .val i { font-style: normal; font-family: var(--fm); font-size: .78rem; color: var(--ink-3); }
.ped .fork {
  grid-column: 1 / -1; height: 1px; background: var(--line-soft); margin: 2px 0;
}

/* ---------- the stud year: 12-segment cycle ---------- */
.cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.cycle > div {
  padding: 22px 22px 24px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.cycle > div:nth-child(4n) { border-right: 0; }
.cycle > div:nth-last-child(-n+4) { border-bottom: 0; }
.cycle .when {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ochre); display: block; margin-bottom: 8px;
}
.cycle h4 { font-family: var(--fd); font-size: 1.12rem; margin: 0 0 .3em; }
.cycle p { margin: 0; font-size: .89rem; color: var(--ink-2); line-height: 1.6; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-sm); }
.gallery figcaption {
  font-family: var(--fm); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 10px;
}
.gallery figure.wide { grid-column: span 2; }
.gallery figure.wide img { aspect-ratio: 16/9; }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative; padding: 0 0 30px 62px; border-left: 2px solid var(--line);
  margin-left: 19px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(s); position: absolute; left: -20px; top: -4px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ochre); color: #fff; display: grid; place-items: center;
  font-family: var(--fm); font-size: 14px; font-weight: 600;
}
.steps h4 { font-family: var(--fd); font-size: 1.25rem; margin: 0 0 .25em; }
.steps p { margin: 0; color: var(--ink-2); font-size: .96rem; }

/* ---------- as-at stamp for perishable content ---------- */
.asat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); background: var(--sand); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.band-dark .asat { background: rgba(214,162,84,.12); border-color: rgba(214,162,84,.3); color: var(--ochre-lit); }

@media (max-width: 900px) {
  .cycle { grid-template-columns: repeat(2, 1fr); }
  .cycle > div:nth-child(4n) { border-right: 1px solid var(--line-soft); }
  .cycle > div:nth-child(2n) { border-right: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure.wide { grid-column: span 2; }
  .idstrip ul { gap: 0 20px; }
  .idstrip li { padding: 12px 0; font-size: 10px; }
}
@media (max-width: 560px) {
  .cycle, .gallery { grid-template-columns: 1fr; }
  .cycle > div { border-right: 0 !important; }
  .gallery figure.wide { grid-column: span 1; }
}

/* ==========================================================================
   CRAFT LAYER
   ========================================================================== */

:root {
  --ochre-deep: #7C4A12;   /* accent text on sand grounds - 6.90:1 on paper */
  --ink-warm:   #6B5F50;   /* secondary text on sand         - 5.15:1 on sand */
  --euc-deep:   #3F4D38;
  --ochre-euc:  #EDC891;   /* accent on eucalypt band        - 4.97:1 */
  --footer-dim: #9A8F7C;   /* was #8F8474 which failed AA    - 5.09:1 */

  --sp-3xl: clamp(112px, 11vw, 168px);
  --sp-2xl: clamp( 88px,  8vw, 128px);
  --sp-xl:  clamp( 68px,  6vw,  96px);
  --sp-lg:  clamp( 52px, 4.5vw,  72px);
}

/* ---- contrast corrections (all three previously failed AA) ---- */
.band-sand .spec .k, .band-sand .contact-list .k, .band-sand .gallery figcaption { color: var(--ink-warm); }
.band-euc .eyebrow, .band-euc a, .band-euc strong { color: var(--ochre-euc); }
.footer-bottom { color: var(--footer-dim); }

/* ---- rhythm: stop every section being 96px ---- */
section       { padding: var(--sp-2xl) 0; }
section.tight { padding: var(--sp-lg) 0; }
section.loose { padding: var(--sp-3xl) 0; }
section.flush-b { padding-bottom: 0; }

/* ---- icon primitives ---- */
.ico {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  width: 1em; height: 1em; display: block; flex: none;
}
.ico [fill="currentColor"] { fill: currentColor; }

/* ---- Libre Baskerville per role (static 400/700; display roles run 400) ---- */
h1, h2, h3, h4 { text-wrap: balance; }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem); line-height: 1.0; letter-spacing: -.024em;
}
.hero.short h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2, .section-head h2 {
  line-height: 1.08; letter-spacing: -.019em;
}
h3, .card h3, .pillar h3, .enterprise h3, .cycle h4 {
  letter-spacing: -.008em;
}
.sire h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.55rem); line-height: 1.04; letter-spacing: -.02em;
}
.stat .figure {
  font-weight: 400;
  font-variant-numeric: tabular-nums lining-nums; letter-spacing: -.032em;
}
body { letter-spacing: -.003em; font-feature-settings: "cv05" 1, "cv11" 1; }
p { max-width: 68ch; }

/* ---- pillars: oversized numeral behind, icon plate, top rule ---- */
.pillar { position: relative; border-top: 2px solid var(--ink); padding-top: 22px; }
.band-dark .pillar { border-top-color: var(--ochre-lit); }
.pillar__figure {
  position: absolute; top: -14px; right: 0; z-index: 0;
  font-family: var(--fd);
  font-size: clamp(4rem, 7vw, 6rem); line-height: .8;
  color: var(--sand-deep); pointer-events: none; user-select: none;
}
.band-sand .pillar__figure { color: var(--line); }
.band-dark .pillar__figure { color: rgba(214,162,84,.16); }
.pillar > *:not(.pillar__figure) { position: relative; z-index: 1; }

/* ---- card: ochre rail + drawn corner ---- */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  background: var(--ochre); border-radius: 0 3px 3px 0;
  transform: scaleY(0); transform-origin: top; transition: transform .26s var(--ease);
}
.card:hover::before { transform: scaleY(1); }
.card:hover .icon, .enterprise > div:hover .icon {
  background: var(--ochre); color: #fff; border-color: var(--ochre); transform: rotate(-3deg);
}
.icon { transition: background .22s var(--ease), color .22s var(--ease),
        border-color .22s var(--ease), transform .22s var(--ease); }
.icon .ico { width: 28px; height: 28px; }

/* ---- band edges: make a section change a felt event ---- */
.band-sand, .band-dark, .band-euc { position: relative; }
.band-sand::after {
  content: ""; position: absolute; top: 0; left: 50%; width: 84px; height: 3px;
  transform: translateX(-50%); background: var(--ochre); border-radius: 0 0 3px 3px;
}
.band-dark::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--ochre) 0 34%, transparent 34%), var(--sand-deep);
}

/* ---- furrow texture so the sand band reads as a material ---- */
.tex-furrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' width='28' height='28'%3E%3Cg stroke='%23915A16' stroke-width='1' stroke-linecap='round' opacity='.16'%3E%3Cpath d='M-4 18L18 -4'/%3E%3Cpath d='M10 32L32 10'/%3E%3Cpath d='M3 25L25 3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ---- decorative motifs ---- */
.motif-contour { display: block; width: 100%; height: clamp(70px,9vw,150px); color: var(--ochre); }
.motif-land    { display: block; width: 100%; height: clamp(120px,14vw,210px); color: var(--eucalypt); }
.site-footer .motif-land { color: #2E2A25; margin-bottom: -1px; }

/* ---- hero polish: layered scrim, warm wash, fade into paper ---- */
.hero { isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,15,13,.56) 0%, rgba(18,15,13,.14) 30%,
      rgba(18,15,13,.10) 46%, rgba(18,15,13,.70) 82%, rgba(18,15,13,.94) 100%),
    radial-gradient(120% 78% at 22% 84%, rgba(18,15,13,.58), transparent 62%);
}
.hero::after {
  background: linear-gradient(160deg, rgba(145,90,22,.16), rgba(71,86,63,.14));
  mix-blend-mode: soft-light;
}
.hero-plate {
  position: absolute; right: 30px; bottom: clamp(56px,7vw,92px); z-index: 2;
  display: grid; gap: 6px; text-align: right;
  font-family: var(--fm); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #E4D8C0; border-right: 2px solid var(--ochre-lit); padding-right: 14px;
}
@media (max-width: 900px) { .hero-plate { display: none; } }

/* ---- focus visibility ---- */
:where(a, button, input, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--ochre); outline-offset: 3px; border-radius: 3px;
}
.band-dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible { outline-color: var(--ochre-lit); }
:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: var(--r-sm);
  font: 600 13px/1 var(--fu); letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: top .16s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- button icon nudge ---- */
.btn .ico { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

/* ---- stats: gridded, with icons ---- */
.stats { gap: 0; border-top: 1px solid rgba(221,209,186,.20); border-bottom: 1px solid rgba(221,209,186,.20); }
.stat { padding: 40px 20px; border-right: 1px solid rgba(221,209,186,.16); transition: background .24s var(--ease); }
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(214,162,84,.06); }
.stat .ico { width: 22px; height: 22px; margin: 0 auto 16px; color: var(--ochre-lit); opacity: .75; }
.stat .label { color: #C2B6A3; }

/* ---- footer contact icons ---- */
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .ico { width: 17px; height: 17px; margin-top: 5px; color: var(--ochre-lit); opacity: .85; }
.contact-list .ic .ico { width: 19px; height: 19px; }

@media (prefers-reduced-motion: reduce) {
  .card:hover, .btn:hover, .stat:hover, .icon { transform: none !important; }
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(221,209,186,.16); }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(221,209,186,.16); }
}

/* ---------- lot cards with BREEDPLAN figures ---------- */
.lots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lot {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lot:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.lot > img { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--sand-deep); }
.lot-body { padding: 20px 22px 22px; }
.lot-no {
  font-family: var(--fm); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ochre-deep); display: block; margin-bottom: 5px;
}
.lot h3 { font-size: 1.18rem; margin-bottom: .1em; }
.lot .ident { font-family: var(--fm); font-size: 11.5px; color: var(--ink-3); margin: 0 0 14px; }
.ebv { border-top: 1px solid var(--line-soft); }
.ebv-row {
  display: grid; grid-template-columns: 1fr auto 46px;
  gap: 12px; align-items: center; padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ebv-row:last-child { border-bottom: 0; }
.ebv-row .k { font-size: .82rem; color: var(--ink-2); }
.ebv-row .v {
  font-family: var(--fm); font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums; color: var(--ink); text-align: right;
}
.ebv-row .avg {
  font-family: var(--fm); font-size: 10px; color: var(--ink-3);
  font-variant-numeric: tabular-nums; text-align: right;
}
.ebv-head {
  display: grid; grid-template-columns: 1fr auto 46px; gap: 12px;
  padding: 10px 0 6px; border-bottom: 1px solid var(--line);
  font-family: var(--fm); font-size: 9.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3);
}
.ebv-head span:nth-child(2), .ebv-head span:nth-child(3) { text-align: right; }
@media (max-width: 900px) { .lots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lots { grid-template-columns: 1fr; } }

/* ==========================================================================
   LEGIBILITY + POLISH PASS  (Curtis review 2026-08-24)
   ========================================================================== */

/* ---- 1. eyebrows were too small, too tracked-out and too light. Site-wide. ---- */
.eyebrow {
  font-size: 13px;              /* was 11.5 */
  letter-spacing: .14em;        /* was .20  - tight enough to read as a word */
  font-weight: 600;
  color: var(--ochre-deep);     /* 6.90:1 on paper, was 5.34:1 */
  gap: 12px;
}
.eyebrow::before { width: 30px; height: 2px; }
.eyebrow.on-dark { color: #E8B96B; }            /* 8.9:1 on charcoal */
.hero .eyebrow {
  color: #F2C87E;
  text-shadow: 0 1px 10px rgba(0,0,0,.85), 0 0 26px rgba(0,0,0,.55);
}
.hero .eyebrow::before { background: #F2C87E; box-shadow: 0 1px 6px rgba(0,0,0,.7); }
.band-euc .eyebrow { color: var(--ochre-euc); }

/* ---- 2. identity strip: bigger, weightier, higher contrast ---- */
.idstrip li {
  font-size: 12.5px;            /* was 11 */
  letter-spacing: .12em;        /* was .16 */
  font-weight: 500;
  color: #D9CDBB;               /* was #C2B6A3 -> now 10.4:1 */
  padding: 19px 0;
}
.idstrip li b { color: #E8B96B; font-weight: 600; }

/* ---- 3. every other mono label: up a size, tracking in ---- */
.stat .label      { font-size: 11.5px; letter-spacing: .13em; color: #CFC3B0; }
.spec .k          { font-size: 11px;   letter-spacing: .11em; }
.spec .v          { font-size: 15px; }
.lot-no           { font-size: 11px;   letter-spacing: .12em; }
.gallery figcaption { font-size: 11.5px; letter-spacing: .07em; color: var(--ink-2); }
.site-footer h4   { font-size: 11.5px; letter-spacing: .14em; }
form label        { font-size: 11.5px; letter-spacing: .12em; }
.contact-list .k  { font-size: 11.5px; letter-spacing: .12em; color: var(--ochre-deep); }
.timeline .yr     { font-size: 13px;   letter-spacing: .1em; }
.cycle .when      { font-size: 11.5px; letter-spacing: .12em; }
.media-tag        { font-size: 12px;   letter-spacing: .09em; }
.ebv-head         { font-size: 10.5px; letter-spacing: .1em; }
.ebv-row .k       { font-size: .88rem; color: var(--ink-2); }
.ebv-row .v       { font-size: 14px; }
table.cmp thead th { font-size: 11.5px; letter-spacing: .11em; }
table.cmp td.m    { font-size: .89rem; }

/* ---- 4. logo: bigger and crisper ---- */
.brand .mark     { height: 76px; }   /* was 62 */
.brand .wordmark { height: 52px; }   /* was 40 */
.brand img { image-rendering: -webkit-optimize-contrast; }
@media (max-width: 900px) {
  .brand .mark { height: 60px; } .brand .wordmark { height: 40px; }
}
@media (max-width: 560px) { .brand .mark { height: 54px; } }

/* ---- 5. footer lockup: use the pre-inverted assets, no CSS filter ---- */
.footer-brand, .footer-logo { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.footer-brand img, .footer-logo img { filter: none; opacity: 1; }
.footer-brand .mark,     .footer-logo .mark     { height: 78px; }
.footer-brand .wordmark, .footer-logo .wordmark { height: 50px; }

/* ---- 6. footer contact rows align, Facebook included ---- */
.footer-contact li { display: flex; gap: 13px; align-items: flex-start; line-height: 1.55; }
.footer-contact .ico { width: 18px; height: 18px; margin-top: 4px; color: var(--ochre-lit); opacity: .9; flex: none; }
.footer-contact li > span, .footer-contact li > a { flex: 1; min-width: 0; }

/* ---- 7. pillars: larger icon plates, numeral behind not colliding ---- */
.icon { width: 64px; height: 64px; border-radius: 14px; }
.icon .ico { width: 34px; height: 34px; }
.enterprise .icon { width: 58px; height: 58px; }
.enterprise .icon .ico { width: 30px; height: 30px; }
.pillar__figure { top: -6px; right: 4px; opacity: .85; }
.pillar { padding-top: 26px; }
.pillar .num { font-size: 13px; letter-spacing: .13em; }

/* ---- 8. windmill watermark on the dry-country band ---- */
.watermark { position: relative; overflow: hidden; }
.watermark > .wm {
  position: absolute; right: -2%; bottom: -8%; width: min(46%, 520px);
  color: var(--ochre-lit); opacity: .055; pointer-events: none; z-index: 0;
}
.watermark > .wrap { position: relative; z-index: 1; }
.band-sand .watermark > .wm, .watermark.on-light > .wm { color: var(--ochre); opacity: .07; }
@media (max-width: 900px) { .watermark > .wm { width: 62%; opacity: .04; } }

/* ---------- per-bull enquiry action (restores the pre-2017 per-animal form) ---------- */
.ask {
  display: flex; align-items: center; gap: 9px; margin-top: 16px;
  padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--sand); text-decoration: none;
  font-family: var(--fm); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--ochre-deep);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.ask .ico { width: 16px; height: 16px; flex: none; }
.ask:hover { background: var(--ochre); color: #fff; border-color: var(--ochre); }

/* ---------- full-bleed photographic interruption ---------- */
.bleed-band { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.bleed-band img { width: 100%; height: clamp(260px, 38vw, 520px); object-fit: cover; display: block; }
.bleed-band .cap {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 20px;
  max-width: var(--maxw); width: 100%; padding: 0 30px; line-height: 1.5;
  font-family: var(--fm); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #EFE6D6; text-shadow: 0 1px 12px rgba(0,0,0,.9);
}

/* ==========================================================================
   REVIEW PASS 3
   ========================================================================== */

/* ---- hero eyebrow: a local scrim so it reads over any photograph ---- */
.hero .eyebrow {
  display: inline-flex; align-items: center;
  padding: 9px 18px 9px 14px; border-radius: var(--r-pill);
  background: rgba(20,17,14,.58);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(242,200,126,.22);
  color: #F7D9A2; text-shadow: 0 1px 3px rgba(0,0,0,.9);
  font-size: 13px; letter-spacing: .13em;
}
.hero .eyebrow::before { width: 24px; box-shadow: none; }
/* and a soft wash behind the whole headline block */
.hero-content::before {
  content: ""; position: absolute; inset: -30px -40px -40px -40px; z-index: -1;
  background: radial-gradient(120% 130% at 12% 78%, rgba(16,13,11,.72), rgba(16,13,11,0) 68%);
  pointer-events: none;
}
.hero-content { isolation: isolate; }

/* ---- farm-motif watermark for the empty half of a text section ---- */
.wm-side { position: relative; overflow: hidden; }
.wm-side > .wm-art {
  position: absolute; right: -1%; top: 50%; transform: translateY(-46%);
  width: min(38%, 430px); color: var(--ink); opacity: .052;
  pointer-events: none; z-index: 0;
}
.wm-side > .wrap { position: relative; z-index: 1; }
.band-dark .wm-side > .wm-art, .wm-side.on-dark > .wm-art { color: var(--paper); opacity: .05; }
@media (max-width: 980px) { .wm-side > .wm-art { width: 62%; opacity: .035; } }

/* ---- contact: compact, map beneath the details, both above the fold ---- */
.contact-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-compact .contact-list li { padding: 13px 0; gap: 14px; }
.contact-compact .contact-list .v { font-size: 1rem; line-height: 1.45; }
.contact-compact .contact-list .ic { width: 34px; height: 34px; }
.contact-compact .contact-list .ic .ico { width: 17px; height: 17px; }
.contact-compact form label { margin: 14px 0 6px; }
.contact-compact form input, .contact-compact form textarea { padding: 11px 13px; }
.contact-compact form textarea { min-height: 104px; }
#locmap {
  width: 100%; height: 320px; border: 1px solid var(--line);
  border-radius: var(--r-md); margin-top: 22px; background: var(--sand-deep);
}
.map-legend {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px;
  font-family: var(--fm); font-size: 11px; letter-spacing: .08em; color: var(--ink-2);
}
.map-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 7px; vertical-align: 0; }
.pin-farm { background: var(--ochre); }
.pin-town { background: var(--eucalypt); }
.leaflet-container { font-family: var(--fu) !important; font-size: 12px; }

/* ---- form states ---- */
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm); font-size: .9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok  { background: #E4EFE6; border: 1px solid #BDD6C4; color: #2F5B3F; }
.form-msg.err { background: #FBF0E4; border: 1px solid #E5C79A; color: #8A5A20; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) { .contact-compact { grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   REVIEW PASS 4
   ========================================================================== */

/* the rule in front of the hero eyebrow reads as a stray mark inside the pill */
.hero .eyebrow::before { display: none; }
.hero .eyebrow { padding: 9px 18px; }

/* watermark: larger, bleeding off the right edge */
.wm-side > .wm-art {
  width: min(54%, 620px); right: -11%; opacity: .06;
  transform: translateY(-48%);
}
.band-dark .wm-side > .wm-art, .wm-side.on-dark > .wm-art { opacity: .055; }
@media (max-width: 980px) { .wm-side > .wm-art { width: 78%; right: -18%; opacity: .04; } }

/* the existing single-glyph watermark, also nudged out */
.watermark > .wm { width: min(52%, 580px); right: -8%; bottom: -12%; }

/* contact hero: shorter, so the useful content sits higher */
.hero.slim { min-height: 0; height: clamp(200px, 26vw, 300px); }
.hero.slim .hero-content { padding-bottom: clamp(26px, 3vw, 40px); }
.hero.slim h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* contact columns: balance the two column heights */
.contact-compact { align-items: stretch; }
.contact-compact > div { display: flex; flex-direction: column; }
.contact-compact #locmap { flex: 1 1 auto; min-height: 260px; margin-top: 18px; }
.contact-compact form { display: flex; flex-direction: column; flex: 1 1 auto; }
.contact-compact .contact-list li { padding: 11px 0; }

/* push the form's closing note to the base so both columns finish level */
.contact-compact form .form-note { margin-top: auto; padding-top: 18px; }
.contact-compact #locmap { min-height: 300px; }

/* ==========================================================================
   REVIEW PASS 5
   ========================================================================== */

/* the oversized numeral collided with the rule above it, and the scene motif
   now carries that decorative weight - the small mono ordinal is enough */
.pillar__figure { display: none; }

/* one consistent scrim over the hero photograph, no radial edge */
.hero-content::before { display: none; }
.hero::before {
  background: linear-gradient(180deg,
    rgba(18,15,13,.52) 0%, rgba(18,15,13,.30) 34%,
    rgba(18,15,13,.44) 62%, rgba(18,15,13,.88) 100%);
}
.hero::after { background: linear-gradient(160deg, rgba(145,90,22,.12), rgba(71,86,63,.10)); }
/* the pill no longer needs its own dark chip against an even scrim */
.hero .eyebrow {
  background: rgba(20,17,14,.34);
  border-color: rgba(242,200,126,.28);
}

/* the scene motif reads better a touch larger and lower */
.wm-side > .wm-art { width: min(58%, 680px); right: -10%; transform: translateY(-42%); }
@media (max-width: 980px) { .wm-side > .wm-art { width: 86%; right: -20%; } }

/* ---------- journal: a dated archive, not a news feed ---------- */
.journal { border-top: 1px solid var(--line); }
.entry {
  display: grid; grid-template-columns: 190px 1fr; gap: 40px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.entry-meta time {
  font-family: var(--fm); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ochre-deep); display: block; padding-top: 6px;
}
.entry-body h3 {
  font-size: clamp(1.4rem, 2.3vw, 1.85rem); margin-bottom: .4em;
}
.entry-body p { color: var(--ink-2); margin: 0 0 1em; max-width: 66ch; }
.entry-media { display: grid; gap: 14px; margin-top: 22px; }
.entry-media.two { grid-template-columns: 1fr 1fr; }
.entry-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-md); border: 1px solid var(--line-soft);
}
.entry-media:not(.two) img { max-width: 460px; }
@media (max-width: 780px) {
  .entry { grid-template-columns: 1fr; gap: 12px; padding: 30px 0; }
  .entry-meta time { padding-top: 0; }
  .entry-media.two { grid-template-columns: 1fr; }
}

/* ---------- offer cards as links through to a pre-filled enquiry ---------- */
a.card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
a.card-link p { flex: 1 1 auto; }
.card-go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: var(--fm); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--ochre-deep);
}
.card-go .ico { width: 15px; height: 15px; transition: transform .2s var(--ease); }
a.card-link:hover .card-go .ico { transform: translateX(4px); }
a.card-link:hover .card-go { color: var(--ochre); }
