:root {
  --charcoal-950: #0f1318;
  --charcoal-900: #171d24;
  --charcoal-800: #232b35;
  --warm-100: #f9f5ee;
  --warm-200: #f2e7d7;
  --teal-500: #0f5f63;
  --teal-400: #147d82;
  --gold-500: #b89662;
  --text-high: #f4f5f2;
  --text-body: #d9ddd9;
  --text-dark: #16202b;
  --muted-dark: #5d6875;
  --card-glass: rgba(255, 255, 255, 0.12);
  --card-border: rgba(255, 255, 255, 0.2);
  --card-light: rgba(255, 255, 255, 0.82);
  --shadow-soft: 0 14px 34px rgba(6, 10, 16, 0.18);
  --shadow-card: 0 22px 50px rgba(8, 12, 20, 0.3);
  --radius-xl: 26px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-high);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  background: linear-gradient(145deg, #121a23 0%, #192734 42%, #102629 100%);
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 9% 13%, rgba(184, 150, 98, 0.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(20, 125, 130, 0.2), transparent 30%),
    radial-gradient(circle at 54% 80%, rgba(255, 245, 230, 0.08), transparent 34%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5.8vw, 4.2rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.14;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

a {
  color: inherit;
}

.topbar {
  width: min(1180px, 92vw);
  margin: 22px auto;
  padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: rgba(11, 16, 22, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-offer {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f2d39f 10%, #fff2d6 45%, #e0b96f 60%, #fff2d6 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 11px rgba(242, 211, 159, 0.38), 0 0 26px rgba(224, 185, 111, 0.22);
  animation: goldShimmer 2.1s linear infinite;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-high);
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.24s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chip {
  background: linear-gradient(135deg, var(--gold-500), #ccb283);
  color: #111926;
}

.page {
  width: min(1180px, 92vw);
  margin: 4px auto 120px;
  display: grid;
  gap: 28px;
}

.messages {
  display: grid;
  gap: 10px;
}

.message {
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.message.error {
  background: #fee2e2;
  color: #7f1d1d;
}

.message.success {
  background: #dcfce7;
  color: #14532d;
}

.message.warning {
  background: #ffedd5;
  color: #7c2d12;
}

.glass {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #111926;
  background: linear-gradient(145deg, #d7bd93, #b89662);
  box-shadow: 0 10px 26px rgba(184, 150, 98, 0.3);
}

.button.ghost {
  color: var(--text-high);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.button.tiny {
  min-height: 35px;
  padding: 7px 12px;
  font-size: 0.82rem;
}

.button.wide {
  width: 100%;
}

.text-link {
  color: #e8d2ae;
  text-decoration: none;
  font-weight: 700;
}

.lux-section {
  display: grid;
  gap: 16px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.section-head.compact {
  align-items: start;
}

.lux-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: #e9cd9e;
  font-weight: 700;
}

.lux-subcopy {
  max-width: 62ch;
  color: var(--text-body);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lux-hero {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, rgba(11, 16, 24, 0.82), rgba(12, 28, 34, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.lux-hero-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.lux-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-cluster {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 100%;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.payment-row {
  flex-wrap: nowrap;
  gap: 14px;
  max-width: 100%;
  margin-bottom: 0;
}

.payment-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex: 0 1 auto;
  max-width: 360px;
  margin-bottom: 0;
}

.payment-logo-clip {
  display: flex;
  align-items: center;
}

.payment-logos {
  display: block;
  height: auto;
  max-height: 760px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(15, 167, 146, 0.18));
}

.payment-lockup small {
  font-size: 0.69rem;
  color: rgba(242, 245, 247, 0.62);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-left: 4px;
  margin-top: 0;
  margin-bottom: 0;
}

.discount-notice {
  font-size: 0.82rem;
  color: var(--gold, #c9a84c);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 7px 12px;
  margin-top: 4px;
  margin-bottom: 2px;
  display: inline-block;
}

.lux-hero-visual {
  min-height: 500px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.lux-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 17, 0.2), rgba(3, 11, 17, 0.74));
  pointer-events: none;
}

.lux-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lux-floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(290px, calc(100% - 36px));
  padding: 16px;
  color: #f2f5f7;
  z-index: 1;
}

.lux-floating-card .label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  color: #d4dfdf;
}

.lux-floating-card .value {
  margin: 6px 0;
  font-size: 1.34rem;
  font-weight: 700;
}

.lux-floating-card .muted {
  margin: 0;
  color: #d6dddd;
}

.lux-floating-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}

.gallery-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2px 8px;
  overflow-x: clip;
}

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

.gallery-card {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(4, 8, 12, 0.24);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(16%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.52) 100%);
}

.gallery-card figcaption {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 9px;
  z-index: 2;
  color: rgba(246, 246, 239, 0.9);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.placeholder-tile {
  border-radius: 18px;
  padding: 22px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(20, 125, 130, 0.42), rgba(184, 150, 98, 0.42));
  color: #f4efe2;
  font-weight: 700;
  display: flex;
  align-items: end;
}

.lux-benefits,
.lux-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lux-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lux-card p {
  margin: 10px 0 0;
  color: var(--text-body);
}

.lux-card.quote p {
  font-style: italic;
}

.lux-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 203, 157, 0.45);
}

.lux-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lux-process li {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.lux-process span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #cfb17f, #b89662);
  color: #17202c;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lux-process p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.94rem;
}

.lux-booking-shell {
  padding: clamp(16px, 2.6vw, 28px);
}

.booking-header {
  display: grid;
  gap: 5px;
}

.booking-header .muted {
  margin: 0;
  color: #d6dddd;
}

.dev-badge {
  background: #ffedd5;
  color: #9a3412;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
}

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

.step-chip {
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-body);
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.step-chip.active {
  background: rgba(232, 206, 162, 0.22);
  border-color: rgba(232, 206, 162, 0.52);
  color: #f4ede1;
}

.step-chip.done {
  color: #d4dfdf;
}

.lux-booking-form {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.step-panel {
  display: none;
  gap: 12px;
  animation: stepIn 0.32s ease;
}

.step-panel.active {
  display: grid;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.lux-booking-form label,
.auth-form label {
  display: grid;
  gap: 6px;
  font-size: 0.93rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 11px 12px;
  font: inherit;
  min-height: 44px;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 150, 98, 0.46);
  border-color: rgba(184, 150, 98, 0.55);
}

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

.service-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-card .service-title {
  font-weight: 700;
}

.service-card .service-price {
  color: #f3d39d;
  font-weight: 700;
}

.price-old {
  color: #c0524a;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #a83e37;
  font-weight: 600;
  margin-left: 6px;
}

.service-card small {
  color: var(--text-body);
}

.service-card.active {
  border-color: rgba(232, 206, 162, 0.58);
  transform: translateY(-1px);
}

.time-wrap {
  display: grid;
  gap: 8px;
}

.slot-label,
.slot-status {
  margin: 0;
  color: var(--text-body);
}

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

.slot-pill,
.slot-skeleton {
  border-radius: 12px;
  min-height: 44px;
}

.slot-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-high);
  cursor: pointer;
  font-weight: 600;
}

.slot-pill:hover,
.slot-pill.selected {
  background: rgba(232, 206, 162, 0.24);
  border-color: rgba(232, 206, 162, 0.62);
  color: #f3ecde;
}

.slot-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  background-size: 220px 100%;
  animation: shimmer 1.3s infinite linear;
}

