:root {
  --bg: #191715;
  --bg-soft: #211e1b;
  --card: #24211e;
  --cream: #f4efe4;
  --cream-deep: #e9dfce;
  --ink: #2b2621;
  --text: #f4eee4;
  --muted: #b8aea3;
  --rose: #d3aa8f;
  --rose-dark: #8f6651;
  --line: rgba(211, 170, 143, .22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Pinyon Script", cursive;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container.narrow { width: min(760px, calc(100% - 40px)); }
.center { text-align: center; }
.section { padding: 104px 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: 1.75rem; }
em { color: var(--rose); }
.eyebrow { margin: 0; color: var(--rose-dark); font-size: .69rem; font-weight: 600; letter-spacing: .27em; text-transform: uppercase; }
.lead { color: var(--muted); font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.28rem); line-height: 1.65; }
.subtle { color: var(--muted); }
.prose { margin-top: 34px; color: rgba(43, 38, 33, .82); }
.prose p { margin: 0 0 18px; }
.center-prose { max-width: 640px; margin: 34px auto 0; color: rgba(244, 238, 228, .76); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 2px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--rose); color: #211b17; }
.button-primary:hover { background: #e0bba2; }
.button-outline { border-color: rgba(211, 170, 143, .55); background: transparent; color: var(--text); }
.button-outline:hover { background: rgba(211, 170, 143, .08); }
.button-dark { background: var(--bg); color: var(--text); }
.button-dark:hover { background: #302b27; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(211,170,143,.13); background: rgba(25,23,21,.9); backdrop-filter: blur(16px); }
.header-inner { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand-link { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--rose); flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--script); color: var(--rose); font-size: 1.65rem; font-weight: 400; }
.brand-copy small { margin-top: 5px; color: rgba(244,238,228,.68); font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; }
.main-menu { display: flex; align-items: center; gap: 25px; }
.main-menu a, .footer-nav a { color: rgba(244,238,228,.66); font-size: .75rem; transition: color .2s; }
.main-menu a:hover, .footer-nav a:hover { color: var(--rose); }
.menu-toggle { display: none; width: 40px; height: 40px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 7px 0; background: var(--rose); }

.hero { position: relative; min-height: min(760px, calc(100vh - 75px)); overflow: hidden; border-bottom: 1px solid var(--line); display: grid; place-items: center; }
#constellation-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-a {
  left: -10%;
  top: -30%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 175, 153, 0.085) 0%, transparent 70%);
  animation: float-slow 25s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: blur(100px);
}
.hero-glow-b {
  right: -10%;
  bottom: -30%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(83, 45, 89, 0.07) 0%, transparent 70%);
  animation: float-slower 30s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: blur(120px);
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.15);
  }
}

@keyframes float-slower {
  0%, 100% {
    transform: translate(0px, 0px) scale(1.1);
  }
  50% {
    transform: translate(-50px, 40px) scale(0.9);
  }
}
.hero-content { position: relative; z-index: 2; padding: 90px 0 110px; text-align: center; }
.signature-wrap { display: flex; flex-direction: column; align-items: center; }
.signature { margin-top: -8px; color: var(--rose); font-family: var(--script); font-size: clamp(5.4rem, 15vw, 9rem); line-height: .9; }
.signature-subtitle { margin-top: 14px; color: rgba(244,238,228,.7); font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; }
.hero-intro { max-width: 630px; margin: 40px auto 38px; color: rgba(244,238,228,.72); font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-style: italic; }

