/* ============================================================
   Glow Garden Studio — stylesheet
   Light & airy cream/sage with deep-forest accents.
   Elegant high-contrast serif (Cormorant) + clean sans (Mulish).
   ============================================================ */

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

/* ---------- Tokens ---------- */
:root {
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Mulish', system-ui, -apple-system, sans-serif;

  /* raw palette — Sage & cream (default) */
  --paper:    #FBF9F2;
  --cream:    #F3EFE4;
  --cream-2:  #EAE4D5;
  --sage-soft:#DDE3D1;
  --sage:     #C8D0B9;
  --sage-deep:#AAB793;
  --forest:   #1B2620;
  --forest-2: #26342B;
  --forest-soft:#33463A;
  --olive:    #5E6E4C;
  --olive-2:  #4A5A3B;
  --ink:      #232820;
  --muted:    #6A6F5E;
  --muted-2:  #8C9079;
  --brass:    #A98D57;

  /* semantic (themeable via [data-palette]) */
  --bg:        var(--paper);
  --bg-band:   var(--sage-soft);
  --bg-dark:   var(--forest);
  --fg:        var(--ink);
  --fg-soft:   var(--muted);
  --fg-dark:   #E9EDDD;        /* text on dark */
  --fg-dark-soft: #AFBCA4;
  --accent:    var(--olive-2);
  --accent-fg: #F6F3E9;
  --ornament:  var(--olive);
  --line:      rgba(35,40,32,0.14);
  --line-dark: rgba(233,237,221,0.18);
  --card:      #FFFFFF;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --arch: 49% 49% 8px 8px / 40% 40% 2% 2%;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Palette variants ---------- */
:root[data-palette="forest"] {
  --bg: #EDEADF;
  --bg-band: #D2D9C5;
  --accent: #2D3A2E;
  --ornament: #3D4E3C;
  --fg: #1F271F;
}
:root[data-palette="stone"] {
  --paper: #F6F3EC;
  --bg: #F6F3EC;
  --cream: #EFEAE0;
  --bg-band: #E7E2D5;
  --sage-soft: #E7E2D5;
  --sage: #D8D2C2;
  --forest: #2B2A24;
  --bg-dark: #2B2A24;
  --accent: #6E6450;
  --olive: #7A6E54;
  --ornament: #8A7C5E;
  --fg: #2C2A22;
  --muted: #767060;
  --fg-dark: #EFEADF;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
.ph { background-position: center; background-size: cover; background-repeat: no-repeat; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; }
p { margin: 0; text-wrap: pretty; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ornament);
}
.serif { font-family: var(--serif); }
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 7.5vw, 6.6rem);
  line-height: .96;
  letter-spacing: -0.015em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.3vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.12;
}
.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.6;
  color: var(--fg);
  font-weight: 400;
}
.muted { color: var(--fg-soft); }
.italic { font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 10vw, 132px); }
.band { background: var(--bg-band); }
.dark { background: var(--bg-dark); color: var(--fg-dark); }
.dark .muted, .dark .lede { color: var(--fg-dark-soft); }
.dark .eyebrow { color: var(--sage-deep); }

