@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf6f2;
  --card: #ffffff;
  --card-soft: #fdf9f6;
  --border: #ece1d8;
  --border-strong: #ddc9b6;
  --text: #221a1d;
  --text-dim: #8a7680;
  --accent: #a8763e;
  --accent-soft: #c79a5f;
  --rose: #b6707c;
  --rose-soft: #f3e3e2;
  --ink: #221a1d;
  --shadow-color: 30, 20, 12;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.14;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--accent);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: #f3e9dd; font-size: 12.5px; text-align: center;
  padding: 9px 16px; letter-spacing: 0.02em;
}
.topbar a { color: var(--accent-soft); }

/* ---------- Header ---------- */
.site-header {
  background: rgba(250,246,242,0.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 28px;
  color: var(--text); letter-spacing: 0.03em;
}
.logo span { color: var(--accent); font-style: italic; }
nav.main-nav ul { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
nav.main-nav a {
  color: var(--text); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
}
nav.main-nav a:hover { color: var(--accent); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-strong); color: var(--text);
  font-size: 19px; padding: 5px 11px; cursor: pointer; border-radius: 4px;
}
@media (max-width: 760px) {
  nav.main-nav { display: none; width: 100%; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 2px; padding: 14px 0; }
  nav.main-nav a { display: block; padding: 11px 4px; border-top: 1px solid var(--border); }
  .nav-toggle { display: inline-block; }
  .nav-row { flex-wrap: wrap; }
}

/* ---------- Profile bar (Your Beauty Edit) ---------- */
.profile-bar { background: var(--rose-soft); border-bottom: 1px solid var(--border); font-size: 13.5px; }
.profile-bar-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; flex-wrap: wrap; }
.profile-chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--card);
  border: 1px solid var(--border-strong); padding: 6px 14px; color: var(--text); font-weight: 500;
  border-radius: 999px;
}
.profile-link { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.08em; }
.profile-panel {
  display: none; background: var(--card); border: 1px solid var(--border); padding: 24px; margin: 14px 0 20px;
  border-radius: 6px; box-shadow: 0 14px 34px -18px rgba(var(--shadow-color),0.28);
}
.profile-panel.open { display: block; }
.pfields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px; }
@media (max-width: 700px) { .pfields { grid-template-columns: 1fr; } }
.psel { display: flex; flex-direction: column; gap: 7px; }
.psel label { font-size: 11px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.psel select {
  padding: 12px 13px; border: 1px solid var(--border-strong); background: var(--card-soft);
  color: var(--text); font-size: 14.5px; border-radius: 4px; font-family: 'Inter', sans-serif;
}
.pactions { display: flex; gap: 10px; flex-wrap: wrap; }
.pnote { font-size: 12.5px; color: var(--text-dim); margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fffaf3; font-weight: 600; padding: 14px 26px; border: none; cursor: pointer; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.09em; border-radius: 4px;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 24px -10px rgba(168,118,62,0.55);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(168,118,62,0.62); }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 8px 20px -14px rgba(168,118,62,0.4); }
.btn-rose { background: linear-gradient(135deg, var(--rose), #9c5560); box-shadow: 0 10px 24px -10px rgba(182,112,124,0.5); }
.btn-small { padding: 10px 18px; font-size: 11px; }

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-tight { padding: 40px 0; }
h2.section-title { font-size: clamp(28px, 3.6vw, 38px); margin: 0 0 10px; font-weight: 600; }
p.section-sub { color: var(--text-dim); max-width: 620px; margin: 0 0 36px; font-size: 16px; }

/* ---------- Grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Category cards ---------- */
.cat-card {
  background: var(--card); border: 1px solid var(--border); padding: 30px; border-radius: 6px;
  position: relative; overflow: hidden;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s cubic-bezier(.2,.8,.2,1), border-color .18s ease;
  box-shadow: 0 2px 10px -6px rgba(var(--shadow-color),0.12);
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(var(--shadow-color),0.28); border-color: var(--border-strong); }
.cat-card.recommended { border-color: var(--accent); box-shadow: 0 20px 36px -18px rgba(168,118,62,0.32); }
.cat-card.recommended::before { transform: scaleX(1); }
.cat-card h3 { font-size: 21px; margin: 0 0 9px; font-weight: 600; }
.cat-card p { color: var(--text-dim); font-size: 14.5px; margin: 0 0 20px; min-height: 42px; }

/* ---------- Category photos (opt-in real photography: homepage card strip
   + category-page banner). Categories without a photo keep the icon-badge
   design above untouched — see CATEGORY_PHOTOS in build_site.py. ---------- */
.cat-photo {
  height: 170px;
  margin: -30px -30px 18px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-card:hover .cat-photo { filter: brightness(1.03); }
.cat-banner {
  height: 260px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(var(--shadow-color),0.28);
  background-size: cover;
  background-position: center;
}
@media (max-width: 700px) {
  .cat-photo { height: 140px; }
  .cat-banner { height: 180px; }
}
.cat-img-skincare { background-image: url('../images/categories/skincare.jpg'); }
.cat-img-makeup { background-image: url('../images/categories/makeup.jpg'); }
.cat-img-fragrance { background-image: url('../images/categories/fragrance.jpg'); }
.cat-img-bath-body { background-image: url('../images/categories/bath-body.jpg'); }
.cat-img-tools-devices { background-image: url('../images/categories/tools-devices.jpg'); }
.cat-img-haircare { background-image: url('../images/categories/haircare.jpg'); }
.recommend-tag {
  display: inline-block; background: var(--rose-soft); color: #7a4048;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 11px; margin-bottom: 12px; border-radius: 999px;
}

/* ---------- Product cards ---------- */
.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  box-shadow: 0 2px 10px -6px rgba(var(--shadow-color),0.12);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 26px 42px -20px rgba(var(--shadow-color),0.26); }
.product-card .swatch {
  height: 108px; position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f6dfb8 0%, var(--accent-soft) 46%, var(--rose) 100%);
  border-bottom: 1px solid var(--border);
}
.product-card .swatch-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.86); color: var(--accent); border-radius: 50%;
  box-shadow: 0 8px 18px -8px rgba(60,30,10,0.35);
}
.product-card .swatch-icon .icon-svg { width: 26px; height: 26px; }
.product-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card .kicker {
  color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; margin-bottom: 9px;
}
.product-card h3 { font-size: 21px; margin: 0 0 10px; font-weight: 600; }
.product-card p { color: var(--text-dim); font-size: 14.5px; margin: 0 0 15px; }
.product-card ul { margin: 0 0 18px; }
.product-card li { font-size: 13.5px; color: var(--text-dim); padding-left: 17px; position: relative; margin-bottom: 7px; }
.product-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--accent); }
.cta-row { display: flex; align-items: center; gap: 12px; margin-top: auto; flex-wrap: wrap; }
.price-note { font-size: 12px; color: var(--text-dim); font-style: italic; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 66px; overflow: hidden; }
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, #faf6f2 0%, #faf6f2 18%, rgba(250,246,242,0.55) 40%, rgba(250,246,242,0.05) 60%, transparent 100%),
    radial-gradient(680px 420px at 82% -8%, rgba(199,154,95,0.16), transparent 60%),
    radial-gradient(560px 420px at 8% 106%, rgba(182,112,124,0.14), transparent 60%),
    url('../images/model/hero-portrait-wide.jpg');
  /* The photo layer uses a fixed width (not `cover`): this section's height
     varies with content (hero-badges, wrapped copy, etc.), and `cover`
     forced the image to rescale against that variable height — fine for
     the old abstract product texture, but it blew a face up to an
     unpredictable size that collided with the headline. A fixed width
     anchored to the top-right keeps the face at a constant, correct scale
     regardless of how tall the section ends up. */
  background-size: cover, auto, auto, 1300px auto;
  background-position: center, center, center, right top;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  /* Smaller fixed width so the face doesn't dominate laptop-width viewports. */
  .hero-mesh { background-size: cover, auto, auto, 900px auto; }
}
@media (max-width: 900px) {
  /* The fixed-width photo doesn't have room to breathe at phone/tablet
     widths — rather than shrink it until it's a postage stamp, drop it and
     keep the hero to the same soft gradient + accent look it had before
     any photo was added. Text stays fully legible at every width. */
  .hero-mesh {
    background:
      linear-gradient(180deg, #faf6f2 0%, #faf6f2 55%, rgba(250,246,242,0.9) 100%),
      radial-gradient(420px 300px at 90% -10%, rgba(199,154,95,0.18), transparent 60%),
      radial-gradient(380px 300px at 10% 100%, rgba(182,112,124,0.16), transparent 60%);
    background-size: cover, auto, auto;
    background-position: center, center, center;
    background-repeat: no-repeat;
  }
}
.hero-motif { position: absolute; z-index: 0; pointer-events: none; opacity: 0.55; }
.hero-motif-sunburst { top: -60px; right: -40px; width: 480px; height: 480px; }
.hero-motif-bloom { bottom: -70px; left: -60px; width: 340px; height: 340px; opacity: 0.4; }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 700px; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin: 0 0 22px; font-weight: 600; letter-spacing: 0; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-rule { width: 84px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); margin: 0 0 26px; }
.hero .lede { font-size: 18px; color: var(--text-dim); max-width: 560px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.65); border: 1px solid var(--border-strong); color: var(--text);
  font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 14px; border-radius: 999px;
}
.badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- Section divider ---------- */
.section-divider { display: block; line-height: 0; position: relative; z-index: 1; }
.section-divider svg { display: block; width: 100%; height: 46px; }