.cream-section { background: #fff; color: var(--ink); }
.cream-section .button-dark { background: var(--rose); color: #211b17; }
.cream-section .button-dark:hover { background: #e0bba2; }
.cream-section .button-outline { border-color: rgba(143,102,81,.32); color: var(--ink); }
.cream-section .button-outline:hover { background: rgba(143,102,81,.06); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
.photo-grid .photo-wide { grid-column: 1 / -1; aspect-ratio: 4 / 2.7; }
.about-grid h2 { margin-top: 17px; }
.social-row { display: flex; gap: 10px; margin-top: 30px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border: 1px solid rgba(143,102,81,.35); border-radius: 999px; color: var(--rose-dark); font-size: .73rem; }
.pill:hover { background: rgba(143,102,81,.08); }
.practice-section { border-bottom: 1px solid var(--line); }
.practice-section h2, .section-divider h2, .contact-section h2, .faq-section h2, .cta-exercise h2 { margin-top: 18px; }
.practice-section .lead { margin: 30px auto 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; text-align: left; }
.step-card { min-height: 240px; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.015); }
.step-card span, .script-dash { color: var(--rose); font-family: var(--script); font-size: 2.35rem; }
.step-card h3 { margin-top: 10px; }
.step-card p { color: var(--muted); font-size: .86rem; }
.quote { margin: 45px auto 30px; color: rgba(244,238,228,.65); font-family: var(--serif); font-size: 1.18rem; font-style: italic; }
.section-divider { border-bottom: 1px solid var(--line); }
.section-divider h2 { font-size: clamp(4rem, 10vw, 7rem); }
.modalities-section { padding-bottom: 100px; }
.cards-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.modality-card { min-height: 520px; display: flex; flex-direction: column; padding: 44px 38px; background: var(--bg); }
.modality-card h3 { margin-top: 10px; font-size: 2.1rem; }
.modality-card p { flex: 1; color: var(--muted); font-size: .88rem; }
.modality-card small { margin: 20px 0; color: var(--rose); font-style: italic; }
.modality-card .button { align-self: flex-start; }
.section-heading { margin-bottom: 50px; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.split-heading h2 { margin-top: 13px; }
.split-heading > p { max-width: 350px; color: rgba(43,38,33,.7); font-size: .88rem; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(143,102,81,.17); background: rgba(255,255,255,.54); }
.product-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-image span { position: absolute; top: 15px; left: 15px; padding: 6px 11px; background: var(--bg); color: var(--text); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; }
.product-content { flex: 1; display: flex; flex-direction: column; padding: 27px; }
.product-content h3 { font-size: 1.75rem; }
.product-content p { flex: 1; color: rgba(43,38,33,.7); font-size: .86rem; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.product-bottom strong { color: #654838; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.events-section { padding-top: 30px; border-top: 1px solid rgba(143,102,81,.12); }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.event-card { border: 1px solid rgba(143,102,81,.18); background: #fff; overflow: hidden; }
.event-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.event-card img { width: 100%; aspect-ratio: 1.15; object-fit: cover; transition: transform .22s ease; }
.event-image-button:hover img,
.event-image-button:focus-visible img { transform: scale(1.025); }
.event-card > div { padding: 21px; }
.event-card h3 { font-size: 1.28rem; }
.event-card p { min-height: 48px; color: rgba(43,38,33,.65); font-size: .75rem; }
.event-card a,
.event-info-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose-dark);
  font-size: .72rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.events-empty { padding: 50px 24px; border: 1px solid rgba(143,102,81,.18); background: rgba(255,255,255,.5); text-align: center; }
.events-empty h3 { margin: 0; font-size: 1.7rem; }
.events-empty p { margin: 8px 0 0; color: rgba(43,38,33,.65); font-size: .82rem; }
.brand-strip { padding: 90px 20px; border-block: 1px solid var(--line); }
.brand-strip .signature { font-size: 5.5rem; }
.contact-section .lead { margin: 24px auto 0; }
.embed-wrap { min-height: 200px; margin-top: 45px; }
.faq-section { border-top: 1px solid var(--line); }
.faq-list { margin-top: 48px; border-block: 1px solid var(--line); }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.35rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--rose); font-size: 1.8rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 660px; color: var(--muted); font-size: .85rem; }
.site-footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.copyright { color: rgba(244,238,228,.4); font-size: .68rem; }

.exercise-intro { position: relative; border-bottom: 1px solid var(--line); }
.exercise-intro h1 { margin-top: 18px; font-size: clamp(3.1rem, 7vw, 5.4rem); }
.exercise-subtitle { margin: 12px 0 0; color: rgba(244,238,228,.74); font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.3rem); font-style: italic; }
.instruction-section { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.instruction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin-top: 50px; }
.instruction-grid h3 { color: var(--rose); font-size: 1.35rem; }
.instruction-grid p { color: var(--muted); font-size: .86rem; }
.questions-section { border-bottom: 1px solid var(--line); }
.questions-section h2 { margin-top: 13px; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.question-list { display: grid; gap: 20px; margin: 50px 0 0; padding: 0; list-style: none; }
.question-list li { display: flex; align-items: flex-start; gap: 18px; }
.question-list li > span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(211,170,143,.45); border-radius: 50%; color: var(--rose); font-size: .78rem; }
.question-list p { margin: 3px 0 0; color: rgba(244,238,228,.83); }
.special-box { display: inline-flex; max-width: 620px; flex-direction: column; align-items: center; gap: 16px; margin-top: 38px; padding: 28px; border: 1px solid rgba(211,170,143,.35); background: rgba(211,170,143,.045); }
.special-box p, .special-box small { margin: 0; }
.special-box small { color: var(--muted); }

.checkout-page { background: var(--cream); color: var(--ink); min-height: calc(100vh - 75px); padding: 78px 0 100px; }
.checkout-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.checkout-summary, .checkout-panel { border: 1px solid rgba(143,102,81,.18); background: rgba(255,255,255,.66); padding: 38px; }
.checkout-summary { position: sticky; top: 106px; }
.checkout-summary h1 { margin-top: 18px; font-size: clamp(2.7rem, 5vw, 4rem); }
.checkout-description { margin-top: 24px; color: rgba(43,38,33,.73); font-size: .86rem; line-height: 1.75; }
.summary-price { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(143,102,81,.18); }
.summary-price span { display: block; color: rgba(43,38,33,.55); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; }
.summary-price strong { display: block; margin-top: 5px; color: #604536; font-family: var(--serif); font-size: 2.6rem; font-weight: 500; }
.security-note { margin-top: 30px; padding: 18px; background: var(--bg); color: rgba(244,238,228,.72); font-size: .78rem; }
.checkout-panel h2 { margin-top: 14px; font-size: clamp(2.3rem, 4vw, 3.3rem); }
.panel-intro { color: rgba(43,38,33,.68); font-size: .84rem; }
.provider-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.provider-option { min-height: 100px; padding: 17px; border: 1px solid rgba(143,102,81,.22); background: rgba(255,255,255,.4); color: var(--ink); text-align: left; cursor: pointer; }
.provider-option strong, .provider-option span { display: block; }
.provider-option strong { font-family: var(--serif); font-size: 1.17rem; }
.provider-option span { margin-top: 6px; color: rgba(43,38,33,.6); font-size: .7rem; }
.provider-option.active { border-color: var(--rose-dark); box-shadow: inset 0 0 0 1px var(--rose-dark); background: rgba(211,170,143,.12); }
#checkout-form { display: grid; gap: 20px; }
#asaas-fields { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.address-row { grid-template-columns: 1fr 110px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: #51463f; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.form-field label span, .form-field small { color: rgba(43,38,33,.5); font-size: .68rem; font-weight: 400; text-transform: none; }
.form-field input { width: 100%; min-height: 49px; border: 1px solid rgba(143,102,81,.24); border-radius: 1px; outline: 0; background: rgba(255,255,255,.76); color: var(--ink); padding: 11px 13px; transition: border .2s, box-shadow .2s; }
.form-field input:focus { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(143,102,81,.1); }
.phone-input-group { display: grid; grid-template-columns: minmax(172px, .72fr) minmax(0, 1fr); }
.phone-country-select { position: relative; min-width: 0; }
.phone-country-select::after { content: ''; position: absolute; right: 14px; top: 50%; width: 7px; height: 7px; border-right: 1.5px solid rgba(81,70,63,.72); border-bottom: 1.5px solid rgba(81,70,63,.72); transform: translateY(-68%) rotate(45deg); pointer-events: none; }
.phone-country-select select { width: 100%; min-height: 49px; appearance: none; border: 1px solid rgba(143,102,81,.24); border-right: 0; border-radius: 7px 0 0 7px; outline: 0; background: rgba(248,242,234,.86); color: var(--ink); padding: 11px 36px 11px 13px; font: inherit; font-size: .82rem; cursor: pointer; transition: border .2s, box-shadow .2s, background .2s; }
.phone-input-group > input { min-width: 0; border-radius: 0 7px 7px 0; }
.phone-input-group:focus-within { border-radius: 7px; box-shadow: 0 0 0 3px rgba(143,102,81,.1); }
.phone-input-group:focus-within .phone-country-select select,
.phone-input-group:focus-within > input { border-color: var(--rose-dark); box-shadow: none; }
.phone-country-select select:hover { background: rgba(255,255,255,.96); }
.phone-form-field small { min-height: 1em; }
.input-with-status { position: relative; }
.input-with-status span { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--rose-dark); font-size: .67rem; }
.field-error { color: #9c322b !important; }
.checkout-error { padding: 13px 15px; border: 1px solid rgba(156,50,43,.35); background: rgba(156,50,43,.07); color: #8a2d27; font-size: .78rem; }
.checkout-account-notice { margin: 22px 0; padding: 17px 18px; border: 1px solid rgba(143,102,81,.28); background: rgba(211,170,143,.1); }
.checkout-account-notice strong { display: block; color: var(--ink); font-size: .86rem; }
.checkout-account-notice p { margin: 7px 0 10px; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.checkout-account-notice a { color: var(--rose); font-size: .78rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.checkout-account-notice-blocked { border-color: rgba(156,50,43,.28); background: rgba(156,50,43,.06); }
.checkout-submit { width: 100%; margin-top: 4px; }
.checkout-submit:disabled { opacity: .72; cursor: wait; transform: none; }
.checkout-submit.checkout-submit-owned:disabled { opacity: .58; cursor: not-allowed; }
.spinner { width: 16px; height: 16px; margin-left: 10px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.privacy-note { margin: -3px 0 0; color: rgba(43,38,33,.5); font-size: .66rem; text-align: center; }
.checkout-consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 11px; align-items: start; padding: 15px 16px; border: 1px solid rgba(143,102,81,.22); background: rgba(255,255,255,.5); }
.checkout-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--rose-dark); }
.checkout-consent label { color: rgba(43,38,33,.72); font-size: .76rem; line-height: 1.65; cursor: pointer; }
.checkout-consent a { color: var(--rose-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.checkout-consent:focus-within { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(143,102,81,.08); }

.legal-page { min-height: calc(100vh - 75px); background: var(--cream); color: var(--ink); }
.legal-hero { padding: 88px 0 52px; border-bottom: 1px solid rgba(143,102,81,.16); background: linear-gradient(180deg, rgba(211,170,143,.11), rgba(255,255,255,0)); }
.legal-hero h1 { max-width: 850px; margin-top: 14px; font-size: clamp(3rem, 7vw, 5.6rem); }
.legal-document-section { padding: 58px 0 92px; }
.legal-document { width: min(860px, 100%); margin: 0 auto; padding: clamp(28px, 6vw, 64px); border: 1px solid rgba(143,102,81,.16); background: rgba(255,255,255,.72); box-shadow: 0 24px 70px rgba(72,48,35,.06); }
.legal-document .blog-inline-image { max-width: 100%; }

.return-page { min-height: calc(100vh - 75px); display: grid; place-items: center; padding: 80px 20px; background: radial-gradient(circle at 50% 25%, rgba(211,170,143,.08), transparent 48%); }
.return-card { width: min(660px, 100%); padding: 56px 45px; border: 1px solid var(--line); background: var(--bg-soft); text-align: center; }
.status-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid rgba(211,170,143,.5); border-radius: 50%; color: var(--rose); font-family: var(--serif); font-size: 2.5rem; }
.return-card h1 { margin-top: 14px; font-size: clamp(2.5rem, 6vw, 4rem); }
.return-card > p:not(.eyebrow):not(.order-reference) { max-width: 500px; margin: 20px auto; color: var(--muted); }
.order-reference { margin: 25px 0; color: rgba(244,238,228,.48); font-size: .67rem; word-break: break-all; }
.order-reference code { font-family: monospace; }
.return-notice { max-width: 530px; margin: 28px auto 0; padding: 18px 20px; border: 1px solid rgba(211,170,143,.4); background: rgba(211,170,143,.08); text-align: left; }
.return-notice[hidden] { display: none; }
.return-notice strong { display: block; color: var(--rose); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.return-notice p { margin: 8px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.return-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

@media (max-width: 980px) {
  .main-menu { gap: 16px; }
  .about-grid, .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .cards-three { grid-template-columns: 1fr; }
  .modality-card { min-height: auto; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-menu { position: absolute; left: 0; right: 0; top: 74px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: rgba(25,23,21,.98); }
  .main-menu.open { display: flex; }
  .main-menu a { padding: 12px 0; border-bottom: 1px solid rgba(211,170,143,.1); }
  .hero { min-height: 650px; }
  .photo-grid { gap: 10px; }
  .steps-grid, .products-grid, .instruction-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { display: grid; grid-template-columns: 42% 1fr; }
  .event-card img { height: 100%; aspect-ratio: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .checkout-page { padding-top: 45px; }
  .checkout-summary, .checkout-panel { padding: 27px 22px; }
  .provider-options, .form-row, .address-row { grid-template-columns: 1fr; }
  .return-card { padding: 42px 23px; }
}
@media (max-width: 480px) {
  .container, .container.narrow { width: min(100% - 28px, 1180px); }
  .phone-input-group { grid-template-columns: minmax(132px, .82fr) minmax(0, 1.18fr); }
  .phone-country-select select { padding-right: 30px; font-size: .74rem; }
  .phone-country-select::after { right: 11px; }
  .hero-content { padding-top: 70px; }
  .signature-subtitle { max-width: 260px; line-height: 1.6; }
  .product-bottom { align-items: flex-start; flex-direction: column; }
  .event-card { display: block; }
  .social-row, .return-actions { flex-direction: column; align-items: stretch; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Blog */
.sr-only-site {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(211, 170, 143, .11), transparent 34%),
    radial-gradient(circle at 85% 70%, rgba(110, 75, 120, .08), transparent 30%),
    var(--bg);
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(211, 170, 143, .08);
  pointer-events: none;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  margin-top: 14px;
  font-size: clamp(4.2rem, 10vw, 7.2rem);
}

.blog-hero .lead {
  max-width: 650px;
  margin: 24px auto 0;
}

.blog-search {
  display: flex;
  width: min(660px, 100%);
  margin: 38px auto 0;
  padding: 6px;
  border: 1px solid rgba(211, 170, 143, .3);
  background: rgba(255, 255, 255, .035);
}

.blog-search label {
  flex: 1;
}

.blog-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 15px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.blog-search input::placeholder {
  color: rgba(244, 238, 228, .45);
}

.blog-search .button {
  min-width: 110px;
  border-radius: 0;
}

.blog-list-section {
  min-height: 560px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.blog-categories a {
  padding: 8px 14px;
  border: 1px solid rgba(143, 102, 81, .22);
  border-radius: 999px;
  color: rgba(43, 38, 33, .72);
  font-size: .72rem;
  transition: .2s;
}

.blog-categories a:hover,
.blog-categories a.active {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
  color: #fff;
}

.active-filter-note {
  margin: -18px 0 32px;
  padding: 12px 15px;
  border-left: 3px solid var(--rose);
  background: rgba(143, 102, 81, .06);
  color: rgba(43, 38, 33, .76);
  font-size: .78rem;
}

.active-filter-note a {
  margin-left: 6px;
  color: var(--rose-dark);
  text-decoration: underline;
}

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

.blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(143, 102, 81, .17);
  background: #fff;
  color: var(--ink);
  transition: transform .28s ease, box-shadow .28s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(56, 41, 31, .1);
}

.blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-deep);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.045);
}

.blog-card-image > span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  background: var(--bg);
  color: var(--rose);
  font-size: .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: rgba(43, 38, 33, .5);
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-card-meta > * + *::before {
  content: "·";
  margin-right: 9px;
}

.blog-card-meta a {
  color: var(--rose-dark);
  font-weight: 600;
}

.blog-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.blog-card h2 a:hover {
  color: var(--rose-dark);
}

.blog-card-content > p {
  flex: 1;
  margin: 14px 0 20px;
  color: rgba(43, 38, 33, .67);
  font-size: .8rem;
  line-height: 1.7;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(143, 102, 81, .13);
  font-size: .65rem;
}

.blog-card-footer > span {
  color: rgba(43, 38, 33, .48);
}

.blog-card-footer > a {
  color: var(--rose-dark);
  font-weight: 600;
}

.home-blog-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(211, 170, 143, .075), transparent 30%),
    var(--bg);
}

.home-blog-section .split-heading > p {
  color: var(--muted);
}

.home-blog-section .blog-card {
  border-color: var(--line);
  background: var(--card);
  color: var(--text);
}

.home-blog-section .blog-card-meta,
.home-blog-section .blog-card-content > p,
.home-blog-section .blog-card-footer > span {
  color: var(--muted);
}

.home-blog-section .blog-card-meta a,
.home-blog-section .blog-card-footer > a,
.home-blog-section .blog-card h2 a:hover {
  color: var(--rose);
}

.home-blog-section .blog-card-footer {
  border-color: var(--line);
}

.blog-empty {
  padding: 90px 24px;
  border: 1px solid rgba(143, 102, 81, .18);
  text-align: center;
}

.blog-empty > span {
  color: var(--rose);
  font-size: 2rem;
}

.blog-empty h2 {
  margin-top: 9px;
  font-size: 2.2rem;
}

.blog-empty p {
  margin: 8px 0 25px;
  color: rgba(43, 38, 33, .65);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 48px;
}

.pagination a {
  display: inline-flex;
  min-width: 39px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(143, 102, 81, .25);
  color: rgba(43, 38, 33, .7);
  font-size: .7rem;
}

.pagination a:hover,
.pagination a.active {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
  color: #fff;
}

/* Article */
.preview-banner {
  position: sticky;
  top: 75px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 20px;
  background: #fff2d9;
  color: #6f4808;
  font-size: .72rem;
}

.preview-banner a {
  font-weight: 600;
  text-decoration: underline;
}

.article-page {
  background: #fff;
  color: var(--ink);
}

.article-header {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(211, 170, 143, .08), transparent 40%),
    var(--bg);
  color: var(--text);
}

.article-category {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rose);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.article-header h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.article-excerpt {
  max-width: 760px;
  margin: 25px auto 0;
  color: rgba(244, 238, 228, .72);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin-top: 28px;
  color: rgba(244, 238, 228, .48);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.article-meta > * + *::before {
  content: "·";
  margin-right: 18px;
}

.article-cover-wrap {
  margin-top: -1px;
  padding-top: 48px;
}

.article-cover {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  justify-content: center;
  gap: 55px;
  padding-top: 70px;
  padding-bottom: 110px;
}

.article-share {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.article-share > span {
  margin-bottom: 4px;
  color: rgba(43, 38, 33, .4);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-share a {
  color: var(--rose-dark);
  font-size: .72rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-content {
  min-width: 0;
  color: rgba(43, 38, 33, .86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.9;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 1.55em;
}

.article-content h2,
.article-content h3 {
  margin: 1.7em 0 .65em;
  color: var(--ink);
  font-family: var(--serif);
}

.article-content h2 {
  font-size: 2.45rem;
}

.article-content h3 {
  font-size: 1.9rem;
}

.article-content blockquote {
  margin: 2.2em 0;
  padding: 25px 30px;
  border-left: 3px solid var(--rose);
  background: var(--cream);
  color: #60483a;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-style: italic;
  line-height: 1.55;
}

.article-content blockquote p {
  margin: 0;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.7em;
  padding-left: 1.4em;
}

.article-content li {
  margin-bottom: .55em;
}

.article-content a {
  color: var(--rose-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content li p {
  margin: .2em 0;
}

.article-content hr {
  margin: 2.4em 0;
  border: 0;
  border-top: 1px solid rgba(143, 102, 81, .25);
}

.article-content code {
  padding: .1em .3em;
  border-radius: 4px;
  background: var(--cream);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .84em;
}

.article-content pre {
  overflow: auto;
  margin: 2em 0;
  padding: 22px 24px;
  border-radius: 8px;
  background: #2b2521;
  color: #fff9f5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88rem;
  line-height: 1.65;
}

.article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-content .blog-inline-image {
  display: grid;
  margin: 2.4em 0;
  place-items: center;
}

.article-content .blog-inline-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: var(--cream);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(143, 102, 81, .18);
  font-family: var(--sans);
  font-size: .7rem;
}

.article-tags > span {
  align-self: center;
  color: rgba(43, 38, 33, .5);
}

.article-tags a {
  padding: 6px 10px;
  border: 1px solid rgba(143, 102, 81, .22);
  border-radius: 999px;
  text-decoration: none;
}

.related-posts {
  border-top: 1px solid rgba(143, 102, 81, .14);
}

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

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

  .article-layout {
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 30px;
  }

  .article-share {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .article-share > span {
    margin: 0 6px 0 0;
  }

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

@media (max-width: 680px) {
  .blog-hero {
    padding: 80px 0 65px;
  }

  .blog-search {
    display: grid;
  }

  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-content {
    padding: 21px;
  }

  .article-header {
    padding: 72px 0 58px;
  }

  .article-meta {
    display: grid;
  }

  .article-meta > * + *::before {
    content: none;
  }

  .article-cover-wrap {
    width: 100%;
    padding-top: 0;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
  }

  .article-layout {
    width: min(100% - 32px, 760px);
    padding-top: 48px;
    padding-bottom: 75px;
  }

  .article-content h2 {
    font-size: 2rem;
  }

  .article-content h3 {
    font-size: 1.55rem;
  }

  .article-content blockquote {
    padding: 20px;
  }

  .preview-banner {
    display: grid;
    text-align: center;
  }
}

.article-layout-preview { grid-template-columns: minmax(0, 760px); }


.content-empty-state {
  padding: 34px;
  border: 1px solid rgba(122, 86, 68, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted, #756b65);
  text-align: center;
}

.content-empty-state p {
  margin: 0;
}

.provider-options.provider-options-single {
  grid-template-columns: 1fr;
}

.provider-options.provider-options-single .provider-option {
  max-width: 100%;
}


/* Event commerce and ticket validation */
.button-disabled {
  cursor: not-allowed;
  opacity: .58;
  pointer-events: none;
}
.event-sold-out {
  color: var(--rose-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.modal-open { overflow: hidden; }
.event-modal[hidden] { display: none; }
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}
.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 27, 23, .62);
}
.event-modal-card {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(86vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .4);
  background: #fffdf9;
  box-shadow: 0 30px 80px rgba(32, 27, 23, .28);
  outline: none;
}
.event-modal-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.event-modal-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
}
.event-modal-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: .95;
}
.event-modal-summary {
  color: rgba(43,38,33,.72);
  font-size: .92rem;
  line-height: 1.7;
}
.event-modal-details {
  display: grid;
  gap: 12px;
  margin: 0;
}
.event-modal-details div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143,102,81,.16);
}
.event-modal-details dt {
  color: var(--rose-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-modal-details dd {
  margin: 0;
  color: rgba(43,38,33,.76);
  font-size: .88rem;
}
.event-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(143,102,81,.22);
  border-radius: 999px;
  background: rgba(255,253,249,.92);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}
.checkout-event-summary p {
  margin: 2px 0 8px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}
.checkout-event-summary dl {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}
.checkout-event-summary dl div {
  display: grid;
  gap: 2px;
}
.checkout-event-summary dt {
  color: var(--rose-dark);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-event-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}
@media (max-width: 760px) {
  .event-modal-card { grid-template-columns: 1fr; }
  .event-modal-card > img { min-height: 260px; }
  .event-modal-details div { grid-template-columns: 1fr; gap: 4px; }
}

.checkout-event-summary {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(211, 170, 143, .28);
  background: rgba(211, 170, 143, .06);
}
.checkout-event-summary strong { color: var(--rose); }
.checkout-event-summary span { color: var(--muted); font-size: .86rem; }
.ticket-page { min-height: 70vh; background: var(--cream); color: var(--ink); }
.ticket-validation-card {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(43, 38, 33, .14);
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(43, 38, 33, .12);
}
.ticket-validation-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.ticket-status {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-left: 4px solid currentColor;
}
.ticket-status-valid { color: #276b4c; background: #eaf5ee; }
.ticket-status-used { color: #8a4b3f; background: #f8ece8; }
.ticket-status span { color: var(--ink); font-size: .9rem; }
.ticket-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.ticket-details div { padding: 14px 0; border-bottom: 1px solid rgba(43, 38, 33, .12); }
.ticket-details dt { color: var(--rose-dark); font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ticket-details dd { margin: 5px 0 0; font-size: 1.05rem; font-weight: 600; }
.ticket-image-preview { width: 100%; border: 1px solid rgba(43, 38, 33, .12); }
@media (max-width: 620px) {
  .ticket-details { grid-template-columns: 1fr; }
}


/* Events experience */
.events-catalog-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(125, 82, 118, .09), transparent 27%),
    radial-gradient(circle at 8% 58%, rgba(211, 170, 143, .07), transparent 24%),
    #11100f;
}

.events-cinema-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 75px));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(211, 170, 143, .14);
}

.events-cinema-hero-media,
.events-cinema-hero-media::after,
.events-cinema-hero-shade {
  position: absolute;
  inset: 0;
}

.events-cinema-hero-media {
  z-index: -3;
  background: #171412;
}

.events-cinema-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.015);
  animation: events-hero-breathe 16s ease-in-out infinite alternate;
}

.events-cinema-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 16, 15, .98) 0%, rgba(17, 16, 15, .8) 34%, rgba(17, 16, 15, .18) 72%, rgba(17, 16, 15, .32) 100%),
    linear-gradient(0deg, #11100f 0%, rgba(17, 16, 15, .15) 50%, rgba(17, 16, 15, .34) 100%);
}

.events-cinema-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 45%, transparent 0%, rgba(17, 16, 15, .1) 38%, rgba(17, 16, 15, .7) 100%),
    linear-gradient(180deg, rgba(17, 16, 15, .14), transparent 34%);
}

