/** Shopify CDN: Minification failed

Line 861:16 Expected identifier but found whitespace
Line 861:18 Unexpected "{"
Line 861:27 Expected ":"
Line 861:66 Expected ":"
Line 862:21 Expected identifier but found whitespace
Line 862:23 Unexpected "{"
Line 862:32 Expected ":"
Line 862:75 Expected ":"
Line 1084:14 Expected identifier but found whitespace
Line 1084:16 Unexpected "{"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:6) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:8) */
/* ─── Contact Form Base ──────────────────────────────── */
.contact-form {
  padding-bottom: 6rem;
  background-color: var(--color-background);
}

.contact-form__container {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact-form__container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ─── Address Block ──────────────────────────────────── */
.contact-form__address-block {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__address-text {
  font-family: var(--font-body--family);
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

.contact-form__email-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-form__email-link:hover {
  opacity: 0.7;
}

/* ─── Card ───────────────────────────────────────────── */
.contact-form__card {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 210, 153, 0.35);
  padding: 2rem;
}

@media screen and (min-width: 750px) {
  .contact-form__card {
    padding: 3rem;
  }
}

/* ─── Grid ───────────────────────────────────────────── */
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 600px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: block;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

/* ─── Labels ─────────────────────────────────────────── */
.contact-form__label {
  font-family: var(--font-body--family);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  margin-bottom: 0.5rem;
}

.contact-form__label span {
  margin-left: 0.25rem;
}

/* ─── Inputs ─────────────────────────────────────────── */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 210, 153, 0.35);
  padding: 0.75rem 1rem;
  color: var(--color-primary);
  font-family: var(--font-body--family);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
}

.contact-form__textarea {
  resize: none;
}

/* ─── Submit ─────────────────────────────────────────── */
.contact-form__submit {
  display: block;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body--family);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form__submit:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/* ─── Success State ──────────────────────────────────── */
.contact-form__success {
  text-align: center;
  padding: 3.5rem 0;
}

.contact-form__success-label {
  font-family: var(--font-body--family);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  margin-bottom: 0.75rem;
}

.contact-form__success-text {
  font-family: var(--font-heading--family);
  font-size: 1.875rem;
  color: var(--color-primary);
  margin: 0;
}
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:10) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:13) */
/* ─── Footer Base ───────────────────────────────────── */
.footer {
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(252, 210, 153, 0.35);
  background-color: var(--color-background);
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 4rem;
  }
}

.footer__container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .footer__container {
    padding: 1.75rem 2.5rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* ─── Logo ──────────────────────────────────────────── */
.footer__logo-link {
  display: flex;
  text-decoration: none;
}

.footer__logo {
  height: auto;
  width: 100px;
  max-height: 32px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    width: 120px;
    max-height: 36px;
  }
}

/* ─── Address ───────────────────────────────────────── */
.footer__address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(252, 210, 153, 0.72);
  margin: 0;
}

/* ─── Email ─────────────────────────────────────────── */
.footer__email {
  font-size: 0.875rem;
  color: rgba(252, 210, 153, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--color-primary);
}

/* ─── Social ────────────────────────────────────────── */
.footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer__social-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ─── Navigation ────────────────────────────────────── */
.footer__nav {
  margin-top: 0.5rem;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.25rem;
  overflow-x: auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__nav-list {
    gap: 1.5rem;
  }
}

.footer__nav-item {
  white-space: nowrap;
}

.footer__nav-link {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--color-primary);
}

/* ─── Copyright ─────────────────────────────────────── */
.footer__copyright {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  white-space: nowrap;
  margin-top: 0.5rem;
}

.footer__copyright a {
  color: inherit;
  text-decoration: none;
}

