/* ===== Royal Massage Spa Center — Stylesheet ===== */

:root {
  --peach: #FBEAE4;
  --peach-soft: #FDF3F0;
  --maroon-900: #201009;
  --maroon-800: #2B1210;
  --maroon-700: #4A211B;
  --rose: #D98B7A;
  --rose-dark: #C1715F;
  --gold: #C9A15A;
  --ink: #3A3230;
  --muted: #7A6F6C;
  --white: #FFFFFF;
  --line: rgba(58, 50, 48, 0.12);
  --shadow: 0 10px 30px rgba(43, 18, 16, 0.08);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--peach);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--maroon-800);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { line-height: 1.75; color: var(--muted); margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--rose-dark);
  font-weight: 500;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 240, 235, 0.68);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--maroon-800);
  letter-spacing: 0.02em;
}

.brand-text .sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active,
.nav-links a:hover { color: var(--rose-dark); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rose-dark);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.nav-info { display: none; list-style: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon-800);
  margin: 5px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--maroon-800);
  color: var(--maroon-800);
}
.btn-outline:hover { background: var(--maroon-800); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 0.7rem; }
.btn-block { width: 100%; }

/* ---------- Hero (auto-rotating slider) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  touch-action: pan-y;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.hero-slide.is-active { pointer-events: auto; }

.hero-slide--card {
  align-items: flex-end;
  padding-bottom: 56px;
}

.hero-slide--card .hero-content::before { content: none; }

.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,7,5,0.28) 0%, rgba(15,7,5,0.12) 40%, rgba(15,7,5,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -10px -14px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(8,4,3,0.4) 0%, rgba(8,4,3,0.22) 45%, rgba(8,4,3,0) 72%);
}

/* Each slide: real photo (drop your file into images/hero/) + a light gradient tint on top
   so the white text stays readable while the photo (hands, towels, textures) stays clearly visible.
   If a photo file is missing, the gradient alone still shows — nothing breaks. */
.hero-slide:nth-child(1) .bg {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(201,161,90,0.20), transparent 50%),
    url('images/hero/slide-1-restore.jpg'), linear-gradient(160deg, #1c0e0a 0%, #3a1a14 50%, #52241b 100%);
}
.hero-slide:nth-child(2) .bg {
  background-image:
    radial-gradient(circle at 70% 25%, rgba(217,139,122,0.18), transparent 50%),
    url('images/hero/slide-2-deep-tissue.jpg'), linear-gradient(200deg, #241109 0%, #3f1c12 55%, #5a2c1c 100%);
}
.hero-slide:nth-child(3) .bg {
  background-image:
    radial-gradient(circle at 50% 15%, rgba(243,217,177,0.16), transparent 50%),
    url('images/hero/slide-3-aromatherapy.jpg'), linear-gradient(150deg, #170b08 0%, #34160f 50%, #4a2318 100%);
}
.hero-slide:nth-child(4) .bg {
  background-image:
    radial-gradient(circle at 80% 80%, rgba(201,161,90,0.18), transparent 55%),
    url('images/hero/slide-4-thai.jpg'), linear-gradient(170deg, #200f0a 0%, #3d1c13 55%, #57281a 100%);
}

/* Text gets its own tight, close-fitting dark backing (per line) instead of one
   big box behind the whole hero — so only the words themselves are backed. */
.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.hero h1 {
  display: block;
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  line-height: 1.35;
  margin-bottom: 22px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.7);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p.lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-divider {
  margin: 34px auto 0;
  width: 1px;
  height: 46px;
  background: linear-gradient(rgba(255,255,255,0.5), transparent);
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-dot.is-active { background: var(--gold); transform: scale(1.2); }

/* ---------- Spin Wheel ---------- */
.spin-section {
  background: var(--peach-soft);
}

.spin-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.spin-copy .eyebrow { display: block; margin-bottom: 10px; }
.spin-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.spin-copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.95rem;
}
.spin-copy li svg { width: 18px; height: 18px; color: var(--rose-dark); flex-shrink: 0; margin-top: 3px; }

.wheel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-holder {
  position: relative;
  width: 320px;
  height: 320px;
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 22px solid var(--gold);
  z-index: 5;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

#spin-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(43,18,16,0.28);
  transition: transform 4.5s cubic-bezier(0.17, 0.89, 0.32, 1);
  display: block;
}

.spin-btn {
  margin-top: 26px;
  padding: 15px 46px;
  border-radius: 6px;
  background: var(--rose);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(217,139,122,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.spin-btn:hover { background: var(--rose-dark); transform: translateY(-2px); }
.spin-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.spin-result {
  margin-top: 24px;
  min-height: 70px;
  text-align: center;
}
.spin-result .prize-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--maroon-800);
  margin-bottom: 10px;
}
.spin-terms {
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  max-width: 300px;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }

.divider-mark {
  width: 44px;
  height: 44px;
  margin: 18px auto;
  opacity: 0.85;
}

/* ---------- About / intro ---------- */
.about-block {
  background: var(--white);
  border-radius: 8px;
  padding: 60px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-figure {
  aspect-ratio: 4/5;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--maroon-800), var(--maroon-700));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(43,18,16,0.22);
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-copy .eyebrow { margin-bottom: 12px; display: block; }

/* ---------- Stats ---------- */
.stats-panel {
  background-image: linear-gradient(rgba(30,14,10,0.35), rgba(30,14,10,0.45)), url("images/hero/slide-2-deep-tissue.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 34px 16px;
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
}

.stat .stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.stat .stat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.15;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43,18,16,0.12);
}

.service-card.has-image {
  padding: 0 0 40px;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--peach);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Full, uncropped image display — box sizes to match the photo's own ratio */
.about-figure.show-full {
  aspect-ratio: auto;
}
.about-figure.show-full img {
  height: auto;
  object-fit: contain;
}
.service-card-image.show-full {
  aspect-ratio: auto;
}
.service-card-image.show-full img {
  height: auto;
  object-fit: contain;
}

.service-card.has-image .service-icon,
.service-card.has-image h3,
.service-card.has-image p {
  margin-left: 30px;
  margin-right: 30px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--rose-dark); }

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Branch / info card ---------- */
.branch-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.branch-info h3 { font-size: 1.8rem; }

.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--rose-dark); }
.info-row span { color: var(--ink); font-size: 0.96rem; font-family: 'Jost', sans-serif; }
.info-row .label { display:block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; font-family: 'Jost', sans-serif; }

