:root {
  --rose: #D08193;
  --rose-deep: #B96C7E;
  --rose-hover: #C36B7E;
  --champ: #E9CFAE;
  --gold-shimmer: #C9A76A;
  --ink: #2B1816;
  --ink-2: #5C3A38;
  --ink-light: #6e5a5a;
  --line: #E7D7DE;
  --line-soft: #F0E5EA;
  --cream: #FEFCFE;
  --blush: #F1DFEA;
  --white-pure: #FFFFFF;
  --shadow-luxury: 0 8px 32px rgba(34, 24, 22, .08), 0 2px 8px rgba(34, 24, 22, .04);
  --shadow-elevated: 0 16px 48px rgba(34, 24, 22, .12), 0 4px 12px rgba(34, 24, 22, .06);
  --shadow-float: 0 24px 64px rgba(34, 24, 22, .14), 0 8px 16px rgba(34, 24, 22, .08);
  --shadow-sm: 0 4px 16px rgba(34, 24, 22, .06);
  --r-card: 24px;
  --r-btn: 32px;
  --r-pill: 999px;
  --maxw: 1100px;
  --ico: 32px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: radial-gradient(140% 120% at 50% -40%, var(--cream) 0%, #F9F4F6 55%, var(--blush) 120%);
  font: 400 16px/1.7 Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 90px;
  position: relative;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("images/bg-gradient-lavender-blush.webp") center/cover no-repeat;
  opacity: .38;
  mix-blend-mode: normal;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

a {
  color: var(--rose-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 72px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--transition-elegant);
}

.header:has(+ main) {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
}

@media(min-width:860px) {
  .header {
    height: 80px;
  }
}

.nav {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.brandmark {
  height: 58px;
  width: auto;
  max-width: 180px;
  transition: opacity 0.3s var(--transition-elegant);
}

.brandmark:hover {
  opacity: 0.85;
}

@media(min-width:860px) {
  .brandmark {
    height: 64px;
    max-width: 200px;
  }
}

.hamburger {
  position: absolute;
  right: 0;
  font-size: 28px;
  line-height: 1;
  padding: 10px 12px;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

#nav-toggle {
  display: none;
}

.navLinks {
  display: none;
  position: absolute;
  top: 100%;
  left: 12px;
  right: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.navLinks a {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--transition-elegant), color 0.2s var(--transition-elegant);
}

.navLinks a:hover {
  background: #FFF7F6;
  text-decoration: none;
  color: var(--rose-deep);
}

#nav-toggle:checked~.navLinks {
  display: block;
}

@media(min-width:860px) {
  .hamburger {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .brand {
    position: static;
    transform: none;
  }

  .navLinks {
    all: unset;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .navLinks a {
    padding: 10px 16px;
  }
}

/* Hero */
.hero {
  padding: 48px 0 32px;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

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

.eyebrow {
  color: var(--ink-light);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.9;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(34px, 6vw, 56px);
  margin: 0 0 20px;
  color: var(--ink);
}

.lead {
  max-width: 62ch;
  margin: 0 auto 24px;
  color: var(--ink-2);
  font-size: clamp(16px, 3.8vw, 19px);
  line-height: 1.65;
  font-weight: 400;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.hero-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  transition: transform 0.4s var(--transition-elegant), box-shadow 0.4s var(--transition-elegant);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(34, 24, 22, .18), 0 12px 24px rgba(34, 24, 22, .1);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 20px 0 0;
}

.ico {
  width: var(--ico);
  height: var(--ico);
  display: inline-block;
  background: currentColor;
  color: #9b7e62;
  opacity: .92;
  transition: opacity .2s var(--transition-elegant), color .2s var(--transition-elegant), transform .3s var(--transition-elegant);
}

.ico:hover {
  opacity: 1;
  color: var(--gold-shimmer);
  transform: translateY(-2px) scale(1.05);
}

.ico.insta {
  -webkit-mask: url('/images/icon-instagram.svg') no-repeat center/contain;
  mask: url('/images/icon-instagram.svg') no-repeat center/contain;
}

.ico.tiktok {
  -webkit-mask: url('/images/icon-tiktok.svg') no-repeat center/contain;
  mask: url('/images/icon-tiktok.svg') no-repeat center/contain;
}

.ico.pinterest {
  -webkit-mask: url('/images/icon-pinterest.svg') no-repeat center/contain;
  mask: url('/images/icon-pinterest.svg') no-repeat center/contain;
}

@media(min-width:860px) {
  .hero {
    padding: 64px 0 48px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
  }

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

  .ctaRow {
    justify-content: flex-start;
  }

  .hero-socials {
    justify-content: flex-start;
  }
}

/* Sections */
.section {
  padding: 40px 0;
}

.card {
  background: var(--white-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-luxury);
  padding: 32px;
  transition: box-shadow 0.3s var(--transition-elegant);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.goldline {
  height: 2px;
  width: 100%;
  margin: 12px 0 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(233, 207, 174, .6), transparent);
}

.goldline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .7) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: goldSweep 10s linear infinite;
  opacity: .5;
}

@keyframes goldSweep {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.process {
  padding-left: 1.5em;
}

.process li {
  margin: .6em 0;
  line-height: 1.7;
}

/* FAQ */
.faq .item {
  border-top: 1px solid var(--line);
}

.faq .item:last-child {
  border-bottom: 1px solid var(--line);
}

.q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 14px 0;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  transition: color 0.2s var(--transition-elegant);
}

.q:hover {
  color: var(--rose-deep);
}

.q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 500;
  transition: transform 0.3s var(--transition-elegant);
  line-height: 1;
}

.q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--transition-elegant), padding 0.35s var(--transition-elegant);
}

