/* ============================================================
   LAILI BLOODSTOCK V3 — "ORANGE & PINK"
   Vibrant warm palette — coral orange · hot pink · warm cream
   XeniaOne Studio · 2026
   ============================================================ */

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

/* --- Custom Properties --- */
:root {
  --orange:        #E8531C;
  --orange-dark:   #C43A0A;
  --orange-light:  #F47340;
  --orange-pale:   #FDEEE6;
  --pink:          #D6356A;
  --pink-light:    #E85585;
  --pink-pale:     #FCE4ED;
  --cream:         #FFF8F3;
  --cream-mid:     #FFE9D9;
  --cream-dark:    #F5C9AA;
  --ink:           #1C0905;
  --ink-soft:      #2E1208;
  --muted:         #7A4028;
  --border:        #F0C4A8;
  --white:         #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section-pad:     clamp(72px, 9vw, 128px);
  --container-width: 1280px;
  --ease:            cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:           116px;
  --radius:          3px;
  --radius-lg:       12px;

  --grad-warm: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  --grad-warm-soft: linear-gradient(135deg, var(--orange-light) 0%, var(--pink-light) 100%);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
}

/* --- Typography --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--pink);
  opacity: 0.5;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
}
.section-heading--light { color: var(--white); }
.section-heading em { font-style: italic; color: var(--orange); }
.section-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 14px;
  font-weight: 300;
  line-height: 1.82;
}
.section-intro--light { color: rgba(255,248,243,0.62); }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 14px auto 0; }
.section-header--center .section-label { justify-content: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.24s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-warm);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,83,28,0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,83,28,0.45); }
.btn--pink { background: var(--pink); color: var(--white); box-shadow: 0 4px 18px rgba(214,53,106,0.3); }
.btn--pink:hover { background: var(--pink-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }

/* ============================================================
   NAV — white, orange accents
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(232,83,28,0.1); }
.nav__inner {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 13px; }

/* Logo mark — wordmark image */
.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav__logo:hover .nav__logo-img { opacity: 0.82; }

/* Footer logo */
.footer__logo-img {
  height: 55px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--orange); }
.nav__cta {
  background: var(--grad-warm) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 3px 14px rgba(232,83,28,0.3);
}
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,83,28,0.4) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.28s var(--ease);
  transform-origin: center;
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 20px) 28px 28px;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    box-shadow: -6px 0 40px rgba(0,0,0,0.2);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links li { width: 100%; border-bottom: 1px solid rgba(255,248,243,0.07); }
  .nav__links a { display: block; padding: 15px 0; font-size: 15px; color: rgba(255,248,243,0.8); }
  .nav__links a:hover { color: var(--orange-light); }
  .nav__cta { margin-top: 16px; display: block !important; text-align: center; }
}

/* ============================================================
   HERO — warm gradient overlay, big editorial type
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding-top: var(--nav-h);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    150deg,
    rgba(28,9,5,0.62) 0%,
    rgba(196,58,10,0.38) 38%,
    rgba(214,53,106,0.18) 65%,
    rgba(28,9,5,0.75) 100%
  );
}
/* Decorative circle behind content */
.hero__circle {
  position: absolute;
  top: -140px; left: -140px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,248,243,0.04);
  border: 1px solid rgba(255,248,243,0.08);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,248,243,0.7);
  margin-bottom: 24px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--orange-light);
  opacity: 0.8;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 122px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__heading em { font-style: italic; color: rgba(255,248,243,0.75); }
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 21px);
  font-style: italic;
  color: rgba(255,248,243,0.62);
  margin-bottom: 44px;
  font-weight: 400;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Scroll line */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; align-items: center; gap: 10px;
}
.hero__scroll-line {
  display: block; width: 40px; height: 1px;
  background: rgba(255,248,243,0.4);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }
