@layer base {
  :root {
    --font-serif: "Libre Caslon Text", Georgia, serif;
    --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
    --color-vv-surface: #fcf9f8;
    --color-vv-paper: #fdfdfb;
    --color-vv-sand: #e8e2d6;
    --color-vv-teal: #14333b;
    --color-vv-teal-soft: #2c4a52;
    --color-vv-gold: #d4af37;
    --color-vv-ink: #1c1b1b;
    --color-vv-muted: #41484a;
    --color-vv-line: #c1c7ca;
    --vv-space-1: 8px;
    --vv-space-2: 13px;
    --vv-space-3: 21px;
    --vv-space-4: 34px;
    --vv-space-5: 55px;
    --vv-space-6: 89px;
    --vv-space-7: 144px;
    --vv-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --vv-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--color-vv-ink);
    background: var(--color-vv-surface);
  }

  body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--color-vv-surface);
    color: var(--color-vv-ink);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

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

  img {
    max-width: 100%;
    height: auto;
  }

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

  h1,
  h2,
  h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0;
  }

  p {
    margin: 0;
  }
}

@layer components {
  .vv-body {
    min-width: 320px;
  }

  .vv-shell {
    width: min(100% - calc(var(--vv-space-4) * 2), 1280px);
    margin-inline: auto;
  }

  .vv-skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 100;
    translate: 0 -160%;
    border-radius: 4px;
    background: var(--color-vv-teal);
    color: white;
    padding: 10px 14px;
  }

  .vv-skip-link:focus {
    translate: 0;
  }

  .vv-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid color-mix(in srgb, var(--color-vv-teal) 14%, transparent);
    background: color-mix(in srgb, var(--color-vv-surface) 94%, transparent);
    backdrop-filter: blur(18px);
    animation: vv-header-drop 560ms var(--vv-ease-out) both;
  }

  .vv-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--vv-space-4);
    min-height: 76px;
  }

  .vv-brand,
  .vv-footer-brand {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-vv-teal);
    white-space: nowrap;
  }

  .vv-brand {
    grid-column: 1;
  }

  .vv-primary-nav {
    grid-column: 2;
  }

  .vv-primary-nav ul,
  .vv-mobile-nav ul,
  .vv-site-footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vv-space-4);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .vv-primary-nav a,
  .vv-mobile-nav a {
    position: relative;
    display: inline-flex;
    padding-block: 8px;
    font-size: 13px;
    font-weight: 500;
  }

  .vv-primary-nav .current-menu-item a::after,
  .vv-primary-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-vv-gold);
  }

  .vv-button-row {
    display: flex;
    align-items: center;
    gap: var(--vv-space-2);
    flex-wrap: wrap;
  }

  .vv-solid-button,
  .vv-outline-button,
  .vv-link-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0 var(--vv-space-3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: background 180ms var(--vv-ease-soft), border-color 180ms var(--vv-ease-soft), color 180ms var(--vv-ease-soft), transform 180ms var(--vv-ease-soft), box-shadow 180ms var(--vv-ease-soft);
  }

  .vv-solid-button {
    border: 1px solid var(--color-vv-teal);
    background: var(--color-vv-teal);
    color: white;
  }

  .vv-solid-button:hover {
    background: var(--color-vv-teal-soft);
    box-shadow: 0 14px 34px rgba(20, 51, 59, 0.18);
    transform: translateY(-2px);
  }

  .vv-outline-button,
  .vv-link-button {
    border: 1px solid color-mix(in srgb, var(--color-vv-teal) 45%, transparent);
    color: var(--color-vv-teal);
  }

  .vv-outline-button:hover,
  .vv-link-button:hover {
    border-color: var(--color-vv-teal);
    transform: translateY(-2px);
  }

  .vv-hero .vv-outline-button,
  .vv-horse-hero .vv-outline-button {
    border-color: rgba(255, 255, 255, 0.72);
    color: white;
  }

  .vv-hero .vv-outline-button:hover,
  .vv-horse-hero .vv-outline-button:hover {
    border-color: var(--color-vv-gold);
    color: var(--color-vv-gold);
  }

  .vv-small-button {
    min-height: 36px;
    padding-inline: 18px;
  }

  .vv-menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--color-vv-line);
    border-radius: 4px;
    background: transparent;
  }

  .vv-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 3px auto;
    background: var(--color-vv-teal);
  }

  .vv-mobile-nav {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid var(--color-vv-line);
    padding: 0 max(16px, calc((100vw - 1280px) / 2));
    transition: grid-template-rows 260ms var(--vv-ease-soft), opacity 220ms var(--vv-ease-soft), padding 260ms var(--vv-ease-soft), visibility 220ms var(--vv-ease-soft);
  }

  .vv-mobile-nav > * {
    overflow: hidden;
  }

  .vv-hero,
  .vv-page-hero {
    display: flex;
    align-items: end;
    min-height: 520px;
    color: white;
    background-color: var(--color-vv-teal);
    background-position: center;
    background-size: cover;
    overflow: clip;
    animation: vv-fade-in 720ms var(--vv-ease-out) both;
  }

  .vv-hero-home {
    background-image: linear-gradient(180deg, rgba(252, 249, 248, 0.12) 0%, rgba(20, 51, 59, 0.62) 62%, rgba(20, 51, 59, 0.86) 100%), url("https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=1800&q=80");
  }

  .vv-gallery-hero {
    min-height: 600px;
    align-items: center;
    background-image: linear-gradient(180deg, rgba(20, 51, 59, 0.96) 0%, rgba(20, 51, 59, 0.86) 36%, rgba(252, 249, 248, 0.88) 100%), url("https://images.unsplash.com/photo-1534773728080-33d31da27ae5?auto=format&fit=crop&w=1800&q=80");
  }

  .vv-page-hero {
    min-height: 360px;
    background: var(--color-vv-teal);
  }

  .vv-hero-content {
    padding-block: var(--vv-space-7) var(--vv-space-6);
    animation: vv-rise-in 820ms 140ms var(--vv-ease-out) both;
  }

  .vv-hero-content h1,
  .vv-page-hero h1,
  .vv-horse-hero h1 {
    max-width: 780px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.98;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.24);
    overflow-wrap: anywhere;
  }

  .vv-hero-content p,
  .vv-page-hero p {
    max-width: 620px;
    margin-top: var(--vv-space-3);
    font-size: 18px;
    line-height: 1.65;
  }

  .vv-page-hero p:not(.vv-kicker) {
    margin-bottom: var(--vv-space-5);
  }

  .vv-kicker {
    margin-bottom: var(--vv-space-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-vv-gold);
  }

  .vv-section {
    padding-block: var(--vv-space-7);
  }

  .vv-animate {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 760ms var(--vv-ease-out), transform 760ms var(--vv-ease-out);
    transition-delay: var(--vv-delay, 0ms);
  }

  .vv-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .vv-intro-grid,
  .vv-cta-split,
  .vv-contact-layout,
  .vv-inquiry-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--vv-space-6);
    align-items: start;
  }

  .vv-intro-grid h2,
  .vv-section-heading h2,
  .vv-cta-split h2,
  .vv-video-feature h2,
  .vv-contact-details h2,
  .vv-inquiry-inner h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    color: var(--color-vv-teal);
  }

  .vv-intro-grid p,
  .vv-cta-split p,
  .vv-video-feature p,
  .vv-contact-details p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-vv-muted);
  }

  .vv-cta-split > div:last-child p {
    margin-bottom: var(--vv-space-4);
  }

  .vv-band {
    background: var(--color-vv-paper);
    border-block: 1px solid color-mix(in srgb, var(--color-vv-teal) 10%, transparent);
  }

  .vv-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--vv-space-3);
    margin-bottom: var(--vv-space-5);
  }

  .vv-card-grid,
  .vv-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--vv-space-4);
  }

  .vv-horse-card,
  .vv-video-card,
  .vv-post-summary,
  .vv-empty-state {
    border: 1px solid color-mix(in srgb, var(--color-vv-teal) 16%, transparent);
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: none;
  }

  .vv-card-image,
  .vv-video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--color-vv-sand);
  }

  .vv-card-image img,
  .vv-video-thumb img,
  .vv-video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 500ms var(--vv-ease-soft), filter 500ms var(--vv-ease-soft);
  }

  .vv-card-image:hover img,
  .vv-video-thumb:hover img {
    filter: saturate(1.04) contrast(1.02);
    scale: 1.045;
  }

  .vv-status-badge,
  .vv-video-label {
    position: absolute;
    top: 14px;
    right: 14px;
    border-radius: 2px;
    background: var(--color-vv-gold);
    color: var(--color-vv-teal);
    padding: 6px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .vv-card-body {
    padding: var(--vv-space-4);
  }

  .vv-card-body h3,
  .vv-video-card h3,
  .vv-post-summary h2 {
    font-size: clamp(25px, 2.4vw, 30px);
    line-height: 1.15;
    color: var(--color-vv-teal);
    overflow-wrap: anywhere;
  }

  .vv-card-body dl,
  .vv-stat-row,
  .vv-spec-panel dl,
  .vv-contact-details dl {
    margin: var(--vv-space-3) 0 0;
  }

  .vv-card-body dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--vv-space-3);
  }

  .vv-card-body dt,
  .vv-stat-row dt,
  .vv-spec-panel dt,
  .vv-contact-details dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--color-vv-teal) 70%, white);
  }

  .vv-card-body dd,
  .vv-stat-row dd,
  .vv-spec-panel dd,
  .vv-contact-details dd {
    margin: 4px 0 0;
    font-weight: 500;
  }

  .vv-horse-hero {
    display: flex;
    min-height: 680px;
    align-items: end;
    background-position: center;
    background-size: cover;
    color: white;
    overflow: clip;
    animation: vv-fade-in 720ms var(--vv-ease-out) both;
  }

  .vv-horse-hero-inner {
    padding-block: var(--vv-space-7) var(--vv-space-6);
    animation: vv-rise-in 820ms 140ms var(--vv-ease-out) both;
  }

  .vv-horse-hero .vv-status-badge {
    position: static;
    display: inline-flex;
    margin-bottom: var(--vv-space-3);
  }

  .vv-stat-row {
    display: flex;
    gap: var(--vv-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--vv-space-4);
  }

  .vv-horse-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--vv-space-5);
  }

  .vv-prose {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-vv-muted);
  }

  .vv-prose > * + * {
    margin-top: var(--vv-space-3);
  }

  .vv-prose h2,
  .vv-prose h3 {
    color: var(--color-vv-teal);
  }

  .vv-spec-panel,
  .vv-form-frame,
  .vv-contact-details {
    border: 1px solid color-mix(in srgb, var(--color-vv-teal) 16%, transparent);
    border-radius: 8px;
    background: white;
    padding: var(--vv-space-4);
  }

  .vv-spec-panel {
    position: sticky;
    top: 104px;
  }

  .vv-spec-panel h2 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-vv-gold);
  }

  .vv-spec-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: var(--vv-space-3);
    border-top: 1px solid var(--color-vv-line);
    padding-block: var(--vv-space-3);
  }

  .vv-full-button {
    width: 100%;
    margin-top: 12px;
  }

  .vv-inquiry-band {
    background: var(--color-vv-teal);
    color: white;
    padding-block: var(--vv-space-6);
  }

  .vv-inquiry-inner h2 {
    color: white;
  }

  .vv-filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--vv-space-4);
    margin-bottom: var(--vv-space-6);
    border-bottom: 1px solid var(--color-vv-line);
    max-width: 100%;
  }

  .vv-filter-tabs a {
    flex: 0 0 auto;
    padding: 0 4px 18px;
    font-size: 14px;
    font-weight: 600;
  }

  .vv-filter-tabs .is-active {
    color: var(--color-vv-gold);
    box-shadow: inset 0 -2px 0 var(--color-vv-gold);
  }

  .vv-video-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: var(--vv-space-5);
    align-items: center;
    margin-bottom: var(--vv-space-6);
    border: 1px solid color-mix(in srgb, var(--color-vv-teal) 12%, transparent);
    background: white;
    padding: var(--vv-space-4);
  }

  .vv-video-feature > div:last-child {
    display: grid;
    align-content: center;
    gap: var(--vv-space-3);
  }

  .vv-video-feature .vv-kicker {
    margin-bottom: 0;
  }

  .vv-video-feature .vv-solid-button {
    justify-self: start;
    margin-top: var(--vv-space-2);
  }

  .vv-video-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .vv-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    translate: -50% -50%;
    place-items: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--color-vv-teal) 72%, white);
    color: white;
    font-size: 18px;
    transition: background 180ms var(--vv-ease-soft), transform 180ms var(--vv-ease-soft);
  }

  .vv-video-thumb:hover .vv-play-button,
  .vv-video-image:hover .vv-play-button {
    background: var(--color-vv-gold);
    color: var(--color-vv-teal);
    transform: scale(1.06);
  }

  .vv-video-card {
    border: 0;
    background: transparent;
  }

  .vv-video-card h3,
  .vv-video-card p {
    margin-top: var(--vv-space-3);
  }

  .vv-video-card p {
    margin-top: var(--vv-space-2);
  }

  .vv-video-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--color-vv-muted);
  }

  .vv-form-placeholder {
    border: 1px dashed var(--color-vv-line);
    border-radius: 4px;
    padding: var(--vv-space-3);
    color: var(--color-vv-muted);
  }

  .gform_wrapper input,
  .gform_wrapper textarea,
  .gform_wrapper select,
  .vv-inquiry-form input,
  .vv-inquiry-form textarea,
  .vv-inquiry-form select,
  .vv-newsletter input {
    width: 100%;
    border: 1px solid var(--color-vv-line);
    border-radius: 4px;
    background: white;
    padding: 13px 14px;
    font-family: var(--font-sans);
  }

  .vv-inquiry-form {
    display: grid;
    gap: var(--vv-space-3);
  }

  .vv-inquiry-form p {
    display: grid;
    gap: var(--vv-space-1);
  }

  .vv-inquiry-form label {
    color: var(--color-vv-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vv-inquiry-form textarea {
    resize: vertical;
  }

  .vv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vv-space-3);
  }

  .vv-form-notice {
    margin-bottom: var(--vv-space-3);
    border-radius: 4px;
    padding: var(--vv-space-2) var(--vv-space-3);
    font-size: 15px;
    line-height: 1.5;
  }

  .vv-form-notice-success {
    background: color-mix(in srgb, var(--color-vv-gold) 18%, white);
    color: var(--color-vv-teal);
  }

  .vv-form-notice-error {
    background: #ffdad6;
    color: #93000a;
  }

  .gform_wrapper .gform_button {
    border: 1px solid var(--color-vv-teal);
    border-radius: 4px;
    background: var(--color-vv-teal);
    color: white;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vv-site-footer {
    background: #2f302d;
    color: white;
    padding-block: var(--vv-space-6) var(--vv-space-4);
  }

  .vv-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: var(--vv-space-5);
  }

  .vv-footer-brand {
    display: inline-flex;
    margin-bottom: var(--vv-space-3);
    color: var(--color-vv-gold);
    font-size: 32px;
  }

  .vv-site-footer p,
  .vv-site-footer a {
    color: color-mix(in srgb, white 82%, transparent);
    font-size: 14px;
    line-height: 1.65;
  }

  .vv-site-footer h2 {
    margin-bottom: var(--vv-space-3);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vv-site-footer ul {
    display: grid;
    justify-content: start;
    gap: var(--vv-space-2);
  }

  .vv-newsletter {
    display: grid;
    grid-template-columns: 1fr 48px;
  }

  .vv-newsletter input {
    min-width: 0;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }

  .vv-newsletter button {
    border: 0;
    background: var(--color-vv-gold);
    color: var(--color-vv-teal);
  }

  .vv-footer-bottom {
    margin-top: var(--vv-space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--vv-space-4);
  }

  .vv-centered {
    text-align: center;
  }

  .vv-centered h1,
  .vv-centered p {
    margin-inline: auto;
  }

  .vv-centered-row {
    justify-content: center;
  }

  .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

@keyframes vv-header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vv-rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vv-fade-in {
  from {
    opacity: 0.01;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .vv-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .vv-primary-nav {
    display: none;
  }

  .vv-menu-toggle {
    display: block;
  }

  .vv-mobile-nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-block: var(--vv-space-3) var(--vv-space-4);
    visibility: visible;
  }

  .vv-mobile-nav ul {
    display: grid;
    justify-content: start;
    gap: var(--vv-space-2);
  }

  .vv-mobile-nav a {
    font-size: 16px;
    padding-block: 10px;
  }

  .vv-hero,
  .vv-page-hero {
    min-height: 480px;
  }

  .vv-hero-content {
    padding-block: var(--vv-space-6);
  }

  .vv-intro-grid,
  .vv-cta-split,
  .vv-contact-layout,
  .vv-inquiry-inner,
  .vv-horse-layout,
  .vv-video-feature {
    grid-template-columns: 1fr;
  }

  .vv-card-grid,
  .vv-video-grid,
  .vv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .vv-spec-panel {
    position: static;
  }

  .vv-video-feature {
    gap: var(--vv-space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .vv-animate {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .vv-shell {
    width: min(100% - calc(var(--vv-space-3) * 2), 1280px);
  }

  .vv-header-inner {
    min-height: 64px;
    gap: var(--vv-space-3);
  }

  .vv-brand {
    font-size: 22px;
  }

  .vv-hero,
  .vv-page-hero,
  .vv-horse-hero {
    min-height: 520px;
    background-position: center;
  }

  .vv-hero-content,
  .vv-horse-hero-inner {
    padding-block: var(--vv-space-6) var(--vv-space-5);
  }

  .vv-page-hero {
    min-height: 300px;
  }

  .vv-hero-content h1,
  .vv-page-hero h1,
  .vv-horse-hero h1 {
    font-size: clamp(40px, 15vw, 62px);
    line-height: 1.02;
  }

  .vv-hero-content p,
  .vv-page-hero p,
  .vv-intro-grid p,
  .vv-cta-split p,
  .vv-video-feature p,
  .vv-contact-details p {
    font-size: 16px;
    line-height: 1.6;
  }

  .vv-section {
    padding-block: var(--vv-space-6);
  }

  .vv-card-grid,
  .vv-video-grid,
  .vv-footer-grid,
  .vv-card-body dl,
  .vv-form-grid {
    grid-template-columns: 1fr;
  }

  .vv-card-body {
    padding: var(--vv-space-3);
  }

  .vv-section-heading {
    display: block;
    margin-bottom: var(--vv-space-4);
  }

  .vv-intro-grid,
  .vv-cta-split,
  .vv-contact-layout,
  .vv-inquiry-inner,
  .vv-horse-layout,
  .vv-video-feature {
    gap: var(--vv-space-4);
  }

  .vv-filter-tabs {
    justify-content: start;
    gap: var(--vv-space-3);
    overflow-x: auto;
    margin-inline: calc(var(--vv-space-2) * -1);
    padding-inline: var(--vv-space-2);
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .vv-video-feature,
  .vv-spec-panel,
  .vv-form-frame,
  .vv-contact-details {
    padding: var(--vv-space-3);
  }

  .vv-button-row {
    align-items: stretch;
  }

  .vv-button-row .vv-solid-button,
  .vv-button-row .vv-outline-button {
    flex: 1 1 180px;
  }

  .vv-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vv-space-3);
  }

  .vv-spec-panel dl div {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vv-space-1);
  }

  .vv-site-footer {
    padding-block: var(--vv-space-5) var(--vv-space-3);
  }

  .vv-footer-brand {
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .vv-shell {
    width: min(100% - calc(var(--vv-space-2) * 2), 1280px);
  }

  .vv-hero,
  .vv-horse-hero {
    min-height: 500px;
  }

  .vv-hero-content h1,
  .vv-page-hero h1,
  .vv-horse-hero h1 {
    font-size: clamp(36px, 14vw, 50px);
  }

  .vv-solid-button,
  .vv-outline-button,
  .vv-link-button {
    width: 100%;
    padding-inline: 16px;
  }

  .vv-stat-row {
    grid-template-columns: 1fr;
  }

  .vv-inquiry-band {
    padding-block: var(--vv-space-5);
  }
}
