/* 1. Use a more intuitive box-sizing model for all elements.
    This ensures that padding and border are included in the element's total width and height.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margins and padding from everything. 
    Margins and spacing should be explicitly applied with flow utilities or layout components.
*/
* {
  margin: 0;
  padding: 0;
}

/* 3. Remove text-decoration from all links and make them inherit color.
    Only apply color/underline when explicitly styled with a class.
*/
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 4. Set core body defaults for better readability and accessibility.
*/
body {
  /* Improve text rendering on screens, especially macOS */
  -webkit-font-smoothing: antialiased;
  /* Set a generous line-height for better accessibility (WCAG recommends >= 1.5) */
  line-height: 1.5;
  /* Set body to min-height 100vh for basic layout/full page background usage */
  min-height: 100vh;
}

/* 5. Improve media defaults for image and video elements.
*/
img,
picture,
video,
canvas,
svg {
  /* Make media block-level to avoid baseline spacing issues */
  display: block;
  /* Ensure media scales down and does not overflow its container */
  max-width: 100%;
}

/*
    6. Inherit font styles for form elements for consistent typography.
    This prevents inputs/buttons from using a different default font.
*/
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Remove default list styles (bullets/numbers) from <ul> and <ol> elements 
    that have an explicit role of list, so they don't break accessibility semantics
    if not explicitly styled as a list.
*/
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* 8. Prevent text from being set to tiny sizes on mobile browsers.
*/
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* 9. Ensure all text respects the container width by breaking long words.
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

figure {
  margin: 0;
}