.hero__scroll span { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,248,243,0.45); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--ink); padding: 72px 0; position: relative; overflow: hidden; }
.stats-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-warm);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stats-band__grid::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1px; height: 70%; background: rgba(255,248,243,0.06);
}
.stat-item { text-align: center; }
.stat-item__row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 2px; margin-bottom: 10px;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900; line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__suffix {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,248,243,0.35);
}
@media (max-width: 680px) {
  .stats-band { padding: 56px 0; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); padding: var(--section-pad) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about__text .section-heading { margin-bottom: 28px; }
.about__text p { color: var(--muted); margin-bottom: 20px; font-size: 16px; line-height: 1.85; }
.about__text .btn { margin-top: 14px; }
.about__pull {
  background: var(--grad-warm);
  color: var(--white);
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.about__pull::before {
  content: '\201C';
  position: absolute; top: -30px; right: 20px;
  font-family: var(--font-display);
  font-size: 160px; color: rgba(255,255,255,0.1);
  line-height: 1; pointer-events: none;
}
.about__pull blockquote {
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  line-height: 1.55; color: rgba(255,255,255,0.95); position: relative;
}
.about__pull-attr {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 16px; position: relative;
}
.about__approach h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.about__approach p { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 16px; }
.about__callout {
  background: var(--orange-pale);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--orange);
  padding: 20px 24px; border-radius: var(--radius); margin-top: 24px;
}
.about__callout p { font-size: 14px; color: var(--ink); margin: 0; line-height: 1.65; }
.about__callout strong { color: var(--orange-dark); }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   FEATURED HORSES
   ============================================================ */
.featured { background: var(--ink); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.featured::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,83,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.featured .section-heading--light { color: var(--white); }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: rgba(255,248,243,0.04);
  border: 1px solid rgba(255,248,243,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feat-card:hover { transform: translateY(-5px); border-color: rgba(232,83,28,0.5); }
.feat-card__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.feat-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.5s var(--ease); }
.feat-card:hover .feat-card__img img { transform: scale(1.06); }
.feat-card__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad-warm); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.feat-card__body { padding: 28px; }
.feat-card__cat { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-light); display: block; margin-bottom: 8px; }
.feat-card__name { font-family: var(--font-display); font-size: 27px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.feat-card__meta { font-size: 12px; color: rgba(255,248,243,0.35); margin-bottom: 14px; }
.feat-card__desc { font-size: 14px; color: rgba(255,248,243,0.6); line-height: 1.72; }
@media (max-width: 900px) { .featured__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ============================================================
   BREEDING
   ============================================================ */
.breeding { background: var(--cream-mid); padding: var(--section-pad) 0; }
.breeding__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.breeding__text p { color: var(--muted); font-size: 16px; line-height: 1.85; margin: 18px 0; }
.breeding__partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.breeding__partner {
  display: flex; align-items: center; gap: 15px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px 20px; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.breeding__partner:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(28,9,5,0.1); border-color: var(--orange); }
.breeding__partner-badge { position: relative; width: 54px; height: 54px; flex-shrink: 0; }
.breeding__partner-mark {
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; overflow: hidden; box-shadow: 0 0 0 4px rgba(232,83,28,0.07);
}
.breeding__partner-mark img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.breeding__partner-flag {
  position: absolute; right: -3px; bottom: -3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.14);
}
.breeding__partner-text strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.breeding__partner-text span { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) { .breeding__partners { grid-template-columns: 1fr; max-width: 420px; } }
.breeding__image { border-radius: var(--radius-lg); overflow: hidden; height: 400px; position: relative; }
.breeding__image img { width: 100%; height: 100%; object-fit: cover; }
.breeding__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(232,83,28,0.15), transparent);
  border-radius: var(--radius-lg);
}
@media (max-width: 900px) { .breeding__grid { grid-template-columns: 1fr; gap: 44px; } .breeding__image { height: 260px; } }

/* ============================================================
   OWNERSHIP
   ============================================================ */