.q[aria-expanded="true"]+.panel {
  max-height: 400px;
  padding-bottom: 14px;
}

.panel p {
  color: var(--ink-2);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s var(--transition-elegant), box-shadow 0.3s var(--transition-elegant), background 0.3s var(--transition-elegant);
  user-select: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(208, 129, 147, .32), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-hover) 0%, var(--rose-deep) 100%);
  box-shadow: 0 8px 24px rgba(208, 129, 147, .4), inset 0 1px 1px rgba(255, 255, 255, .35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  border: 1px solid rgba(201, 167, 106, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 10px 26px rgba(34, 24, 22, .06);
  backdrop-filter: blur(16px) saturate(180%);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 167, 106, .5);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .8), 0 14px 32px rgba(201, 167, 106, .16);
  background: rgba(255, 255, 255, .95);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn.sm {
  min-height: 44px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14px;
}

.btn-close {
  all: unset;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-light);
  cursor: pointer;
  transition: background 0.2s var(--transition-elegant), color 0.2s var(--transition-elegant);
  flex-shrink: 0;
}

.btn-close:hover {
  background: var(--line-soft);
  color: var(--ink);
}

/* Sticky CTA - Mobile Optimized */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.35s var(--transition-elegant), transform 0.35s var(--transition-elegant);
  opacity: 0;
  transform: translateY(18px);
  padding: 0 12px;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta.hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.sticky-cta .bar {
  pointer-events: auto;
  display: flex;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0;
  box-shadow: none;
  width: 100%;
  max-width: 600px;
}

/* Mobile: Stack buttons vertically below 580px */
@media (max-width: 580px) {
  .sticky-cta .bar {
    flex-direction: column;
    gap: 8px;
  }
  
  .sticky-cta .bar .btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    padding: 0 20px;
  }
}

/* Tablet and up: Horizontal layout */
@media (min-width: 581px) {
  .sticky-cta .bar {
    flex-direction: row;
  }
  
  .sticky-cta .bar .btn {
    flex: 1;
    max-width: 280px;
  }
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  background: var(--white-pure);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .02);
  padding: 28px 0 calc(80px + env(safe-area-inset-bottom));
  margin-top: 56px;
}

footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 207, 174, .5), transparent);
  margin-bottom: 16px;
}