/* ─── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .footer__email,
  .footer__social-link,
  .footer__nav-link {
    transition: none !important;
  }
}
@media screen and (max-width: 749px) {
  .footer__copyright,
  .footer__nav-link {
    letter-spacing: 0.18em;
  }
  .footer__email {
    margin-top: -15px;
  }

}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:14) */
/* ─── Header Base ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.header[data-scrolled="true"],
.header[data-menu-open="true"] {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .header__container {
    padding: 1.25rem 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .header__container {
    padding: 1.5rem 2.5rem;
  }
}

/* ─── Logo ──────────────────────────────────────────── */
.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo {
  width: 90px;
  height: auto;
  object-fit: contain;
  filter: brightness(1);
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .header__logo {
    width: 140px;
  }
}

.header__logo-text {
  font-family: var(--font-heading--family);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-decoration: none;
}

/* ─── Actions ───────────────────────────────────────── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header__cta:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/* ─── Menu Toggle ───────────────────────────────────── */
.header__menu-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__menu-bar {
  display: block;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-bar:nth-child(1) { width: 24px; }
.header__menu-bar:nth-child(2) { width: 16px; }
.header__menu-bar:nth-child(3) { width: 24px; }

.header__menu-toggle:hover .header__menu-bar:nth-child(2) {
  width: 24px;
}

.header[data-menu-open="true"] .header__menu-bar:nth-child(1) {
  width: 24px;
  transform: rotate(45deg) translateY(6px);
}

.header[data-menu-open="true"] .header__menu-bar:nth-child(2) {
  opacity: 0;
}

.header[data-menu-open="true"] .header__menu-bar:nth-child(3) {
  width: 24px;
  transform: rotate(-45deg) translateY(-4px);
}

/* ─── Overlay ───────────────────────────────────────── */
.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: var(--color-background);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow-y: auto;
}

.header__overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.header__overlay-inner {
  min-height: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .header__overlay-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .header__overlay-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ─── Navigation ────────────────────────────────────── */
.header__nav {
  flex: 1;
  max-width: 42rem;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(252, 210, 153, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--item-index) * 30ms);
}

.header__overlay[aria-hidden="false"] .header__nav-item {
  opacity: 1;
  transform: translateY(0);
}