.ownership { background: var(--ink-soft); padding: var(--section-pad) 0; color: var(--white); position: relative; overflow: hidden; }
.ownership::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-warm);
}
.ownership .section-heading--light { color: var(--white); }
.ownership__tabs {
  display: flex; border-bottom: 1px solid rgba(255,248,243,0.1);
  margin-bottom: 52px; overflow-x: auto;
}
.own-tab {
  padding: 14px 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,248,243,0.4); border-bottom: 2px solid transparent; margin-bottom: -1px;
  white-space: nowrap; transition: color 0.2s, border-color 0.2s; cursor: pointer;
}
.own-tab:hover { color: rgba(255,248,243,0.78); }
.own-tab.active { color: var(--orange-light); border-color: var(--orange); }
.own-panel { display: none; }
.own-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.own-panel__text h3 { font-family: var(--font-display); font-size: 32px; font-style: italic; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.own-panel__text p { font-size: 15px; color: rgba(255,248,243,0.58); line-height: 1.85; margin-bottom: 16px; }
.own-panel__text .btn { margin-top: 8px; }
.own-panel__features { display: flex; flex-direction: column; gap: 12px; }
.own-feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,248,243,0.05); border: 1px solid rgba(255,248,243,0.08);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.own-feature:hover { border-color: rgba(232,83,28,0.35); background: rgba(232,83,28,0.06); }
.own-feature__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.own-feature__title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.own-feature__desc { font-size: 13px; color: rgba(255,248,243,0.48); line-height: 1.62; }
@media (max-width: 900px) { .own-panel.active { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--ink);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.team::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,83,28,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.team .section-heading { color: var(--white); }
.team .section-label { color: var(--orange-light); }
.team .section-label::before, .team .section-label::after { background: var(--orange-light); }
.team .section-intro { color: rgba(255,248,243,0.52); }
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px; max-width: 960px; margin: 0 auto;
}
.team-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-8px); }
.team-card__photo {
  width: 100%; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 28px;
  background: var(--ink-soft);
  position: relative;
  box-shadow: 0 0 0 3px var(--orange), 0 0 0 7px rgba(232,83,28,0.14), 0 20px 52px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s var(--ease);
}
.team-card:hover .team-card__photo {
  box-shadow: 0 0 0 3px var(--orange-light), 0 0 0 7px rgba(232,83,28,0.22), 0 24px 60px rgba(0,0,0,0.48);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; transition: transform 0.45s var(--ease); filter: grayscale(15%); }
.team-card:hover .team-card__photo img { transform: scale(1.07); filter: grayscale(0%); }
.team-card__photo::after { display: none; }
.team-card__body { padding: 0 4px; }
.team-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.team-card__role {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--grad-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; display: block;
}
.team-card__bio { font-size: 13px; color: rgba(255,248,243,0.48); line-height: 1.82; }
@media (max-width: 760px) { .team__grid { grid-template-columns: 1fr; max-width: 360px; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); padding: var(--section-pad) 0; color: var(--white); }
.contact .section-heading--light { color: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__info p { font-size: 15px; color: rgba(255,248,243,0.55); line-height: 1.85; margin: 18px 0; }
.contact__details { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact__detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,248,243,0.7); }
.contact__detail strong { color: var(--white); font-weight: 500; }
.contact__form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,248,243,0.05);
  border: 1px solid rgba(255,248,243,0.12);
  border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,248,243,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--ink); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#formSuccess { display: none; text-align: center; padding: 48px 0; }
#formSuccess h3 { font-family: var(--font-display); font-size: 30px; color: var(--orange-light); margin-bottom: 10px; }
#formSuccess p { color: rgba(255,248,243,0.55); font-size: 15px; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-soft); border-top: 1px solid rgba(255,248,243,0.07); padding: 56px 0 36px; }
.footer__main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
  align-items: start; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,248,243,0.06); margin-bottom: 28px;
}
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(255,248,243,0.28); }
.footer__nav-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,248,243,0.35); margin-bottom: 16px; }
.footer__nav-links { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-links a { font-size: 13px; color: rgba(255,248,243,0.35); transition: color 0.2s; }
.footer__nav-links a:hover { color: var(--orange-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 12px; color: rgba(255,248,243,0.22); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,248,243,0.22); transition: color 0.2s; }
.footer__legal a:hover { color: var(--orange-light); }
@media (max-width: 680px) { .footer__main { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-warm);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(28,9,5,0.28));
  pointer-events: none;
}
.page-hero__label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); display: block; margin-bottom: 14px; position: relative;
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 16px; position: relative;
}
.page-hero__sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.75; position: relative;
}

/* ============================================================
   HORSES PAGE
   ============================================================ */
.horses-page { background: var(--cream); padding: var(--section-pad) 0; }
.horses__filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1.5px solid var(--border); border-radius: 100px;
  background: var(--white); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { color: var(--orange); border-color: var(--orange); }