.events-cinema-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: clamp(95px, 12vh, 145px);
}

.events-cinema-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: rgba(244, 238, 228, .7);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.events-cinema-kicker span {
  width: 34px;
  height: 1px;
  background: var(--rose);
  box-shadow: 0 0 16px rgba(211, 170, 143, .75);
}

.events-cinema-hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8.6vw, 8.4rem);
  line-height: .82;
  text-wrap: balance;
  text-shadow: 0 8px 38px rgba(0, 0, 0, .28);
}

.events-cinema-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 28px;
  color: rgba(244, 238, 228, .78);
  font-size: .72rem;
  letter-spacing: .03em;
}

.events-cinema-meta span {
  position: relative;
}

.events-cinema-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.events-cinema-summary {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(244, 238, 228, .72);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.events-cinema-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.events-button-glass,
.events-button-muted {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  backdrop-filter: blur(14px);
}

.events-button-glass:hover {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .16);
}

.events-button-muted {
  cursor: default;
  opacity: .72;
}

.events-cinema-scroll {
  position: absolute;
  right: 34px;
  bottom: 35px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 238, 228, .6);
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.events-cinema-scroll i {
  position: relative;
  width: 1px;
  height: 50px;
  overflow: hidden;
  background: rgba(244, 238, 228, .18);
}

