/* ==========================================================================
   Ban Thai Massage — home page
   ========================================================================== */

:root {
  --ink: #14100c;
  --espresso: #1d1712;
  --espresso-2: #251e17;
  --espresso-3: #2b2319;
  --line-dark: rgba(230, 214, 186, 0.14);

  --ivory: #f7f1e4;
  --ivory-2: #efe4cd;
  --line-light: rgba(28, 20, 12, 0.12);

  --gold: #c39a5c;
  --gold-bright: #e0bd82;
  --maroon: #7c2f31;

  --cream: #f1e7d6;
  --cream-dim: #c6b89c;
  --ink-text: #241c14;
  --ink-dim: #6b5f4c;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 132px;

  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 260ms var(--ease);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 560;
  letter-spacing: 0.002em;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.04; font-weight: 440; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.12; }
h3 { font-size: 1.34rem; line-height: 1.3; font-weight: 560; }

em { font-style: italic; color: var(--gold-bright); }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* grain texture overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Buttons & small components
   ========================================================================== */

.label {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(241, 231, 214, 0.4);
}
.btn--outline:hover { border-color: var(--cream); background: rgba(241, 231, 214, 0.06); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(241, 231, 214, 0.3);
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.76rem;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(241, 231, 214, 0.28);
  color: var(--cream);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background-color var(--transition), padding var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(29, 23, 18, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line-dark);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-mark { width: 34px; height: 34px; color: var(--gold); flex: none; }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(0.96rem, 3.2vw, 1.12rem);
  font-weight: 560;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 3px;
}

.nav { display: flex; justify-content: center; gap: var(--space-4); }
.nav a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 231, 214, 0.3);
  border-radius: 50%;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 0 auto;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 118px 0 56px;
  background:
    radial-gradient(ellipse 1100px 700px at 50% 45%, rgba(195, 154, 92, 0.12), transparent 60%),
    var(--espresso);
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
  padding: 0 24px;
}

.hero-graphic {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1200px, 96vw);
  height: auto;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-art {
  width: min(440px, 68vw);
  height: auto;
  margin: 0 auto 18px;
}

.hero-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-line1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.3;
  font-weight: 440;
  font-style: italic;
  color: var(--cream);
}

