/* Oxford Rocking Horses — 2026 Stylesheet */
/* Heritage Craftsman Aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #F8F4EE;
  --parchment: #EFE8DA;
  --parchment-dark: #E0D5C1;
  --forest: #2C4A2E;
  --forest-mid: #3D6B40;
  --forest-light: #557A58;
  --gold: #B8914A;
  --gold-light: #D4AE72;
  --charcoal: #2A2420;
  --warm-gray: #7A7068;
  --warm-gray-light: #B0A89A;
  --white: #FFFFFF;
  --shadow-warm: rgba(42, 36, 32, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--parchment-dark);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--shadow-warm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Shrink logo name on smaller desktop/tablet before it breaks */
@media (max-width: 1100px) {
  .logo-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .logo-name {
    font-size: 1.05rem;
  }
  .logo-sub {
    font-size: 0.6rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Logo line break: visible on desktop, hidden on mobile */
.logo-break {
  display: block;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--forest);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta a {
  background: var(--forest);
  color: var(--cream) !important;
  border-radius: 2px;
  padding: 0.5rem 1.2rem !important;
}

.nav-cta a::after {
  display: none;
}

.nav-cta a:hover {
  background: var(--forest-mid) !important;
  color: var(--cream) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('https://oxfordshirerockinghorses.co.uk/gifs/Normanbck3.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 36, 32, 0.05) 0%,
    rgba(42, 36, 32, 0.10) 40%,
    rgba(42, 36, 32, 0.65) 80%,
    rgba(42, 36, 32, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem 3rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDown 1.8s ease 2s infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==========================================
   SECTION FOUNDATIONS
   ========================================== */

section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 60ch;
}

.ornament {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ==========================================
   INTRO STRIP — Trust bar
   ========================================== */

.trust-bar {
  display: none;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.trust-item strong {
  color: var(--gold-light);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ==========================================
   THREE PILLARS — Service cards
   ========================================== */

.services {
  background: var(--cream);
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 100%;
  overflow: hidden;
}

.services-header .section-label {
  display: none;
}

.services-header .section-title {
  margin-bottom: 1rem;
}

.services-intro-text {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.ornament-center {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment-dark);
}

.service-card {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  background: var(--white);
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 74, 46, 0.5) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image-overlay {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  z-index: 2;
}

.service-body {
  padding: 2rem 1.8rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.service-card:hover .service-body {
  border-color: var(--gold);
}

.service-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-link:hover {
  gap: 14px;
  color: var(--gold);
}

.service-link::after {
  content: '→';
  font-size: 0.9em;
}

/* ==========================================
   ABOUT / CRAFT SECTION
   ========================================== */

.craft-section {
  background: var(--forest);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.craft-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: url('https://oxfordshirerockinghorses.co.uk/gifs/newbck3-full.jpg') center / cover no-repeat;
  opacity: 0.18;
}

.craft-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.craft-text .section-label {
  color: var(--gold-light);
}

.craft-text .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.craft-text .ornament {
  background: var(--gold);
}

.craft-text .section-intro {
  color: rgba(255,255,255,0.72);
}

.craft-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.craft-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.craft-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

.craft-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  background: rgba(248, 244, 238, 0.05);
  padding: 2rem;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(248, 244, 238, 0.10);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ==========================================
   RESTORATION FEATURE
   ========================================== */

.restoration-section {
  background: var(--parchment);
  padding: 7rem 2rem;
}

.restoration-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.restoration-media {
  position: relative;
}

.restoration-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.restoration-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.restoration-badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.restoration-badge span {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.restoration-text {
  padding-left: 1rem;
}

.restoration-text .section-title {
  margin-bottom: 1rem;
}

.restoration-text p {
  font-size: 1.08rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.restoration-process {
  margin: 2rem 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--parchment-dark);
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
  padding-top: 2px;
}

.step-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.step-text span {
  font-size: 0.97rem;
  color: var(--warm-gray);
}

/* ==========================================
   NEW HORSES SECTION
   ========================================== */

.newhorses-section {
  background: var(--parchment);
  padding: 7rem 2rem;
}

.newhorses-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
}

.newhorses-header-text {
  flex: 0 0 auto;
  min-width: 220px;
}

.newhorses-header-text .section-title {
  margin-bottom: 0.5rem;
}

.section-right-col {
  flex: 1 1 0;
  min-width: 0;
}

/* Image grid cells as anchor elements */
a.antique-img-feature,
a.antique-img-cell {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* ==========================================
   ANTIQUE HORSES
   ========================================== */

.antique-section {
  background: var(--cream);
  padding: 7rem 2rem;
}

.antique-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.antique-header-text .section-title {
  margin-bottom: 0.5rem;
}

.antique-makers {
  font-size: 1.08rem;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.antique-makers em {
  color: var(--charcoal);
  font-style: normal;
}

.antique-img-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 2px;
  background: var(--parchment-dark);
}

.antique-img-feature {
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
}

.antique-img-cell {
  overflow: hidden;
  position: relative;
}

.antique-img-feature img,
.antique-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.antique-img-feature:hover img,
.antique-img-cell:hover img {
  transform: scale(1.05);
}

.antique-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,74,46,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.antique-img-feature:hover .antique-img-overlay,
.antique-img-cell:hover .antique-img-overlay {
  opacity: 1;
}

/* ==========================================
   TESTIMONIAL
   ========================================== */

.testimonial-section {
  background: var(--parchment);
  padding: 6rem 2rem;
  text-align: center;
}

.testimonial-section .container {
  max-width: 760px;
}

.testimonial-mark {
  display: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-text::before {
  content: '\201C';
  margin-right: 0.05em;
}

.testimonial-text::after {
  content: '\201D';
  margin-left: 0.05em;
}

.testimonial-source {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
}

/* ==========================================
   CONTACT CTA
   ========================================== */

.cta-section {
  background: var(--charcoal);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 145, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(44, 74, 46, 0.20) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-label {
  color: var(--gold-light);
}

.cta-inner .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner .section-intro {
  color: rgba(255,255,255,0.6);
  max-width: 100%;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-inner .ornament-center {
  background: var(--gold);
}

.cta-alison {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  background: var(--forest);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-top: 1.2rem;
}

.btn-whatsapp:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.cta-detail a {
  color: var(--gold-light);
  text-decoration: none;
}

.cta-detail a:hover {
  color: var(--gold);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: #ddeaf5;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.15);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 1rem;
  color: #3a5a6e;
  line-height: 1.7;
  max-width: 26ch;
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: #3a5a6e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--forest);
}

.footer-contact p {
  font-size: 0.82rem;
  color: #3a5a6e;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--forest);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(44, 74, 46, 0.15);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: #5a7a8e;
  letter-spacing: 0.06em;
}

.footer-bottom a {
  color: var(--forest);
  text-decoration: none;
}

/* ==========================================
   BACK TO TOP
   ========================================== */

#backToTop {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.25s ease, transform 0.2s ease;
  align-items: center;
  justify-content: center;
}

#backToTop.visible {
  display: flex;
}

#backToTop:hover {
  background: var(--forest-mid);
  transform: translateY(-3px);
}

/* ==========================================
   MOBILE NAV OVERLAY
   ========================================== */

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 2rem;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--parchment-dark);
}

.mobile-nav-links a {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--forest);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .craft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .craft-section::before {
    width: 100%;
    opacity: 0.07;
  }

  .restoration-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .restoration-text {
    padding-left: 0;
  }

  .antique-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }

  .antique-img-feature {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    height: auto;
    min-height: 68px;
    padding: 0.75rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .site-logo {
    gap: 10px;
  }

  .site-logo img {
    height: 42px;
  }

  .logo-name {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .logo-sub {
    font-size: 0.58rem;
  }

  /* Hide the desktop line break in the logo name on mobile */
  .logo-break {
    display: none;
  }

  /* Nudge hero eyebrow down 35px on mobile only */
  .hero-eyebrow {
    margin-top: 35px;
  }

  /* Nudge hero title down 33px on mobile only */
  .hero-title {
    margin-top: 33px;
  }

  /* Prevent services heading overflowing right margin */
  .services-header .section-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    word-break: break-word;
    hyphens: auto;
  }

  /* Stack new horses header on mobile */
  .newhorses-header {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .newhorses-header-text {
    min-width: unset;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .hero-content {
    padding: 90px 1.25rem 3rem;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .antique-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .antique-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px 220px;
  }

  .antique-img-feature {
    grid-column: 1;
    grid-row: 1;
  }

  .restoration-badge {
    right: auto;
    left: 0.5rem;
    bottom: 0.5rem;
    width: 90px;
    height: 90px;
  }

  .restoration-badge strong {
    font-size: 1.4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-contact {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-details {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================
   INNER PAGE HERO (shorter, no animation)
   ========================================== */

.page-hero {
  position: relative;
  height: 75vh;
  min-height: 493px;
  max-height: 754px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,36,32,0.15) 0%,
    rgba(42,36,32,0.55) 60%,
    rgba(42,36,32,0.80) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem 3rem;
}

.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.8rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-intro {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.75;
}

/* ==========================================
   BREADCRUMB
   ========================================== */

.breadcrumb {
  background: var(--parchment);
  border-bottom: 1px solid var(--parchment-dark);
  padding: 0.75rem 2rem;
}

.breadcrumb nav {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--warm-gray);
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 400;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--warm-gray-light);
}

/* ==========================================
   HORSE CATALOGUE
   ========================================== */

.catalogue-section {
  background: var(--cream);
  padding: 2.5rem 2rem 5rem;
}

.catalogue-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.catalogue-intro .section-title {
  margin-bottom: 1rem;
}

.catalogue-intro p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.horses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment-dark);
}

.horse-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.3s ease;
}

.horse-card:hover {
  background: var(--white);
}

.horse-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.horse-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.horse-card:hover .horse-card-image img {
  transform: scale(1.06);
}

.horse-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.horse-card:hover .horse-card-body {
  border-color: var(--gold);
}

.horse-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.horse-card-desc {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.horse-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  transition: gap 0.2s ease, color 0.2s ease;
}

.horse-card:hover .horse-card-link {
  gap: 12px;
  color: var(--gold);
}

.horse-card-link::after {
  content: '→';
}

@media (max-width: 1024px) {
  .horses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .horses-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    padding: 90px 1.25rem 2.5rem;
  }

  .catalogue-section {
    padding: 3rem 1.25rem;
  }

  .breadcrumb {
    padding: 0.75rem 1.25rem;
  }
}

/* Active nav link on inner pages */
.main-nav a.nav-active {
  color: var(--forest);
  font-weight: 500;
}

.main-nav a.nav-active::after {
  transform: scaleX(1);
}

/* ==========================================
   PRODUCT PAGE — individual horse
   ========================================== */

.product-section {
  background: var(--cream);
  padding: 3rem 2rem 5rem;
}

.product-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left column: text */
.product-text {}

.product-text .section-title {
  margin-bottom: 0.6rem;
}

.product-pricing {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
  color: #8B6A2E;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(184,145,74,0.06);
}

.product-pricing strong {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B6A2E;
  margin-bottom: 0.5rem;
}

.product-body p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.product-features li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment-dark);
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.product-back::before {
  content: '←';
}

.product-back:hover {
  gap: 10px;
  color: var(--gold);
}

/* Right column: gallery grid */
.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--parchment-dark);
}

.product-gallery-feature {
  grid-column: 1 / 3;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-cell {
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-feature img,
.product-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-gallery-feature {
  aspect-ratio: 4/3;
}

.product-gallery-cell {
  aspect-ratio: 1/1;
}

.product-gallery-feature:hover img,
.product-gallery-cell:hover img {
  transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 1024px) {
  .product-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-gallery {
    order: -1;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 2rem 1.25rem 4rem;
  }

  .product-gallery-feature {
    grid-column: 1 / 3;
  }
}

/* ==========================================
   WORKSHOP GALLERY PAGE
   ========================================== */

.workshop-section {
  padding: 4rem 2rem 5rem;
}

.workshop-section:nth-child(odd) {
  background: var(--cream);
}

.workshop-section:nth-child(even) {
  background: var(--parchment);
}

.workshop-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.workshop-section-header {
  margin-bottom: 2.5rem;
}

.workshop-section-header .section-title {
  margin-bottom: 0.5rem;
}

.workshop-section-header p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 70ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--parchment-dark);
}

.gallery-grid-item {
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-grid-item.wide {
  grid-column: span 2;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

.gallery-grid-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 46, 0.0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid-item:hover .gallery-grid-item-overlay {
  background: rgba(44, 74, 46, 0.18);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid-item.wide {
    grid-column: span 2;
  }
  .workshop-section {
    padding: 3rem 1.25rem 4rem;
  }
}

/* ==========================================
   RESTORATION PAGE
   ========================================== */

.restoration-page-section {
  background: var(--cream);
  padding: 4rem 2rem 5rem;
}

.restoration-page-section.alt {
  background: var(--parchment);
}

.restoration-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column: text left, image right */
.restoration-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.restoration-editorial-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.restoration-editorial-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.restoration-editorial-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Saddle/detail boxes */
.restoration-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.restoration-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.restoration-detail-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.restoration-detail-item p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Quick-links to before/after and case study */
.restoration-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.restoration-link-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  text-decoration: none;
  transition: background 0.25s ease;
}

.restoration-link-card:hover {
  background: var(--parchment-dark);
}

.restoration-link-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
}

.restoration-link-card-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.restoration-link-card-text p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* Latest restorations grid */
.restorations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--parchment-dark);
  margin-top: 3rem;
}

