:root {
  --black: #050607;
  --black-soft: #0b0d10;
  --charcoal: #17191d;
  --white: #ffffff;
  --bone: #f5f1e9;
  --paper: #fbfaf6;
  --muted: #9da3aa;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 6, 7, 0.12);
  --gold: #e6d1a2;
  --red: #a51f24;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

main section {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  background: rgba(5, 6, 7, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 68px;
  height: 46px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  font-size: 0.86rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-menu a {
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.nav-menu a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 90svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-shade,
.poster-bg,
.poster-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("assets/optimized/hero-event.jpg") 58% 48% / cover;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.38) 48%, rgba(5, 6, 7, 0.06)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.66), rgba(5, 6, 7, 0.08) 58%);
}

.hero-content {
  padding: 180px 0 96px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 700px;
  color: var(--white);
  font-size: 6rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  font-size: 2.65rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.08;
}

.hero-line {
  max-width: 630px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  color: inherit;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-solid {
  background: var(--red);
  color: var(--white);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: #7f171b;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.54);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.client-bar {
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}

.client-bar-inner {
  display: grid;
  gap: 28px;
  padding: 42px 0;
}

.client-bar p {
  color: rgba(5, 6, 7, 0.65);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.logo-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 86px;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.logo-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(165, 31, 36, 0.16);
}

.logo-carousel.is-dragging .logo-viewport {
  cursor: grabbing;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 4px 68px;
  will-change: transform;
}

.logo-item {
  flex: 0 0 clamp(118px, 13vw, 170px);
  display: grid;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.logo-item img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(1.18) contrast(1.08) drop-shadow(0 1px 1px rgba(5, 6, 7, 0.24));
  opacity: 0.9;
  transform: scale(0.96);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.logo-item:hover {
  border-color: rgba(165, 31, 36, 0.18);
  box-shadow: 0 12px 30px rgba(5, 6, 7, 0.08);
  transform: translateY(-1px);
}

.logo-item:hover img {
  filter: saturate(1.32) contrast(1.1) drop-shadow(0 2px 2px rgba(5, 6, 7, 0.28));
  opacity: 1;
  transform: scale(1);
}

.logo-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(5, 6, 7, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.logo-control:hover,
.logo-control:focus-visible {
  border-color: rgba(5, 6, 7, 0.34);
  background: var(--black);
  color: var(--white);
}

.logo-control:active {
  transform: translateY(-50%) scale(0.96);
}

.logo-control-prev {
  left: 0;
}

.logo-control-next {
  right: 0;
}

.logo-control span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.logo-control-prev span {
  transform: translateX(2px) rotate(-135deg);
}

.logo-control-next span {
  transform: translateX(-2px) rotate(45deg);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.statement {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
  padding: 112px 0;
}

.statement p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.16rem;
}

.reaction-photo-section {
  position: relative;
  min-height: min(780px, 76svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.reaction-photo-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.reaction-photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.26) 54%, rgba(5, 6, 7, 0.1)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.08) 64%);
}

.reaction-photo-content {
  padding: 96px 0;
}

.reaction-photo-content h2 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.98;
}