.filter-btn.active { background: var(--grad-warm); color: var(--white); border-color: transparent; box-shadow: 0 3px 12px rgba(232,83,28,0.3); }

.horses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.horse-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.horse-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(232,83,28,0.12); border-color: var(--orange); }
.horse-card.hidden { display: none; }
.horse-card__img {
  aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: var(--cream-mid);
}
.horse-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); object-position: center 25%; }
.horse-card:hover .horse-card__img img { transform: scale(1.06); }
.horse-card__tag {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; color: var(--white);
}
.horse-card__tag--racehorse { background: var(--grad-warm); }
.horse-card__tag--broodmare { background: var(--pink); }
.horse-card__tag--yearling  { background: #6f8f4a; }
.horse-card__tag--foal      { background: rgba(255,255,255,0.9); color: var(--orange); border: 1px solid rgba(232,83,28,0.3); }
.horse-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(196,58,10,0.82) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  display: flex; align-items: flex-end; padding: 16px;
}
.horse-card:hover .horse-card__overlay { opacity: 1; }
.horse-card__overlay-text { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.horse-card__body { padding: 18px 20px 20px; }
.horse-card__name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 5px; line-height: 1.2; }
.horse-card__detail { font-size: 12px; color: var(--muted); line-height: 1.6; }
.horse-card__trainer {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; font-size: 12px; font-weight: 500; color: var(--orange);
}
.horse-card__trainer::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--grad-warm); flex-shrink: 0;
}

/* ============================================================
   GRADUATES STRIP
   ============================================================ */
.graduates { background: var(--grad-warm); padding: 48px 0; }
.graduates__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.15); }
.graduate-item { background: transparent; padding: 30px 36px; text-align: center; }
.graduate-item__race { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: block; }
.graduate-item__name { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.graduate-item__result { font-size: 13px; color: rgba(255,255,255,0.65); }
@media (max-width: 680px) { .graduates__grid { grid-template-columns: 1fr; } }

/* ============================================================
   TRAINERS PAGE — card grid with warm accents
   ============================================================ */
.trainers-page { background: var(--cream); padding: var(--section-pad) 0; }
.trainers__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.trainer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.trainer-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(232,83,28,0.1); border-color: var(--orange); }
.trainer-card__head { display: flex; align-items: center; gap: 16px; padding: 22px 24px 0; }
.trainer-card__photo { width: 84px; height: 84px; border-radius: 16px; overflow: hidden; background: var(--cream-mid); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(232,83,28,0.1); }
.trainer-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 0.4s var(--ease); }
.trainer-card:hover .trainer-card__photo img { transform: scale(1.05); }
.trainer-card__head-text { min-width: 0; }
.trainer-card__body { padding: 16px 24px 24px; }
.trainer-card__name { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.15; }
.trainer-card__location { font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange); display: block; }
.trainer-card__bio { font-size: 13px; color: var(--muted); line-height: 1.78; margin-bottom: 12px; }
.trainer-card__horses { font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; line-height: 1.7; }
.trainer-card__horses strong { color: var(--orange-dark); }

/* ============================================================
   HORSE DETAIL MODAL
   ============================================================ */