:root {
  --lr-color-black: #000000;
  --lr-color-gray-dark: #2c2a27;
  --lr-color-white: #ffffff;
  --lr-color-red: #600909;
  --lr-color-green: #0f0;
  --lr-color-beige: #f4e1e1;
  --lr-color-gold: #D6B47B;
  --lr-color-gold-light: #FFF8DC;
  --lr-color-gold-dark: #A27B38;
  --lr-color-gold-darker: #887149;
  --lr-color-gold-darkest: #5C4A2E;
  --lr-gradient-gold: linear-gradient(190deg, var(--lr-color-gold), var(--lr-color-gold-dark));
  --lr-gradient-gray-light: radial-gradient(circle at center, #ffffff 0%, #e0e0e0 70%, #cccccc 100%);
  --lr-primary-color: var(--lr-color-gold);
  --lr-page-bgcolor-light: var(--lr-color-white);
  --lr-page-bgcolor-dark: var(--lr-color-black);
  --lr-page-bgcolor-twilight: var(--lr-color-gray-dark);
  --lr-cta-bgcolor: var(--lr-primary-color);
  --lr-cta-color: var(--lr-color-white);
  --lr-text-color-light: var(--lr-color-black);
  --lr-text-color-dark: var(--lr-color-white);
  --lr-text-muted-color-light: #666666;
  --lr-text-muted-color-dark: #dedede;
  --lr-text-muted-color: var(--lr-text-muted-color-dark);
  --lr-border-radius: 0.375rem;
  --lr-layout-max-width: 60rem;
  --lr-layout-padding-inline: 1.5rem;
  --lr-section-spacing-block: 2rem;
  --lr-link-color: var(--lr-color-gold-dark);
  --lr-link-color-light-hover: var(--lr-color-gold-dark);
  --lr-link-color-dark-hover: var(--lr-color-gold-light);
  --lr-button-bgcolor: var(--lr-color-gold);
  --lr-button-color: var(--lr-color-white);
  --lr-button-border-color: var(--lr-button-bgcolor);
  --lr-button-width: 1px;
  --lr-button-border-radius: var(--lr-border-radius);
  --lr-button-padding-inline: 1.5rem;
  --lr-button-padding-block: 0.75rem;
  --lr-button-padding: var(--lr-button-padding-block) var(--lr-button-padding-inline);
  --lr-font-size-base: clamp(20px, 3vw, 28px);
  --lr-text-font-size: 1rem;
  --lr-text-small-font-size: 0.875rem;
  --lr-text-line-height: 1.5;
  --lr-heading-font-size: 1.333rem;
  --lr-heading-line-height: 1.25;
  --lr-subline-font-sppize: 1.25rem;
  --lr-embossed-text: 0 -0.045em 0.075em var(--lr-color-gold-darkest);
}
@media (min-width: 700px) {
  :root {
    --lr-heading-font-size: 1.618rem;
    --lr-section-spacing-block: 3rem;
  }
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/nunito-sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype-variations");
  font-weight: 200 1000;
  font-stretch: 75% 125%;
  font-style: oblique 0deg 10deg, normal;
  font-display: swap;
}
html {
  font-size: var(--lr-font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: var(--lr-text-font-size);
  line-height: var(--lr-text-line-height);
  font-weight: 400;
}

strong,
em {
  font-weight: 800;
}

.topic-item-content li,
legend,
p {
  text-wrap: pretty;
  max-width: 50ch;
}

.text-center legend,
.text-center h2,
.text-center .heading,
.text-center .subline,
.text-center p {
  margin-inline: auto;
}

.overline,
.quote,
.heading,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", serif;
  line-height: var(--lr-heading-line-height);
  color: var(--lr-text-color);
  text-wrap: balance;
}

.heading,
h1,
h2,
h3 {
  font-size: calc(var(--lr-heading-font-size));
  font-weight: 400;
  text-transform: uppercase;
  max-width: 60ch;
  letter-spacing: 0.02em;
}

h3 {
  font-size: calc(var(--lr-heading-font-size) * 0.875);
}

h2:where(:not(:last-child)),
h3:where(:not(:last-child)),
.subline:where(:not(:last-child)),
.section-headline:where(:not(:last-child)) {
  margin-bottom: 0.5rem;
}

.subline {
  font-size: var(--lr-subline-font-size);
  text-transform: none;
}

.headline-narrow {
  max-width: 30ch;
}

.quote {
  font-size: calc(var(--lr-heading-font-size) * 1.25);
  font-style: italic;
  max-width: 60ch;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.text-2xl {
  font-size: 2.5rem;
}

small,
.text-sm {
  font-size: var(--lr-text-small-font-size);
}

.link-button,
a:where(:not(.button)) {
  color: var(--lr-link-color);
  text-decoration: underline;
  transition: color 0.3s ease;
  background-color: transparent;
  border: none;
}
.link-button:hover, .link-button:focus,
a:where(:not(.button)):hover,
a:where(:not(.button)):focus {
  color: light-dark(var(--lr-link-color-light-hover), var(--lr-link-color-dark-hover));
}

nav a:where(:not(.button)) {
  text-decoration: none;
}

.text-muted {
  color: var(--lr-text-muted-color);
}

.text-primary {
  color: var(--lr-primary-color);
}

.overline {
  margin-bottom: 0.25em;
}

body {
  background: var(--lr-page-bgcolor-dark);
  color: var(--lr-text-color-dark);
}

section {
  overflow: clip;
}

.section-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  isolation: isolate;
  filter: blur(20px);
}

.light-theme {
  --lr-text-muted-color: var(--lr-text-muted-color-light);
  background: var(--lr-page-bgcolor-light);
  color: var(--lr-text-color-light);
}
.light-theme .primary-color {
  color: var(--lr-color-gold-dark);
}

.studio-theme {
  --lr-text-muted-color: var(--lr-text-muted-color-light);
  background: var(--lr-gradient-gray-light);
  color: var(--lr-text-color-light);
  box-shadow: inset 0 0 10rem rgba(0, 0, 0, 0.14);
}
.studio-theme .primary-color {
  color: var(--lr-color-gold-dark);
}

.twilight-theme {
  background: var(--lr-page-bgcolor-twilight);
  color: var(--lr-text-color-dark);
}
.twilight-theme .primary-color {
  color: var(--lr-color-gold);
}

.primary-theme {
  background: var(--lr-color-gold-dark);
  background-image: var(--lr-gradient-gold);
  color: white;
  text-shadow: var(--lr-embossed-text);
}

.dark-theme {
  background: var(--lr-page-bgcolor-dark);
  color: var(--lr-text-color-dark);
}
.dark-theme + .dark-theme .inner {
  padding-top: 0;
}
.dark-theme .primary-color {
  color: var(--lr-color-gold);
}

ul:where(:not(:last-child)),
ol:where(:not(:last-child)),
p:where(:not(:last-child)) {
  margin-bottom: 0.75em;
}

img,
figure,
ul,
ol {
  max-width: 100%;
}

nav ul,
nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.button {
  background-color: var(--lr-button-bgcolor);
  background-image: var(--lr-gradient-gold);
  box-shadow: inset 0 0.2em 0.2em var(--lr-color-gold-light), inset 0 -0.2em 0.2em var(--lr-color-gold-darker);
  color: var(--lr-button-color);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--lr-border-radius);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  max-width: 21rem;
  transition: scale 0.3s ease;
  text-shadow: var(--lr-embossed-text);
  text-transform: uppercase;
}
.button:hover, .button:focus {
  scale: 1.05;
}
@media (max-width: 700px) {
  .button {
    width: 100%;
  }
}

