/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Adamina', Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Top bar === */
.top-bar {
  background: #3e365f;
  color: #fff;
  font-family: 'Adamina', Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.4;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 101;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.top-info { display: flex; gap: 20px; flex-wrap: wrap; }
.top-info span,
.top-info a {
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.top-info a:hover { color: #DCA57D; }
.top-info i {
  margin-right: 7px;
  font-size: 13px;
}

.social-icons { display: flex; gap: 14px; }
.social-icons a {
  color: #fff;
  font-size: 15px;
  transition: color .2s;
}
.social-icons a:hover { color: #DCA57D; }

/* === Main header (grows to fit logo - no bleed) === */
.main-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  position: sticky;
  top: var(--top-bar-h, 35px);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  min-height: 80px;
}
.logo-link { flex: 0 0 auto; display: block; }
.logo {
  height: 110px;
  width: auto;
  display: block;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.main-nav > ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Adamina', Georgia, serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3e365f;
  padding: 8px 0;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: #DCA57D; }

.search-toggle, .mobile-toggle {
  background: none;
  border: none;
  font-size: 18px;
  color: #3e365f;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle { display: none; }

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: 'Adamina', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: .8em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.btn-primary {
  background: #3e365f;
  color: #fff !important;
  border-color: #3e365f;
}
.btn-primary:hover {
  background: #DCA57D;
  border-color: #DCA57D;
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}
.btn-outline:hover {
  background: #DCA57D;
  border-color: #DCA57D;
}
.btn-dark-outline {
  background: transparent;
  color: #3e365f !important;
  border-color: #3e365f;
}
.btn-dark-outline:hover {
  background: #3e365f;
  color: #fff !important;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  background: #000 url('assets/5d823eed13cbb.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 24px;
}
.hero-content h1 {
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4em;
  color: #fff;
}
.hero-content .subhead {
  display: block;
  font-family: 'Adamina', Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2em;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 32px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === QSF section === */
.section-qsf { padding: 60px 0; }
.qsf-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}
.qsf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.qsf-badge img { max-width: 76%; margin: 0 auto; }
.qsf-brands {
  min-height: 360px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* === Features === */
.section-features { padding: 60px 0; background: #f9f9f9; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.features-image img { width: 100%; border-radius: 4px; }
.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.blurb {
  text-align: center;
  padding: 12px;
}
.blurb img {
  width: 80px;
  height: auto;
  margin: 0 auto 14px;
}
.blurb h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.blurb p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* === Care (parallax) === */
.section-care {
  padding: 80px 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.section-care::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.85);
}
.care-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.care-card {
  text-align: center;
  background: rgba(255,255,255,.6);
  padding: 24px;
}
.care-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
}
.care-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}
.care-card p {
  font-size: 15px;
  text-align: left;
}

/* === Helena === */
.section-helena { padding: 80px 0; }
.helena-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.helena-text h2 {
  font-size: 32px;
  line-height: 1.3em;
  margin-bottom: .8em;
}
.helena-text p {
  font-size: 17px;
  margin-bottom: 1.5em;
}
.helena-image {
  min-height: 380px;
  background: url('assets/5d825215d7341-1.jpg') center/cover no-repeat;
}

/* === Saddle Division === */
.section-saddle-hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: #2a2540 url('assets/sat-29th-june-cinic-1.jpg') center/cover no-repeat;
  color: #fff;
}
.saddle-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(42,37,64,.78), rgba(62,54,95,.85));
}
.section-saddle-hero .container { position: relative; z-index: 2; }
.saddle-hero-inner {
  max-width: 900px;
}
.saddle-kicker {
  color: rgba(255,255,255,.82);
}
.saddle-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: .03em;
  line-height: 1.05;
  margin: 0 0 .3em;
  color: #fff;
}
.saddle-hero-sub {
  font-family: 'Adamina', Georgia, serif;
  font-size: 18px;
  letter-spacing: .04em;
  margin: 0;
  opacity: .9;
}
.saddle-hero-copy {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.8em;
  opacity: .95;
}
.saddle-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section-saddle-overview {
  padding: 80px 0;
  background: #fff;
}
.saddle-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: start;
}
.saddle-overview-copy h3 {
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.2em;
  max-width: 13ch;
}
.saddle-overview-copy p {
  font-size: 17px;
  color: #524d5a;
  max-width: 64ch;
}
.saddle-service-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.saddle-service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: #f7f4f0;
  border: 1px solid #eee6dc;
}
.saddle-service-item i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3e365f;
  color: #fff;
  font-size: 20px;
}
.saddle-service-item h4 {
  font-size: 19px;
  margin-bottom: 4px;
}
.saddle-service-item p {
  margin: 0;
  font-size: 15px;
  max-width: none;
}
.saddle-credential-card {
  background: #fff;
  border: 1px solid #ece5dc;
  box-shadow: 0 24px 50px rgba(42,37,64,.10);
  overflow: hidden;
}
.saddle-credential-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.saddle-credential-body {
  padding: 24px;
}
.saddle-credential-body h4 {
  font-size: 28px;
  margin-bottom: 10px;
}
.saddle-credential-body p {
  margin: 0 0 20px;
  color: #5a5563;
}
.saddle-credential-badge {
  padding-top: 18px;
  border-top: 1px solid #efe7dd;
  display: flex;
  justify-content: center;
}
.saddle-credential-badge img {
  max-width: 170px;
}