.fine {
  text-align: center;
  font-size: .88rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

footer a {
  text-decoration: none;
  color: var(--rose-deep);
  font-weight: 600;
  transition: color 0.2s var(--transition-elegant);
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

/* Forms */
label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white-pure);
  color: var(--ink);
  font: 400 15px/1.5 Inter, system-ui, sans-serif;
  transition: border-color .25s var(--transition-elegant), box-shadow .25s var(--transition-elegant), background .25s var(--transition-elegant);
  margin-top: 6px;
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(208, 129, 147, .08), 0 8px 16px rgba(193, 167, 210, .12);
  background: var(--white-pure);
}

.input::placeholder,
textarea::placeholder {
  color: var(--ink-light);
  opacity: 0.6;
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: Inter, system-ui, sans-serif;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C3A38' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  appearance: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white-pure);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .2s var(--transition-elegant);
}

.checkbox-item:hover {
  background: #FFF8F7;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--rose);
  margin: 0;
}

.checkbox-item span {
  flex: 1;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

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

/* Modals */
dialog {
  border: 0;
  border-radius: 20px;
  max-width: min(920px, 94vw);
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity .4s var(--transition-elegant), transform .4s var(--transition-elegant);
  max-height: calc(100dvh - 40px);
  margin: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25);
}

dialog.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

dialog::backdrop {
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
}

.modal-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--white-pure);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  max-height: calc(100dvh - 40px);
}

.modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  background: var(--white-pure);
  z-index: 10;
  gap: 16px;
}

.modal-head h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.modal-body {
  padding: 24px;
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, var(--white-pure) 0%, #FDFBFC 100%);
}

.modal-body > *:not(:last-child) {
  margin-bottom: 16px;
}

.modal-body h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 24px 0 8px;
  letter-spacing: -0.01em;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body ul {
  padding-left: 1.3em;
  color: var(--ink-2);
  line-height: 1.7;
}

.modal-body ul li {
  margin: 6px 0;
}

.modal-actions {
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid var(--line-soft);
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  background: var(--white-pure);
  z-index: 10;
  flex-wrap: wrap;
}

.modal-actions .ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 300px;
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.modal-actions .ack input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--rose);
  cursor: pointer;
}

/* Policy Accordion */
.policy {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fdf9fb 100%);
  box-shadow: var(--shadow-sm);
}

.policy+.policy {
  margin-top: 12px;
}

.policy-head {
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  transition: background 0.2s var(--transition-elegant);
  border-radius: 14px;
}

.policy-head:hover {
  background: rgba(248, 244, 246, 0.5);
}

.policy-head span:last-child {
  font-size: 18px;
  transition: transform 0.3s var(--transition-elegant);
}

.policy-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 16px;
}

.policy-inner {
  padding: 10px 0 14px;
  color: var(--ink-2);
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 14px;
  line-height: 1.65;
}

.policy-inner ol {
  padding-left: 1.2em;
}

.policy-inner li {
  margin: 8px 0;
}

.policy-inner ul {
  padding-left: 1.1em;
  margin: .4em 0;
}

.policy-foot {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--line);
}

.policy-foot input {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
  margin-top: 2px;
  flex: 0 0 auto;
  cursor: pointer;
}

.policy-foot input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.policy-foot .lock {
  opacity: .9;
  font-size: .95rem;
  line-height: 1.4;
  flex: 1;
  overflow-wrap: anywhere;
  cursor: pointer;
}

/* Utilities */
.notice {
  font-size: .9rem;
  color: var(--ink-2);
  margin: 8px 0 12px;
  line-height: 1.6;
}

.care-h4 {
  font-family: "Playfair Display", serif;
  color: var(--rose-deep);
  margin: 20px 0 8px;
  font-size: 17px;
}

.care-h4:first-child {
  margin-top: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.success-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 96px;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s;
  padding: 0 12px;
}

.success-wrap.show {
  opacity: 1;
  transform: translateY(0);
}

.success {
  pointer-events: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  padding: 14px 18px;
  min-width: min(94vw, 540px);
}

.success h4 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 16px;
}

.success p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.success .shine {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(233, 207, 174, .8), transparent);
  margin: 0 0 10px;
  position: relative;
  overflow: hidden;
}

.success .shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: goldSweep 8s linear infinite;
  opacity: .7;
}

/* Modal open state */
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}