/* divider ornament */
.orn {
  display: flex; align-items: center; gap: 14px;
  color: var(--ornament);
}
.orn::before, .orn::after {
  content: ""; height: 1px; flex: 1; background: currentColor; opacity: .4;
}
.orn .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.orn.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05em 1.7em;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { background: var(--forest); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-outline:hover { border-color: var(--fg); background: rgba(0,0,0,.03); }
.dark .btn-outline { color: var(--fg-dark); border-color: var(--line-dark); }
.dark .btn-outline:hover { border-color: var(--fg-dark); background: rgba(255,255,255,.06); }
.dark .btn-primary { background: var(--sage); color: var(--forest); }
.dark .btn-primary:hover { background: #fff; }
.btn .ic { width: 15px; height: 15px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .2s, gap .2s var(--ease);
}
.link-arrow:hover { border-color: currentColor; gap: .85em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand { white-space: nowrap; }
.brand .name { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; letter-spacing: .01em; }
.brand .sub { font-size: .58rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--ornament); margin-top: 5px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--fg);
  position: relative; padding-block: 4px; white-space: nowrap;
}
.nav-links a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px;
  background: var(--ornament); transition: right .25s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-tel { font-size: .82rem; font-weight: 600; letter-spacing: .03em; display:flex; align-items:center; gap:7px; white-space: nowrap; }
.nav-tel .ic { width: 15px; height: 15px; color: var(--ornament); }

/* mobile menu toggle */
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 4px; background: transparent; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-toggle span { display: block; width: 18px; height: 1.6px; background: var(--fg); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: 4px var(--gutter) 22px; background: var(--bg); border-top: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 15px 2px; font-family: var(--serif); font-size: 1.35rem; color: var(--fg); border-bottom: 1px solid var(--line); }
.mm-cta { display: flex; gap: 10px; margin-top: 20px; }
.mm-cta .btn { flex: 1; justify-content: center; padding-block: 1.1em; }

@media (max-width: 1040px) { .nav-tel span { display: none; } }
@media (max-width: 940px) { .nav-links { display: none; } .nav-toggle { display: flex; } }
@media (max-width: 600px) { .nav-book { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,88px) var(--gutter) clamp(60px,8vw,104px);
  display: grid; gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 22px; display:block; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent-word { font-style: italic; color: var(--olive); }
.hero-copy .lede { max-width: 30ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-by { margin-top: 26px; font-size: .82rem; letter-spacing: .03em; color: var(--fg-soft); display:flex; align-items:center; gap:10px; }
.hero-by .tick { width: 26px; height: 1px; background: var(--ornament); display:inline-block; }
.hero-visual { position: relative; }
.arch { border-radius: var(--arch); overflow: hidden; }
.hero-visual .ph { width: 100%; }
.hero-visual .frame-arch {
  position: relative; padding: 12px; background: var(--card);
  border-radius: calc(0px + 49% / 1) ;
}
.hero-tag {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  padding: 12px 18px; border-radius: 4px; box-shadow: 0 18px 40px -22px rgba(20,30,20,.5);
  font-size: .8rem; line-height: 1.3;
}
.hero-tag .big { font-family: var(--serif); font-size: 1.5rem; display:block; color: var(--accent); }
.hero-tag .lbl { font-size: .66rem; text-transform: uppercase; letter-spacing: .18em; color: var(--fg-soft); }

/* hero variant: arch (default) — two columns */
.hero[data-hero="arch"] .hero-inner { grid-template-columns: 1.05fr .95fr; }
.hero[data-hero="arch"] .hero-visual .stage { max-width: 440px; margin-inline: auto; }
.hero[data-hero="arch"] .hero-visual .ph { height: clamp(420px, 56vw, 600px); }
.hero[data-hero="arch"] .hero-img-wrap {
  border: 1px solid var(--line); padding: 14px; background: var(--card);
  border-radius: var(--arch); box-shadow: 0 40px 80px -50px rgba(20,30,20,.55);
}
.hero[data-hero="arch"] .hero-tag.t1 { left: -28px; bottom: 56px; }

/* hero variant: split — text left, full-bleed image right */
.hero[data-hero="split"] .hero-inner {
  grid-template-columns: 1fr 1fr; gap: 0; padding-right: 0; padding-block: 0;
  min-height: clamp(560px, 76vh, 760px);
}
.hero[data-hero="split"] .hero-copy { padding: clamp(40px,6vw,72px) clamp(36px,5vw,72px) clamp(40px,6vw,72px) 0; }
.hero[data-hero="split"] .hero-img-wrap { border: none; padding: 0; background: none; border-radius: 0; box-shadow:none; height: 100%; }
.hero[data-hero="split"] .arch { border-radius: 0; }
.hero[data-hero="split"] .hero-visual, .hero[data-hero="split"] .stage { height: 100%; }
.hero[data-hero="split"] .hero-visual .ph { height: 100%; min-height: 560px; }
.hero[data-hero="split"] .hero-tag { display: none; }

/* hero variant: immersive — dark full-bleed leaf hero, overlaid centered text */
.hero[data-hero="immersive"] { background: var(--bg-dark); color: var(--fg-dark); }
.hero[data-hero="immersive"] .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero[data-hero="immersive"] .hero-bg .ph { width: 100%; height: 100%; }
.hero[data-hero="immersive"] .hero-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,28,22,.55), rgba(20,28,22,.78)); }
.hero[data-hero="immersive"] .hero-inner {
  position: relative; z-index: 2; grid-template-columns: 1fr; justify-items: center; text-align: center;
  min-height: clamp(620px, 88vh, 880px); align-content: center;
  padding-block: clamp(80px,12vw,160px);
}
.hero[data-hero="immersive"] .hero-copy { max-width: 760px; }
.hero[data-hero="immersive"] .hero-copy .lede { max-width: 52ch; margin-inline: auto; }
.hero[data-hero="immersive"] .eyebrow { color: var(--sage-deep); }
.hero[data-hero="immersive"] h1 .accent-word { color: var(--sage); }
.hero[data-hero="immersive"] .hero-by { color: var(--fg-dark-soft); justify-content: center; }
.hero[data-hero="immersive"] .hero-actions { justify-content: center; }
.hero[data-hero="immersive"] .hero-visual { display: none; }
.hero[data-hero="immersive"] .btn-outline { color: var(--fg-dark); border-color: var(--line-dark); }
.hero[data-hero="immersive"] .btn-primary { background: var(--sage); color: var(--forest); }