.horse-modal { position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none; }
.horse-modal.open { visibility: visible; pointer-events: auto; }
.horse-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(28,9,5,0.65);
  opacity: 0; transition: opacity 0.35s var(--ease); cursor: pointer;
}
.horse-modal.open .horse-modal__backdrop { opacity: 1; }
.horse-modal__drawer {
  position: absolute; top: 0; right: 0;
  width: min(920px, 100vw); height: 100vh;
  background: var(--white);
  overflow: hidden;
  box-shadow: -20px 0 60px rgba(28,9,5,0.3);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: row;
}
.horse-modal.open .horse-modal__drawer { transform: translateX(0); }
.horse-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(28,9,5,0.5); color: var(--white);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.horse-modal__close:hover { background: var(--orange); }
.horse-modal__img { position: relative; width: 50%; height: 100%; flex-shrink: 0; overflow: hidden; background: var(--ink-soft); }
/* soft blurred fill of the same photo, so the whole image can show with no empty bars */
.horse-modal__img-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: blur(30px) brightness(0.62); transform: scale(1.2);
}
.horse-modal__img img {
  position: relative; z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* whole headshot shown — never chopped */
  object-position: center;
}
.horse-modal__img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: var(--grad-warm);
}
.horse-modal__badge {
  position: absolute; bottom: 24px; left: 20px; z-index: 2;
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; color: var(--white);
}
.horse-modal__badge--racehorse { background: var(--grad-warm); }
.horse-modal__badge--broodmare { background: var(--pink); }
.horse-modal__badge--yearling  { background: #6f8f4a; }
.horse-modal__badge--foal      { background: var(--orange-light); }
.horse-modal__body { padding: 38px 40px; flex: 1; height: 100%; overflow-y: auto; display: flex; flex-direction: column; }
.horse-modal__name { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--ink); line-height: 1.05; margin-bottom: 8px; }
.horse-modal__meta { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
.horse-modal__section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.horse-modal__section:last-of-type { border-bottom: none; padding-bottom: 0; }
.horse-modal__section h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.horse-modal__section p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.horse-modal__breeding-table { display: flex; flex-direction: column; gap: 8px; }
.horse-modal__breeding-row { display: flex; gap: 10px; }
.horse-modal__breeding-row .label { color: var(--muted); font-size: 12px; font-weight: 500; min-width: 58px; }
.horse-modal__breeding-row .value { color: var(--ink); font-weight: 500; font-size: 14px; }
.form-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.form-table th { text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 0 8px 8px 0; border-bottom: 1px solid var(--border); }
.form-table td { padding: 8px 8px 8px 0; border-bottom: 1px solid var(--border); color: var(--ink); }
.form-table tr:last-child td { border-bottom: none; }
.form-table .pos-win { color: var(--orange-dark); font-weight: 700; }
.horse-modal__connections { display: flex; flex-direction: column; gap: 10px; }
.connection-item { display: flex; align-items: center; gap: 12px; }
.connection-item__label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; min-width: 62px; }
.connection-item__value { font-size: 14px; color: var(--ink); font-weight: 500; }
.horse-modal__cta { width: 100%; justify-content: center; margin-top: auto; padding: 15px; font-size: 13px; }
.horse-modal__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.horse-modal__navbtn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.02em; color: var(--orange); padding: 4px 2px; transition: color 0.2s;
}
.horse-modal__navbtn:hover { color: var(--pink); }
.horse-modal__count { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; }

@media (max-width: 820px) {
  .horse-modal { padding: 0; }
  .horse-modal__drawer { flex-direction: column; width: 100%; height: 100%; border-radius: 0; }
  /* image gets a generous portrait-friendly band; body scrolls beneath it */
  .horse-modal__img { width: 100%; height: 46vh; min-height: 280px; flex-shrink: 0; }
  .horse-modal__body { flex: 1 1 auto; height: auto; min-height: 0; padding: 26px 22px 32px; }
  .horse-modal__name { font-size: 30px; }
}
@media (max-width: 680px) {
  .horse-modal__img { height: 42vh; min-height: 260px; }
  .horse-modal__name { font-size: 28px; }
}

/* ============================================================
   HORSES HERO — white background, circular portraits
   ============================================================ */
.horses-hero {
  background: var(--cream);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  border-bottom: 1px solid var(--border);
}
.horses-hero__text { text-align: center; margin-bottom: 72px; }
.horses-hero__text .section-heading em { font-style: italic; color: var(--orange); }
.horses-hero__circles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
}
.horses-hero__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.horses-hero__circle img {
  width: 190px; height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--cream-dark);
  box-shadow: 0 8px 32px rgba(196,58,10,0.13);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  display: block;
  object-position: 10%;
}
.horses-hero__circle--featured img {
  width: 250px; height: 250px;
  border-color: var(--orange);
  box-shadow: 0 12px 52px rgba(196,58,10,0.22);
}
.horses-hero__circle img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 56px rgba(196,58,10,0.28);
  border-color: var(--orange-light);
}
.horses-hero__circle-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.horses-hero__circle-badge {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--grad-warm); color: var(--white);
  padding: 4px 14px; border-radius: 100px;
}
@media (max-width: 768px) {
  .horses-hero__circles { gap: 28px; }
  .horses-hero__circle img { width: 140px; height: 140px; }
  .horses-hero__circle--featured img { width: 180px; height: 180px; }
}
@media (max-width: 480px) {
  .horses-hero__circles { flex-wrap: wrap; }
  .horses-hero__circle img, .horses-hero__circle--featured img { width: 150px; height: 150px; }
}