.reaction-photo-content .hero-actions {
  margin-top: 30px;
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(180deg, #f7f5ef 0%, var(--white) 100%);
}

.testimonials h2,
.photo-heading h2,
.booking-copy h2 {
  max-width: 880px;
}

.testimonial-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.button-dark-text {
  color: var(--black);
  border-color: rgba(5, 6, 7, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.button-dark-text:hover,
.button-dark-text:focus-visible {
  border-color: rgba(5, 6, 7, 0.34);
  background: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.quote-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 286px;
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 26px 70px rgba(5, 6, 7, 0.1);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.quote-card-large {
  align-self: start;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.48fr);
  gap: 26px;
  min-height: 448px;
  background:
    linear-gradient(135deg, rgba(188, 25, 33, 0.18), rgba(217, 177, 88, 0.08) 42%, rgba(5, 6, 7, 0.08)),
    var(--black);
  color: var(--white);
}

.quote-card-content {
  display: grid;
  align-content: space-between;
}

.quote-card-red {
  background:
    linear-gradient(135deg, rgba(188, 25, 33, 0.08), rgba(217, 177, 88, 0.08)),
    var(--white);
}

.quote-card-red .quote-thumb {
  position: relative;
}

.quote-card-red .quote-thumb::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: url("assets/optimized/grieg-card-surprise.jpg") center / cover;
  filter: blur(16px) brightness(0.72);
  transform: scale(1.03);
}

.quote-photo,
.quote-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.quote-photo img,
.quote-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.quote-photo img {
  min-height: 390px;
}

.quote-card:hover .quote-photo img,
.quote-card:hover .quote-thumb img {
  transform: scale(1.035);
}

.quote-card-with-thumb {
  grid-template-columns: minmax(230px, 0.44fr) minmax(0, 1fr);
  gap: 20px;
  align-content: stretch;
  padding: 18px;
}

.quote-card-with-thumb::before {
  left: 18px;
  right: 18px;
  width: auto;
}

.quote-thumb {
  min-height: 246px;
}

.quote-card-with-thumb:nth-child(1) .quote-thumb img {
  object-position: center 42%;
}

.quote-card-with-thumb:nth-child(2) .quote-thumb img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.quote-card-with-thumb .quote-card-top {
  margin-bottom: 18px;
}

.quote-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.quote-rating {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(217, 177, 88, 0.46);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.star-mark {
  color: var(--gold);
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.quote-card:not(.quote-card-large) .quote-rating {
  border-color: rgba(188, 25, 33, 0.22);
  color: var(--red);
}

.quote-logo-shell {
  display: grid;
  width: 126px;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(5, 6, 7, 0.09);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
}

.quote-logo-shell img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.quote-card blockquote {
  margin: 0;
  max-width: 740px;
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.quote-card:not(.quote-card-large) blockquote {
  font-size: 1.42rem;
  line-height: 1.12;
}

.quote-card figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: end;
  justify-content: space-between;
  margin-top: 34px;
  color: rgba(5, 6, 7, 0.68);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-card-large figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.quote-card figcaption span {
  display: block;
  color: var(--red);
}

.quote-card figcaption span:first-child {
  color: rgba(5, 6, 7, 0.74);
}

.quote-card-large figcaption span {
  color: var(--gold);
}

.quote-card-large figcaption span:first-child {
  color: rgba(255, 255, 255, 0.78);
}

.section-split {
  background: var(--black);
  color: var(--white);
  padding: 112px 0;
}

.split-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.portrait-block {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.portrait-block img {
  width: 100%;
  aspect-ratio: 4 / 5.25;
  object-fit: cover;
  object-position: center 42%;
}

.split-copy p:not(.eyebrow),
.booking-copy p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.split-copy h2 {
  max-width: 640px;
  font-size: clamp(2.2rem, 3.2vw, 3.55rem);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.stats-row div {
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}

.stats-row dt {
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.stats-row dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-section-white .stats-row div {
  border-top-color: var(--line-light);
}

.page-section-white .stats-row dt {
  color: var(--red);
}

.page-section-white .stats-row dd {
  color: rgba(5, 6, 7, 0.62);
}

.services {
  padding: 112px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.section-heading {
  display: grid;
  gap: 18px;
}

.service-list {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.service-item {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-item span {
  color: var(--red);
  font-weight: 950;
}

.service-item p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
}

.photo-story {
  background: var(--white);
  color: var(--black);
  padding: 112px 0 0;
}

.photo-heading {
  padding-bottom: 54px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-grid figure:nth-child(1) img {
  object-position: center 40%;
}

.photo-grid figure:nth-child(2) img,
.photo-grid figure:nth-child(4) img {
  object-position: center 42%;
}

.photo-grid figure:nth-child(3) img,
.photo-grid figure:nth-child(6) img {
  object-position: center 46%;
}

.photo-grid figure:nth-child(5) img {
  object-position: center 48%;
}

.booking {
  padding: 112px 0;
}

.booking-layout {
  align-items: start;
}

.booking-copy p {
  color: rgba(5, 6, 7, 0.68);
}

.page-booking.booking-priority {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--white);
}

.page-booking.booking-priority::before,
.page-booking.booking-priority::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-booking.booking-priority::before {
  z-index: -3;
  background: url("assets/optimized/hero-event.jpg") center 48% / cover;
  transform: scale(1.02);
}

.page-booking.booking-priority::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.78) 46%, rgba(5, 6, 7, 0.86)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.36) 58%);
}

.booking-priority .booking-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
}

.booking-priority .booking-copy h2 {
  max-width: 760px;
  color: var(--gold);
  font-size: clamp(2.5rem, 4.2vw, 5rem);
  line-height: 0.94;
}

.booking-priority .booking-copy p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}

.booking-list-intro {
  margin-top: 26px;
  color: var(--gold) !important;
  font-weight: 900;
}

.booking-points {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.booking-points li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-points li::before {
  content: "";
  position: absolute;
  top: 1.52em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(165, 31, 36, 0.28);
  transform: translateY(-50%);
}

.booking-close {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--white) !important;
  font-weight: 850;
}

.booking-visual {
  overflow: hidden;
  margin-top: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 24px 60px rgba(5, 6, 7, 0.1);
}

.booking-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 500ms ease;
}

.booking-visual:hover img {
  transform: scale(1.035);
}

.booking-form {
  position: relative;
  display: grid;
  gap: 17px;
  overflow: hidden;
  scroll-margin-top: 112px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(5, 6, 7, 0.08);
}

.booking-priority .booking-form {
  border-color: rgba(230, 209, 162, 0.34);
  background:
    linear-gradient(180deg, rgba(30, 30, 38, 0.98), rgba(11, 11, 16, 0.96)),
    rgba(19, 19, 25, 0.96);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px);
}

.booking-priority .booking-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.booking-form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  padding-top: 8px;
  text-align: left;
}

.booking-form-heading h3 {
  color: var(--white);
  font-size: clamp(1.95rem, 2.75vw, 2.75rem);
  line-height: 0.98;
}

.form-kicker {
  justify-self: start;
  border: 1px solid rgba(230, 209, 162, 0.38);
  border-radius: 999px;
  background: rgba(165, 31, 36, 0.24);
  color: var(--gold);
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row-split > div {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(5, 6, 7, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-priority label {
  color: rgba(255, 255, 255, 0.86);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(5, 6, 7, 0.18);
  border-radius: 0;
  background: #f7f7f4;
  color: var(--black);
  padding: 13px 14px;
  outline: none;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.booking-priority input,
.booking-priority select,
.booking-priority textarea {
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(12, 12, 18, 0.72);
  color: var(--white);
}

.booking-priority input::placeholder,
.booking-priority textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.booking-priority input:hover,
.booking-priority select:hover,
.booking-priority textarea:hover {
  border-color: rgba(230, 209, 162, 0.52);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(165, 31, 36, 0.12);
}

.booking-priority input:focus,
.booking-priority select:focus,
.booking-priority textarea:focus {
  background: rgba(5, 6, 7, 0.88);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(230, 209, 162, 0.16);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  display: none;
  color: rgba(5, 6, 7, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-priority .form-status {
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
}

.footer-brand img {
  width: 64px;
  height: 43px;
  object-fit: contain;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-meta {
  justify-self: end;
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-socials path {
  fill: currentColor;
  stroke: none;
}

.footer-meta p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-main {
  background: var(--paper);
  color: var(--black);
}

.page-hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero-media,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  z-index: -3;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 981px) {
  .about-hero .page-hero-media img {
    object-position: center 41%;
  }
}

.page-hero::after {
  content: "";
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.48) 54%, rgba(5, 6, 7, 0.12)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.12) 58%);
}

.page-hero-content {
  padding: 148px 0 72px;
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 4.1vw, 3.75rem);
  line-height: 0.98;
}

.page-hero .hero-line {
  max-width: 720px;
}

.page-section {
  padding: 104px 0;
  background: var(--paper);
  color: var(--black);
}

.page-section-dark {
  background: var(--black);
  color: var(--white);
}

.page-section-white {
  background: var(--white);
}

.story-section {
  background:
    linear-gradient(115deg, rgba(230, 209, 162, 0.18), rgba(255, 255, 255, 0) 44%),
    var(--white);
}

.page-intro-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.page-intro-grid p,
.story-grid p,
.contact-grid p,
.format-copy p,
.feature-copy p {
  color: rgba(5, 6, 7, 0.68);
  font-size: 1.08rem;
}

.page-section-dark .page-intro-grid p,
.page-section-dark .story-grid p,
.page-section-dark .format-copy p,
.page-section-dark .feature-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.story-copy {
  display: grid;
  gap: 20px;
}

.story-visual {
  position: relative;
  overflow: hidden;
  margin-top: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 24px 54px rgba(5, 6, 7, 0.14);
}

.story-visual img {
  width: 100%;
  aspect-ratio: 5 / 3.35;
  object-fit: cover;
  object-position: 50% 42%;
}

.story-highlight {
  border-left: 4px solid var(--red);
  background: rgba(230, 209, 162, 0.2);
  color: rgba(5, 6, 7, 0.9) !important;
  padding: 20px 22px;
  font-weight: 850;
}

.check-list,
.timeline-list,
.service-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.service-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(5, 6, 7, 0.72);
}

.page-section-dark .check-list li,
.page-section-dark .service-points li {
  color: rgba(255, 255, 255, 0.72);
}

.check-list li::before,
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.format-card,
.testimonial-card,
.process-step,
.contact-method {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 22px 54px rgba(5, 6, 7, 0.07);
}

.page-section-dark .format-card,
.page-section-dark .process-step {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.format-card img,
.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.format-card h3,
.testimonial-card h3,
.process-step h3 {
  margin-bottom: 12px;
}

.format-card p,
.testimonial-card p,
.process-step p,
.contact-method p {
  color: rgba(5, 6, 7, 0.66);
}

.page-section-dark .format-card p,
.page-section-dark .process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 86px;
}

.feature-row-reverse .feature-image {
  order: 2;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.feature-image img {
  aspect-ratio: 5 / 4;
  margin: 0;
}

.feature-copy h2 {
  margin-bottom: 22px;
}

.feature-copy .button {
  margin-top: 28px;
}

.client-proof-section h2 {
  max-width: 940px;
}

.client-board {
  overflow: hidden;
  margin: 42px 0 0;
  border: 1px solid rgba(5, 6, 7, 0.12);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 28px 80px rgba(5, 6, 7, 0.16);
}

.client-board img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.client-proof-section .logo-cloud {
  margin-top: 24px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.logo-cloud div {
  display: grid;
  min-height: 88px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
  padding: 17px;
}

.logo-cloud img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 850;
  line-height: 1.18;
}

.testimonial-card figcaption {
  margin-top: 24px;
  color: rgba(5, 6, 7, 0.62);
  font-weight: 900;
}

.testimonials-page .page-hero {
  min-height: min(680px, 78svh);
}

.testimonials-page .page-hero-media img {
  object-position: center 37%;
}

.testimonials-page .hero-line {
  display: grid;
  gap: 12px;
}

.inline-stars,
.review-stars {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.inline-stars {
  font-size: 1rem;
  line-height: 1;
}

.review-showcase {
  padding-top: 96px;
  background:
    linear-gradient(180deg, var(--white) 0%, #f8f5ee 48%, var(--paper) 100%);
}

.review-proof-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: -76px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(165, 31, 36, 0.2), rgba(5, 6, 7, 0) 42%),
    var(--black);
  color: var(--white);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 32px 90px rgba(5, 6, 7, 0.24);
}

.review-proof-panel,
.review-proof-copy,
.review-section-heading,
.review-grid,
.review-card,
.review-card-body {
  min-width: 0;
}

.review-proof-copy h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1;
}

.review-proof-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.review-proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-proof-points span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 14px 14px 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-proof-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.review-section-heading {
  margin-top: 0;
}

.review-section-heading h2 {
  max-width: 700px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.review-section-heading > p {
  color: rgba(5, 6, 7, 0.64);
  font-size: 1.08rem;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 46px;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: grid;
  margin: 0;
  padding: 0;
  border-color: rgba(5, 6, 7, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.review-card-soft {
  background: #fff7f2;
}

.review-card-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--black);
  color: var(--white);
}

.review-card-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.review-tag {
  border: 1px solid rgba(165, 31, 36, 0.24);
  border-radius: 999px;
  background: rgba(165, 31, 36, 0.06);
  color: var(--red);
  padding: 8px 12px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-card-dark .review-tag {
  border-color: rgba(230, 209, 162, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.review-card blockquote {
  min-height: 118px;
  font-size: clamp(1.14rem, 1.34vw, 1.38rem);
  line-height: 1.15;
}

.review-footer {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 32px;
}

.review-card figcaption {
  display: grid;
  gap: 4px;
  margin: 0;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.review-card figcaption span:first-child {
  color: rgba(5, 6, 7, 0.78);
}

.review-card figcaption span + span {
  color: var(--red);
}

.review-card-dark figcaption span:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.review-card-dark figcaption span + span {
  color: var(--gold);
}

.review-logo {
  width: 108px;
  height: 52px;
  object-fit: contain;
  border: 1px solid rgba(5, 6, 7, 0.1);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}

.image-strip-gallery img:nth-child(1),
.image-strip-gallery img:nth-child(3),
.image-strip-gallery img:nth-child(5) {
  object-position: center 34%;
}

.image-strip-gallery img:nth-child(8) {
  object-position: center 48%;
}

.contact-summary {
  display: block;
  max-width: 780px;
}

.page-booking {
  background: var(--paper);
}

@media (max-width: 980px) {
  :root {
    --shell: min(760px, calc(100% - 32px));
  }

  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(5, 6, 7, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 16px 12px;
    border-radius: 6px;
  }

  .hero-media {
    background-position: 54% 48%;
  }

  .hero-content {
    padding: 138px 0 56px;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .quote-card blockquote {
    font-size: 1.85rem;
  }

  .quote-card:not(.quote-card-large) blockquote {
    font-size: 1.42rem;
  }

  .statement-grid,
  .split-layout,
  .booking-layout,
  .quote-grid,
  .quote-card-large,
  .page-intro-grid,
  .story-grid,
  .contact-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .quote-photo img {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .statement-grid,
  .testimonials,
  .section-split,
  .services,
  .booking,
  .page-section,
  .photo-story {
    padding-top: 84px;
  }

  .statement-grid,
  .testimonials,
  .section-split,
  .services,
  .booking,
  .page-section {
    padding-bottom: 84px;
  }

  .page-hero h1 {
    max-width: 640px;
    font-size: 3.25rem;
  }

  .booking-priority .booking-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-priority .booking-form {
    order: -1;
  }

  .format-grid,
  .process-grid,
  .testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-row-reverse .feature-image {
    order: 0;
  }

  .service-item {
    grid-template-columns: 58px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-layout nav {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(560px, calc(100% - 24px));
  }

  .brand span,
  .footer-brand span {
    font-size: 0.78rem;
  }

  .hero {
    min-height: min(640px, 88svh);
  }

  .page-hero {
    min-height: min(620px, 86svh);
  }

  .hero-media {
    background-position: 52% 48%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.72), rgba(5, 6, 7, 0.4)),
      linear-gradient(0deg, rgba(5, 6, 7, 0.72), rgba(5, 6, 7, 0.14) 56%);
  }

  h1 {
    font-size: 3.25rem;
    line-height: 0.94;
  }

  .page-hero h1 {
    font-size: 2.42rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .booking-priority .booking-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .booking-form-heading h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .client-bar-inner {
    padding: 34px 0;
  }

  .quote-card {
    min-height: 280px;
    padding: 24px;
  }

  .testimonial-header,
  .quote-card-with-thumb {
    grid-template-columns: 1fr;
  }

  .quote-card-large,
  .quote-card-with-thumb {
    min-height: auto;
  }

  .quote-card-with-thumb {
    padding: 18px;
  }

  .quote-thumb {
    min-height: 190px;
  }

  .quote-card-top {
    align-items: flex-start;
  }

  .quote-card blockquote,
  .quote-card:not(.quote-card-large) blockquote {
    font-size: 1.32rem;
  }

  .stats-row,
  .form-row-split,
  .photo-grid,
  .format-grid,
  .process-grid,
  .testimonial-list,
  .logo-cloud,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-item p {
    grid-column: auto;
  }

  .booking-form {
    padding: 22px;
  }

}

@media (max-width: 980px) {
  .review-proof-panel,
  .review-section-heading {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonials-page .page-hero {
    min-height: min(600px, 82svh);
  }

  .testimonials-page .page-hero h1 {
    max-width: 350px;
    font-size: 2.05rem;
    line-height: 1.04;
  }

  .testimonials-page .page-hero .hero-line {
    max-width: 350px;
    font-size: 1rem;
  }

  .review-proof-panel {
    margin-top: -46px;
  }

  .review-proof-copy h2,
  .review-section-heading h2 {
    max-width: 330px;
    font-size: 1.95rem;
    line-height: 1.04;
  }

  .review-section-heading > p,
  .review-proof-copy p:not(.eyebrow) {
    max-width: 340px;
  }

  .review-proof-points,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-section-heading {
    margin-top: 56px;
  }

  .review-card {
    min-height: 0;
  }

  .review-card-body {
    padding: 24px;
  }

  .review-card-top {
    display: grid;
    justify-content: start;
  }

  .review-tag {
    white-space: normal;
  }

  .review-card blockquote {
    min-height: 0;
    font-size: 1.28rem;
  }

  .review-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .image-strip-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