.header__nav-link {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .header__nav-link {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.header__nav-text {
  font-family: var(--font-heading--family);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (min-width: 768px) {
  .header__nav-text {
    font-size: 1.5rem;
  }
}

.header__nav-link:hover .header__nav-text {
  transform: translateX(0.5rem);
}

/* ─── Overlay CTA ───────────────────────────────────── */
.header__overlay-cta {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-background);
  transition: background-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s, background-color 0.3s ease;
}

.header__overlay-cta:hover {
  background-color: rgba(252, 210, 153, 0.9);
}

.header__overlay[aria-hidden="false"] .header__overlay-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Footer ────────────────────────────────────────── */
.header__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

@media screen and (min-width: 768px) {
  .header__footer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.header__overlay[aria-hidden="false"] .header__footer {
  opacity: 1;
}

.header__contact {
  line-height: 1.5;
}

.header__email {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header__email:hover {
  color: var(--color-primary);
}

.header__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.header__social a {
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}

.header__social a:hover {
  opacity: 0.7;
}

.header__social svg {
  width: 20px;
  height: 20px;
}

/* ─── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .header,
  .header__menu-bar,
  .header__nav-item,
  .header__overlay,
  .header__nav-text,
  .header__overlay-cta,
  .header__footer {
    transition: none !important;
    animation: none !important;
  }
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:15) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:legal-content (INDEX:18) */
/* ─── Legal Content Base ────────────────────────────── */
.legal-content {
    padding-top: {{ section.settings.padding_top | default: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | default: 36 }}px;
}

.legal-content__container {
  max-width: var(--normal-page-width, 120rem);
  margin-inline: auto;
}

/* ─── Hero Section ──────────────────────────────────── */
.legal-content__hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 1rem;
  text-align: center;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .legal-content__hero {
    padding-top: 8rem;
    padding-bottom: 1.5rem;
  }
}

.legal-content__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(252, 210, 153, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
  pointer-events: none;
}

.legal-content__title {
  font-family: var(--font-heading--family);
  font-size: var(--font-size--3xl, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin: 0;
  position: relative;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.legal__contact .legal-content__title {
    font-size: clamp(30px, 6vw, 72px);
}
.legal__contact .legal-content__hero {
    padding-top: 7.5rem;
    padding-bottom: 0.9rem;
}
.legal__contact .legal-content__section-text a {
    text-decoration: none;
    color: rgba(252, 210, 153, 0.72);
}

@media screen and (min-width: 640px) {
  .legal-content__title {
    font-size: var(--font-size--4xl, 3rem);
  }
}
@media screen and (max-width: 750px) {
  .legal__contact .legal-content__hero {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
  .legal__contact .legal-content__title {
    white-space: unset;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .legal-content__title {
    font-size: var(--font-size--5xl, 4rem);
  }
  .legal__contact .legal-content__wrapper {
    padding-bottom: 7rem;
  }
}

.legal-content__subtitle {
  font-size: var(--font-size--base, 1rem);
  color: rgba(252, 210, 153, 0.72);
  max-width: 42rem;
  margin: 1.25rem auto 0;
  line-height: 1.625;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ─── Content Wrapper ───────────────────────────────── */
.legal-content__wrapper {
  max-width: 53rem;
  margin-inline: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .legal-content__wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ─── Meta / Last Updated ──────────────────────────── */
.legal-content__meta {
  margin-bottom: 2.5rem;
}

.legal-content__updated {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
}

/* ─── Sections ─────────────────────────────────────── */
.legal-content__sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-content__section-title {
  font-family: var(--font-heading--family);
  font-size: var(--font-size--2xl, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .legal-content__section-title {
    font-size: var(--font-size--3xl, 1.87rem);
  }
}

/* ─── Rich Text Content ───────────────────────────── */
.legal-content__section-text,
.legal-content__page-content,
.legal-content__additional {
  color: rgba(252, 210, 153, 0.72);
  line-height: 1.625;
}

.legal-content__section-text p,
.legal-content__page-content p,
.legal-content__additional p {
  margin: 0 0 1rem;
  font-size: var(--font-size--base, 1rem);
}

.legal-content__section-text p:last-child,
.legal-content__page-content p:last-child,
.legal-content__additional p:last-child {
  margin-bottom: 0;
}

/* Links in content */
.legal-content__section-text a,
.legal-content__page-content a,
.legal-content__additional a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.legal-content__section-text a:hover,
.legal-content__page-content a:hover,
.legal-content__additional a:hover {
  opacity: 0.7;
}

/* Lists */
.legal-content__section-text ul,
.legal-content__page-content ul,
.legal-content__additional ul,
.legal-content__section-text ol,
.legal-content__page-content ol,
.legal-content__additional ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-content__section-text li,
.legal-content__page-content li,
.legal-content__additional li {
  margin-bottom: 0.5rem;
}

/* ─── Placeholder ───────────────────────────────────── */
.legal-content__placeholder {
  text-align: center;
  padding: 4rem 0;
  color: rgba(252, 210, 153, 0.5);
}

/* ─── Additional Content ────────────────────────────── */
.legal-content__additional {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(252, 210, 153, 0.35);
}

/* ─── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .legal-content__title,
  .legal-content__subtitle {
    animation: none !important;
  }
}
/* END_SECTION:legal-content */

/* START_SECTION:mariana-scheduler (INDEX:19) */
/* ─── Mariana Scheduler Base ────────────────────────── */
.mariana-scheduler {
  padding-top: {{ section.settings.padding_top | default: 36 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 36 }}px;
}
.mariana-scheduler__container {
  max-width: var(--normal-page-width, 120rem);
  margin-inline: auto;
}

.mariana-scheduler__header {
  text-align: center;
  margin-bottom: 2rem;
}

.mariana-scheduler__heading {
  font-family: var(--font-heading--family);
  font-size: var(--font-size--3xl, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.mariana-scheduler__subheading {
  font-size: var(--font-size--base, 1rem);
  color: rgba(252, 210, 153, 0.72);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* ─── Mariana Wrapper ───────────────────────────────── */
.mariana-scheduler__wrapper {
  position: relative;
  min-height: 800px;
  border-radius: var(--style-border-radius, 0.5rem);
  overflow: hidden;
  background-color: var(--color-background);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 210, 153, 0.35);
}

.mariana-scheduler__wrapper--light {
  background-color: #ffffff;
  color: #171717;
  border-color: rgba(0, 0, 0, 0.1);
}

/* ─── Loading State ─────────────────────────────────── */
.mariana-scheduler__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.mariana-scheduler__loading-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.5);
}

.mariana-scheduler__wrapper--light .mariana-scheduler__loading-text {
  color: rgba(0, 0, 0, 0.5);
}

/* Hide loading when content loaded */
.mariana-scheduler__wrapper[data-loaded="true"] .mariana-scheduler__loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ─── Mariana Mount Point ───────────────────────────── */
.mariana-scheduler__mount {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

@media screen and (min-width: 640px) {
  .mariana-scheduler__mount {
    padding: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .mariana-scheduler__mount {
    padding: 2rem;
  }
}

/* ─── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mariana-scheduler__loading {
    transition: none !important;
  }
}
/* END_SECTION:mariana-scheduler */

/* START_SECTION:private-events-form (INDEX:23) */
/* ─── Private Events Form ────────────────────────────── */
.private-events-form {
  padding-bottom: 6rem;
  background-color: var(--color-background);
}

.private-events-form__container {
  max-width: 768px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .private-events-form__container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ─── Intro ──────────────────────────────────────────── */
.private-events-form__intro {
  margin-bottom: 1.75rem;
}

.private-events-form__intro-text {
  font-family: var(--font-body--family);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(252, 210, 153, 0.72);
  margin: 0;
}

@media screen and (min-width: 750px) {
  .private-events-form__intro-text {
    font-size: 1.125rem;
  }
}

/* ─── Card ───────────────────────────────────────────── */
.private-events-form__card {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 210, 153, 0.35);
  padding: 2rem;
}

@media screen and (min-width: 750px) {
  .private-events-form__card {
    padding: 3rem;
  }
}

/* ─── Heading ────────────────────────────────────────── */
.private-events-form__heading {
  font-family: var(--font-heading--family);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 750px) {
  .private-events-form__heading {
    font-size: 2.5rem;
  }
}

/* ─── Grid ───────────────────────────────────────────── */
.private-events-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 600px) {
  .private-events-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.private-events-form__field {
  display: block;
}

.private-events-form__field--full {
  grid-column: 1 / -1;
}

/* ─── Labels ─────────────────────────────────────────── */
.private-events-form__label {
  font-family: var(--font-body--family);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  margin-bottom: 0.5rem;
  display: block;
}

.private-events-form__label span {
  margin-left: 0.25rem;
}

/* ─── Inputs ─────────────────────────────────────────── */
.private-events-form__input,
.private-events-form__textarea {
  width: 100%;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 210, 153, 0.35);
  padding: 0.75rem 1rem;
  color: var(--color-primary);
  font-family: var(--font-body--family);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.private-events-form__input:focus,
.private-events-form__textarea:focus {
  border-color: var(--color-primary);
}

.private-events-form__textarea {
  resize: none;
}

/* ─── Submit ─────────────────────────────────────────── */
.private-events-form__submit {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  font-family: var(--font-body--family);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.private-events-form__submit:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/* ─── Success ────────────────────────────────────────── */
.private-events-form__success {
  text-align: center;
  padding: 3.5rem 0;
}

.private-events-form__success-label {
  font-family: var(--font-body--family);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 210, 153, 0.72);
  margin-bottom: 0.75rem;
}

.private-events-form__success-text {
  font-family: var(--font-heading--family);
  font-size: 1.875rem;
  color: var(--color-primary);
  margin: 0;
}
/* END_SECTION:private-events-form */

/* START_SECTION:search (INDEX:25) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:27) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:28) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:31) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */