:root {
  --cream: #F7F3EE;
  --ink: #1A1410;
  --warm-gray: #8C7B6E;
  --accent: #C4793A;
  --accent-light: #E8A96A;
  --deep: #2D1F14;
  --surface: #EDE6DC;
  --white-warm: #FDFAF6;
  --shadow-warm: rgba(44,31,20,0.12);
  --shadow-deep: rgba(44,31,20,0.22);
  --shadow-accent: rgba(196,121,58,0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.25s, opacity 0.25s; }


.MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.MobileMenu.is-open {
  transform: translateX(0);
  pointer-events: all;
}
.MobileMenu-left {
  width: 55%;
  background: var(--deep);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.MobileMenu-right {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.MobileMenu-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.MobileMenu-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,31,20,0.7), rgba(45,31,20,0.2));
}
.MobileMenu-tagline {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white-warm);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.MobileMenu-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-warm);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.MobileMenu-logo span { color: var(--accent); }
.MobileMenu-nav { list-style: none; }
.MobileMenu-nav li { margin-bottom: 1.25rem; }
.MobileMenu-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(253,250,246,0.7);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.25s;
  display: block;
}
.MobileMenu-nav a:hover { color: var(--accent-light); }
.MobileMenu-contact a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}


.SiteHeader-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.SiteHeader-hamburger.is-active span:nth-child(2) { opacity: 0; }
.SiteHeader-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.Section-eyebrow {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.Section-eyebrow--light { color: var(--accent-light); }

.Section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.Section-heading--large {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 0;
}
.Section-heading--light { color: var(--white-warm); }


.IntroFlow {
  padding: var(--space-xl) var(--space-md);
  background: var(--cream);
}
.IntroFlow-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.IntroFlow-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.IntroFlow-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 12px var(--shadow-warm),
    0 20px 60px var(--shadow-deep),
    0 1px 3px var(--shadow-accent);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.IntroFlow-card:hover { transform: rotate(0deg) scale(1.01); }
.IntroFlow-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


.ServicesSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--surface);
}
.ServicesSection-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
.ServicesGrid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ServiceCard {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow:
    0 2px 8px var(--shadow-warm),
    0 8px 24px rgba(44,31,20,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ServiceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.ServiceCard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 16px 48px var(--shadow-deep);
}
.ServiceCard:hover::before { transform: scaleX(1); }
.ServiceCard--accent {
  background: var(--deep);
}
.ServiceCard--accent .ServiceCard-title { color: var(--white-warm); }
.ServiceCard--accent .ServiceCard-body { color: rgba(253,250,246,0.7); }
.ServiceCard--accent .ServiceCard-icon { color: var(--accent-light); }
.ServiceCard-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.ServiceCard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.ServiceCard-body {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}


.FeatureSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--cream);
}
.FeatureSection--dark {
  background: var(--deep);
}
.FeatureSection-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.FeatureSection-inner--reverse { direction: rtl; }
.FeatureSection-inner--reverse > * { direction: ltr; }
.FeatureSection-imgWrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 8px 32px var(--shadow-deep),
    0 2px 8px var(--shadow-warm);
}
.FeatureSection-imgWrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.FeatureSection-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.FeatureSection--dark .FeatureSection-text p { color: rgba(253,250,246,0.65); }
.FeatureSection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(232,169,106,0.4);
  transition: border-color 0.25s, gap 0.25s;
}
.FeatureSection-link:hover {
  border-color: var(--accent-light);
  gap: 0.75rem;
}


.ProcessSection {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}
.ProcessSection-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ProcessSection-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ProcessSection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,16,0.92) 0%, rgba(45,31,20,0.85) 100%);
}
.ProcessSection-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.ProcessSection-content > div:first-child {
  margin-bottom: 4rem;
}
.ProcessSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 1rem;
}
.ProcessStep {
  background: rgba(253,250,246,0.06);
  border: 1px solid rgba(253,250,246,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.ProcessStep:hover { background: rgba(253,250,246,0.1); }
.ProcessStep-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.ProcessStep h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.75rem;
}
.ProcessStep p {
  font-size: 0.9rem;
  color: rgba(253,250,246,0.6);
  line-height: 1.7;
}


.InfoBanner {
  background: var(--surface);
  padding: 4rem var(--space-md);
  border-top: 1px solid rgba(196,121,58,0.15);
  border-bottom: 1px solid rgba(196,121,58,0.15);
}
.InfoBanner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.InfoBanner-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.InfoBanner-text p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 640px;
}
.InfoBanner-icon {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
}


.LocationSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--cream);
}
.LocationSection-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.LocationSection-address {
  font-style: normal;
  margin-top: 2rem;
}
.LocationSection-address p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}
.LocationSection-address i { color: var(--accent); width: 16px; }
.LocationSection-address a {
  color: var(--warm-gray);
  text-decoration: none;
}
.LocationSection-address a:hover { color: var(--accent); }
.LocationSection-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 20px 60px var(--shadow-deep);
}
.LocationSection-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}