/* ---------- Section texture ---------- */
.texture-dots {
  background-image: radial-gradient(rgba(168,118,62,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
}
.texture-hairline {
  background-image: repeating-linear-gradient(120deg, rgba(168,118,62,0.06) 0px, rgba(168,118,62,0.06) 1px, transparent 1px, transparent 30px);
}

/* ---------- Trust strip ---------- */
.trust-bar { background: var(--ink); color: #f3e9dd; position: relative; overflow: hidden; }
.trust-bar::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(243,227,226,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.trust-bar .wrap { position: relative; z-index: 1; }
.trust-bar .grid-4 { padding: 38px 0; }
.trust-item { text-align: center; }
.trust-item .num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 34px; color: var(--accent-soft); }
.trust-item .label { font-size: 12px; color: #cdbfae; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Icon badges (category SVG icon system) ---------- */
.icon-badge {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  background: var(--card-soft); border: 1px solid var(--accent-soft); border-radius: 50%;
  color: var(--accent); margin-bottom: 16px;
}
.icon-svg { width: 26px; height: 26px; display: block; }
.footer-cat-icon {
  display: inline-flex; width: 18px; height: 18px; margin-right: 8px; vertical-align: -4px;
  color: var(--accent-soft); border: 1px solid rgba(199,154,95,0.4); border-radius: 50%; padding: 3px;
}
.footer-cat-icon svg { width: 100%; height: 100%; }

/* ---------- Blog ---------- */
.blog-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; border-radius: 6px;
  box-shadow: 0 2px 10px -6px rgba(var(--shadow-color),0.12);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(var(--shadow-color),0.24); }
.blog-card .thumb {
  height: 128px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rose-soft), #f6e9d8); border-bottom: 1px solid var(--border);
}
.blog-card .thumb .icon-badge { margin-bottom: 0; background: rgba(255,255,255,0.75); }
.blog-card .content { padding: 22px; }
.blog-card .tag { color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card h3 { font-size: 19px; margin: 0 0 9px; font-weight: 600; }
.blog-card p { color: var(--text-dim); font-size: 14px; margin: 0 0 12px; }
.read-more { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; }

/* ---------- Blog photos (opt-in real photography: card thumbnail + article
   banner). Posts without a photo keep the gradient icon-badge thumb above
   untouched — see BLOG_PHOTOS in build_site.py. IMPORTANT: the base
   `.blog-card .thumb { background: linear-gradient(...) }` rule above sets
   background-image via shorthand at specificity (0,2,0); a separately
   declared `.blog-img-<slug> { background-image: url(...) }` at (0,1,0)
   would lose to it regardless of source order, so the photo rule here is
   combined into a same-context selector at (0,3,0) to reliably win. */
.blog-card .thumb.blog-img-retinol-vs-retinal {
  background-size: cover; background-position: center;
  background-image: url('../images/blog/retinol-vs-retinal.jpg');
}
.blog-card .thumb.blog-img-layering-actives-skin-barrier {
  background-size: cover; background-position: center;
  background-image: url('../images/blog/layering-actives-skin-barrier.jpg');
}
.blog-card .thumb.blog-img-facial-rollers-gua-sha {
  background-size: cover; background-position: center;
  background-image: url('../images/blog/facial-rollers-gua-sha.jpg');
}
.blog-card .thumb.blog-img-clean-beauty-labels {
  background-size: cover; background-position: center;
  background-image: url('../images/blog/clean-beauty-labels.jpg');
}
.blog-card .thumb.blog-img-fragrance-that-lasts {
  background-size: cover; background-position: center;
  background-image: url('../images/blog/fragrance-that-lasts.jpg');
}
.post-banner {
  height: 280px; margin-bottom: 30px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 14px 34px -18px rgba(var(--shadow-color),0.28);
  background-size: cover; background-position: center;
}
.post-banner.blog-img-retinol-vs-retinal { background-image: url('../images/blog/retinol-vs-retinal.jpg'); }
.post-banner.blog-img-layering-actives-skin-barrier { background-image: url('../images/blog/layering-actives-skin-barrier.jpg'); }
.post-banner.blog-img-facial-rollers-gua-sha { background-image: url('../images/blog/facial-rollers-gua-sha.jpg'); }
.post-banner.blog-img-clean-beauty-labels { background-image: url('../images/blog/clean-beauty-labels.jpg'); }
.post-banner.blog-img-fragrance-that-lasts { background-image: url('../images/blog/fragrance-that-lasts.jpg'); }
@media (max-width: 700px) { .post-banner { height: 190px; } }
article.post h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 0 0 12px; font-weight: 600; }
article.post .meta { color: var(--text-dim); font-size: 13px; margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.06em; }
article.post h2 { font-size: 25px; margin: 38px 0 14px; font-weight: 600; }
article.post p { font-size: 16px; margin: 0 0 16px; }
article.post ul { margin: 0 0 18px; padding-left: 20px; }
article.post li { list-style: disc; margin-bottom: 8px; font-size: 15.5px; }
.callout {
  background: var(--card-soft); border-left: 2px solid var(--accent); padding: 18px 22px; margin: 28px 0;
  font-size: 15px; border-radius: 0 6px 6px 0;
}

/* ---------- Disclosure / FAQ ---------- */
.disclosure-banner {
  background: var(--card-soft); border: 1px solid var(--border-strong); padding: 18px 22px;
  font-size: 14px; color: var(--text-dim); border-radius: 6px;
}
.faq-block { margin-top: 52px; max-width: 760px; }
.faq-item { border-top: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; margin: 0 0 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.faq-item p { color: var(--text-dim); font-size: 15px; margin: 0; }
.crumb { font-size: 12.5px; color: var(--text-dim); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.crumb a { color: var(--text-dim); }

/* ---------- Simple pages ---------- */
.simple-page { max-width: 760px; }
.simple-page h1 { margin: 0 0 20px; font-weight: 600; }
.simple-page h2 { font-size: 22px; margin: 32px 0 10px; font-weight: 600; }
.simple-page p { font-size: 15.5px; color: var(--text-dim); margin: 0 0 14px; }
.simple-page ul { padding-left: 20px; margin: 0 0 16px; }
.simple-page li { list-style: disc; color: var(--text-dim); font-size: 15px; margin-bottom: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d8c9bd; margin-top: 40px; border-top: 1px solid #3a2f2a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 54px 0 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; color: #f3e9dd; font-size: 17px; margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.site-footer p { font-size: 13.5px; color: #b8a89a; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer a { color: #d8c9bd; font-size: 13.5px; }
.site-footer a:hover { color: var(--accent-soft); }
.footer-bottom {
  border-top: 1px solid #3a2f2a; padding: 22px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: 12px; color: #93826f;
}

/* ---------- Scroll-reveal (progressive enhancement, JS-gated) ---------- */
html.js-anim .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s cubic-bezier(.2,.8,.2,1), transform .5s cubic-bezier(.2,.8,.2,1);
}
html.js-anim .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}