.restoration-job-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.3s ease;
}

.restoration-job-card:hover {
  background: var(--white);
}

.restoration-job-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.restoration-job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.restoration-job-card:hover .restoration-job-card-img img {
  transform: scale(1.07);
}

.restoration-job-card-body {
  padding: 1rem 1rem 1.2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
  flex: 1;
}

.restoration-job-card:hover .restoration-job-card-body {
  border-color: var(--gold);
}

.restoration-job-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.restoration-job-card-body p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .restoration-editorial {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .restorations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .restoration-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .restoration-detail-grid {
    grid-template-columns: 1fr;
  }
  .restorations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .restoration-page-section {
    padding: 3rem 1.25rem 4rem;
  }
}

/* ==========================================
   INDIVIDUAL RESTORATION JOB PAGE
   ========================================== */

.job-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.job-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.job-intro-text .section-title {
  margin-bottom: 0.8rem;
}

.job-intro-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.2rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
}

.job-meta-item {
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.job-meta-item strong {
  color: var(--forest);
  font-weight: 500;
}

.job-gallery-full {
  background: var(--parchment);
  padding: 3rem 2rem 5rem;
}

.job-gallery-full-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.job-gallery-full .section-title {
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .job-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .job-intro {
    padding: 2.5rem 1.25rem 3rem;
  }
  .job-gallery-full {
    padding: 2.5rem 1.25rem 4rem;
  }
}

/* ==========================================
   BEFORE AND AFTER GALLERY
   ========================================== */

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--parchment-dark);
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.before-after-pair {
  display: contents;
}