.events-cinema-scroll i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--rose);
  animation: events-scroll-line 2.2s ease-in-out infinite;
}

.events-empty-hero {
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, rgba(211, 170, 143, .12), transparent 30%),
    #11100f;
}

.events-empty-hero h1 {
  margin-top: 20px;
}

.events-empty-hero .button {
  margin-top: 24px;
}

.events-stream-section {
  position: relative;
  padding: 105px 0 130px;
}

.events-stream-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(211, 170, 143, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 170, 143, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}

.events-stream-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 90px;
}

.events-stream-intro h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .94;
}

.events-stream-intro > p {
  margin: 0 0 8px;
  color: rgba(244, 238, 228, .58);
  font-size: .86rem;
  line-height: 1.85;
}

.events-rail-section {
  position: relative;
  z-index: 1;
  margin-top: 78px;
}

.events-rail-section + .events-rail-section {
  margin-top: 120px;
}

.events-rail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.events-rail-heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.events-rail-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.events-rail-heading > p {
  margin: 0 0 5px;
  color: rgba(244, 238, 228, .42);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.events-rail-index {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.events-poster-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding: 8px calc((100vw - min(1180px, calc(100vw - 40px))) / 2) 38px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(211, 170, 143, .34) transparent;
}

.events-poster-rail::-webkit-scrollbar {
  height: 5px;
}

.events-poster-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .035);
}

