@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --burgundy: #7a0c1e;
  --burgundy-dark: #5c0916;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --cream: #fdf6ec;
  --charcoal: #1a1a1a;
  --charcoal-muted: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1120px;
  --header-h: 72px;
  --sticky-cta-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration: none;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Advertorial bar */
.advertorial-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(122, 12, 30, 0.1);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-img {
  width: auto;
  height: 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(122, 12, 30, 0.3);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 0.9rem 2rem;
}

.btn-header {
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(480px, 85vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(122, 12, 30, 0.55) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
  color: var(--white);
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Sections */
.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--charcoal-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* Value props */
.value-props {
  background: var(--white);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(122, 12, 30, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--charcoal-muted);
  font-size: 0.975rem;
}

/* Highlights */
.highlights-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.highlights-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.highlights-text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.highlights-text p {
  color: var(--charcoal-muted);
  margin-bottom: 1rem;
}

.highlights-text .btn {
  margin-top: 0.5rem;
}

/* Tournee */
.tournee {
  background: var(--white);
}

.tour-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
}

.tour-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}

.tour-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tour-city {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--burgundy);
}

.tour-dates {
  font-size: 0.9rem;
  color: var(--charcoal-muted);
}

.tour-link {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--burgundy);
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(122, 12, 30, 0.08);
  transition: background 0.2s, color 0.2s;
}

.tour-link:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* Artists */
.artists-grid {
  display: grid;
  gap: 1.25rem;
}

.artist-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.artist-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.artist-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.artist-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.artist-card p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

/* Horses */
.horses-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.horses-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.horses-text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.horses-text p {
  color: var(--charcoal-muted);
  margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding-block: clamp(3.5rem, 8vw, 5rem);
  text-align: center;
}

.final-cta-inner {
  color: var(--white);
  max-width: 600px;
}

.final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding-block: 2rem;
  padding-bottom: calc(2rem + var(--sticky-cta-h));
  text-align: center;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-powered {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.footer-disclaimer {
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(122, 12, 30, 0.12);
  box-shadow: 0 -4px 20px rgba(26, 26, 26, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.btn-sticky {
  width: 100%;
  padding: 0.9rem 1.5rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-inner,
  .horses-inner {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-inner {
    direction: rtl;
  }

  .highlights-inner > * {
    direction: ltr;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }

  .btn-header {
    font-size: 0.8125rem;
    padding: 0.6rem 1rem;
  }

  .tour-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-link {
    align-self: flex-start;
  }
}

@media (min-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover,
  .tour-item:hover {
    transform: none;
  }
}
