﻿:root {
  color-scheme: light;
  --dark-green: #0f5145;
  --deep-green: #083f36;
  --forest: #356f61;
  --sage: #82a095;
  --cream: #dfe8e2;
  --ivory: #f7f4ea;
  --gold: #d0a856;
  --text-dark: #173d34;
  --text-light: #fffdf6;
  --border: rgba(15, 81, 69, 0.16);
  --shadow: 0 28px 80px rgba(8, 63, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#book,
#riding,
#activities,
#promotions,
#contact {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #dfe8e2;
  color: var(--text-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  display: none !important;
}

.coming-soon-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 165, 107, 0.18);
  color: #8a682c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

button,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--dark-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-scrolled {
  background: var(--dark-green);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header.header-scrolled .site-brand {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(6, 18, 12, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: 20px 0;
}

.site-brand {
  display: flex;
  align-items: center;
  border-radius: 999px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header:not(.header-scrolled) .site-brand {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(6, 18, 12, 0.18);
}

.site-brand:hover {
  transform: translateY(-1px);
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: none;
}

.brand-copy .eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  transition: color 0.3s ease;
}

.brand-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.25s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(31, 60, 47, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(16, 37, 28, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu.activities-menu {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  min-width: 440px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.dropdown-open .nav-dropdown-toggle {
  color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.dropdown-open .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu a,
.site-header.header-scrolled .nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dark-green);
  text-shadow: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(201, 165, 107, 0.16);
  color: var(--deep-green);
  transform: none;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(10, 22, 17, 0.28);
  color: #ffffff;
  cursor: pointer;
  gap: 5px;
  align-content: center;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201, 165, 107, 0.28);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.04);
  outline: none;
}

.site-header.header-scrolled .nav-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(10, 22, 17, 0.28);
  color: #ffffff;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.main-nav .nav-dropdown-menu a,
.site-header.header-scrolled .main-nav .nav-dropdown-menu a {
  color: var(--dark-green);
  font-weight: 700;
  text-shadow: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: left 0.25s ease, right 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.site-header.header-scrolled .main-nav a,
.site-header.header-scrolled .nav-dropdown-toggle {
  color: #ffffff;
  text-shadow: none;
}

.site-header.header-scrolled .brand-copy .eyebrow,
.site-header.header-scrolled .brand-copy h1,
.site-header:not(.header-scrolled) .brand-copy .eyebrow,
.site-header:not(.header-scrolled) .brand-copy h1 {
  color: var(--dark-green);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  left: 8px;
  right: 8px;
  opacity: 1;
}

.home-banner {
  --banner-dim: 0;
  --banner-scale: 1;
  --banner-shift: 0px;
  --video-aspect-ratio: 2 / 1;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: var(--video-aspect-ratio);
  overflow: hidden;
  background: #0d594f;
}

.home-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(67, 54, 40, 0.04) 35%, rgba(48, 58, 49, 0.82) 100%);
  opacity: var(--banner-dim);
  pointer-events: none;
}

.home-banner-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  pointer-events: none;
  transform: translateY(var(--banner-shift)) scale(var(--banner-scale));
  transform-origin: center;
  will-change: transform;
}

.home-banner-video {
  height: calc(100% + 14px);
  margin-top: -14px;
  object-fit: cover;
  object-position: center;
}

.home-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 170px;
}

.site-header .site-brand.home-site-brand,
.site-header.header-scrolled .site-brand.home-site-brand,
.site-header:not(.header-scrolled) .site-brand.home-site-brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.home-brand-oval {
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(6, 18, 12, 0.18);
}