.ba-cell {
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-cell-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.ba-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ba-cell-img:hover img {
  transform: scale(1.05);
}

.ba-cell-caption {
  padding: 0.8rem 1rem 1rem;
  border-top: 2px solid var(--parchment-dark);
}

.ba-cell-caption .ba-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

.ba-label.before {
  background: #e8e0d0;
  color: var(--warm-gray);
}

.ba-label.after {
  background: var(--forest);
  color: #fff;
}

.ba-cell-caption p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin: 0;
}

/* Single-image showcase row */
.ba-showcase {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.ba-showcase-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment-dark);
}

.ba-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--parchment-dark);
}

.ba-showcase-grid .ba-cell-img {
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .ba-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   ANTIQUE HORSES FOR SALE
   ========================================== */

.antique-listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.antique-horse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--parchment-dark);
}

.antique-horse:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

/* Alternate image left/right */
.antique-horse:nth-child(even) .antique-horse-text {
  order: 2;
}
.antique-horse:nth-child(even) .antique-horse-gallery {
  order: 1;
}

.antique-horse-text .section-label {
  display: block;
  margin-bottom: 0.5rem;
}

.antique-horse-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.antique-horse-name em {
  font-weight: 300;
  color: var(--forest);
}

.antique-horse-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin: 1.2rem 0 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
}

