/* =========================================================
   Schoonheidssalon Mooi — Apeldoorn
   Demo website by KJW Marketing
   ========================================================= */

:root {
  /* Palette */
  --cream:        #F5EDE4;
  --cream-deep:   #EBE0D2;
  --cream-warm:   #FAF5EE;
  --sage:         #A8B5A0;
  --sage-deep:    #8A9882;
  --sage-soft:    #C9D2C3;
  --gold:         #B89A6E;
  --gold-deep:    #9D8259;
  --gold-soft:    #D4B98F;
  --ink:          #3A3330;
  --ink-soft:     #6B635F;
  --ink-mute:     #9A928D;
  --line:         #E4D9C9;
  --white:        #FFFFFF;

  /* Typography */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --r-1:  4px;
  --r-2:  8px;
  --r-3:  12px;
  --r-4:  16px;
  --r-5:  24px;
  --r-6:  32px;
  --r-7:  48px;
  --r-8:  64px;
  --r-9:  96px;
  --r-10: 128px;

  --radius:    14px;
  --radius-lg: 24px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(58, 51, 48, 0.04), 0 1px 3px rgba(58, 51, 48, 0.06);
  --shadow-md: 0 4px 12px rgba(58, 51, 48, 0.06), 0 12px 28px rgba(58, 51, 48, 0.08);
  --shadow-lg: 0 8px 24px rgba(58, 51, 48, 0.08), 0 24px 60px rgba(58, 51, 48, 0.12);

  --nav-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { max-width: 760px; }
.container--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--r-7);
  align-items: center;
}
@media (min-width: 880px) {
  .container--split { grid-template-columns: 1fr 1fr; gap: var(--r-9); }
}

.section {
  padding-block: var(--r-9);
}
@media (max-width: 720px) {
  .section { padding-block: var(--r-7); }
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--r-8);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
  margin: var(--r-3) 0 var(--r-4);
}
.section__lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section__head--center .section__lede { margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0;
}

.grid { display: grid; gap: var(--r-5); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .25s, color .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn--lg { padding: 18px 32px; font-size: 1rem; }
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: var(--white); transform: translateY(-1px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--r-6);
  padding: 0 var(--r-5);
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(58,51,48,0.06);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav__menu {
  display: none;
  gap: var(--r-6);
  margin-inline: auto;
}
.nav__menu a {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.nav__menu a:hover { color: var(--gold-deep); }
.nav__menu a:hover::after { width: 100%; left: 0; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--r-4);
  margin-left: auto;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink);
}
.nav__phone:hover { color: var(--gold-deep); }
.nav__cta { padding: 12px 22px; font-size: 0.9rem; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 980px) {
  .nav { padding: 0 var(--r-7); gap: var(--r-7); }
  .nav__menu { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* mobile menu open */
.nav__menu.is-open {
  display: flex;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  flex-direction: column;
  background: var(--cream-warm);
  padding: var(--r-6);
  gap: var(--r-5);
  font-size: 1.6rem;
  font-family: var(--serif);
}
.nav__menu.is-open a { font-size: inherit; padding: 8px 0; border-bottom: 1px solid var(--line); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 130% 140% at 100% 50%,
      rgba(245, 237, 228, 0.85) 0%,
      rgba(245, 237, 228, 0.70) 25%,
      rgba(245, 237, 228, 0.45) 55%,
      rgba(245, 237, 228, 0.15) 90%,
      rgba(245, 237, 228, 0.05) 100%
    ),
    linear-gradient(180deg, rgba(245, 237, 228, 0.25) 0%, rgba(245, 237, 228, 0) 28%, rgba(58, 51, 48, 0.08) 100%);
}

.hero__inner::before {
  content: "";
  position: absolute;
  inset: -40% -30% -40% -40%;
  background: radial-gradient(
    ellipse 65% 55% at 35% 50%,
    rgba(245, 237, 228, 0.45) 0%,
    rgba(245, 237, 228, 0.20) 50%,
    rgba(245, 237, 228, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.hero__inner {
  position: relative;
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  max-width: 700px;
  padding: var(--r-9) 0;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 var(--r-4);
}
.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: var(--r-5);
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: balance;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.hero__sub {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: var(--r-6);
  text-wrap: pretty;
  opacity: 0.82;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--r-3);
  margin-bottom: var(--r-7);
}
.hero__trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--r-3) var(--r-5);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg { color: var(--sage-deep); flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: var(--r-5);
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.2px solid var(--ink-soft);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  opacity: 0.6;
}
.hero__scroll span {
  width: 2px; height: 7px;
  background: var(--ink-soft);
  border-radius: 2px;
  animation: scroll-hint 1.6s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* ---------- DIENSTEN ---------- */
.section--diensten {
  background: var(--cream-warm);
}
.services { margin-bottom: var(--r-6); }
.service {
  background: var(--white);
  padding: var(--r-6) var(--r-5);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.service__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--sage-deep);
  border-radius: 50%;
  margin-bottom: var(--r-4);
}
.service h3 {
  font-size: 1.5rem;
  margin-bottom: var(--r-2);
}
.service p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: var(--r-4);
}
.service__meta {
  display: flex;
  align-items: baseline;
  gap: var(--r-3);
  padding-top: var(--r-3);
  border-top: 1px solid var(--line);
  width: 100%;
  margin-bottom: var(--r-3);
}
.service__price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.service__dur {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-left: auto;
}
.service__link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s, gap .2s;
}
.service__link:hover { color: var(--gold-deep); }

