:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 155, 98, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, #f7f3eb 62%, #fffdf8 100%);
  overflow-x: hidden;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms, background-color 300ms, border-color 300ms;
}

.btn-primary {
  background: #14212b;
  color: white;
  box-shadow: 0 18px 45px rgba(30, 38, 40, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(30, 38, 40, 0.13);
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  color: #14212b;
}

.nav-link {
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  transition: background-color 300ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #14212b;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b98539;
}

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 650;
  line-height: 1.12;
  color: #14212b;
}

.section-shell {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding: 3rem 1rem;
}

main,
section,
article,
aside,
form,
.section-shell {
  min-width: 0;
}

.flex > form {
  min-width: 0;
}

p,
h1,
h2,
h3,
h4,
a,
span,
td,
th,
label {
  overflow-wrap: anywhere;
}

.dashboard-nav .overflow-x-auto,
.mobile-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.dashboard-nav .overflow-x-auto {
  scroll-padding-inline: 1rem;
}

@media (max-width: 639px) {
  .section-shell {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 2.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  form .btn-primary,
  form .btn-secondary {
    width: 100%;
  }

  .flex > form {
    width: 100%;
  }

  [class*="rounded-[1.5rem]"],
  [class*="rounded-[2rem]"] {
    border-radius: 1.125rem;
  }

  [class*=" p-8"],
  [class*=" p-7"],
  [class*=" p-6"] {
    padding: 1.25rem;
  }
}

.home-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .home-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-shell {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .home-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

#site-header.is-scrolled {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(30, 38, 40, 0.08);
}

@media print {
  body {
    background: #ffffff !important;
    color: #14212b !important;
  }

  #site-header,
  footer,
  .dashboard-nav,
  .print\:hidden {
    display: none !important;
  }

  .section-shell {
    max-width: none !important;
    padding: 0 !important;
  }

  [data-print-receipt] {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 24px !important;
  }
}