.hero-sub {
  margin: 14px auto 0;
  max-width: 44ch;
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-badges span[aria-hidden] { color: var(--cream-dim); opacity: 0.5; }

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

/* On desktop, skip the fade-in delay for the hero CTAs so they're usable immediately */
@media (min-width: 861px) {
  .hero-actions.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-art {
  animation: hero-breathe 7s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(195, 154, 92, 0)); }
  50% { transform: scale(1.015); filter: drop-shadow(0 0 26px rgba(195, 154, 92, 0.22)); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: var(--space-5);
  transform: translateX(-50%);
  pointer-events: none;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Page content scrolls up and over the sticky hero, then behaves normally */
.page-content {
  position: relative;
  z-index: 1;
  background: var(--espresso);
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(20, 16, 12, 0.15);
  border-bottom: 1px solid rgba(20, 16, 12, 0.15);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-group {
  display: flex;
  flex: none;
  gap: 12px;
  padding-right: 12px;
}
.marquee-track span { flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: var(--space-8) 0; }
.section-graphic-host { position: relative; overflow: hidden; }
.section-graphic {
  position: absolute;
  width: 800px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
}
.section-graphic--welcome {
  top: -60px;
  right: -180px;
  color: var(--maroon);
  opacity: 0.07;
}
.section-graphic--contact {
  top: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  color: var(--gold);
  opacity: 0.08;
}
.section-graphic-host > .container { position: relative; z-index: 1; }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--espresso { background: var(--espresso-2); color: var(--cream); }
.section--light { background: var(--ivory); color: var(--ink-text); }

.section--light .label { color: var(--maroon); }
.section--light .section-sub { color: var(--ink-dim); }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.section-head h2 { margin-bottom: var(--space-3); }
.section-sub { color: var(--cream-dim); font-size: 1.02rem; }

.text-lg { font-size: 1.08rem; color: var(--cream-dim); }
.section--light .text-lg { color: var(--ink-dim); }

.divider {
  display: flex;
  justify-content: center;
  margin: 0 auto var(--space-7);
}
.lotus-line { width: 88px; height: 46px; color: var(--gold); }
.lotus-line path {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.lotus-line circle {
  opacity: 0;
  transition: opacity 400ms var(--ease) 1.2s;
}
.divider.visible .lotus-line circle { opacity: 1; }
.divider.visible .lotus-line path { stroke-dashoffset: 0; }

/* ==========================================================================
   Story rows
   ========================================================================== */

.story-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.story-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-6);
}
.story-row--reverse { direction: rtl; }
.story-row--reverse > * { direction: ltr; }

.story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-index {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.story-text h3 { margin-bottom: var(--space-2); }
.story-text p { color: var(--cream-dim); max-width: 42ch; }

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.service-card {
  background: var(--ivory-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -22px rgba(28, 20, 12, 0.4);
}
.service-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.service-card h3 { font-size: 1.24rem; margin-bottom: 0; }
.service-card .price {
  flex: none;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 560;
  font-size: 1.12rem;
  color: var(--maroon);
  white-space: nowrap;
}
.service-card p { color: var(--ink-dim); font-size: 0.92rem; }
.service-card .duration {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
}

.service-card--featured {
  background: linear-gradient(160deg, var(--ivory-2), #e9dcc0);
  border-color: var(--gold);
  position: relative;
}
.service-card--featured::before {
  content: 'Signature';
  position: absolute;
  top: -11px;
  left: var(--space-4);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card--featured .price { color: var(--gold); }

/* ==========================================================================
   Why
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}
.why-card { border-top: 1px solid var(--line-dark); padding-top: var(--space-3); }
.why-num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}
.why-card h3 { margin-bottom: var(--space-2); font-size: 1.16rem; }
.why-card p { color: var(--cream-dim); font-size: 0.92rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-3);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20, 16, 12, 0.86), transparent);
}

/* ==========================================================================
   Welcome
   ========================================================================== */

.welcome-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: var(--space-7);
}
.welcome-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.welcome-media img { width: 100%; height: 100%; object-fit: cover; }

.welcome-content .label { color: var(--maroon); }
.welcome-content h2 { margin-bottom: var(--space-3); }
.welcome-content p { margin-bottom: var(--space-3); }
.welcome-content .text-lg { color: var(--ink-text); font-family: var(--font-heading); font-size: 1.28rem; line-height: 1.5; font-style: italic; }

.checklist {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-dim);
  font-size: 0.94rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--maroon);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section { text-align: center; background: radial-gradient(ellipse at 50% 0%, var(--espresso-3), var(--espresso) 70%); }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-inner .section-sub { margin: 0 auto; }

.contact-buttons {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  padding: var(--space-3) var(--space-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), background-color var(--transition);
}
.social-btn svg { width: 20px; height: 20px; color: var(--gold); }
.social-btn span { font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cream-dim); }
.social-btn:hover { border-color: var(--gold); transform: translateY(-3px); background: rgba(195, 154, 92, 0.06); }

.contact-note {
  margin-top: var(--space-5);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--cream-dim);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink); padding: var(--space-5) 0; border-top: 1px solid var(--line-dark); }
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
}
.footer-social { display: flex; gap: 10px; justify-content: center; }
.footer-copy { font-size: 0.78rem; color: var(--cream-dim); text-align: right; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 200;
  min-height: 50px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-media {
  position: relative;
  overflow: hidden;
  transition-delay: var(--d, 0s);
}
.reveal-media img {
  transform: scale(1.12);
  transition: transform 1.1s var(--ease);
}
.reveal-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 900ms var(--ease);
  transition-delay: var(--d, 0s);
  z-index: 1;
}
.reveal-media.visible::before { transform: scaleX(0); }
.reveal-media.visible img { transform: scale(1); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-row, .welcome-layout { grid-template-columns: 1fr; }
  .story-row--reverse { direction: ltr; }
  .welcome-media { aspect-ratio: 3/4; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) auto auto; gap: 14px; }
  .brand { min-width: 0; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-name { overflow: hidden; text-overflow: ellipsis; }
  .header-actions { flex: none; }
  .header-actions .btn--ghost,
  .header-actions .icon-btn { display: none; }
  .header-actions .icon-btn--contact { display: inline-flex; }
  .nav-toggle { display: flex; flex: none; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--espresso);
    border-bottom: 1px solid var(--line-dark);
    padding: var(--space-3) 24px var(--space-4);
    flex-direction: column;
    gap: var(--space-3);
  }
  .nav.open { display: flex; }

  .scroll-cue { display: none; }

  .section { padding: var(--space-7) 0; }

  .sticky-cta.visible { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .services-grid, .why-grid, .gallery-grid { grid-template-columns: 1fr; }
  .section-graphic { width: 480px; height: 240px; }
  .section-graphic--welcome { top: -30px; right: -140px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .brand-tagline { display: none; }
  .header-inner { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .reveal-media, .divider .lotus-line path { opacity: 1 !important; transform: none !important; }
  .reveal-media::before { display: none; }
}