.antique-spec {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.antique-spec strong {
  color: var(--charcoal);
  font-weight: 500;
}

.antique-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: #8B6A2E;
  font-style: italic;
  margin-bottom: 1.2rem;
  display: block;
}

.antique-horse-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.antique-horse-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--parchment-dark);
}

.antique-horse-gallery .gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.antique-horse-gallery .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.antique-horse-gallery .gallery-img:hover img {
  transform: scale(1.06);
}

/* Sold badge */
.sold-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: #c0392b;
  color: #fff;
  border-radius: 2px;
  margin-left: 0.75rem;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

@media (max-width: 1024px) {
  .antique-horse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .antique-horse:nth-child(even) .antique-horse-text { order: 1; }
  .antique-horse:nth-child(even) .antique-horse-gallery { order: 2; }
}

@media (max-width: 600px) {
  .antique-horse-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left column: form */
.contact-form-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  margin-top: 1.1rem;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: #fff;
  border: 1.5px solid #d8cfc0;
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44,74,46,0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Human image check */
.human-check {
  margin: 1.5rem 0 0.5rem;
  padding: 1.2rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
}

.human-title {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin: 0 0 0.8rem;
  line-height: 1.5;
}

.human-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.human-tile {
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 6px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.human-tile img {
  display: block;
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
}

.human-tile.is-picked {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(44,74,46,0.2);
}

.human-hint {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input[type="submit"] {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-form input[type="submit"]:hover {
  background: #1d3320;
}

/* Right column: info */
.contact-info-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  margin: 2rem 0 0.6rem;
}

.contact-info-col h3:first-child {
  margin-top: 0;
}

.contact-info-col p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.contact-info-col a {
  color: var(--forest);
  text-decoration: none;
}

.contact-info-col a:hover {
  text-decoration: underline;
}

.contact-map {
  margin-top: 1.5rem;
  border: 1px solid var(--parchment-dark);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* Price downloads */
.price-downloads {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.price-download-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.price-download-link:hover {
  background: var(--parchment-dark);
  text-decoration: none;
}

.price-download-link svg {
  flex-shrink: 0;
  color: var(--forest);
}

/* Events section */
.events-section {
  background: var(--parchment);
  padding: 3.5rem 2rem 4rem;
}

.events-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.events-past-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--parchment-dark);
  margin-top: 2rem;
  max-width: 800px;
}

.events-past-grid .gallery-grid-item {
  cursor: zoom-in;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .events-past-grid {
    grid-template-columns: 1fr;
  }
}