.branch-actions { display: flex; flex-direction: column; gap: 14px; justify-content: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
  color: var(--white);
  border-radius: 10px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-900);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; }
.footer-brand .name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }

.fab-whatsapp { background: #25D366; color: #fff; }
.fab-call { background: var(--maroon-800); color: #fff; }

/* ---------- Inner page hero (About/Contact/Privacy) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-700));
  color: var(--white);
  text-align: center;
  padding: 90px 24px 70px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero .eyebrow { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Home page map (above footer) ---------- */
.home-map { padding: 60px 0; background: var(--peach-soft); }
.home-map .map-box { min-height: 360px; }
.home-map .map-box iframe { min-height: 360px; }

.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  background: var(--peach-soft);
  color: var(--ink);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.8rem; margin-top: 14px; color: var(--muted); }

/* ---------- Privacy / legal ---------- */
.legal-content {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 56px;
}
.legal-content h2 { font-size: 1.5rem; margin-top: 34px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink); font-size: 0.96rem; }
.legal-content ul { padding-left: 20px; }
.legal-content .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; padding: 36px; }
  .branch-card { grid-template-columns: 1fr; padding: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .spin-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .spin-copy ul { text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .header-inner { position: relative; justify-content: flex-end; min-height: 118px; }
  .brand-text { display: none; }
  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .brand img { width: 108px; height: 108px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open .nav-info { display: block; }
  .nav-info.nav-info-divider {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .nav-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--ink);
  }
  .nav-info-item svg { flex: none; color: var(--rose-dark); }
  a.nav-info-item:hover { color: var(--rose-dark); }
  .services-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stats-panel { padding: 14px; }
  .stat { padding: 24px 10px; }
  .stat .stat-title { font-size: 1.3rem; }
  .stat .stat-label { font-size: 0.72rem; }
  section { padding: 64px 0; }
  .about-block, .branch-card, .legal-content, .form-card, .cta-band { padding: 28px; }
  .wheel-holder { width: 250px; height: 250px; }
  .spin-btn { padding: 13px 36px; font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-heavy { opacity: 1 !important; transform: none !important; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-heavy {
  opacity: 0;
  transform: translateY(70px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-heavy.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