.events-poster-rail::-webkit-scrollbar-thumb {
  background: rgba(211, 170, 143, .36);
}

.event-showcase-card {
  min-width: 0;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(211, 170, 143, .12);
  background: rgba(255, 255, 255, .025);
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), border-color .3s ease, box-shadow .42s ease;
}

.event-showcase-card:hover,
.event-showcase-card:focus-within {
  z-index: 2;
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(211, 170, 143, .33);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .32);
}

.event-showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #211e1b;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}

.event-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
}

.event-showcase-card:hover .event-showcase-image img,
.event-showcase-card:focus-within .event-showcase-image img {
  transform: scale(1.075);
  filter: saturate(1.08);
}

.event-showcase-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, .08) 30%, rgba(12, 11, 10, .75) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, .22), transparent 45%);
}

.event-showcase-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(18, 16, 15, .58);
  color: rgba(255, 255, 255, .84);
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.event-showcase-expand {
  position: absolute;
  right: 15px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(18, 16, 15, .5);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 300;
  backdrop-filter: blur(10px);
  transition: transform .35s ease, background .35s ease;
}

.event-showcase-card:hover .event-showcase-expand,
.event-showcase-card:focus-within .event-showcase-expand {
  transform: rotate(90deg);
  background: rgba(211, 170, 143, .88);
  color: #211b17;
}

.event-showcase-content {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 23px 24px 25px;
}