.home-brand-tagline {
  width: 100%;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.4;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.venture-section {
  padding: 88px 32px 104px;
  background: #f2eaea;
}

.venture-section-title {
  margin: 0 0 14px;
  color: var(--dark-green);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-align: center;
}

.venture-section-eyebrow {
  margin: 0 0 56px;
  color: #8a682c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 48px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.venture-link {
  display: grid;
  justify-items: center;
  min-width: 0;
  color: #071f1a;
  text-align: center;
  transition: transform 0.25s ease;
}

.venture-link h3 {
  min-height: 2.5em;
  margin: 0 0 8px;
  color: var(--deep-green);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.venture-mark {
  position: relative;
  display: grid;
  width: min(100%, 260px);
  aspect-ratio: 180 / 190;
  place-items: center;
}

.venture-mark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.horseshoe,
.horseshoe-cap {
  fill: none;
  stroke: #cfc2b3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.horseshoe {
  stroke-width: 18;
}

.horseshoe-cap {
  stroke-width: 20;
}

.horseshoe-nails {
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 5 18;
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.venture-sage .horseshoe,
.venture-sage .horseshoe-cap {
  stroke: #c8d0ce;
}

.venture-mark p {
  position: relative;
  z-index: 1;
  width: 82%;
  margin: 0;
  color: #101010;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.48;
}

.venture-link:hover,
.venture-link:focus-visible {
  transform: translateY(-7px);
  outline: none;
}

.venture-link:hover h3,
.venture-link:focus-visible h3 {
  color: var(--gold);
}

.venture-link:hover .horseshoe,
.venture-link:hover .horseshoe-cap,
.venture-link:focus-visible .horseshoe,
.venture-link:focus-visible .horseshoe-cap {
  stroke: var(--gold);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 72px;
  background: var(--dark-green);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.hero-side-text {
  display: none;
}

.hero-copy {
  color: var(--ivory);
  display: grid;
  gap: 28px;
  width: 100%;
  min-width: 0;
  max-width: 1600px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.hero-copy .eyebrow {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.hero-copy h2 {
  width: 100%;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy p {
  margin: 0;
  max-width: 940px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-search-card {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  background: var(--ivory);
  border: 1px solid rgba(93, 72, 49, 0.2);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(5, 16, 11, 0.18);
  text-align: left;
}

.hero-search-card .search-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 18px 22px 18px 10px;
}

.hero-search-card .search-copy .eyebrow {
  margin: 0;
  color: #a77f3f;
  letter-spacing: 0.22em;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-search-card .search-copy h3 {
  position: relative;
  margin: 0;
  max-width: 470px;
  padding-top: 22px;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero-search-card .search-copy h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-search-card .booking-form {
  display: grid;
  gap: 16px;
}

.hero-search-card .field label {
  color: rgba(31, 54, 42, 0.8);
}

.hero-search-card .field select {
  background: #ddd2c0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  background: #d9b978;
  box-shadow: 0 16px 34px rgba(201, 165, 107, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(6, 18, 12, 0.22);
}

.btn-primary,
.btn-tertiary {
  background: var(--gold);
  color: #13251d;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ivory);
}

.btn-tertiary {
  width: 100%;
  border: 0;
}

.hero-panel,
.hero-panel-image,
.hero-panel-copy {
  display: none;
}

.booking-section {
  padding: 0 40px 80px;
  display: flex;
  justify-content: center;
}

.booking-card {
  width: min(100%, 1080px);
  background: #ffffff;
  border: 1px solid rgba(31, 60, 47, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(24, 32, 24, 0.08);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  padding: 36px;
}

.booking-copy .eyebrow {
  margin: 0 0 8px;
  color: var(--dark-green);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}

.booking-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--text-dark);
}

.booking-copy p {
  margin: 18px 0 0;
  color: rgba(31, 54, 42, 0.82);
  line-height: 1.85;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 10px;
  color: rgba(31, 54, 42, 0.8);
  font-size: 0.95rem;
}

.field select {
  appearance: none;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(31, 60, 47, 0.16);
  padding: 16px 18px;
  background: #f8f3eb;
  color: var(--text-dark);
}

.section {
  padding: 88px 24px;
}

.section-alt {
  background: var(--dark-green);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 12px;
  color: #8a682c;
}

.section-head h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  color: var(--text-dark);
}

.section-alt .section-head h2,
.section-alt .section-head p,
.section-alt .section-head .eyebrow {
  color: var(--ivory);
}

.section-head p {
  margin: 20px auto 0;
  max-width: 640px;
  color: rgba(31, 54, 42, 0.78);
  line-height: 1.9;
}

.section-alt .section-head p {
  color: rgba(255,255,255,0.74);
}

.service-grid,
.promo-grid,
.gallery-grid,
.contact-cards,
.content-split {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 520px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--ivory);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(18, 30, 22, 0.2);
}

.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  transform: scale(1.04);
}

.service-card::before {
  display: none;
}

.service-card-image {
  position: relative;
  overflow: hidden;
  background: var(--deep-green);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 28px;
  align-content: start;
  background: var(--deep-green);
}

.service-card-body .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}

.service-card-body h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.service-card-body p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.content-split {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.content-copy .eyebrow {
  margin: 0 0 16px;
  color: #8a682c;
}

.walk-in-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  border: 1px solid rgba(146, 102, 56, 0.22);
  border-radius: 999px;
  background: #f4dfb4;
  color: #244f43;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(85, 66, 37, 0.1);
}

.content-copy h2 {
  margin: 0 0 26px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  color: var(--text-dark);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: rgba(31, 54, 42, 0.88);
}

.feature-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.feature-list + .btn {
  margin-top: 24px;
}

.content-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-section {
  background: #dfe9e4;
}

.polo-intro-section {
  background: #d5e2dc;
}

.service-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 84px);
  width: min(100%, 1200px);
  max-width: 1200px;
}

.service-detail-stacked {
  grid-template-columns: 1fr;
}

.service-detail .content-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: rgba(31, 54, 42, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
}

.service-detail .content-copy > .service-disclaimer {
  margin: -10px 0 28px;
  color: rgba(31, 54, 42, 0.72);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

.service-detail .content-copy ul {
  margin: 0 0 28px;
  padding-left: 22px;
  color: rgba(31, 54, 42, 0.88);
  line-height: 1.8;
}

.service-detail-image {
  height: clamp(360px, 42vw, 540px);
}

.content-copy .service-detail-image {
  margin: 28px 0;
}

.jackuda-original-image {
  height: auto;
  aspect-ratio: 16 / 9;
}

.jackuda-original-image img {
  object-fit: contain;
}

.jackuda-activities-section {
  padding-block: clamp(64px, 8vw, 112px);
}

.jackuda-activity-list {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: clamp(48px, 7vw, 88px);
}

.jackuda-activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.jackuda-activity-copy .eyebrow {
  margin: 0 0 14px;
  color: #8a682c;
}

.jackuda-activity-copy h2 {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: var(--text-dark);
}

.jackuda-activity-copy p {
  margin: 0;
  color: rgba(31, 54, 42, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
}

.jackuda-activity-copy .btn {
  margin-top: 28px;
}

.jackuda-activity-image {
  position: relative;
  height: clamp(260px, 30vw, 430px);
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08)),
    #c9d8d0;
  color: rgba(31, 54, 42, 0.58);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 22px 50px rgba(24, 32, 24, 0.1);
}

.jackuda-activity-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.polo-video-section {
  padding: clamp(56px, 7vw, 96px) 24px;
  background: #dfe9e4;
}

.polo-video-heading {
  width: min(100%, 1200px);
  margin: 0 auto 30px;
  text-align: center;
}

.polo-video-heading h2 {
  margin: 8px 0 0;
  color: var(--deep-green);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.polo-video {
  display: block;
  width: min(100%, 1200px);
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 28px;
  background: #081a15;
  box-shadow: var(--shadow);
}

.about-story-section {
  background: #d5e2dc;
}

.about-story-alt {
  background: #b8cdc4;
}

.about-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 84px);
}

.about-story-image {
  height: clamp(360px, 42vw, 540px);
}

.about-story-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: rgba(31, 54, 42, 0.88);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-story-copy .about-story-closing {
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.45;
}

.scroll-gallery-section {
  overflow: hidden;
  padding: 48px 0 72px;
  background: var(--deep-green);
}

.scroll-gallery-heading {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 24px;
  text-align: center;
}

.scroll-gallery-heading .eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
}

.scroll-gallery-heading h2 {
  margin: 0;
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
}

.scroll-gallery {
  width: 100%;
  overflow: hidden;
}

.scroll-gallery-row + .scroll-gallery-row {
  margin-top: 18px;
}

.scroll-gallery-track {
  display: flex;
  width: max-content;
  --gallery-speed: 130s;
  animation: gallery-scroll var(--gallery-speed) linear infinite;
}

.scroll-gallery-row-right .scroll-gallery-track {
  animation-direction: reverse;
}

.scroll-gallery-group {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  padding-right: 18px;
}

.scroll-gallery-card {
  width: clamp(190px, 16vw, 270px);
  height: clamp(290px, 25vw, 420px);
  margin: 0;
  overflow: hidden;
  background: #182a21;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(247, 244, 234, 0.35);
  background: rgba(247, 244, 234, 0.08);
  color: rgba(247, 244, 234, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.scroll-gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@keyframes gallery-scroll {
  to {
    transform: translateX(-50%);
  }
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.promo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  color: var(--ivory);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,165,107,0.4);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 32px 74px rgba(5, 16, 11, 0.24);
}

.promo-label {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201,165,107,0.18);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.promo-card h3 {
  margin: 18px 0 12px;
  font-size: 1.75rem;
}

.promo-card-light {
  background: #ffffff;
  border-color: rgba(31, 60, 47, 0.08);
  color: var(--text-dark);
}

.promo-card-light p {
  color: rgba(31, 54, 42, 0.82);
}

.promo-card-light:hover {
  background: #ffffff;
  border-color: rgba(201, 165, 107, 0.42);
}

.promotions-poster-section {
  min-height: 100vh;
  padding: clamp(56px, 7vw, 96px) 24px;
  background: var(--dark-green);
}

.promotions-poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 240px));
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.promotions-poster-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: 0 24px 60px rgba(4, 39, 33, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promotions-poster-grid img:hover,
.promotions-poster-grid img:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(4, 39, 33, 0.38);
  outline: none;
}

@media (max-width: 900px) {
  .promotions-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
  }
}

@media (max-width: 620px) {
  .promotions-poster-section {
    overflow: hidden;
    padding-inline: 0;
  }

  .promotions-poster-grid {
    grid-auto-columns: minmax(0, min(82vw, 320px));
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    justify-content: start;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    overflow-x: auto;
    padding: 0 max(16px, calc((100vw - min(82vw, 320px)) / 2)) 12px;
    scroll-padding-inline: max(16px, calc((100vw - min(82vw, 320px)) / 2));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .promotions-poster-grid img {
    scroll-snap-align: center;
  }
}

.stable-promotions-layout {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.stable-promotions-row {
  display: grid;
  gap: clamp(22px, 2.5vw, 34px);
  align-items: start;
}

.stable-promotions-row-landscape {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-carousel {
  position: relative;
  display: block;
  overflow: hidden;
}

.promotion-carousel-track {
  display: flex;
  overflow-x: auto;
  border-radius: 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.promotion-carousel-track::-webkit-scrollbar {
  display: none;
}

.promotion-carousel-track img {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  scroll-snap-align: center;
}

.promotion-carousel-portrait .promotion-carousel-track {
  width: min(100%, 720px);
  margin: 0 auto;
  gap: 0;
  padding: 0;
  border-radius: 22px;
  scroll-padding-inline: 0;
}

.promotion-carousel-portrait .promotion-carousel-track img {
  flex: 0 0 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.promotion-carousel-button {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 8;
  display: grid;
  width: clamp(50px, 6vw, 68px);
  height: clamp(50px, 6vw, 68px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(8, 63, 54, 0.74);
  color: #fffdf6;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  box-shadow: 0 16px 38px rgba(4, 39, 33, 0.32);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.promotion-carousel-button::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.promotion-carousel-button-prev {
  left: clamp(12px, 2vw, 22px);
}

.promotion-carousel-button-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.promotion-carousel-button-next {
  right: clamp(12px, 2vw, 22px);
}

.promotion-carousel-button-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.promotion-carousel-button:hover,
.promotion-carousel-button:focus-visible {
  background: var(--gold);
  color: var(--deep-green);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.promotion-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 720px);
  margin: 18px auto 0;
  padding: 0 16px;
}

.promotion-carousel-dot {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #fffdf6;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(4, 39, 33, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.promotion-carousel-dot.is-active {
  background: #fffdf6;
}

.promotion-carousel-dot:hover,
.promotion-carousel-dot:focus-visible {
  border-color: var(--gold);
  outline: none;
  transform: scale(1.12);
}

.stable-promotions-row-posters,
.stable-promotions-row-black {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
}

.stable-promotions-row img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: 0 24px 60px rgba(4, 39, 33, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stable-promotions-row-posters img,
.stable-promotions-row-black img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.stable-promotions-row img:hover,
.stable-promotions-row img:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(4, 39, 33, 0.38);
  outline: none;
}

@media (max-width: 900px) {
  .stable-promotions-row-landscape {
    grid-template-columns: 1fr;
  }

  .stable-promotions-row-posters,
  .stable-promotions-row-black {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .stable-promotions-layout {
    width: 100%;
  }

  .stable-promotions-row-landscape {
    grid-template-columns: 1fr;
  }

  .promotion-carousel {
    margin-inline: calc(50% - 50vw);
  }

  .promotion-carousel-track {
    border-radius: 0;
  }

  .promotion-carousel-track img {
    border-radius: 0;
  }

  .promotion-carousel-button {
    display: none;
  }

  .promotion-carousel-portrait {
    width: min(100% - 32px, 560px);
    margin-inline: auto;
  }

  .promotion-carousel-portrait .promotion-carousel-track {
    width: 100%;
    gap: 0;
    padding: 0;
    border-radius: 20px;
    scroll-padding-inline: 0;
  }

  .promotion-carousel-portrait .promotion-carousel-track img {
    flex-basis: 100%;
    border-radius: 20px;
  }

  .stable-promotions-row-posters,
  .stable-promotions-row-black {
    grid-auto-columns: minmax(0, min(82vw, 320px));
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    justify-content: start;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    overflow-x: auto;
    padding: 0 max(16px, calc((100vw - min(82vw, 320px)) / 2)) 12px;
    scroll-padding-inline: max(16px, calc((100vw - min(82vw, 320px)) / 2));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .stable-promotions-row-posters img,
  .stable-promotions-row-black img {
    scroll-snap-align: center;
  }

  .stable-promotions-row-posters.promotion-carousel,
  .stable-promotions-row-black.promotion-carousel {
    width: min(100% - 32px, 560px);
    margin-inline: auto;
    overflow: hidden;
    padding: 0;
  }

  .stable-promotions-row-posters.promotion-carousel .promotion-carousel-track,
  .stable-promotions-row-black.promotion-carousel .promotion-carousel-track {
    overflow-x: auto;
    padding: 0;
    scroll-padding-inline: 0;
  }
}

.activity-poster-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 260px));
  justify-content: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding-block: clamp(28px, 5vw, 56px);
  background: #dfe9e4;
}

.birthday-party-page > .section {
  background: var(--ivory);
}

.activity-poster-section > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.activity-poster-section-compact {
  row-gap: clamp(24px, 4vw, 42px);
}

.activity-poster-thumbnails {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
  width: min(100%, 1100px);
  margin: 0 auto;
}

.activity-poster-thumbnails img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.activity-poster-section img {
  cursor: zoom-in;
}

.activity-poster-section img:hover,
.activity-poster-section img:focus-visible {
  outline: 3px solid rgba(146, 102, 56, 0.38);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .activity-poster-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(4, 22, 18, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.image-lightbox.lightbox-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  width: auto;
  max-width: min(96vw, 1280px);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: var(--gold);
  color: var(--deep-green);
  outline: none;
}

.main-coming-soon {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100vh - 184px);
  padding: 80px 24px;
  background: var(--ivory);
  color: var(--deep-green);
  text-align: center;
}

.main-coming-soon .eyebrow {
  margin: 0 0 14px;
  color: #8a682c;
}

.main-coming-soon h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6rem);
}

.main-coming-soon p:last-child {
  margin: 20px 0 0;
  color: rgba(31, 54, 42, 0.76);
  font-size: 1.05rem;
}

.corporate-event-section {
  padding: clamp(56px, 7vw, 96px) 24px;
}

.corporate-event-section-light {
  background: var(--ivory);
}

.corporate-event-section-sage {
  background: var(--cream);
}

.corporate-event-grid {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
  width: min(100%, 1400px);
  margin: 0 auto;
}

.corporate-event-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 5vw, 72px);
}

.corporate-event-image {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(31, 60, 47, 0.16);
}

.corporate-event-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.corporate-event-copy h2,
.corporate-event-copy h3 {
  color: var(--deep-green);
  font-family: "Playfair Display", serif;
}

.corporate-event-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.18;
}

.corporate-event-copy h3 {
  margin: 34px 0 14px;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.corporate-event-copy p {
  margin: 0 0 22px;
  color: rgba(31, 54, 42, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.9;
}

.corporate-event-copy p:last-child {
  margin-bottom: 0;
}

.corporate-event-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(100%, 900px);
  margin: clamp(40px, 5vw, 64px) auto 0;
  text-align: center;
}

.corporate-event-cta p {
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
}

.stable-careers-section {
  padding: clamp(64px, 8vw, 108px) 24px;
  background: var(--ivory);
}

.stable-careers-intro {
  width: min(100%, 1100px);
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.stable-careers-intro p {
  margin: 0 auto 22px;
  color: rgba(31, 54, 42, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.stable-careers-intro a {
  color: var(--dark-green);
  font-weight: 700;
}

.stable-careers-intro h2 {
  margin: 46px 0 0;
  color: var(--deep-green);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.stable-careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.stable-careers-list {
  display: grid;
  gap: 24px;
}

.stable-career-role {
  padding: 28px 30px;
  border: 1px solid rgba(31, 60, 47, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(31, 60, 47, 0.08);
}

.stable-career-role h3 {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.stable-career-role p {
  margin: 0 0 12px;
  color: rgba(31, 54, 42, 0.84);
  line-height: 1.75;
}

.stable-career-role p:last-child {
  margin-bottom: 0;
}

.stable-careers-callout {
  position: sticky;
  top: 120px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 28px;
  background: #d5e2dc;
  box-shadow: var(--shadow);
}

.stable-careers-callout h2 {
  margin: 10px 0 20px;
  color: var(--deep-green);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.stable-careers-callout p:not(.eyebrow) {
  margin: 0 0 18px;
  color: rgba(31, 54, 42, 0.88);
  line-height: 1.75;
}

.stable-careers-callout .btn {
  margin-top: 14px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.notice-card,
.rate-card,
.activity-item {
  background: #ffffff;
  border: 1px solid rgba(31, 60, 47, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.notice-card {
  padding: 24px;
  line-height: 1.7;
}

.notice-card strong {
  color: var(--dark-green);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-gst-note {
  margin: 22px auto 0;
  color: #8a682c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.enrolment-gst-note {
  margin-top: 28px;
  font-size: 0.92rem;
  letter-spacing: 0.32em;
}

.section-alt > .price-gst-note {
  color: #f2d28f;
}

.rate-card .price-gst-note {
  margin-top: 12px;
  color: #8a682c;
}

.rate-card {
  overflow: hidden;
  color: var(--text-dark);
}

.rate-card h3 {
  margin: 0;
  padding: 18px 22px;
  background: var(--dark-green);
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.rate-card-body {
  padding: 22px;
}

.rate-meta {
  margin: 0 0 18px;
  padding-left: 20px;
  color: rgba(31, 54, 42, 0.86);
  line-height: 1.7;
}

@media (min-width: 760px) {
  .rate-grid[data-cms-price-group="beginner"] .rate-meta {
    min-height: 6.8em;
  }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  font-size: 0.92rem;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  border: 1px solid rgba(31, 60, 47, 0.12);
  text-align: center;
}

.price-table th {
  background: #f3eee3;
  color: var(--dark-green);
}

.price-table td {
  background: rgba(255, 255, 255, 0.78);
}

.activity-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-item {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--text-dark);
}

.activity-item h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}

.activity-item p {
  margin: 0;
  color: rgba(31, 54, 42, 0.82);
  line-height: 1.7;
}

.riding-pathways-section {
  background: #f3eee3;
}

.riding-pathways-section .section-head {
  max-width: 850px;
}

.riding-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.riding-pathway-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(31, 60, 47, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.riding-pathway-card h3 {
  margin: 0 0 6px;
  color: var(--dark-green);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.riding-pathway-card p {
  margin: 16px 0 0;
  color: rgba(31, 54, 42, 0.84);
  line-height: 1.8;
}

.riding-pathway-card .riding-pathway-age {
  margin-top: 0;
  color: #8a682c;
  font-weight: 700;
}

.gallery-section {
  padding-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gallop AI chat */
.gallop-ai-page {
  min-height: 100vh;
  background: #d5e2dc;
}

.gallop-ai-page .horse-assistant {
  display: none;
}

.ai-chat-page {
  padding: clamp(48px, 7vw, 92px) 24px clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 10% 15%, rgba(208, 168, 86, 0.2), transparent 28%),
    linear-gradient(180deg, #b8cdc4, var(--ivory));
}

.ai-chat-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  gap: 30px;
  width: min(100%, 980px);
  margin: 0 auto 32px;
}

.ai-chat-intro .eyebrow {
  margin: 0 0 10px;
  color: #8a6937;
}

.ai-chat-intro h1 {
  margin: 0;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.ai-chat-intro p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(64, 57, 47, 0.78);
  line-height: 1.75;
}

.ai-chat-intro > img {
  align-self: end;
  width: 230px;
  filter: drop-shadow(0 18px 20px rgba(48, 42, 34, 0.2));
}

.ai-chat-shell {
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(64, 57, 47, 0.14);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 30px 80px rgba(48, 42, 34, 0.2);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--deep-green);
  color: var(--ivory);
}

.ai-chat-header > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2dfb8, #c5a15d);
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ai-chat-title h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
}

.ai-chat-title span {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(197, 161, 93, 0.24);
  color: #f2d28f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-chat-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.ai-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #72c787;
}

.ai-chat-messages {
  height: min(52vh, 520px);
  min-height: 390px;
  overflow-y: auto;
  padding: 30px;
  scroll-behavior: smooth;
}

.ai-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.ai-message > img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #e6d5b5;
}

.ai-message > div {
  min-width: 0;
  max-width: min(76%, 660px);
  padding: 13px 16px;
  border-radius: 18px 18px 18px 5px;
  background: #d5e2dc;
  color: var(--text-dark);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ai-message p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ai-message a,
.ai-message code {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ai-message pre {
  max-width: 100%;
  margin: 10px 0 0;
  overflow-x: auto;
  white-space: pre-wrap;
}

.ai-message-user {
  justify-content: flex-end;
}

.ai-message-user > div {
  border-radius: 18px 18px 5px 18px;
  background: var(--dark-green);
  color: var(--ivory);
}

.ai-whatsapp-link {
  display: inline-flex;
  margin-top: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #25d366;
  color: #102b19;
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-whatsapp-link:hover,
.ai-whatsapp-link:focus-visible {
  background: #7be49e;
  outline: none;
}

.ai-message-typing > div {
  display: flex;
  gap: 5px;
  padding: 16px 18px;
}

.ai-message-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  animation: aiTyping 1s infinite ease-in-out;
}

.ai-message-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.ai-message-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes aiTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.ai-chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 24px 14px;
}

.ai-chat-suggestions button {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(70, 80, 68, 0.18);
  border-radius: 999px;
  background: #f3ecdf;
  color: var(--dark-green);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.ai-chat-suggestions button:hover,
.ai-chat-suggestions button:focus-visible {
  border-color: var(--gold);
  background: #ead7b2;
  outline: none;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(64, 57, 47, 0.1);
  background: #f8f1e4;
}

.ai-chat-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(64, 57, 47, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text-dark);
  font: inherit;
  outline: none;
}

.ai-chat-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 161, 93, 0.18);
}

.ai-chat-form button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--dark-green);
  color: var(--ivory);
  cursor: pointer;
}

.ai-chat-form button:hover,
.ai-chat-form button:focus-visible {
  background: var(--gold);
  color: var(--deep-green);
  outline: none;
}

.ai-chat-form svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-chat-disclaimer {
  margin: 0;
  padding: 0 24px 18px;
  background: #f8f1e4;
  color: rgba(64, 57, 47, 0.58);
  font-size: 0.68rem;
  text-align: center;
}

@media (max-width: 650px) {
  .ai-chat-page {
    padding: 34px 12px 60px;
  }

  .ai-chat-intro {
    grid-template-columns: 1fr 105px;
    gap: 10px;
    padding: 0 10px;
  }

  .ai-chat-intro > img {
    width: 120px;
  }

  .ai-chat-shell {
    border-radius: 22px;
  }

  .ai-chat-messages {
    height: 55vh;
    min-height: 360px;
    padding: 20px 14px;
  }

  .ai-message > div {
    max-width: 82%;
  }

  .ai-chat-header,
  .ai-chat-form {
    padding-right: 14px;
    padding-left: 14px;
  }

  .ai-chat-suggestions {
    padding-right: 14px;
    padding-left: 14px;
  }
}

.about-section {
  background: #d5e2dc;
}

.about-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.about-card .eyebrow {
  margin: 0 0 12px;
  color: #8a682c;
}

.about-card h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text-dark);
}

.about-card p {
  margin: 22px 0 0;
  color: rgba(31, 54, 42, 0.85);
  line-height: 1.95;
}

.about-card ul {
  margin: 26px 0 0;
  padding-left: 20px;
  color: rgba(31, 54, 42, 0.85);
}

.about-card li {
  margin-bottom: 12px;
}

.faq-section {
  background: #d5e2dc;
}

.faq-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.faq-intro {
  max-width: 700px;
  margin-bottom: 38px;
}

.faq-intro .eyebrow {
  margin: 0 0 10px;
  color: #8a682c;
}

.faq-intro h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.faq-intro p,
.faq-answer {
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-intro p,
.faq-answer p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(79, 81, 61, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(61, 73, 63, 0.07);
}

.faq-item summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: #3d493f;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer a {
  color: var(--dark-green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(15, 81, 69, 0.35);
  text-underline-offset: 3px;
}

.faq-contact {
  margin-top: 30px;
  padding: 24px;
  background: rgba(205, 164, 91, 0.14);
  border-radius: 16px;
}

.faq-contact p {
  margin: 0 0 16px;
  color: var(--text-dark);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px 24px 80px;
  background: var(--deep-green);
  color: var(--ivory);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(8, 19, 14, 0.78) 0%, rgba(8, 19, 14, 0.58) 42%, rgba(8, 19, 14, 0.42) 72%),
    linear-gradient(180deg, rgba(8, 19, 14, 0.78), rgba(8, 19, 14, 0.54) 45%, rgba(8, 19, 14, 0.82));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stable-page-hero img {
  object-position: center 42%;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.page-hero-copy .eyebrow {
  color: #f2d28f;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.page-hero-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: #ffffff;
  text-transform: capitalize;
}

.page-hero-copy p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.8;
}

.page-hero-copy p:not(.eyebrow) {
  display: none;
}

.contact-form-section {
  padding: clamp(64px, 7vw, 96px) 24px;
  background: var(--ivory);
  text-align: center;
}

.contact-form-section h2 {
  margin: 0 0 clamp(40px, 5vw, 64px);
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
}

.contact-form {
  display: grid;
  gap: 28px;
  width: min(100%, 680px);
  margin: 0 auto;
}

.contact-form-field {
  display: grid;
  gap: 9px;
  text-align: left;
}

.contact-form-field label {
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 60, 47, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-dark);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-field input {
  min-height: 52px;
  padding: 12px 16px;
}

.contact-form-field textarea {
  min-height: 220px;
  padding: 16px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 107, 0.18);
}

.contact-form-submit {
  justify-self: center;
  min-width: 140px;
  padding: 14px 30px;
  border: 1px solid var(--dark-green);
  border-radius: 999px;
  background: var(--dark-green);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-form-submit:hover,
.contact-form-submit:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--deep-green);
  transform: translateY(-2px);
  outline: none;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-copy .eyebrow {
  color: #8a682c;
  margin-bottom: 12px;
}

.contact-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  color: var(--text-dark);
}

.contact-copy p {
  margin: 18px 0 0;
  color: rgba(31, 54, 42, 0.82);
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-cards .info-card {
  width: 100%;
}

.info-card {
  display: block;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 60, 47, 0.08);
  color: var(--text-dark);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.info-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 165, 107, 0.42);
  box-shadow: 0 30px 70px rgba(18, 30, 22, 0.18);
  outline: none;
}

.info-card h3 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
}

.info-card p {
  margin: 0 0 8px;
  color: rgba(31, 54, 42, 0.85);
  line-height: 1.8;
}

.site-footer {
  color: rgba(23, 61, 52, 0.82);
  background: #b8cdc4;
  border-top: 1px solid rgba(15, 81, 69, 0.16);
}

/* Horse directories and profile templates */
.horse-directory-section {
  background: var(--ivory);
}

.horse-directory-heading {
  max-width: 820px;
}

.horse-directory-heading > p:last-child {
  margin: 18px auto 0;
  color: rgba(64, 57, 47, 0.78);
  line-height: 1.75;
}

.horse-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.horse-card {
  overflow: hidden;
  border: 1px solid rgba(64, 57, 47, 0.13);
  border-radius: 22px;
  background: #fdf9f1;
  box-shadow: 0 18px 46px rgba(48, 42, 34, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horse-card:hover,
.horse-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 26px 58px rgba(48, 42, 34, 0.2);
  outline: none;
}

.horse-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d8cbb8;
  transition: transform 0.45s ease;
}

.horse-card:hover > img,
.horse-card:focus-visible > img {
  transform: scale(1.035);
}

.horse-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.horse-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.horse-card-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(102, 112, 93, 0.13);
  color: var(--dark-green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.horse-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
}

.horse-card p {
  margin: 0;
  color: rgba(64, 57, 47, 0.76);
  line-height: 1.65;
}

.horse-card-link {
  color: #8a6937;
  font-size: 0.9rem;
  font-weight: 700;
}

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

/* Adopt and lease programme pages */
.programme-editorial-page {
  background: #dfe9e4;
}

.programme-banner-hero {
  min-height: 58vh;
}

.programme-banner-hero img {
  object-position: center 42%;
}

.programme-editorial-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  min-height: auto;
  width: min(100%, 1248px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 24px;
  background: #dfe9e4;
}

.programme-editorial-hero::before {
  display: none;
}

.programme-editorial-hero > img {
  position: static;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(31, 60, 47, 0.15);
}

.programme-editorial-hero .page-hero-copy {
  position: static;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 600px;
  padding: 0;
  background: transparent;
  color: var(--deep-green);
  text-align: left;
  transform: none;
}

.programme-editorial-hero .page-hero-copy::before {
  display: none;
}

.programme-editorial-hero .page-hero-copy .eyebrow {
  margin: 0 0 20px;
  color: #8a682c;
  text-shadow: none;
}

.programme-editorial-hero .page-hero-copy h2 {
  margin: 0 0 26px;
  max-width: 600px;
  color: var(--deep-green);
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  line-height: 1.08;
  text-shadow: none;
}

.programme-editorial-hero .page-hero-copy p:not(.eyebrow) {
  display: block;
  max-width: 580px;
  margin: 0 0 28px;
  color: rgba(31, 54, 42, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
  text-shadow: none;
}

.programme-editorial-hero .btn {
  min-height: 48px;
  padding: 14px 22px;
  font-size: 1rem;
}

.programme-editorial-panel {
  padding-top: 88px;
  padding-bottom: 88px;
}

.programme-editorial-page .programme-intro {
  background: #f8f5ed;
}

.programme-editorial-page .horse-directory-section,
.programme-editorial-page .programme-details,
.programme-editorial-page .adoption-impact {
  background: #dfe9e4;
}

.programme-editorial-page .programme-benefits,
.programme-editorial-page .programme-rules,
.programme-editorial-page .injury-care-section {
  background: #f8f5ed;
}

.adopt-programme-page .programme-intro {
  background: #f8f5ed;
}

.adopt-programme-page .programme-benefits {
  background: #f8f5ed;
}

.adopt-programme-page .programme-details {
  background: #dfe9e4;
}

.adopt-programme-page .programme-rules {
  background: #f8f5ed;
}

.programme-editorial-page .section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.programme-editorial-page .section-head h2 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.programme-editorial-page .section-head p {
  max-width: 760px;
  font-size: 1.06rem;
}

.programme-editorial-page .programme-intro-grid,
.programme-editorial-page .adoption-impact-grid {
  width: min(100%, 1200px);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 6vw, 84px);
}

.programme-editorial-page .programme-intro-grid-image {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.programme-intro-image {
  overflow: hidden;
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(31, 60, 47, 0.15);
}

.programme-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-editorial-page .programme-intro-grid h2,
.programme-editorial-page .adoption-impact-grid h2 {
  font-size: clamp(2.5rem, 3.5vw, 3.8rem);
}

.programme-editorial-page .programme-intro-grid p,
.programme-editorial-page .adoption-impact-grid p {
  font-size: 1.06rem;
  line-height: 1.95;
}

.programme-editorial-page .programme-goal-card {
  padding: clamp(32px, 5vw, 54px);
  border-radius: 28px;
}

.programme-editorial-page .horse-card,
.programme-editorial-page .programme-card,
.programme-editorial-page .programme-rule,
.programme-editorial-page .injury-care-card {
  border-radius: 22px;
}

.programme-editorial-page .horse-card-grid,
.programme-editorial-page .programme-card-grid,
.programme-editorial-page .programme-rules-grid {
  width: min(100%, 1200px);
  gap: 24px;
}

.programme-editorial-page .programme-detail-stack {
  width: min(100%, 1180px);
}

.programme-editorial-page .programme-detail-row {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
}

.programme-editorial-page .programme-closing {
  padding: 88px 24px;
  background: #dfe9e4;
}

.programme-editorial-page .programme-closing-card {
  width: min(100%, 1040px);
  padding: clamp(40px, 7vw, 72px);
  border-radius: 30px;
}

.programme-intro {
  background: #fffdf8;
}

.programme-intro-grid,
.adoption-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 7vw, 92px);
  width: min(100%, 1160px);
  margin: 0 auto;
  align-items: center;
}

.programme-intro-grid h2,
.adoption-impact-grid h2 {
  margin: 8px 0 24px;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.programme-intro-grid p,
.adoption-impact-grid p {
  color: rgba(64, 57, 47, 0.82);
  line-height: 1.85;
}

.programme-goal-card {
  padding: clamp(32px, 5vw, 54px);
  border-radius: 28px;
  background: var(--deep-green);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.programme-goal-card strong,
.programme-goal-card span {
  display: block;
}

.programme-goal-card strong {
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.85;
}

.programme-goal-card span {
  margin: 18px 0;
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
}

.programme-goal-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.horse-card-grid-five .horse-card {
  display: block;
}

.programme-benefits {
  background: #d5e2dc;
}

.programme-card-grid,
.programme-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.programme-card,
.programme-rule {
  padding: 30px;
  border: 1px solid rgba(64, 57, 47, 0.12);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 16px 38px rgba(48, 42, 34, 0.09);
}

.programme-price {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(201, 165, 107, 0.18);
  color: #7c5a27;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.programme-card h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
}

.programme-card p,
.programme-rule p {
  margin: 0;
  color: rgba(64, 57, 47, 0.76);
  line-height: 1.7;
}

.programme-rules {
  background: var(--ivory);
}

.programme-details {
  background: #fffdf8;
}

.programme-detail-stack {
  display: grid;
  width: min(100%, 1060px);
  margin: 0 auto;
  border-top: 1px solid rgba(64, 57, 47, 0.16);
}

.programme-detail-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(64, 57, 47, 0.16);
}

.programme-detail-number {
  color: #9a7440;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.programme-detail-row h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.programme-detail-row p {
  margin: 0;
  color: rgba(64, 57, 47, 0.78);
  line-height: 1.8;
}

.programme-rule {
  border-left: 4px solid var(--gold);
}

.programme-rule strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-green);
  font-size: 1.02rem;
}