.hero:not([data-hero="immersive"]) .hero-bg { display: none; }
@media (max-width: 860px) {
  .hero[data-hero="arch"] .hero-inner,
  .hero[data-hero="split"] .hero-inner { grid-template-columns: 1fr; }
  .hero[data-hero="split"] .hero-inner { min-height: 0; }
  .hero[data-hero="split"] .hero-copy { padding: 48px var(--gutter); }
  .hero[data-hero="split"] .hero-visual .ph { min-height: 420px; height: 420px; }
  .hero-visual { order: -1; }
  .hero[data-hero="arch"] .hero-tag.t1 { left: 8px; }
}
@media (max-width: 600px) {
  .hero[data-hero="arch"] .hero-tag { display: none; }
  .hero[data-hero="arch"] .hero-visual .ph { height: clamp(300px, 64vw, 400px); }
  .hero[data-hero="arch"] .hero-img-wrap { padding: 10px; }
  .display { font-size: clamp(2.8rem, 13.5vw, 4rem); }
  .hero-actions .btn, .visit-cta .actions .btn { flex: 1; justify-content: center; }
  .hero-actions { gap: 10px; }
  body { font-size: 16px; }
}

/* ---------- Mission strip ---------- */
.mission { text-align: center; }
.mission .h2 { max-width: 18ch; margin: 22px auto 0; }
.mission .label { letter-spacing: .3em; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,32px); margin-top: 52px; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px;
  padding: 0 0 30px; overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.svc:hover { box-shadow: 0 30px 60px -42px rgba(20,30,20,.5); }
.svc .ph { width: 100%; height: 210px; }
.svc-body { padding: 26px 26px 0; }
.svc h3 { margin-bottom: 6px; }
.svc .price { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); display:block; margin-bottom: 14px; }
.svc .price small { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-soft); margin-left: 6px; }
.svc p { font-size: .96rem; color: var(--fg-soft); margin-bottom: 20px; }
.svc .link-arrow { margin: auto 26px 0; }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- Section header ---------- */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: 18px; }
.sec-head .h2 + p { margin-top: 20px; }

