:root {
  color-scheme: light;
  --ink: #171413;
  --charcoal: #28211f;
  --paper: #fffaf5;
  --cream: #f8efe6;
  --rose: #d99a95;
  --rose-dark: #9d5352;
  --teal: #0d6b63;
  --teal-dark: #084b46;
  --sage: #788a70;
  --gold: #c6914d;
  --line: rgba(40, 33, 31, 0.14);
  --muted: #655c57;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(23, 20, 19, 0.16);
  --small-shadow: 0 10px 26px rgba(23, 20, 19, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--teal);
  color: var(--white);
}

img,
svg {
  display: block;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(13, 107, 99, 0.45);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
  padding: 0.4rem max(1rem, calc((100% - var(--max)) / 2)) 0.25rem;
  background: rgba(23, 20, 19, 0.44);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 20, 19, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 95;
  overflow: hidden;
  width: clamp(17.5rem, 30vw, 26rem);
  height: clamp(5.15rem, 8.3vw, 6.7rem);
  min-width: 0;
  border: 2px solid var(--gold);
  border-radius: 10px;
  background: #080706;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
  margin-bottom: -1rem;
  transform: translateY(0.45rem);
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 7.2rem 0 4.3rem;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: linear-gradient(90deg, rgba(13, 9, 8, 0.86), rgba(13, 9, 8, 0.54) 44%, rgba(13, 9, 8, 0.18)), url("../images/salon-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: translateY(var(--hero-shift, 0));
  scale: 1.04;
  transition: transform 120ms linear;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(217, 154, 149, 0.28), transparent 34%),
    linear-gradient(180deg, transparent 68%, rgba(23, 20, 19, 0.84));
}

.hero-shade::before {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 43%, transparent 50% 100%);
  animation: lightSweep 8s ease-in-out infinite;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: 4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(13, 107, 99, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(13, 107, 99, 0.36);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn-soft {
  border-color: var(--line);
  background: var(--cream);
  color: var(--ink);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.hero-notes span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  animation: cuePulse 2s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.intro-strip {
  background: var(--charcoal);
  color: var(--white);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.intro-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.intro-strip a {
  border-radius: 8px;
  background: rgba(217, 154, 149, 0.18);
  color: #ffe4df;
  padding: 0.55rem 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 5rem 0;
}

.two-column,
.appointment-layout,
.contact-layout,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 2rem;
  align-items: start;
}

.section-copy p,
.section-heading p,
.offer-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 2rem;
}

.about-section {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.about-panel,
.appointment-tool,
.contact-form,
.offer-card,
.price-poster-card,
.price-table-card,
.service-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--small-shadow);
}

.about-panel {
  padding: 1.45rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
}

.check-list .icon {
  color: var(--teal);
  margin-top: 0.15rem;
}

.services-section {
  background: var(--paper);
}

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

.service-card,
.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 154, 149, 0.16), transparent 42%, rgba(13, 107, 99, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 107, 99, 0.24);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.trust-card:hover::before {
  opacity: 1;
}

.service-card > *,
.trust-card > * {
  position: relative;
}

.service-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.service-card p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  background:
    linear-gradient(135deg, rgba(217, 154, 149, 0.12), transparent 36%),
    var(--cream);
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-table-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.25rem;
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.price-card-head h3 {
  margin-bottom: 0;
}