.injury-care-section {
  background: #d5e2dc;
}

.injury-care-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 90px);
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 66px);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.injury-care-card h2 {
  margin: 8px 0 0;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.injury-care-copy p {
  margin: 0 0 18px;
  color: rgba(64, 57, 47, 0.8);
  line-height: 1.8;
}

.injury-care-copy p:last-child {
  margin-bottom: 0;
}

.adoption-impact {
  background: #fffdf8;
}

.adoption-impact-image {
  overflow: hidden;
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  min-height: 0;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.adoption-impact-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.programme-closing {
  background: #fffdf8;
}

.programme-closing-card {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 165, 107, 0.25), transparent 30%),
    var(--deep-green);
  color: var(--ivory);
  text-align: center;
}

.programme-closing-card .eyebrow {
  color: var(--gold);
}

.programme-closing-card h2 {
  margin: 10px auto 20px;
  max-width: 800px;
  color: inherit;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.programme-closing-card p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 253, 248, 0.8);
  line-height: 1.8;
}

.horse-profile-page {
  background: var(--ivory);
}

.horse-profile-hero {
  padding: clamp(64px, 8vw, 112px) 24px clamp(76px, 9vw, 124px);
  background:
    radial-gradient(circle at 85% 20%, rgba(208, 168, 86, 0.2), transparent 28%),
    linear-gradient(180deg, #b8cdc4, var(--ivory));
}

.horse-profile-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.horse-profile-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--dark-green);
  font-weight: 700;
}