.cta-button {
  position: relative;
  overflow: hidden;
}
.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shine 6s infinite;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: 0.5;
}

.cookie-banner .button {
  width: auto;
}

.icon {
  width: 2rem;
  height: 2rem;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

use {
  width: 100%;
  height: 100%;
}

fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  margin-bottom: 0.5rem;
}

input:where(:not([type=checkbox])) {
  padding: 0.5rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--lr-border-radius);
  width: 100%;
  max-width: 40ch;
  text-align: center;
}

input:focus {
  background-color: white;
}

[type=checkbox] {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  accent-color: var(--lr-color-gold-dark);
  border-radius: var(--lr-border-radius);
  translate: 0 -0.25em;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 40ch;
  margin-inline: auto;
}

.price-table {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  text-align: left;
  padding-block: 0.15rem;
  vertical-align: top;
}
.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
  padding-left: 2rem;
}
.price-table thead th {
  padding-bottom: 0.5rem;
  vertical-align: bottom;
}
.price-table tbody tr td {
  border-top: 1px solid var(--lr-color-gold-dark);
}
.price-table tbody tr:last-child td {
  padding-bottom: 0.5rem;
}
.price-table tfoot {
  font-weight: bold;
  font-size: 1.25rem;
}
.price-table tfoot tr td {
  border-top: 2px solid var(--lr-color-gold-dark);
  padding-top: 0.5rem;
  color: rgb(255, 171, 171);
}

details ::marker {
  color: var(--lr-color-gold);
  display: block;
}

.faq-container {
  max-width: 50ch;
  margin-inline: auto;
}

.faq-item {
  padding-block: 0.5rem;
}
.faq-item:nth-child(n+2) {
  border-top: 1px solid var(--lr-color-gold);
}

.faq-item-content {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.faq-item-title {
  cursor: pointer;
  font-weight: bold;
  text-indent: -1em;
  padding-left: 2em;
  margin-left: -1em;
}

@keyframes shine {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-header,
.page-footer {
  flex-shrink: 0;
}

.page-main {
  flex-grow: 1;
}

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--lr-layout-max-width);
  margin-inline: auto;
  padding-inline: var(--lr-layout-padding-inline);
  padding-block: var(--lr-section-spacing-block);
  position: relative;
  box-sizing: content-box;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.flex-column > * {
  margin: 0;
}

.section-main {
  width: 100%;
}

.page-footer .inner {
  padding-block: 1rem;
}
@media (min-width: 900px) {
  .page-footer .inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.hero {
  background-image: radial-gradient(at 80% 0%, rgb(50, 48, 43), transparent 70%);
}
.hero .bg-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  padding-top: 1rem;
  align-self: center;
  -webkit-mask-image: linear-gradient(to top, transparent, black 40%);
  mask-image: linear-gradient(to top, transparent, black 40%);
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .company-logo {
  filter: invert(1);
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  padding: 1rem;
  gap: 1rem;
  justify-content: center;
}

.addendum-message {
  opacity: 0.7;
}

.about .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.about figure {
  height: 100%;
}
.about figure img {
  display: block;
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.25;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about .about-cta:has(.cta-headline) {
  padding: 2rem;
  background-color: var(--lr-page-bgcolor-twilight);
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
  margin-top: 1rem;
}

.issues-section {
  text-align: center;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.topic-list.restricted-width {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}
.topic-list.one-column {
  grid-template-columns: 1fr;
  margin: auto;
  gap: 1rem;
}
.topic-list .icon,
.topic-list svg,
.topic-list img {
  display: block;
  margin-inline: auto;
  width: 3rem;
  height: 3rem;
  fill: var(--lr-color-gold);
  stroke: var(--lr-color-gold);
}
.topic-list[data-list-style=checkmark] {
  flex-direction: column;
}
.topic-list[data-list-style=checkmark] .topic-item {
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1rem 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
.topic-list[data-list-style=checkmark] .topic-item * {
  text-align: left;
  margin-inline: 0;
}
.topic-list[data-list-style=checkmark] .icon {
  flex: 0 0 auto;
  margin-inline: 0;
  width: 2rem;
  height: 2rem;
}

.topic-item {
  --topic-item-width: 300px;
  flex: 1 1 var(--topic-item-width);
  min-width: 300px;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  text-align: center;
}

.venda-list .topic-item {
  --topic-item-width: 40rem;
  border-radius: var(--lr-border-radius);
  padding: 1rem;
}
.venda-list .topic-item .overline {
  font-size: var(--font-size-small);
  margin-top: -1.75em;
  padding: 0.2em 1em;
  border-radius: var(--lr-border-radius);
  background-color: var(--lr-page-bgcolor-twilight);
  box-shadow: 0 0.25em 0.25em black;
}
.venda-list .topic-item .topic-item-content {
  font-size: 20px;
}

ul {
  padding-left: 1em;
}

li {
  margin-block: 0.25em;
}

.fashion-grid {
  display: flex;
  width: 100%;
  gap: 0;
  margin-top: 1rem;
  max-width: 825px;
  margin-inline: auto;
  position: relative;
  background-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.15) 15%, transparent);
}
.fashion-grid figure {
  display: block;
  width: 100%;
  height: auto;
  min-width: 100px;
  border-radius: var(--lr-border-radius);
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  margin-inline: -5%;
  position: relative;
}
.fashion-grid figure:nth-child(even) {
  min-width: 70px;
  scale: 0.95;
  filter: brightness(0.85);
  z-index: 1;
}
.fashion-grid figure img {
  display: block;
}
.fashion-grid figure img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center bottom;
  transform: skewX(-5deg);
  z-index: -1;
  filter: brightness(0.2) blur(5px) opacity(0.2);
}

.slider {
  overflow: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--lr-color-gold) transparent;
}

.slider-wrapper {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.5rem;
}
.slider-wrapper .slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
  max-width: 70vw;
}