.section-saddle-process {
  padding: 76px 0;
  background: linear-gradient(180deg, #f7f4f0 0%, #fcfbf9 100%);
}
.saddle-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.saddle-section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.saddle-section-heading h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2em;
}
.saddle-section-heading p {
  margin: 0;
  font-size: 17px;
  color: #5f5b68;
}
.saddle-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.saddle-service-list-process {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.saddle-service-list-process .saddle-service-item {
  height: 100%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 35px rgba(42,37,64,.06);
}
.saddle-process-card {
  padding: 26px;
  background: #fff;
  border-top: 4px solid #DCA57D;
  box-shadow: 0 18px 35px rgba(42,37,64,.08);
}
.saddle-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3e365f;
  color: #fff;
  font-family: 'Adamina', Georgia, serif;
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.saddle-process-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.saddle-process-card p {
  margin: 0;
  color: #5f5b68;
}

.section-saddle-intro { padding: 70px 0; background: #fff; }
.saddle-open-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.saddle-open-img img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
}
.saddle-open-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.divider {
  border: none;
  height: 2px;
  background: #DCA57D;
  width: 60px;
  margin: 14px 0 20px;
}
.saddle-open-text p { font-size: 17px; }

.section-saddle-fit { padding: 70px 0; background: #f7f4f0; }
.saddle-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.saddle-fit-text h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.saddle-fit-text h4 {
  font-family: 'Adamina', Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #DCA57D;
  margin: 0 0 6px;
  font-weight: 700;
}
.saddle-fit-text p { font-size: 16px; margin-bottom: 1em; }
.saddle-fit-note {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid #DCA57D;
  box-shadow: 0 10px 24px rgba(42,37,64,.06);
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-link-card {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 40px;
  background: linear-gradient(rgba(42,37,64,.76), rgba(62,54,95,.86)), url('assets/sat-29th-june-cinic-1.jpg') center/cover no-repeat;
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 35px rgba(42,37,64,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(42,37,64,.18);
}
.video-link-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #DCA57D;
}
.video-link-card strong {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Adamina', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}
.video-link-card strong i {
  font-size: .9em;
  color: #ff4e45;
}
.video-link-copy {
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.7;
  opacity: .92;
}

.section-saddle-tabs { padding: 70px 0; background: #fff; }
.section-tabs-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
.tabs-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 24px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: 'Adamina', Georgia, serif;
  font-size: 15px;
  letter-spacing: .04em;
  color: #777;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.tab-btn:hover { color: #3e365f; }
.tab-btn.active {
  color: #3e365f;
  border-bottom-color: #DCA57D;
}
.tab-panel {
  display: none;
  padding: 10px 4px;
}
.tab-panel.active { display: block; }
.tab-panel ul {
  list-style: disc;
  padding-left: 22px;
}
.tab-panel li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6em;
}
.saddle-tabs-frame {
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}
.saddle-tabs-frame .tabs {
  background: #fff;
  border: 1px solid #eee6dc;
  box-shadow: 0 18px 40px rgba(42,37,64,.08);
  padding: 28px;
}

.section-saddle-brand { padding: 70px 0; background: #fafafa; }
.section-saddle-brand.alt { background: #fff; }
.brand-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.brand-header .brand-logo {
  max-width: 220px;
  margin: 0 auto 14px;
}
.brand-header h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.brand-header .divider { margin: 14px auto 18px; }
.brand-header p { font-size: 16px; color: #555; }
.saddle-gallery {
  max-width: 800px;
  margin: 0 auto;
}
.saddle-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.saddle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
}
.saddle-gallery-grid img {
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.saddle-gallery-grid a { display: block; overflow: hidden; }
.saddle-gallery-grid a:hover img { transform: scale(1.05); }

.section-saddle-partners {
  padding: 80px 0;
  background: #fff;
}
.saddle-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.saddle-partner-card {
  padding: 28px;
  background: #fcfbf9;
  border: 1px solid #eee6dc;
}
.saddle-partner-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.saddle-partner-header .brand-logo {
  max-width: 180px;
  width: auto;
  height: auto;
}
.saddle-partner-header h4 {
  font-size: 30px;
  margin: 0;
}
.saddle-partner-card > p {
  margin: 0 0 22px;
  color: #5f5b68;
}
.saddle-partner-media {
  display: block;
  overflow: hidden;
}
.saddle-partner-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .35s;
}
.saddle-partner-media:hover img,
.saddle-partner-gallery a:hover img {
  transform: scale(1.04);
}
.saddle-partner-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.saddle-partner-gallery a {
  display: block;
  overflow: hidden;
}
.saddle-partner-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .35s;
}

/* === Riding section === */
.section-riding {
  padding: 80px 0;
  background: #f4f0ec url('assets/horse-2061601_960_720.jpg') left center/contain no-repeat;
}
.riding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.riding-text h3 {
  font-size: 28px;
  margin-bottom: .8em;
}
.riding-text p {
  font-size: 17px;
  margin-bottom: 1.5em;
}

/* === About === */
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #DCA57D;
}
.section-about {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f3ee 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.2em;
  max-width: 12ch;
}
.about-copy p {
  max-width: 64ch;
  margin-bottom: 1.2em;
  font-size: 17px;
  color: #4f4a58;
}
.about-side {
  display: grid;
  gap: 22px;
}
.about-image-card {
  margin: 0;
  padding: 14px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(42,37,64,.12);
}
.about-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-highlights {
  display: grid;
  gap: 14px;
}
.about-highlight {
  padding: 20px 22px;
  background: #fff;
  border-left: 4px solid #DCA57D;
  box-shadow: 0 12px 28px rgba(42,37,64,.08);
}
.about-highlight h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.about-highlight p {
  margin: 0;
  font-size: 15px;
  color: #5f5b68;
}
.about-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

/* === Gallery === */
.section-gallery { padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* === News === */
.section-news { padding: 80px 0; background: #fafafa; }
.news-title {
  font-size: 36px;
  margin-bottom: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-card h2 {
  font-size: 22px;
  padding: 16px 20px 4px;
  margin: 0;
}
.news-card .meta {
  padding: 0 20px;
  color: #999;
  font-size: 13px;
  margin: 4px 0 12px;
}
.news-card p {
  padding: 0 20px 20px;
  font-size: 14px;
  margin: 0;
}
.news-cta {
  text-align: center;
  margin-top: 40px;
}

/* === Brands carousel === */
.section-brands { padding: 50px 0; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.brand-carousel {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .5s ease;
  gap: 0;
}
.carousel-track li {
  flex: 0 0 25%;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  position: relative;
  background: #fff;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track li img {
  max-height: 100px;
  width: auto;
  margin: 0 auto;
}
.brand-label {
  position: absolute;
  inset: 0;
  background: rgba(62,54,95,.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Adamina', Georgia, serif;
  font-size: 18px;
  opacity: 0;
  transition: opacity .25s;
}
.carousel-track li:hover .brand-label { opacity: 1; }
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #e8e8e8;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #3e365f;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-prev:hover, .carousel-next:hover { border-color: #3e365f; }

/* === Contact === */
.section-contact {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}
.contact-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: .8em;
}
.contact-info h4 {
  color: #DCA57D;
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 18px;
}
.contact-info p { margin: 0 0 8px; }
.contact-social { margin-top: 24px; }

/* === Footer === */
.main-footer {
  background: #2a2540;
  color: #fff;
  padding: 22px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
}
.footer-meta a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
}
.copyright,
.powered-by {
  margin: 0;
  opacity: .88;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 13px;
}
.footer-contact span,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  opacity: .92;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-contact i { color: #d6c98e; }

/* Brand carousel placeholder slot for brands awaiting logo art */
.carousel-track li.brand-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background: #f4f1ea;
  border: 1px dashed #c9bfa3;
  border-radius: 6px;
}
.carousel-track li.brand-placeholder .brand-label {
  position: static;
  opacity: 1;
  color: #2a2540;
  font-weight: 600;
  background: transparent;
  padding: 0;
}

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: #3e365f;
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0,0,0,.18);
}
.cookie-notice.hidden {
  display: none;
}
.cookie-notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.cookie-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-notice-btn {
  flex: 0 0 auto;
  border: 0;
  background: #DCA57D;
  color: #2a2540;
  font-family: 'Adamina', Georgia, serif;
  font-size: 15px;
  padding: 10px 22px;
  cursor: pointer;
}
.cookie-notice-btn:hover {
  background: #f0c4a5;
}

/* === Responsive === */
@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 24px; box-shadow: 0 6px 12px rgba(0,0,0,.08); }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; gap: 10px; width: 100%; }
  .mobile-toggle { display: inline-block; margin-left: auto; }
  .qsf-grid, .features-grid, .helena-grid, .riding-grid, .contact-grid, .about-grid,
  .saddle-open-grid, .saddle-fit-grid, .saddle-overview-grid, .saddle-partner-grid { grid-template-columns: 1fr; }
  .saddle-process-grid { grid-template-columns: 1fr; }
  .saddle-service-list-process { grid-template-columns: 1fr; }
  .saddle-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-saddle-hero { padding: 80px 0; }
  .features-cards, .care-grid, .gallery-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .carousel-track li { flex-basis: 50%; }
  .gallery-grid img { height: 220px; }
  .contact-spacer, .riding-spacer { display: none; }
  .helena-image { min-height: 260px; }
  .about-copy h2 { max-width: 100%; }
  .saddle-overview-copy h3 { max-width: 100%; }
  .saddle-tabs-frame .tabs { padding: 20px; }
  .logo { height: 80px; }
  .footer-meta { text-align: left; }
  .cookie-notice-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .features-cards, .care-grid, .gallery-grid, .news-grid { grid-template-columns: 1fr; }
  .carousel-track li { flex-basis: 100%; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .hero-content h1 { font-size: 56px; }
  .helena-text h2 { font-size: 24px; }
  .about-copy h2 { font-size: 30px; }
  .about-cta { justify-content: center; }
  .saddle-hero-title { font-size: 34px; }
  .saddle-hero-copy { font-size: 16px; }
  .saddle-service-item { grid-template-columns: 1fr; }
  .saddle-service-item i { margin-bottom: 6px; }
  .saddle-partner-header { align-items: flex-start; flex-direction: column; }
  .saddle-partner-media img, .saddle-partner-gallery img { height: 220px; }
  .logo { height: 64px; }
  .main-nav a { font-size: 13px; }
  .saddle-gallery-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 10px 12px; font-size: 13px; }
  .cookie-notice-btn { width: 100%; }
}