.horse-profile-shell > .eyebrow {
  margin: 0 0 10px;
  color: #8a6937;
}

.horse-profile-shell h1 {
  margin: 0;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.horse-profile-intro {
  max-width: 720px;
  margin: 20px 0 46px;
  color: rgba(64, 57, 47, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.horse-profile-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.horse-profile-main-image {
  overflow: hidden;
  min-height: 540px;
  border-radius: 26px;
  background: #d8cbb8;
  box-shadow: var(--shadow);
}

.horse-profile-main-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.horse-profile-thumbnails {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.horse-profile-thumbnail {
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 16px;
  background: #d8cbb8;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.horse-profile-thumbnail:hover,
.horse-profile-thumbnail:focus-visible,
.horse-profile-thumbnail.active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateX(-3px);
  outline: none;
}

.horse-profile-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horse-profile-details {
  padding: clamp(72px, 9vw, 128px) 24px;
  background: #fffdf8;
}

.horse-profile-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(42px, 7vw, 96px);
  width: min(100%, 1200px);
  margin: 0 auto;
  align-items: start;
}

.horse-facts-card {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: 24px;
  background: #d5e2dc;
  box-shadow: 0 20px 50px rgba(48, 42, 34, 0.12);
}

.horse-facts-card .eyebrow,
.horse-story > .eyebrow {
  margin: 0 0 18px;
  color: #8a6937;
}

.horse-facts {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.horse-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(64, 57, 47, 0.13);
}

.horse-facts dt {
  color: var(--text-dark);
  font-weight: 700;
}

.horse-facts dd {
  margin: 0;
  color: rgba(64, 57, 47, 0.75);
}

.horse-story h2 {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.horse-story p {
  margin: 0 0 22px;
  color: rgba(64, 57, 47, 0.84);
  font-size: 1.02rem;
  line-height: 1.9;
}

.horse-story p + h2 {
  margin-top: 62px;
}

.horse-trait-list {
  display: grid;
  gap: 0;
  margin-bottom: 64px;
  border-top: 1px solid rgba(64, 57, 47, 0.14);
}

.horse-trait-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(64, 57, 47, 0.14);
}

.horse-trait-list span {
  color: rgba(64, 57, 47, 0.72);
}

.horse-trait-list strong {
  color: var(--dark-green);
}

.horse-profile-callout {
  padding: clamp(30px, 5vw, 52px);
  border-radius: 28px;
  background: var(--deep-green);
  color: var(--ivory);
}

.horse-profile-callout h2,
.horse-profile-callout p {
  color: inherit;
}

.horse-profile-callout h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 900px) {
  .programme-editorial-hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 68px 24px 80px;
  }

  .programme-editorial-hero > img,
  .programme-editorial-hero .page-hero-copy {
    grid-column: 1;
  }

  .programme-editorial-hero .page-hero-copy {
    grid-row: 1;
  }

  .programme-editorial-hero > img {
    grid-row: 2;
    height: clamp(320px, 72vw, 480px);
    border-radius: 28px;
  }

  .programme-editorial-page .programme-intro-grid,
  .programme-editorial-page .adoption-impact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .programme-editorial-page .programme-intro-image {
    height: clamp(320px, 72vw, 480px);
    border-radius: 28px;
  }

  .programme-editorial-page .adoption-impact-image {
    height: clamp(320px, 72vw, 480px);
    border-radius: 28px;
  }

  .programme-intro-grid,
  .adoption-impact-grid {
    grid-template-columns: 1fr;
  }

  .programme-card-grid,
  .programme-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .injury-care-card {
    grid-template-columns: 1fr;
  }

  .horse-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .horse-profile-gallery {
    grid-template-columns: 1fr;
  }

  .horse-profile-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .horse-profile-thumbnail {
    aspect-ratio: 4 / 3;
  }

  .horse-profile-thumbnail:hover,
  .horse-profile-thumbnail:focus-visible,
  .horse-profile-thumbnail.active {
    transform: translateY(-3px);
  }

  .horse-profile-content {
    grid-template-columns: 1fr;
  }

  .horse-facts-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .programme-editorial-hero {
    padding: 54px 18px 68px;
  }

  .programme-editorial-hero .page-hero-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .programme-editorial-hero > img {
    height: 86vw;
    max-height: 420px;
    border-radius: 24px;
  }

  .programme-editorial-panel {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .programme-editorial-page .programme-detail-row {
    grid-template-columns: 1fr;
  }

  .programme-card-grid,
  .programme-rules-grid {
    grid-template-columns: 1fr;
  }

  .programme-card,
  .programme-rule {
    padding: 24px;
  }

  .programme-detail-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .adoption-impact-image,
  .adoption-impact-image img {
    min-height: 0;
  }

  .programme-editorial-page .adoption-impact-image {
    height: 86vw;
    max-height: 420px;
    border-radius: 24px;
  }

  .programme-editorial-page .programme-intro-image {
    height: 86vw;
    max-height: 420px;
    border-radius: 24px;
  }

  .horse-card-grid {
    grid-template-columns: 1fr;
  }

  .horse-profile-hero,
  .horse-profile-details {
    padding-left: 18px;
    padding-right: 18px;
  }

  .horse-profile-main-image,
  .horse-profile-main-image img {
    min-height: 340px;
  }

  .horse-facts-card {
    padding: 24px;
  }

  .horse-facts div {
    grid-template-columns: 90px 1fr;
  }

  .horse-trait-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 140px);
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0 clamp(46px, 6vw, 76px);
}

.footer-heading h2 {
  margin: 0 0 28px;
  color: var(--text-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.footer-heading-hours {
  grid-column: 2;
}

.footer-location-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
}

.footer-location-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 140px);
  padding: 24px 0;
  border-top: 1px solid rgba(15, 81, 69, 0.18);
}