.services__foot {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.services__foot a {
  color: var(--gold-deep);
  font-weight: 500;
  margin-left: 6px;
  white-space: nowrap;
}
.services__foot a:hover { text-decoration: underline; }

/* ---------- OVER LISA ---------- */
.section--over {
  background: var(--cream);
}
.over__media {
  position: relative;
}
.over__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.over__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sage-deep);
  color: var(--white);
  padding: var(--r-5);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  box-shadow: var(--shadow-md);
}
.over__badge-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
}
.over__badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0.92;
}
.over__badge-label em {
  font-style: normal;
  display: block;
  opacity: 0.6;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.over__body .eyebrow { color: var(--gold-deep); }
.over__body p { color: var(--ink-soft); font-size: 1.05rem; }

.usps {
  list-style: none;
  padding: 0;
  margin: var(--r-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--r-4);
}
.usps li {
  display: flex;
  gap: var(--r-3);
  align-items: flex-start;
}
.usps svg {
  color: var(--sage-deep);
  flex-shrink: 0;
  margin-top: 4px;
}
.usps strong { color: var(--ink); font-weight: 600; }
.usps li > div { color: var(--ink-soft); }

/* ---------- GALERIJ ---------- */
.section--galerij { background: var(--cream-warm); }
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: var(--r-3);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: var(--r-4); }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.12) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }

@media (min-width: 720px) {
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ---------- REVIEWS ---------- */
.section--reviews {
  background: var(--cream);
  position: relative;
}
.demo-tag em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed var(--ink-mute);
}
.review {
  background: var(--white);
  padding: var(--r-6);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--r-4);
  border: 1px solid var(--line);
}
.review__stars {
  display: flex; gap: 2px;
  color: var(--gold);
}
.review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--r-3);
  border-top: 1px solid var(--line);
}
.review__name {
  font-weight: 600;
  font-size: 0.95rem;
}
.review__tag {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

/* ---------- CONTACT / PRAKTISCH ---------- */
.section--contact {
  background: var(--cream-warm);
}
.contact__col .eyebrow { color: var(--gold-deep); }
.contact__col p { color: var(--ink-soft); }

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: var(--r-3);
  margin-block: var(--r-5);
}
.contact__btn {
  display: flex;
  align-items: center;
  gap: var(--r-4);
  padding: var(--r-4) var(--r-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.contact__btn:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact__btn svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}
.contact__btn--wa svg { color: #25D366; }
.contact__btn--ghost svg { color: var(--sage-deep); }
.contact__btn div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__btn-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.contact__btn-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.contact__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: var(--r-4);
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px var(--r-4);
  margin: var(--r-5) 0;
  font-size: 0.95rem;
}
.hours dt {
  color: var(--ink);
  font-weight: 500;
  padding: 4px 0;
}
.hours dd {
  margin: 0;
  color: var(--ink-soft);
  padding: 4px 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours dd em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.hours__closed { color: var(--ink-mute) !important; }

.map {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/11;
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.85);
}

/* ---------- FAQ ---------- */
.section--faq {
  background: var(--cream);
}
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--r-3);
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open] { border-color: var(--gold-soft); }

.faq__item summary {
  list-style: none;
  padding: var(--r-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--r-4);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }

.faq__body {
  padding: 0 var(--r-5) var(--r-5);
  color: var(--ink-soft);
}
.faq__body a { color: var(--gold-deep); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: var(--r-8);
  font-size: 0.9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--r-6);
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--r-7); }
}
.footer__brand .nav__logo-mark { color: var(--white); }
.footer__brand .nav__logo-sub { color: rgba(255,255,255,0.5); }
.footer__addr { margin-top: var(--r-4); }
.footer__addr em { font-style: normal; color: rgba(255,255,255,0.4); font-size: 0.78rem; }

.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--r-3);
  font-weight: 600;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a { color: rgba(255,255,255,0.7); transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__bottom {
  margin-top: var(--r-7);
  padding: var(--r-4) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--r-3);
}
.footer__credit a { color: var(--gold-soft); }
.footer__credit a:hover { color: var(--white); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(58, 51, 48, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--r-5);
  opacity: 0;
  transition: opacity .3s;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: var(--r-4);
  right: var(--r-4);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ---------- REVEAL / SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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