/* Theme01 presentation layer — tokens come from CSS variables set by tenant branding.
 * Typography: reference MintSmile → Mulish (headings/body); reference Futura → Mulish (nav/UI).
 * Script accent: Great Vibes (reference script face). Commercial fonts not loaded. */

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Mulish:wght@400;600;700;800&display=swap");

:root {
  --t01-primary: var(--obm-primary, #4c3b34);
  --t01-header: var(--obm-secondary, #342925);
  --t01-gold: var(--obm-accent, #daad2b);
  --t01-nav: #d3bbb1;
  --t01-topbar-text: #e5e3e3;
  --t01-text: var(--obm-text, #333333);
  --t01-cream: #f7fefa;
  --t01-container: 1140px;
  --t01-gutter: 24px;
  --t01-topbar-pad-y: 8px;
  --t01-header-min-h: 86px;
  --t01-logo-h: 58px;
  --t01-nav-gap: 20px;
  --t01-hero-pad-y: 72px;
  --t01-section-pad-y: 76px;
  --t01-heading: var(--obm-heading-font, "Mulish", system-ui, sans-serif);
  --t01-body: var(--obm-body-font, "Mulish", system-ui, sans-serif);
  --t01-script: var(--obm-script-font, "Great Vibes", cursive);
}

.t01-body {
  margin: 0;
  color: var(--t01-text);
  font-family: var(--t01-body);
  font-size: 15px;
  background: #fff url("/css/theme01-bg.svg") center top / cover fixed;
}

.t01-body.is-menu-open {
  overflow: hidden;
}

.t01-announce {
  background: var(--t01-gold);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.t01-announce a {
  color: #fff;
  margin-left: 8px;
  text-decoration: underline;
}

.t01-topbar {
  background: var(--t01-primary);
  color: var(--t01-topbar-text);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.t01-topbar-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  padding: var(--t01-topbar-pad-y) var(--t01-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.t01-topbar a { color: inherit; text-decoration: none; }
.t01-topbar a:hover { color: #fff; }
.t01-social { display: flex; flex-wrap: wrap; gap: 14px; }
.t01-footer-social { margin-top: 6px; }

.t01-header {
  background: var(--t01-header);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.t01-header-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  padding: 12px var(--t01-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--t01-header-min-h);
}
.t01-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--t01-gold);
  font-family: var(--t01-heading);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.t01-logo img { height: var(--t01-logo-h); width: auto; display: block; }
.t01-logo-fallback {
  display: inline-flex;
  min-height: var(--t01-logo-h);
  align-items: center;
  max-width: 210px;
  font-size: 17px;
  line-height: 1.15;
}

.t01-nav {
  display: none;
  align-items: center;
  gap: var(--t01-nav-gap);
}
.t01-nav a {
  color: var(--t01-nav);
  text-decoration: none;
  font-family: var(--t01-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.t01-nav a:hover { color: #fff; }
.t01-nav a.is-active { color: #fff; }

.t01-book-pill {
  background: var(--t01-primary);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.t01-call {
  display: none;
  background: var(--t01-gold);
  color: #fff !important;
  border: none;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.t01-call:hover { background: #c99a24; color: #fff !important; }
.t01-call-inline {
  display: inline-block;
  background: var(--t01-gold);
  color: #fff !important;
  border: none;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.t01-burger {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.t01-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 16px 14px;
  background: var(--t01-header);
  border-top: 1px solid rgba(255,255,255,.08);
}
.t01-quick a {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-quick-row2 { grid-template-columns: repeat(4, 1fr); padding-top: 0; }

.t01-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
.t01-drawer.is-open { display: block; }
.t01-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.t01-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: var(--t01-header);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.25);
}
.t01-drawer-panel a {
  color: var(--t01-nav);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.t01-drawer-panel a:hover { color: #fff; }
.t01-drawer-book { text-align: center; margin-top: 8px; }
.t01-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.t01-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(218, 173, 43, .16), transparent 24%),
    linear-gradient(115deg, #2b1d16 0%, #4c3b34 55%, #342925 100%);
  color: #fff;
  padding: var(--t01-hero-pad-y) var(--t01-gutter);
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: center;
}
.t01-hero-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 36px;
  align-items: center;
}
.t01-hero h1 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-hero .script {
  display: block;
  font-family: var(--t01-script);
  font-size: clamp(44px, 5.5vw, 62px);
  font-weight: 400;
  text-transform: lowercase;
  color: #fff;
  line-height: 1.05;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.t01-hero p {
  max-width: 36rem;
  font-size: 17px;
  line-height: 2;
  opacity: .95;
}
.t01-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid var(--t01-primary);
  background: var(--t01-cream);
  color: var(--t01-primary);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.t01-btn:hover {
  background: #fff;
  color: var(--t01-primary);
}
.t01-btn-dark {
  background: var(--t01-primary);
  color: #fff;
  border-color: var(--t01-primary);
}
.t01-btn-dark:hover {
  background: #3a2d27;
  color: #fff;
}

.t01-hero-media { display: none; min-width: 0; }
.t01-hero-carousel {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
  margin-right: -8px;
}
.t01-hero-carousel::-webkit-scrollbar { display: none; }
.t01-hero-carousel-track {
  display: flex;
  align-items: flex-end;
  width: max-content;
  min-height: clamp(280px, 42vw, 420px);
}
.t01-hero-carousel-track img,
.t01-hero-carousel-track .t01-hero-placeholder {
  flex: 0 0 clamp(150px, 22vw, 210px);
  width: clamp(150px, 22vw, 210px);
  margin-left: clamp(-48px, -4vw, -28px);
  scroll-snap-align: start;
  aspect-ratio: 370 / 630;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.t01-hero-carousel-track > *:first-child { margin-left: 0; }
.t01-hero-carousel-track > *:nth-child(even) {
  transform: translateY(12px);
}
.t01-hero-placeholder {
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #5a463d, #2b1d16);
}
.t01-hero-placeholder-alt { background: linear-gradient(180deg, #6b5449, #342925); }
.t01-hero-placeholder-warm { background: linear-gradient(180deg, #7a6357, #4c3b34); }

.t01-hero-media-mobile { display: none; }
.t01-hero-media-mobile img,
.t01-hero-media-mobile .t01-hero-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid rgba(255,255,255,.18);
}

.t01-section { padding: var(--t01-section-pad-y) var(--t01-gutter); }
.t01-section-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
}
.t01-section h2 {
  margin: 0 0 12px;
  font-family: var(--t01-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--t01-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-section-title-center { text-align: center; }
.t01-section-cta { text-align: center; margin-top: 28px; }
.t01-divider {
  width: 140px;
  height: 8px;
  margin: 0 0 32px;
  background:
    radial-gradient(circle at 20% 50%, var(--t01-gold) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--t01-gold) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 50%, var(--t01-gold) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(218, 173, 43, .55), transparent);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.t01-divider-center { margin-left: auto; margin-right: auto; }
.t01-lead {
  line-height: 1.75;
  font-size: 16px;
}

.t01-about {
  display: grid;
  gap: 32px;
}
.t01-section-about { background: #fff; }
.t01-about-media-wrap {
  position: relative;
  min-height: 360px;
  padding: 20px 0 40px;
}
.t01-about-shape {
  position: absolute;
  top: -10px;
  left: -20px;
  width: min(260px, 55vw);
  height: min(260px, 55vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(218, 173, 43, .32), transparent 68%),
    linear-gradient(145deg, rgba(76, 59, 52, .12), rgba(218, 173, 43, .06));
  z-index: 0;
  pointer-events: none;
}
.t01-about-shape::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 3px solid rgba(218, 173, 43, .38);
  border-radius: 50%;
}
.t01-about-shape::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -60px;
  width: 90px;
  height: 90px;
  background: rgba(218, 173, 43, .14);
  border-radius: 50%;
}
.t01-about-media {
  position: relative;
  z-index: 1;
  min-height: 320px;
}
.t01-about-primary {
  width: 82%;
  max-height: 420px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 40px rgba(31, 21, 17, .14);
}
.t01-about-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  max-height: 280px;
  border: 6px solid #fff;
  box-shadow: 0 14px 36px rgba(31, 21, 17, .2);
  border-radius: 4px;
  object-fit: cover;
}

.t01-party-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  grid-template-columns: 1fr;
}
.t01-party-grid img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 32px rgba(31, 21, 17, .1);
}

.t01-services { background: #2b1d16; color: #fff; }
.t01-services h2 { color: #fff; }
.t01-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.t01-service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.t01-service-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.t01-service-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid rgba(255,255,255,.22);
}
.t01-service-card h3 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t01-service-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: .92;
}

.t01-gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.t01-gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.t01-gallery-preview img:nth-child(n+5) { display: none; }
.t01-gallery-placeholder {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, rgba(218, 173, 43, .2), transparent 36%),
    #e8ddd6;
}

.t01-promo-wrap {
  max-width: 860px;
  text-align: center;
}
.t01-promo-grid {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: 28px auto 8px;
}
.t01-promo-card {
  margin: 0;
  width: min(100%, 460px);
  border: 1px solid rgba(76,59,52,.18);
  background: #fff;
  padding: 12px;
  box-shadow: 0 18px 44px rgba(31,21,17,.12);
}
.t01-promo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 650 / 919;
  object-fit: contain;
}
.t01-promo-placeholder {
  display: grid;
  place-items: center;
  width: min(100%, 460px);
  aspect-ratio: 650 / 919;
  margin: 28px auto 8px;
  border: 1px dashed rgba(76,59,52,.35);
  background:
    linear-gradient(135deg, rgba(218, 173, 43, .14), transparent 40%),
    #f6eee9;
  color: rgba(76,59,52,.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.t01-page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2b1d16, #4c3b34);
  color: #fff;
  padding: 72px 24px 56px;
  text-align: center;
}
.t01-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(218,173,43,.14), transparent 42%);
  pointer-events: none;
}
.t01-page-banner h1 {
  position: relative;
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.t01-page-banner-sub {
  position: relative;
  margin: 10px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: .78;
  font-weight: 600;
}

.t01-contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.t01-contact-line { margin: 0 0 8px; line-height: 1.6; }
.t01-contact-actions { margin-top: 22px; }
.t01-contact-hours {
  background: #f6eee9;
  border: 1px solid rgba(76, 59, 52, .12);
  padding: 28px 24px;
}
.t01-contact-hours h3 {
  margin: 0 0 14px;
  font-family: var(--t01-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t01-primary);
}

.t01-reviews-wrap { max-width: 960px; }
.t01-reviews-intro { text-align: center; margin-bottom: 12px; }
.t01-reviews-note {
  text-align: center;
  font-size: 13px;
  color: rgba(51, 51, 51, .72);
  margin: 0 0 28px;
  font-style: italic;
}
.t01-review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.t01-review-card {
  background: #fff;
  border: 1px solid #e5d7ce;
  padding: 24px 22px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, .08);
}
.t01-review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.t01-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--t01-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.t01-review-name {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--t01-primary);
}
.t01-review-stars {
  margin: 4px 0 0;
  color: var(--t01-gold);
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}
.t01-review-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.t01-review-links {
  margin-top: 36px;
  text-align: center;
}
.t01-review-links-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.t01-fallback-panel {
  max-width: 760px;
  text-align: center;
}
.t01-fallback-card {
  background: #f6eee9;
  border: 1px dashed rgba(76, 59, 52, .28);
  padding: 40px 28px;
}
.t01-fallback-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.t01-footer {
  background: #1f1511 url("/css/theme01-bg.svg") center / cover;
  color: #fff;
  padding: 64px var(--t01-gutter) 0;
}
.t01-footer-grid {
  max-width: var(--t01-container);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.t01-footer h3 {
  margin: 0 0 14px;
  font-family: var(--t01-heading);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.t01-footer a { color: #e8ddd6; text-decoration: none; }
.t01-footer a:hover { color: #fff; }
.t01-footer ul { list-style: none; margin: 0; padding: 0; }
.t01-footer li { margin: 8px 0; }
.t01-footer-lower {
  margin-top: 36px;
  background: var(--t01-primary);
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

.t01-float-right {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t01-float-right a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--t01-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 16px 8px;
}
.t01-float-right a:hover { background: #c99a24; }
.t01-float-left {
  position: fixed;
  left: 0;
  top: 38%;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.t01-float-left a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--t01-primary);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.t01-float-left a:hover { background: #3a2d27; }

/* Focus-visible for keyboard navigation */
.t01-nav a:focus-visible,
.t01-topbar a:focus-visible,
.t01-burger:focus-visible,
.t01-drawer-close:focus-visible,
.t01-drawer-panel a:focus-visible,
.t01-btn:focus-visible,
.t01-call:focus-visible,
.t01-call-inline:focus-visible,
.t01-logo:focus-visible,
.t01-quick a:focus-visible,
.t01-float-right a:focus-visible,
.t01-float-left a:focus-visible {
  outline: 2px solid var(--t01-gold);
  outline-offset: 2px;
}

/* Booking shell token alignment when guestweb vars are present */
.obm-body {
  font-family: var(--t01-body);
}

@media (max-width: 991px) {
  :root {
    --t01-logo-h: 48px;
    --t01-header-min-h: 76px;
    --t01-hero-pad-y: 56px;
    --t01-section-pad-y: 56px;
  }
  .t01-hero { min-height: 0; }
  .t01-hero-media { display: none !important; }
  .t01-hero-media-mobile { display: block; margin-top: 20px; }
  .t01-about-secondary {
    position: relative;
    width: 75%;
    margin: -40px 0 0 auto;
    display: block;
  }
  .t01-about-media { min-height: auto; }
}

@media (min-width: 768px) {
  .t01-service-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .t01-gallery-preview img:nth-child(n+5) { display: block; }
  .t01-about { grid-template-columns: 1fr 1fr; align-items: center; }
  .t01-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-hero-media { display: block; }
  .t01-hero-inner { grid-template-columns: 1fr 1.05fr; }
  .t01-party-grid { grid-template-columns: 1fr 1fr; }
  .t01-review-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-contact-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
  .t01-promo-grid { grid-template-columns: repeat(2, 1fr); justify-items: center; }
}

@media (min-width: 992px) {
  .t01-nav { display: flex; }
  .t01-call { display: inline-block; }
  .t01-burger { display: none; }
  .t01-quick { display: none; }
  .t01-float-left { display: flex; }
  .t01-service-grid { grid-template-columns: repeat(4, 1fr); }
  .t01-hero-media-mobile { display: none !important; }
  .t01-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  :root {
    --t01-nav-gap: 22px;
    --t01-hero-pad-y: 88px;
  }
  .t01-hero-inner { grid-template-columns: 1fr 1.15fr; }
}

@media (prefers-reduced-motion: reduce) {
  .t01-hero-carousel { scroll-behavior: auto; }
  .t01-service-card,
  .t01-btn,
  .t01-call {
    transition: none;
  }
  .t01-hero-carousel-track > *:nth-child(even) {
    transform: none;
  }
}