@media (max-width: 1099px) {
  .hero .inner {
    padding-top: 0;
  }
  .hero .hero-logo {
    margin-top: -5rem;
    padding-block: 1rem;
  }
  .hero .hero-logo img {
    height: 3rem;
    margin-inline: auto;
  }
  .hero .bg-image {
    margin-inline: auto;
    display: block;
    width: 80%;
  }
  .hero .hero-content {
    display: contents;
  }
  .hero .hero-headline,
  .hero .hero-subheadline,
  .hero .hero-cta,
  .hero .hero-addendum {
    grid-column: 1/-1;
  }
}
@media (min-width: 1100px) {
  .hero {
    text-align: left;
  }
  .hero .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding-block: 0;
  }
  .hero .bg-image {
    grid-column: 2;
    grid-row: 1;
  }
  .hero .hero-logo {
    margin-bottom: 1.25rem;
  }
  .topic-list.two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .inner {
    grid-template-columns: 1fr 1fr;
  }
  .about .inner .about-cta {
    grid-column: 1/-1;
    justify-self: center;
    padding-inline: 3rem;
  }
}
@media (min-width: 1500px) {
  .hero-content {
    translate: 0 -2rem;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--lr-color-gray-dark);
  color: var(--lr-color-white);
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  width: min(100%, 60rem);
  margin-inline: auto;
  opacity: 0;
  transition: opacity 0.8s, display 0.8s;
  transition-timing-function: ease-in-out;
  transition-behavior: allow-discrete;
}
.cookie-banner[open] {
  opacity: 1;
}
.cookie-banner .cookie-headline,
.cookie-banner .cookie-message {
  margin-inline: auto;
  max-width: none;
}
.cookie-banner .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.cookie-banner .buttons .button {
  padding: 0.5em 0.75em;
}

@starting-style {
  .cookie-banner[open] {
    opacity: 0;
  }
}
.m-auto {
  margin: auto;
}

.weight-normal {
  font-weight: 400;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.pt-0 {
  padding-top: 0;
}

.nowrap {
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

.fit-content {
  width: -moz-max-content;
  width: max-content;
}

.relative {
  position: relative;
}

.blur {
  filter: blur(20px);
}

.grayscale {
  filter: grayscale(100%);
}

.blur.grayscale {
  filter: blur(20px) grayscale(100%);
}

.align-center {
  align-items: center;
}/*# sourceMappingURL=main.css.map */