/* ============================================================
   NOTABLE GRADUATES
   ============================================================ */
.graduates { background: var(--cream); padding: var(--section-pad) 0; }
.graduates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.grad-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.grad-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-warm);
}
.grad-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.grad-card__results { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.grad-card__results li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.grad-pos {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  background: var(--grad-warm);
  border-radius: 999px;
  padding: 3px 11px;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) { .graduates__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .graduates__grid { grid-template-columns: 1fr; } }

/* Trainer card "read full profile" + clickable card */
.trainer-card { cursor: pointer; }
.trainer-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em; color: var(--orange);
  transition: color 0.2s, gap 0.2s;
}
.trainer-card:hover .trainer-card__more,
.trainer-card__more:hover { color: var(--pink); gap: 9px; }

/* Trainer profile drawer (reuses .horse-modal shell) */
.trainer-modal__loc {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
}
.trainer-modal__bio p { font-size: 15px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 16px; }
.trainer-modal__bio p:last-child { margin-bottom: 0; }
/* Trainer drawer: image on TOP as a modest banner, narrower panel — a trainer
   photo never needs the full-height half that a horse portrait uses. */
#trainerModal .horse-modal__drawer { width: min(560px, 100vw); flex-direction: column; }
#trainerModal .horse-modal__img { width: 100%; height: 300px; flex-shrink: 0; }
#trainerModal .horse-modal__img img { object-position: center; }
#trainerModal .horse-modal__body { height: auto; flex: 1 1 auto; min-height: 0; }

/* Modal notable results */
.horse-modal__results { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.horse-modal__results li { font-size: 14px; line-height: 1.5; color: var(--ink-soft); padding-left: 14px; position: relative; }
.horse-modal__results li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-warm); }
.horse-modal__results strong { color: var(--orange); font-weight: 800; }

/* ============================================================
   HORSES FOR SALE
   ============================================================ */
.forsale-page { padding: 64px 0 var(--section-pad); }
.sale-filter-btn {
  padding: 10px 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1.5px solid var(--border); border-radius: 100px;
  background: var(--white); cursor: pointer; transition: all 0.2s;
}
.sale-filter-btn:hover { color: var(--orange); border-color: var(--orange); }
.sale-filter-btn.active { background: var(--grad-warm); color: var(--white); border-color: transparent; box-shadow: 0 3px 12px rgba(232,83,28,0.3); }

.forsale__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.sales-empty { text-align: center; color: var(--muted); font-size: 16px; padding: 40px 0; }
.sales-empty a { color: var(--orange); }

.sale-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sale-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(28,9,5,0.14); }
.sale-card.hidden { display: none; }
.sale-card__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--cream-mid); }
.sale-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.5s var(--ease); }
.sale-card:hover .sale-card__img img { transform: scale(1.05); }
.sale-card__status {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; color: #fff;
}
.sale-card__status--available { background: #1e8b56; }
.sale-card__status--under-offer { background: #c98a14; }
.sale-card__status--sold { background: #8a6f60; }
.sale-card__type {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; background: rgba(28,9,5,0.6); color: #fff;
}
.sale-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.sale-card__name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.sale-card__meta { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.sale-card__headline { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.5; }
.sale-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.sale-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 16px; }
.sale-card__price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--orange); }
.sale-card__who { font-size: 12px; color: var(--muted); text-align: right; }
.sale-card__cta { width: 100%; justify-content: center; }
.sale-card__sold { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 12px 0; }

/* Register-interest section (dark, mirrors Contact) */
.interest { background: var(--ink); padding: var(--section-pad) 0; color: var(--white); }
.interest .section-heading--light { color: var(--white); }
.interest__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.interest__info p { font-size: 15px; color: rgba(255,248,243,0.55); line-height: 1.85; margin: 18px 0; }
.form-status { font-size: 13px; color: var(--orange-light); margin: 2px 0 0; min-height: 1px; }
@media (max-width: 900px) { .interest__grid { grid-template-columns: 1fr; gap: 48px; } }