.SiteFooter {
  background: var(--deep);
  padding: 5rem var(--space-md) 0;
  margin-top: 0;
}
.SiteFooter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(253,250,246,0.1);
}
.SiteFooter-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-warm);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.SiteFooter-logo span { color: var(--accent); }
.SiteFooter-tagline {
  font-size: 0.875rem;
  color: rgba(253,250,246,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.SiteFooter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.SiteFooter-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.SiteFooter-col ul { list-style: none; }
.SiteFooter-col li {
  font-size: 0.875rem;
  color: rgba(253,250,246,0.5);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.SiteFooter-col a {
  color: rgba(253,250,246,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.SiteFooter-col a:hover { color: var(--accent-light); }
.SiteFooter-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(253,250,246,0.3);
}
.SiteFooter-legal {
  display: flex;
  gap: 1.5rem;
}
.SiteFooter-legal a {
  color: rgba(253,250,246,0.3);
  text-decoration: none;
  transition: color 0.25s;
}
.SiteFooter-legal a:hover { color: var(--accent-light); }


.CookieConsent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 320px;
  box-shadow:
    0 4px 20px var(--shadow-warm),
    0 20px 60px var(--shadow-deep),
    0 0 0 1px rgba(196,121,58,0.12);
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}
.CookieConsent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.CookieConsent-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.CookieConsent-msg {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.CookieConsent-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: all 0.25s;
  letter-spacing: 0.04em;
  text-align: center;
}
.CookieConsent-btn--accept {
  background: var(--accent);
  color: var(--white-warm);
}
.CookieConsent-btn--accept:hover { background: var(--accent-light); }
.CookieConsent-btn--customize {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(196,121,58,0.3);
}
.CookieConsent-btn--customize:hover { border-color: var(--accent); background: rgba(196,121,58,0.05); }
.CookieConsent-btn--reject {
  background: transparent;
  color: var(--warm-gray);
  border: 1px solid rgba(140,123,110,0.2);
}
.CookieConsent-btn--reject:hover { color: var(--ink); border-color: var(--warm-gray); }
.CookieConsent-btn--save {
  background: var(--deep);
  color: var(--white-warm);
  margin-top: 0.5rem;
}
.CookieConsent-btn--save:hover { background: var(--accent); }
.CookieConsent-toggles {
  display: none;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(140,123,110,0.15);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.CookieConsent-toggles.is-open { display: block; }
.CookieToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  cursor: pointer;
  gap: 1rem;
}
.CookieToggle span:first-child {
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 500;
}
.CookieToggle input { display: none; }
.CookieToggle-slider {
  width: 36px;
  height: 20px;
  background: rgba(140,123,110,0.3);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s;
}
.CookieToggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--white-warm);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.CookieToggle input:checked + .CookieToggle-slider { background: var(--accent); }
.CookieToggle input:checked + .CookieToggle-slider::after { transform: translateX(16px); }
.CookieToggle input:disabled + .CookieToggle-slider { background: var(--accent); opacity: 0.7; }


.PageContent {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.PageContent-inner {
  max-width: 860px;
  margin: 0 auto;
}
.StorySection {
  margin-bottom: 4rem;
}
.StorySection-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.StorySection-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.StoryImage {
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 20px 50px var(--shadow-deep);
}
.StoryImage img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.StoryImage--half img { height: 320px; }
.StoryQuote {
  margin: 4rem 0;
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.StoryQuote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  font-style: italic;
}
.StoryCTA {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--deep);
  border-radius: var(--radius-lg);
  text-align: center;
}
.StoryCTA h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.75rem;
}
.StoryCTA p {
  color: rgba(253,250,246,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
}


.ServicesList {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.ServicesList-inner { max-width: 1000px; margin: 0 auto; }
.ServiceDetail {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow:
    0 2px 8px var(--shadow-warm),
    0 8px 28px rgba(44,31,20,0.07);
  transition: box-shadow 0.3s;
}
.ServiceDetail:hover {
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 16px 48px var(--shadow-deep);
}
.ServiceDetail--alt { background: var(--surface); }
.ServiceDetail--special { border: 2px solid rgba(196,121,58,0.2); }
.ServiceDetail-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.ServiceDetail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-warm);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--shadow-accent);
}
.ServiceDetail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.ServiceDetail-body p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ServiceDetail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.ServiceDetail-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(196,121,58,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.ServicesNote {
  background: rgba(196,121,58,0.08);
  border: 1px solid rgba(196,121,58,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.ServicesNote i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.ServicesNote h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.ServicesNote p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.7; }
.ServicesCTA {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--deep);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.ServicesCTA h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}
.ServicesCTA p {
  color: rgba(253,250,246,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


.RacesSection {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.RacesSection-inner { max-width: 1280px; margin: 0 auto; }
.RaceGroup { margin-bottom: 5rem; }
.RaceGroup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(196,121,58,0.15);
}
.RaceCards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.RaceCard {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow:
    0 2px 8px var(--shadow-warm),
    0 6px 20px rgba(44,31,20,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.RaceCard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 12px 36px var(--shadow-deep);
}
.RaceCard--cat { background: var(--surface); }
.RaceCard-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.RaceCard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.RaceCard p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.RaceCard-freq {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  background: rgba(196,121,58,0.1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.RacesCTA {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.RacesCTA p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


.ContactSection {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.ContactSection-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.ContactForm-wrap {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 20px 60px var(--shadow-deep);
}
.ContactForm-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.ContactForm-header p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ContactForm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ContactForm-field {
  margin-bottom: 1.25rem;
}
.ContactForm-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ContactForm-field input,
.ContactForm-field select,
.ContactForm-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(140,123,110,0.25);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.ContactForm-field input:focus,
.ContactForm-field select:focus,
.ContactForm-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,121,58,0.12);
}
.ContactForm-field textarea { resize: vertical; min-height: 120px; }
.ContactForm-privacy {
  margin-bottom: 1.5rem;
}
.PrivacyCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.PrivacyCheck input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.PrivacyCheck span {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.PrivacyCheck a { color: var(--accent); text-decoration: none; }
.PrivacyCheck a:hover { text-decoration: underline; }
.ContactForm-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--white-warm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px var(--shadow-accent);
  width: 100%;
  justify-content: center;
}
.ContactForm-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-accent);
}
.ContactInfo-card {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow:
    0 2px 8px var(--shadow-warm),
    0 8px 24px rgba(44,31,20,0.07);
}
.ContactInfo-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.ContactInfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ContactInfo-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.ContactInfo-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.ContactInfo-item p, .ContactInfo-item a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  text-decoration: none;
  line-height: 1.5;
}
.ContactInfo-item a:hover { color: var(--accent); }
.ContactInfo-card--note {
  background: rgba(196,121,58,0.07);
  border: 1px solid rgba(196,121,58,0.18);
}
.ContactInfo-card--note i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.ContactInfo-card--note h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.ContactInfo-card--note p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.DirectionsCard {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 2px 8px var(--shadow-warm);
}
.DirectionsCard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.DirectionsCard-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.DirectionsCard-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.DirectionsCard-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.DirectionsCard-item p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.6;
}


.MapSection {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.MapSection-inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 16px var(--shadow-warm),
    0 20px 50px var(--shadow-deep);
}


.LegalPage {
  padding: 0 var(--space-md) var(--space-xl);
  background: var(--cream);
}
.LegalPage-inner { max-width: 900px; margin: 0 auto; }
.LegalPage-date {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(140,123,110,0.2);
}
.LegalCard {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow:
    0 2px 8px var(--shadow-warm),
    0 6px 20px rgba(44,31,20,0.06);
}
.LegalCard h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(196,121,58,0.15);
}
.LegalCard p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.LegalCard ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
}
.LegalCard li {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.LegalCard a { color: var(--accent); text-decoration: none; }
.LegalCard a:hover { text-decoration: underline; }
.LegalCard--wide { background: var(--white-warm); }
.LegalCard--cookie {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.LegalCard-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(196,121,58,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.LegalCard-content { flex: 1; }
.LegalCard-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}


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

  .PageHero-heading { font-size: clamp(3rem, 14vw, 5rem); }

  .IntroFlow-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .IntroFlow-card { transform: none; }
  .IntroFlow-card img { height: 280px; }

  .ServicesSection-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .ServicesGrid { grid-template-columns: 1fr; }

  .FeatureSection-inner,
  .FeatureSection-inner--reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .FeatureSection-imgWrap img { height: 280px; }

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

  .InfoBanner-inner { flex-direction: column; gap: 1.5rem; }
  .InfoBanner-icon { font-size: 2.5rem; }

  .LocationSection-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .LocationSection-img img { height: 280px; }

  .SiteFooter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .SiteFooter-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .SiteFooter-bar { flex-direction: column; gap: 0.75rem; text-align: center; }

  .ContactSection-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ContactForm-wrap { padding: 2rem 1.5rem; }
  .ContactForm-row { grid-template-columns: 1fr; }

  .CookieConsent { width: calc(100vw - 2rem); right: 1rem; bottom: 1rem; }

  .MobileMenu-left { width: 60%; }
  .MobileMenu-right { width: 40%; }
  .MobileMenu-nav a { font-size: 1.75rem; }

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

  .LegalCard--cookie { flex-direction: column; gap: 0.5rem; }
  .LegalCard-num { font-size: 1.5rem; }

  .StoryImage img { height: 260px; }
  .StoryImage--half img { height: 200px; }
  .StoryQuote { padding: 1.75rem; }

  .ServiceDetail-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .SiteFooter-grid { grid-template-columns: 1fr; }
  .ServicesSection, .FeatureSection, .ProcessSection,
  .InfoBanner, .LocationSection, .IntroFlow,
  .PageContent, .ServicesList, .RacesSection,
  .ContactSection, .MapSection, .LegalPage {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .PageHero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .InnerHero { padding-left: 1.25rem; padding-right: 1.25rem; }
}