@keyframes shimmer {
  from {
    background-position: -220px 0;
  }
  to {
    background-position: 220px 0;
  }
}

@keyframes goldShimmer {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 220% center;
  }
}

.confirmation-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px;
}

.confirmation-card p {
  margin: 4px 0;
}

.optional-details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.optional-details > summary {
  cursor: pointer;
  font-weight: 700;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.faq-section {
  gap: 10px;
}

details {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--text-body);
}

.sticky-cta-desktop {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 28;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #111926;
  background: linear-gradient(145deg, #d7bd93, #b89662);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  max-width: calc(100vw - 24px);
}

.sticky-cta-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 19, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions.center {
  justify-content: center;
}

.auth-card,
.success-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 28px;
}

.big-date {
  font-size: 1.2rem;
  font-weight: 800;
}

/* Admin pages retain efficient, high-density controls. */
.admin-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.stat {
  padding: 14px;
}

.stat p,
.stat small {
  margin: 0;
  color: #cad4d8;
}

.stat h3 {
  margin-top: 6px;
}

.admin-filters,
.calendar-wrap,
.table-card {
  padding: 16px;
}

.google-calendar-panel {
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.calendar-panel-actions {
  display: flex;
  gap: 8px;
}

.calendar-status {
  margin: 4px 0 0;
}

.calendar-status-connected {
  color: #7fd7c6;
}

.calendar-status-pending {
  color: #f4c25c;
}

.calendar-status-error {
  color: #e7a8a8;
}

.filter-form,
.inline-form,
.availability-form,
.testimonial-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.availability-form {
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs {
  display: flex;
  gap: 8px;
}

.tab {
  text-decoration: none;
  color: var(--text-high);
  padding: 6px 10px;
  border-radius: 999px;
}

.tab.active {
  background: rgba(232, 206, 162, 0.22);
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.month-cell {
  text-decoration: none;
  color: var(--text-high);
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  gap: 6px;
}

.month-cell.booked {
  background: rgba(184, 150, 98, 0.16);
}

.month-cell.faded {
  opacity: 0.5;
}

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

.week-cell,
.day-list {
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  vertical-align: top;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1024px) {
  .lux-hero {
    grid-template-columns: 1fr;
  }

  .lux-benefits,
  .lux-testimonials,
  .lux-process,
  .stats-grid,
  .dual-grid,
  .week-grid,
  .field-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .brand {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .brand-offer {
    font-size: 0.68rem;
  }

  nav {
    width: 100%;
  }

  nav a {
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lux-benefits,
  .lux-testimonials,
  .lux-process,
  .stats-grid,
  .dual-grid,
  .week-grid,
  .field-grid.two,
  .service-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }

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

  .step-actions {
    position: sticky;
    bottom: 68px;
    background: rgba(14, 20, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 10px;
    z-index: 8;
  }

  .sticky-cta-desktop {
    display: none;
  }

  .sticky-cta-mobile {
    display: block;
  }

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

  .page {
    margin-bottom: 160px;
  }

  .payment-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .payment-lockup {
    max-width: 100%;
  }

  .payment-logo-clip {
    display: flex;
    align-items: center;
  }

  .payment-logos {
    max-height: 30px;
    max-width: 280px;
  }
}