/* ---------- Two-col feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.feature.rev .feature-visual { order: -1; }
.feature-visual .ph { width: 100%; height: clamp(360px, 42vw, 500px); }
.feature-visual .arch { box-shadow: 0 40px 80px -54px rgba(20,30,20,.5); border: 1px solid var(--line); background: var(--card); }
.dark .feature-visual .arch { border-color: var(--line-dark); background: rgba(255,255,255,.04); }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature.rev .feature-visual { order: 0; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,28px); margin-top: 52px; }
.step { padding-top: 22px; border-top: 1px solid var(--line); }
.dark .step { border-color: var(--line-dark); }
.step .num { font-family: var(--serif); font-size: 1.05rem; color: var(--ornament); letter-spacing: .1em; }
.step h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: 12px 0 8px; }
.step p { font-size: .92rem; color: var(--fg-soft); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Benefits list ---------- */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 48px; margin-top: 20px; }
.benefit { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.dark .benefit { border-color: var(--line-dark); }
.benefit .mk { color: var(--ornament); font-size: 1rem; flex: none; }
.benefit b { font-weight: 600; }
.benefit span { color: var(--fg-soft); font-size: .95rem; }
@media (max-width: 620px) { .benefits { grid-template-columns: 1fr; } }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--fg); background: color-mix(in srgb, var(--bg-band) 60%, transparent);
}
.dark .chip { border-color: var(--line-dark); color: var(--fg-dark); background: rgba(255,255,255,.05); }

/* callout / note */
.note {
  border-left: 2px solid var(--ornament); padding: 4px 0 4px 22px; margin-top: 28px;
  font-size: .95rem; color: var(--fg-soft);
}
.note b { color: var(--fg); font-weight: 600; }

/* price band */
.priceline { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.priceline .amt { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--accent); line-height: 1; }
.dark .priceline .amt { color: var(--sage); }
.priceline .per { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-soft); }
.dark .priceline .per { color: var(--fg-dark-soft); }

/* ---------- Coming soon ---------- */
.soon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); margin-top: 48px; }
.soon {
  border: 1px solid var(--line); border-radius: 6px; padding: 32px 28px;
  background: var(--card);
}
.soon .tag { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ornament); }
.soon h4 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; margin: 16px 0 8px; }
.soon p { font-size: .92rem; color: var(--fg-soft); }
@media (max-width: 760px) { .soon-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline:auto; } }

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,5vw,80px); align-items: start; }
.hours { margin-top: 30px; border-top: 1px solid var(--line-dark); }
.dark .hours-row { display:flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.hours-row .day { font-family: var(--serif); font-size: 1.25rem; }
.hours-row .time { font-size: .9rem; letter-spacing: .04em; color: var(--fg-dark-soft); }
.visit-cta { background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 8px; padding: clamp(28px,3.5vw,44px); }
.visit-cta .big-tel { font-family: var(--serif); font-size: clamp(2rem,3.4vw,2.8rem); display:block; margin: 10px 0 6px; }
.visit-cta .actions { display:flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.visit-meta { display:flex; gap: 10px; align-items:center; color: var(--fg-dark-soft); font-size: .85rem; margin-top: 22px; }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Subscribe ---------- */
.subscribe { text-align: center; }
.sub-form { display: flex; gap: 10px; max-width: 480px; margin: 30px auto 0; }
.sub-form input {
  flex: 1; font-family: var(--sans); font-size: .95rem; padding: 14px 18px;
  border: 1px solid var(--line); border-radius: 3px; background: var(--card); color: var(--fg);
}
.sub-form input:focus { outline: none; border-color: var(--ornament); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ornament) 18%, transparent); }
@media (max-width: 480px) { .sub-form { flex-direction: column; } }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: var(--fg-dark); padding-block: clamp(48px,6vw,72px); }
.footer-top { display:flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer .name { font-family: var(--serif); font-size: 2rem; }
.footer .sub { font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: var(--sage-deep); margin-top: 6px; }
.footer-links { display:flex; gap: 40px; flex-wrap: wrap; }
.footer-col h5 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-dark-soft); margin: 0 0 14px; font-weight: 600; }
.footer-col a, .footer-col p { display:block; font-size: .9rem; color: var(--fg-dark); margin-bottom: 9px; opacity: .85; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--line-dark); display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: var(--fg-dark-soft); }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