.footer-location-card:last-child {
  border-bottom: 1px solid rgba(15, 81, 69, 0.18);
}

.footer-location-card h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-location-card p {
  margin: 0;
  color: rgba(23, 61, 52, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-location-details > p {
  max-width: 500px;
  margin-bottom: 7px;
}

.footer-location-details a {
  color: #8a682c;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration-color: rgba(138, 104, 44, 0.38);
  text-underline-offset: 3px;
}

.footer-location-details a:hover {
  color: var(--deep-green);
}

.footer-carpark-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(15, 81, 69, 0.2);
  border-radius: 999px;
  background: rgba(247, 244, 234, 0.55);
}

.footer-carpark-link[aria-disabled="true"] {
  opacity: 0.68;
  pointer-events: none;
}

.site-footer[data-home-footer] .footer-main {
  width: min(100% - 72px, 1320px);
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(58px, 6vw, 88px);
}

.site-footer[data-home-footer] .footer-heading h2 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.site-footer[data-home-footer] .footer-location-card {
  padding: 34px 0;
}

.site-footer[data-home-footer] .footer-location-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.site-footer[data-home-footer] .footer-location-card p,
.site-footer[data-home-footer] .footer-location-details a {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
}

.site-footer[data-home-footer] .footer-carpark-link {
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.opening-gallery {
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) 0;
  background: var(--deep-green);
}

.opening-gallery h2 {
  margin: 0 24px 14px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-align: center;
}

.opening-gallery-link {
  max-width: 1400px;
  margin: 0 auto 34px;
  padding: 0 24px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.opening-gallery-link a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.opening-gallery-link a:hover,
.opening-gallery-link a:focus-visible {
  color: #fffaf0;
}

.opening-gallery-card {
  flex: 0 0 auto;
  width: clamp(320px, 42vw, 620px);
  height: clamp(240px, 31vw, 460px);
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #182a21;
}

.opening-gallery-card img,
.opening-gallery-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.opening-gallery-card:hover img,
.opening-gallery-card:hover video {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.footer-days {
  margin-bottom: 5px !important;
  color: #78591f !important;
  font-weight: 700;
}

@media (max-width: 620px) {
  .opening-gallery {
    padding: 36px 0 44px;
  }

  .opening-gallery h2 {
    margin-bottom: 24px;
    padding: 0 18px;
  }

  .opening-gallery-card {
    width: min(82vw, 420px);
    height: min(62vw, 320px);
    border-radius: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1500px);
    column-gap: 0;
  }

  .footer-heading h2 {
    margin-bottom: 14px;
  }

  .footer-heading-hours {
    display: none;
  }

  .footer-location-list {
    grid-column: 1;
  }

  .footer-location-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-location-hours {
    padding-left: 16px;
    border-left: 2px solid rgba(15, 81, 69, 0.32);
  }

  .site-footer[data-home-footer] .footer-main {
    width: min(100% - 36px, 1320px);
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .site-footer[data-home-footer] .footer-heading h2 {
    font-size: 1.8rem;
  }

  .site-footer[data-home-footer] .footer-carpark-link {
    width: 100%;
  }
}

.social-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-float-links {
  display: grid;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.88);
  transform-origin: bottom center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-float.social-open .social-float-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.social-float-btn {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 37, 28, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-float-btn:hover,
.social-float-btn:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 54px rgba(16, 37, 28, 0.32);
  outline: none;
}

.social-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float {
  background: #25d366;
}

.instagram-float {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.tiktok-float {
  background: #050505;
}

.social-float-toggle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--dark-green);
  color: var(--ivory);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(16, 37, 28, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-float-toggle:hover,
.social-float-toggle:focus-visible {
  background: var(--gold);
  color: var(--dark-green);
  transform: translateY(-3px);
  outline: none;
}

.social-float-toggle svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.social-float.social-open .social-float-toggle {
  transform: rotate(6deg);
}

.horse-assistant {
  position: relative;
}

.horse-assistant-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: linear-gradient(145deg, #f2dfb8, #c5a15d);
  color: var(--deep-green);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(16, 37, 28, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.horse-assistant-toggle:hover,
.horse-assistant-toggle:focus-visible {
  background: var(--ivory);
  transform: translateY(-3px) scale(1.03);
  outline: none;
}

.horse-assistant-toggle img {
  width: 76px;
  max-width: none;
  height: 76px;
  object-fit: contain;
  transform: translateY(-8px);
  filter: drop-shadow(0 8px 9px rgba(48, 42, 34, 0.25));
  pointer-events: none;
}

.horse-assistant-toggle span {
  position: absolute;
  right: -4px;
  bottom: -2px;
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid var(--ivory);
  border-radius: 999px;
  background: var(--deep-green);
  color: var(--ivory);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.horse-assistant-message {
  position: absolute;
  right: 76px;
  bottom: 0;
  width: min(330px, calc(100vw - 120px));
  padding: 22px 24px;
  border: 1px solid rgba(64, 57, 47, 0.14);
  border-radius: 20px 20px 4px 20px;
  background: var(--ivory);
  color: var(--text-dark);
  box-shadow: 0 20px 55px rgba(16, 37, 28, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.horse-assistant.assistant-open .horse-assistant-message {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.horse-assistant-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
}

.horse-assistant-heading strong {
  color: var(--deep-green);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.horse-assistant-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54a86b;
  box-shadow: 0 0 0 4px rgba(84, 168, 107, 0.14);
}

.horse-assistant-beta {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(197, 161, 93, 0.18);
  color: #8a6937;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.horse-assistant-message .horse-assistant-greeting {
  margin: 8px 0 14px;
  color: rgba(64, 57, 47, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.horse-assistant-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(64, 57, 47, 0.62);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.horse-assistant-close:hover,
.horse-assistant-close:focus-visible {
  color: var(--deep-green);
  outline: none;
}

.facebook-float {
  background: #1877f2;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .venture-grid {
    gap: 64px 30px;
  }

  .hero-copy h2 {
    white-space: normal;
  }

  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-alt .about-story-image {
    order: -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .service-detail {
    min-height: 0;
  }

  .service-detail-image {
    height: clamp(300px, 76vw, 440px);
  }

  .jackuda-original-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .jackuda-activity-row {
    grid-template-columns: 1fr;
  }

  .jackuda-activity-image {
    height: clamp(240px, 68vw, 360px);
  }

  .venture-section {
    padding: 68px 18px 80px;
  }

  .venture-section-title {
    margin-bottom: 12px;
  }

  .venture-section-eyebrow {
    margin-bottom: 44px;
  }

  .venture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 18px;
  }

  .venture-link h3 {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .venture-mark p {
    font-size: clamp(0.78rem, 2.6vw, 0.95rem);
  }

  .venture-link.is-scroll-active {
    transform: translateY(-4px);
  }

  .venture-link.is-scroll-active h3 {
    color: var(--gold);
    font-weight: 800;
  }

  .venture-link.is-scroll-active .venture-mark svg {
    filter: drop-shadow(0 12px 18px rgba(138, 104, 44, 0.22));
    transform: scale(1.04);
  }

  .venture-link.is-scroll-active .horseshoe,
  .venture-link.is-scroll-active .horseshoe-cap {
    stroke: var(--gold);
    stroke-width: 24;
  }

  .venture-link.is-scroll-active .horseshoe-nails {
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 5;
  }

  .scroll-gallery-section {
    padding: 40px 0 56px;
  }

  .scroll-gallery-heading {
    margin-bottom: 24px;
    padding: 0 18px;
  }

  .scroll-gallery-card {
    width: clamp(160px, 46vw, 220px);
    height: clamp(240px, 66vw, 330px);
  }

  .about-story-image {
    height: 300px;
  }

  .site-header {
    position: sticky;
    background: var(--dark-green);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .site-header.header-scrolled {
    background: var(--dark-green);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  #book,
  #riding,
  #activities,
  #promotions,
  #contact {
    scroll-margin-top: 88px;
  }

  .header-inner {
    position: relative;
    align-items: center;
    width: min(100% - 28px, 1200px);
    padding: 8px 0;
  }

  .site-brand {
    gap: 10px;
    max-width: calc(100% - 58px);
  }

  .home-brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
  }

  .home-brand-tagline {
    width: auto;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
    text-align-last: center;
    white-space: nowrap;
  }

  .site-header:not(.header-scrolled) .site-brand {
    padding: 8px 10px;
  }

  .site-header.header-scrolled .site-brand {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 34px rgba(6, 18, 12, 0.18);
  }

  .logo-img {
    width: 82px;
  }

  .brand-copy .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .brand-copy h1 {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .nav-toggle {
    display: grid;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 70;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
  }

  .site-header.header-scrolled .nav-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(10, 22, 17, 0.28);
    color: #ffffff;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    width: min(270px, calc(100vw - 36px));
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(31, 60, 47, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 64px rgba(16, 37, 28, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-dropdown-menu.activities-menu {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle,
  .site-header.header-scrolled .nav-dropdown-toggle {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--dark-green);
    text-align: center;
    text-shadow: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 6px;
    padding: 4px;
    border: 0;
    border-radius: 12px;
    background: rgba(31, 60, 47, 0.06);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-toggle {
    background: rgba(201, 165, 107, 0.16);
    color: var(--deep-green);
    box-shadow: inset 0 0 0 1px rgba(201, 165, 107, 0.18);
    transform: translateY(-1px);
  }

  .nav-dropdown-menu a,
  .site-header.header-scrolled .nav-dropdown-menu a {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body:has(.site-header.nav-open) .social-float {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav a,
  .site-header.header-scrolled .main-nav a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--dark-green);
    text-align: center;
    text-shadow: none;
  }

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

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(201, 165, 107, 0.16);
    color: var(--deep-green);
    box-shadow: inset 0 0 0 1px rgba(201, 165, 107, 0.18);
    transform: translateY(-1px);
  }

  .home-banner {
    --video-aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    aspect-ratio: var(--video-aspect-ratio);
    min-height: 0;
    max-height: none;
  }

  .home-banner::after {
    background: linear-gradient(180deg, transparent 48%, rgba(30, 48, 38, 0.78) 100%);
    opacity: 1;
  }

  .home-banner-media {
    object-position: center 43%;
  }

  .hero-section {
    padding: 72px 18px 56px;
  }

  .hero-shell {
    gap: 30px;
  }

  .hero-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero-search-card {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 24px;
    border-radius: 18px;
  }

  .hero-search-card .search-copy {
    padding: 8px 0 16px;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 18px;
  }

  .contact-form-section {
    padding: 60px 18px;
  }

  .contact-form-section h2 {
    margin-bottom: 38px;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-form-field input {
    min-height: 50px;
  }

  .contact-form-field textarea {
    min-height: 200px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .page-hero {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 84px 18px 32px;
  }

  .social-float {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .social-float-btn {
    width: 52px;
    height: 52px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
    min-height: auto;
  }

  .booking-card,
  .about-card,
  .info-card,
  .promo-card,
  .gallery-card,
  .service-card {
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .venture-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .venture-link h3 {
    min-height: 0;
    font-size: 1.3rem;
  }

  .venture-mark {
    width: min(100%, 270px);
  }

  .venture-mark p {
    font-size: 0.98rem;
  }

  .brand-copy .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .brand-copy h1 {
    font-size: 0.82rem;
  }

  .logo-img {
    width: 74px;
  }

  .site-header:not(.header-scrolled) .site-brand {
    padding: 6px 9px;
  }

  .site-header.header-scrolled .site-brand {
    padding: 6px 9px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .home-banner {
    height: auto;
    aspect-ratio: var(--video-aspect-ratio);
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-card {
    padding: 26px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .riding-pathway-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body {
    padding: 24px;
  }

  .gallery-grid {
    gap: 18px;
  }

  .social-float {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .social-float-btn {
    width: 48px;
    height: 48px;
  }

  .social-float-toggle {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .horse-assistant-toggle {
    width: 54px;
    height: 54px;
  }

  .horse-assistant-toggle img {
    width: 68px;
    height: 68px;
  }

  .horse-assistant-message {
    right: 66px;
    width: min(270px, calc(100vw - 104px));
    padding: 18px 20px;
  }

  .social-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-banner-media {
    transform: none;
  }

  .home-banner::after {
    opacity: 0;
  }

  .scroll-gallery {
    overflow-x: auto;
  }

  .scroll-gallery-track {
    animation: none;
  }

  .scroll-gallery-group[aria-hidden="true"] {
    display: none;
  }
}

/* Keep programme editorial heroes from inheriting the compact banner layout. */
@media (max-width: 900px) {
  .programme-editorial-page .programme-editorial-hero {
    grid-template-columns: 1fr;
    gap: 46px;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    padding: 68px 24px 80px;
    align-items: center;
  }

  .programme-editorial-page .programme-editorial-hero .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .programme-editorial-page .programme-editorial-hero > img {
    position: static;
    grid-column: 1;
    grid-row: 2;
    height: clamp(320px, 72vw, 480px);
    border-radius: 28px;
  }
}

@media (max-width: 600px) {
  .programme-editorial-page .programme-editorial-hero {
    padding: 54px 18px 68px;
  }

  .programme-editorial-page .programme-editorial-hero > img {
    height: 86vw;
    max-height: 420px;
    border-radius: 24px;
  }
}