.event-showcase-content > p:first-child {
  margin: 0;
  color: var(--rose);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-showcase-content h3 {
  margin-top: 9px;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1;
}

.event-showcase-content > span {
  margin-top: 10px;
  color: rgba(244, 238, 228, .47);
  font-size: .7rem;
}

.event-showcase-description {
  display: -webkit-box;
  margin: 17px 0 0;
  overflow: hidden;
  color: rgba(244, 238, 228, .58);
  font-size: .75rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.event-showcase-footer {
  min-height: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 22px;
}

.event-showcase-footer a,
.event-showcase-details {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.event-showcase-footer a span,
.event-showcase-details span {
  transition: transform .25s ease;
}

.event-showcase-footer a:hover span,
.event-showcase-details:hover span {
  transform: translateX(4px);
}

.event-showcase-footer small {
  color: rgba(244, 238, 228, .42);
  font-size: .62rem;
}

.event-showcase-sold-out {
  color: rgba(244, 238, 228, .42);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.events-poster-rail-compact {
  grid-auto-columns: minmax(245px, 25%);
}

.event-showcase-card-past {
  opacity: .78;
}

.event-showcase-card-past:hover,
.event-showcase-card-past:focus-within {
  opacity: 1;
}

.event-showcase-card-past .event-showcase-image {
  aspect-ratio: 4 / 3;
}

.event-showcase-card-past .event-showcase-content {
  min-height: 190px;
}

.event-showcase-details {
  margin-top: auto;
  padding-top: 23px;
}

.events-stream-empty {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(45px, 8vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(211, 170, 143, .16);
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.events-stream-empty::after {
  content: "Cami";
  position: absolute;
  right: -22px;
  bottom: -70px;
  color: rgba(211, 170, 143, .05);
  font-family: var(--script);
  font-size: 12rem;
  pointer-events: none;
}

.events-stream-empty > span {
  color: var(--rose);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.events-stream-empty h2 {
  margin-top: 15px;
}

.events-stream-empty p {
  color: var(--muted);
}

.events-stream-empty .button {
  margin-top: 20px;
}

.events-premium-cta {
  position: relative;
  border-top: 1px solid rgba(211, 170, 143, .14);
  background:
    linear-gradient(110deg, rgba(211, 170, 143, .08), transparent 42%),
    #191715;
}

.events-premium-cta .container {
  min-height: 275px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.events-premium-cta-mark {
  opacity: .74;
}

.events-premium-cta h2 {
  max-width: 760px;
  margin-top: 11px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.event-modal {
  isolation: isolate;
  padding: clamp(14px, 3vw, 34px);
}

.event-modal-backdrop {
  background: rgba(7, 6, 6, .82);
  backdrop-filter: blur(18px);
}

.event-modal-card {
  width: min(1040px, 100%);
  max-height: min(90vh, 820px);
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(211, 170, 143, .24);
  background: #181614;
  color: var(--text);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .58);
}

.event-modal-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #211e1b;
}

.event-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(24, 22, 20, .5));
  pointer-events: none;
}

.event-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-modal-body {
  align-content: start;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 62px);
}

.event-modal-body h3 {
  color: var(--text);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.event-modal-summary {
  color: rgba(244, 238, 228, .67);
}

.event-modal-details div {
  border-color: rgba(211, 170, 143, .14);
}

.event-modal-details dd {
  color: rgba(244, 238, 228, .72);
}

.event-modal-close {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(16, 14, 13, .72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.event-modal-close:hover,
.event-modal-close:focus-visible {
  border-color: rgba(211, 170, 143, .7);
  background: var(--rose);
  color: #211b17;
}

.event-modal-actions {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

@keyframes events-hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@keyframes events-scroll-line {
  0% { transform: translateY(0); }
  50%, 100% { transform: translateY(200%); }
}

@media (max-width: 980px) {
  .events-cinema-hero {
    min-height: 720px;
  }

  .events-cinema-hero-media::after {
    background:
      linear-gradient(90deg, rgba(17, 16, 15, .93) 0%, rgba(17, 16, 15, .65) 55%, rgba(17, 16, 15, .25) 100%),
      linear-gradient(0deg, #11100f 0%, transparent 58%);
  }

  .events-stream-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .events-stream-intro > p {
    max-width: 650px;
  }

  .events-poster-rail {
    grid-auto-columns: minmax(285px, 44%);
  }

  .events-poster-rail-compact {
    grid-auto-columns: minmax(250px, 34%);
  }

  .events-premium-cta .container {
    grid-template-columns: auto 1fr;
    padding-block: 48px;
  }

  .events-premium-cta .button {
    grid-column: 2;
    justify-self: start;
  }

  .event-modal-card {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 760px) {
  .events-cinema-hero {
    min-height: 690px;
    align-items: flex-end;
  }

  .events-cinema-hero-media img {
    object-position: 62% center;
  }

  .events-cinema-hero-media::after {
    background:
      linear-gradient(0deg, #11100f 0%, rgba(17, 16, 15, .82) 45%, rgba(17, 16, 15, .28) 100%),
      linear-gradient(90deg, rgba(17, 16, 15, .45), transparent);
  }

  .events-cinema-hero-content {
    padding-bottom: 88px;
  }

  .events-cinema-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .events-cinema-summary {
    max-width: 95%;
    font-size: 1.04rem;
  }

  .events-cinema-scroll {
    display: none;
  }

  .events-stream-section {
    padding: 78px 0 90px;
  }

  .events-stream-intro {
    margin-bottom: 65px;
  }

  .events-rail-section + .events-rail-section {
    margin-top: 85px;
  }

  .events-rail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .events-rail-heading > p {
    margin-left: 36px;
  }

  .events-poster-rail,
  .events-poster-rail-compact {
    grid-auto-columns: minmax(270px, 82%);
    margin-right: -14px;
    padding-right: 14px;
  }

  .event-showcase-card:hover,
  .event-showcase-card:focus-within {
    transform: translateY(-5px);
  }

  .events-premium-cta .container {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 62px;
  }

  .events-premium-cta .button {
    grid-column: 1;
  }

  .event-modal-card {
    display: block;
    max-height: 92vh;
  }

  .event-modal-media {
    min-height: 260px;
    height: 34vh;
  }

  .event-modal-media::after {
    background: linear-gradient(0deg, rgba(24, 22, 20, .78), transparent 55%);
  }

  .event-modal-body {
    padding: 30px 25px 35px;
  }
}

@media (max-width: 480px) {
  .events-cinema-meta {
    display: grid;
    gap: 7px;
  }

  .events-cinema-meta span + span::before {
    display: none;
  }

  .events-cinema-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .events-cinema-actions .button {
    width: 100%;
  }

  .events-rail-heading > div {
    align-items: flex-start;
  }

  .events-poster-rail,
  .events-poster-rail-compact {
    grid-auto-columns: minmax(255px, 88%);
  }

  .event-showcase-content {
    min-height: 235px;
  }

  .event-modal {
    padding: 0;
  }

  .event-modal-card {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border: 0;
  }

  .event-modal-media {
    height: 30vh;
    min-height: 220px;
  }

  .event-modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-cinema-hero-media img,
  .events-cinema-scroll i::after {
    animation: none;
  }
}

/* Área autenticada de conteúdos, ingressos e cadastro */
.customer-page,
.customer-player-page {
  min-height: 70vh;
  padding: clamp(100px, 12vw, 150px) clamp(20px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 153, .14), transparent 34%),
    var(--cream, #f4efe7);
  color: var(--ink);
}

.customer-auth-card,
.customer-player-card {
  width: min(100%, 680px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(73, 56, 47, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(42, 31, 26, .1);
  color-scheme: light;
}

.customer-auth-card h1,
.customer-player-card h1 {
  margin: 8px 0 14px;
  color: #2b2621;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: .98;
}

.customer-auth-card > p:not(.eyebrow),
.customer-player-card > p:not(.eyebrow) {
  color: #6e625b;
  line-height: 1.7;
}

.customer-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.customer-form label {
  display: grid;
  gap: 8px;
  color: #443a34;
  font-size: .78rem;
  font-weight: 700;
}

.customer-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(73, 56, 47, .24);
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: #2b2621;
  font: inherit;
}

.customer-form input:focus {
  border-color: #a97964;
  box-shadow: 0 0 0 3px rgba(169, 121, 100, .12);
}

.customer-help {
  margin: 22px 0 0;
  color: #6e625b;
  font-size: .82rem;
}

.customer-hub {
  min-height: 75vh;
  background:
    radial-gradient(circle at 85% 5%, rgba(116, 70, 97, .16), transparent 30%),
    #191715;
}

.customer-hub-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(211, 170, 143, .12);
  background:
    linear-gradient(112deg, rgba(211, 170, 143, .065), transparent 42%),
    #1b1917;
}

.customer-hub-glow {
  position: absolute;
  top: -260px;
  right: -170px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 170, 143, .12), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.customer-hub-inner {
  position: relative;
  z-index: 1;
  padding-top: 35px;
  padding-bottom: clamp(58px, 7vw, 92px);
}

.customer-area-nav {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(211, 170, 143, .12);
}

.customer-area-nav-links {
  display: flex;
  align-items: stretch;
  gap: 7px;
}

.customer-area-nav a,
.customer-nav-logout {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(244, 238, 228, .52);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.customer-area-nav a:hover,
.customer-area-nav a.is-active {
  border-color: rgba(211, 170, 143, .18);
  background: rgba(211, 170, 143, .055);
  color: var(--rose);
}

.customer-nav-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.customer-nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-area-nav form {
  margin: 0;
}

.customer-nav-logout {
  border: 0;
  cursor: pointer;
}

.customer-nav-logout:hover {
  color: #fff;
}

.customer-hub-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 8vw, 110px);
  padding-top: clamp(56px, 8vw, 105px);
}

.customer-hub-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--rose);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.customer-hub-kicker span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.customer-hub-heading h1 {
  max-width: 790px;
  color: var(--text);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.035em;
}

.customer-hub-heading h1 em {
  display: inline;
  font-weight: 400;
}

.customer-hub-heading > div:first-child > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(244, 238, 228, .54);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.customer-hub-stats {
  flex: 0 0 auto;
  display: flex;
  border: 1px solid rgba(211, 170, 143, .15);
  background: rgba(255, 255, 255, .018);
}

.customer-hub-stats > div {
  min-width: 112px;
  padding: 20px 24px;
}

.customer-hub-stats > div + div {
  border-left: 1px solid rgba(211, 170, 143, .15);
}

.customer-hub-stats strong {
  display: block;
  color: var(--text);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.customer-hub-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 238, 228, .38);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.customer-hub-content {
  padding-top: clamp(55px, 7vw, 85px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.customer-hub-content > .form-alert {
  margin: 0 0 35px;
}

.customer-library-section {
  margin-top: 0;
}

.customer-library-section + .customer-library-section {
  margin-top: clamp(80px, 11vw, 135px);
  padding-top: clamp(70px, 8vw, 95px);
  border-top: 1px solid rgba(211, 170, 143, .1);
}

.customer-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.customer-section-heading > div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.customer-section-index {
  margin-top: 8px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.customer-section-heading p {
  margin: 0;
  color: rgba(244, 238, 228, .36);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.customer-section-heading h2 {
  margin-top: 6px;
  color: var(--text);
  font-size: clamp(2.25rem, 4.5vw, 3.85rem);
}

.customer-section-heading > p {
  max-width: 360px;
  padding-bottom: 8px;
  line-height: 1.65;
  text-align: right;
}

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

.customer-showcase-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(211, 170, 143, .12);
  background: rgba(255, 255, 255, .024);
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), border-color .3s ease, box-shadow .42s ease;
}

.customer-showcase-card:hover,
.customer-showcase-card:focus-within {
  z-index: 2;
  transform: translateY(-9px);
  border-color: rgba(211, 170, 143, .33);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .28);
}

.customer-showcase-media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  display: block;
  overflow: hidden;
  background: #211e1b;
}

.customer-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
}

.customer-showcase-card:hover .customer-showcase-media img,
.customer-showcase-card:focus-within .customer-showcase-media img {
  transform: scale(1.075);
  filter: saturate(1.08);
}

.customer-showcase-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, .04) 30%, rgba(12, 11, 10, .78) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, .18), transparent 48%);
}

.customer-showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(18, 16, 15, .58);
  color: rgba(255, 255, 255, .84);
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.customer-showcase-arrow {
  position: absolute;
  right: 15px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(18, 16, 15, .5);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.customer-showcase-card:hover .customer-showcase-arrow,
.customer-showcase-card:focus-within .customer-showcase-arrow {
  transform: translateX(3px);
  background: rgba(211, 170, 143, .9);
  color: #211b17;
}

.customer-showcase-content {
  min-height: 272px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 25px 26px;
}

.customer-showcase-content > p:first-child {
  margin: 0;
  color: var(--rose);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.customer-showcase-content h3 {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: .98;
}

.customer-showcase-description,
.customer-showcase-location {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  color: rgba(244, 238, 228, .52);
  font-size: .75rem;
  line-height: 1.68;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.customer-showcase-location {
  -webkit-line-clamp: 2;
}

.customer-showcase-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: var(--rose);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.customer-showcase-action span {
  transition: transform .25s ease;
}

.customer-showcase-action:hover span {
  transform: translateX(4px);
}

.customer-ticket-card .customer-showcase-content {
  min-height: 225px;
}

.customer-empty {
  display: grid;
  justify-items: center;
  padding: clamp(45px, 7vw, 75px) 24px;
  border: 1px dashed rgba(211, 170, 143, .22);
  background: rgba(255, 255, 255, .018);
  text-align: center;
}

.customer-empty > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border: 1px solid rgba(211, 170, 143, .28);
  border-radius: 50%;
  color: var(--rose);
  font-size: 1.25rem;
}

.customer-empty h3 {
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.customer-empty p {
  max-width: 520px;
  margin: 11px 0 24px;
  color: rgba(244, 238, 228, .46);
  font-size: .79rem;
}

.customer-empty-compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.customer-account-signature {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(211, 170, 143, .18);
  border-radius: 50%;
  color: var(--rose);
}

.customer-account-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: clamp(38px, 7vw, 90px);
  padding-top: clamp(55px, 7vw, 85px);
  padding-bottom: clamp(85px, 10vw, 135px);
}

.customer-account-sidebar {
  position: sticky;
  top: 105px;
  align-self: start;
}

.customer-account-sidebar > p {
  margin: 0 0 18px;
  color: rgba(244, 238, 228, .33);
  font-size: .59rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.customer-account-sidebar nav {
  display: grid;
  border-top: 1px solid rgba(211, 170, 143, .13);
}

.customer-account-sidebar nav a {
  position: relative;
  padding: 15px 4px 15px 18px;
  border-bottom: 1px solid rgba(211, 170, 143, .1);
  color: rgba(244, 238, 228, .47);
  font-size: .73rem;
  transition: color .25s ease, padding-left .25s ease;
}

.customer-account-sidebar nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: background .25s ease, box-shadow .25s ease;
}

.customer-account-sidebar nav a:hover,
.customer-account-sidebar nav a.is-active {
  padding-left: 22px;
  color: var(--rose);
}

.customer-account-sidebar nav a.is-active::before {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(211, 170, 143, .1);
}

.customer-account-summary {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(211, 170, 143, .12);
  background: rgba(255, 255, 255, .018);
}

.customer-account-summary span,
.customer-account-summary small {
  color: rgba(244, 238, 228, .34);
  font-size: .58rem;
}

.customer-account-summary strong {
  overflow: hidden;
  color: rgba(244, 238, 228, .7);
  font-size: .67rem;
  font-weight: 500;
  text-overflow: ellipsis;
}

.customer-account-panels {
  min-width: 0;
  display: grid;
  gap: 32px;
}

.customer-account-panel {
  scroll-margin-top: 105px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(211, 170, 143, .13);
  background: #f5efe6;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  color-scheme: light;
}

.customer-account-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 33px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(73, 56, 47, .13);
}

.customer-account-panel-heading > span {
  margin-top: 5px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
}

.customer-account-panel-heading p {
  margin: 0;
  color: rgba(43, 38, 33, .48);
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.customer-account-panel-heading h2 {
  margin-top: 5px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
}

.customer-account-form {
  display: grid;
  gap: 24px;
}

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

.customer-form-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  color: #51463f;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .025em;
}

.customer-form-field-wide {
  grid-column: 1 / -1;
}

.customer-form-field input,
.customer-form-field select {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(73, 56, 47, .22);
  border-radius: 2px;
  outline: 0;
  background: rgba(255, 255, 255, .74);
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.customer-form-field select {
  cursor: pointer;
}

.customer-password-control {
  position: relative;
  display: block;
  width: 100%;
}

.customer-password-control input {
  padding-right: 52px;
}

.customer-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(43, 38, 33, .58);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
}

.customer-password-toggle:hover,
.customer-password-toggle:focus-visible {
  background: rgba(143, 102, 81, .1);
  color: var(--rose-dark);
  outline: 0;
}

.customer-password-eye {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-password-eye[hidden] {
  display: none;
}

.customer-field-status {
  color: var(--rose-dark) !important;
}

.customer-form-field input:focus,
.customer-form-field select:focus {
  border-color: var(--rose-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(143, 102, 81, .1);
}

.customer-form-field > small {
  color: rgba(43, 38, 33, .48);
  font-size: .61rem;
  font-weight: 400;
  line-height: 1.45;
}

.customer-sensitive-confirmation {
  padding: 19px;
  border-left: 3px solid var(--rose-dark);
  background: rgba(211, 170, 143, .12);
}

.customer-form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 5px;
}

.customer-form-actions p {
  max-width: 430px;
  margin: 0;
  color: rgba(43, 38, 33, .48);
  font-size: .64rem;
  line-height: 1.5;
}

.customer-security-form > .customer-form-field:first-of-type {
  max-width: calc(50% - 10px);
}

.customer-danger-panel {
  border-color: rgba(143, 60, 52, .23);
}

.customer-danger-notice {
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 60, 52, .2);
  background: rgba(143, 60, 52, .055);
}

.customer-danger-notice strong {
  color: #7c342f;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.customer-danger-notice p {
  margin: 6px 0 0;
  color: rgba(76, 46, 43, .72);
  font-size: .72rem;
}

.customer-danger-button {
  border-color: #803b35;
  background: #803b35;
  color: #fff;
}

.customer-danger-button:hover:not(:disabled) {
  background: #6e302b;
}

.customer-danger-button:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.customer-back {
  display: block;
  width: min(100%, 680px);
  margin: 0 auto 18px;
  color: #805c4b;
  font-weight: 700;
  text-decoration: none;
}

.protected-media {
  width: 100%;
  max-height: 70vh;
  margin-top: 28px;
  border-radius: 10px;
  background: #211e1b;
}

audio.protected-media {
  min-height: 54px;
}

.protected-document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.protected-document {
  width: 100%;
  min-height: min(72vh, 820px);
  margin-top: 18px;
  border: 1px solid rgba(73, 56, 47, .16);
  border-radius: 10px;
  background: #fff;
}

.protected-download-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(143, 102, 81, .2);
  border-radius: 12px;
  background: rgba(211, 170, 143, .11);
}

.protected-download-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #2b2621;
  color: #f4efe7;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.protected-download-card p,
.protected-download-card h2,
.protected-download-card small {
  margin: 0;
}

.protected-download-card p {
  color: var(--rose-dark);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.protected-download-card h2 {
  margin-top: 5px;
  color: #2b2621;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.protected-download-card small {
  display: block;
  margin-top: 8px;
  color: #6e625b;
  line-height: 1.5;
}

.media-protection-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid #d3aa8f;
  background: rgba(211, 170, 143, .12);
  font-size: .8rem;
}

.form-alert {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: .78rem;
  line-height: 1.55;
}

.form-alert.error {
  border: 1px solid rgba(163, 61, 61, .25);
  background: rgba(163, 61, 61, .08);
  color: #833232;
}

.form-alert.success {
  border: 1px solid rgba(46, 117, 86, .25);
  background: rgba(46, 117, 86, .08);
  color: #28684c;
}

.customer-hub-content > .form-alert.error,
.customer-hub-content > .form-alert.success {
  color: var(--text);
}

.customer-hub-content > .form-alert.error {
  border-color: rgba(218, 111, 101, .28);
  background: rgba(163, 61, 61, .12);
}

.customer-hub-content > .form-alert.success {
  border-color: rgba(105, 181, 146, .25);
  background: rgba(46, 117, 86, .12);
}

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

  .customer-account-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 36px;
  }

  .customer-account-panel {
    padding: 34px;
  }
}

@media (max-width: 760px) {
  .customer-hub-inner {
    padding-top: 20px;
  }

  .customer-area-nav {
    align-items: flex-start;
  }

  .customer-area-nav-links {
    min-width: 0;
    flex: 1;
  }

  .customer-area-nav a {
    min-width: 0;
    padding-right: 9px;
    padding-left: 9px;
  }

  .customer-nav-icon {
    display: none;
  }

  .customer-hub-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-hub-stats {
    width: 100%;
  }

  .customer-hub-stats > div {
    flex: 1;
  }

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

  .customer-section-heading > p {
    max-width: none;
    padding-left: 34px;
    text-align: left;
  }

  .customer-showcase-grid {
    grid-template-columns: 1fr;
  }

  .customer-showcase-card {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(0, 1fr);
  }

  .customer-showcase-media {
    height: 100%;
    min-height: 270px;
    aspect-ratio: auto;
  }

  .customer-showcase-content,
  .customer-ticket-card .customer-showcase-content {
    min-height: 270px;
  }

  .customer-account-signature {
    display: none;
  }

  .customer-account-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .customer-account-sidebar {
    position: static;
  }

  .customer-account-sidebar > p,
  .customer-account-summary {
    display: none;
  }

  .customer-account-sidebar nav {
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(211, 170, 143, .13);
  }

  .customer-account-sidebar nav a {
    display: grid;
    place-items: center;
    padding: 12px 8px;
    border: 0;
    text-align: center;
  }

  .customer-account-sidebar nav a + a {
    border-left: 1px solid rgba(211, 170, 143, .1);
  }

  .customer-account-sidebar nav a::before {
    display: none;
  }

  .customer-account-sidebar nav a:hover,
  .customer-account-sidebar nav a.is-active {
    padding-left: 8px;
    background: rgba(211, 170, 143, .06);
  }
}

@media (max-width: 560px) {
  .customer-area-nav {
    gap: 8px;
  }

  .customer-area-nav-links {
    gap: 2px;
  }

  .customer-area-nav a,
  .customer-nav-logout {
    min-height: 38px;
    padding: 8px 7px;
    font-size: .57rem;
  }

  .customer-hub-heading h1 {
    font-size: clamp(3.15rem, 17vw, 5.1rem);
  }

  .customer-hub-stats > div {
    min-width: 0;
    padding: 17px 18px;
  }

  .customer-showcase-card {
    display: flex;
  }

  .customer-showcase-media {
    min-height: 0;
    aspect-ratio: 16 / 10.5;
  }

  .customer-showcase-content,
  .customer-ticket-card .customer-showcase-content {
    min-height: 245px;
  }

  .customer-account-sidebar nav {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
  }

  .customer-account-panel {
    padding: 26px 20px;
  }

  .customer-form-grid {
    grid-template-columns: 1fr;
  }

  .customer-form-field-wide {
    grid-column: auto;
  }

  .customer-security-form > .customer-form-field:first-of-type {
    max-width: none;
  }

  .customer-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-form-actions .button {
    width: 100%;
  }
}


@media (max-width: 680px) {
  .protected-document-actions {
    display: grid;
  }

  .protected-document-actions .button {
    width: 100%;
    justify-content: center;
  }

  .protected-document {
    min-height: 62vh;
  }

  .protected-download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .protected-download-icon {
    margin: 0 auto;
  }

  .protected-download-card .button {
    width: 100%;
    justify-content: center;
  }
}