.price-card-head span {
  border-radius: 8px;
  background: rgba(13, 107, 99, 0.1);
  color: var(--teal-dark);
  padding: 0.4rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-rows {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.price-rows div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.price-rows div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-rows dt {
  color: var(--charcoal);
  font-weight: 800;
}

.price-rows dd {
  margin: 0;
  color: var(--rose-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.price-note {
  margin: 0;
  color: var(--muted);
}

.price-table-card .btn {
  margin-top: auto;
}

.price-poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-poster-card {
  overflow: hidden;
  min-width: 0;
  border: 0;
  padding: 0;
  background: var(--charcoal);
  box-shadow: var(--small-shadow);
}

.price-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.price-poster-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.gallery-section {
  background: linear-gradient(180deg, var(--cream), #fdf7f1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--charcoal);
  box-shadow: var(--small-shadow);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  border-radius: 8px;
  background: rgba(23, 20, 19, 0.72);
  color: var(--white);
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.trust-section {
  background: var(--charcoal);
  color: var(--white);
}

.trust-card {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.trust-card .icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 1rem;
  color: #ffd5ce;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.72);
}

.appointment-section {
  background:
    linear-gradient(135deg, rgba(13, 107, 99, 0.08), transparent 38%),
    var(--paper);
}

.appointment-tool {
  padding: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(13, 107, 99, 0.45);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(13, 107, 99, 0.1);
}

.appointment-actions {
  margin-top: 0.9rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-section {
  background: var(--cream);
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.9rem;
}

.detail-row .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
}

.detail-row span,
.detail-row small {
  display: block;
  min-width: 0;
}

.detail-row small {
  color: var(--muted);
  word-break: break-word;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
  aspect-ratio: 16 / 10;
  background: var(--white);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.contact-form h3,
.contact-form p {
  margin-bottom: 0;
}

.contact-form p {
  color: var(--muted);
}

.offer-section {
  background:
    linear-gradient(180deg, #f4f9ff 0%, #e9f3ff 100%);
}

.offer-layout {
  align-items: center;
}

.offer-copy .eyebrow.dark {
  color: #2f6fdd;
}

.offer-copy h2 {
  color: #123b76;
}

.offer-copy p {
  color: #4a6386;
}

.offer-copy strong {
  color: #0d56c9;
}

.offer-card {
  padding: 1.4rem;
  border: 1px solid rgba(87, 141, 233, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.98));
  box-shadow: 0 24px 60px rgba(39, 95, 176, 0.16);
}

.price {
  display: block;
  margin-bottom: 1rem;
  color: #0f4cb2;
  font-size: 3rem;
  line-height: 1;
}

.price span {
  color: #5f7aa3;
  font-size: 1rem;
}

.offer-card .check-list li {
  color: #456387;
}

.offer-card .check-list .icon {
  color: #2f6fdd;
}

.offer-card .btn {
  margin-top: 1.2rem;
  width: 100%;
}

.offer-card .btn-primary {
  border-color: #2f6fdd;
  background: linear-gradient(135deg, #4d97ff, #1f66d8);
  box-shadow: 0 18px 38px rgba(47, 111, 221, 0.22);
}

.offer-card .btn-primary:hover {
  box-shadow: 0 22px 44px rgba(47, 111, 221, 0.3);
}

.site-footer {
  background: #120f0e;
  color: var(--white);
  padding: 2.3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-credit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-cta {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 15, 14, 0.9);
  padding: 0.5rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 3.2rem;
  place-items: center;
  gap: 0.15rem;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-cta .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.lightbox {
  width: min(92%, 980px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(10, 8, 7, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes lightSweep {
  0%,
  42% {
    transform: translateX(-22%);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(22%);
    opacity: 0;
  }
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 960px) {
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .appointment-layout,
  .contact-layout,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 5.7rem;
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand-mark {
    width: min(78vw, 17.2rem);
    height: 4.95rem;
    transform: translateY(0.35rem);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 6.2rem 0 3.8rem;
  }

  .hero-media {
    background-image: linear-gradient(180deg, rgba(13, 9, 8, 0.82), rgba(13, 9, 8, 0.52) 56%, rgba(13, 9, 8, 0.76)), url("../images/salon-hero.jpg");
    background-position: 62% center;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .appointment-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-strip span,
  .intro-strip a {
    display: none;
  }

  .section {
    padding: 3.8rem 0;
  }

  .service-grid,
  .trust-grid,
  .gallery-grid,
  .price-list-grid,
  .price-poster-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .price-poster-card {
    aspect-ratio: 1 / 1.35;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .brand-mark {
    width: min(82vw, 17rem);
    height: 4.65rem;
  }

  .hero-notes {
    display: none;
  }

  .detail-row {
    align-items: flex-start;
  }

  .price-card-head {
    flex-direction: column;
  }

  .price-card-head span {
    white-space: normal;
  }

  .mobile-cta {
    right: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
