/* ============================================================
   Al Shanab Gents Salon — barbershop site
   Direction: teal (real signage) + copper + warm cream.
   Type: Bricolage Grotesque (display) · Manrope (UI) · Space Mono (labels)
   ============================================================ */

:root {
  /* surfaces */
  --bg: #F4EEE3;          /* warm cream page */
  --surface: #FBF7EF;     /* card / raised */
  --surface-2: #EFE7D7;   /* tint band */
  --ink: #1A1816;         /* near-black warm */
  --ink-2: #38332D;
  --muted: #6E665B;
  --line: #E0D6C4;        /* hairlines */
  --line-strong: #CDC0AA;

  /* brand */
  --teal: #1C8488;        /* accessible teal for text/links */
  --teal-bright: #46B2B4; /* signage seafoam — fills, large */
  --teal-soft: #CDE7E5;   /* tint */
  --copper: #B0683A;      /* warm accent */
  --copper-soft: #E7C9AE;

  /* dark band */
  --dark: #1C2422;        /* deep charcoal-green */
  --dark-2: #243130;
  --on-dark: #F1ECE2;
  --on-dark-muted: #A9B0AC;

  --focus: #1C8488;

  --font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(26,24,22,.06), 0 4px 14px rgba(26,24,22,.05);
  --shadow-md: 0 6px 22px rgba(26,24,22,.10), 0 2px 6px rgba(26,24,22,.06);
  --maxw: 1180px;
  --pad: clamp(18px, 5vw, 40px);
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--teal-bright); color: #fff; }
:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; margin: 0; letter-spacing: -.015em; color: var(--ink); }
.display {
  font-size: clamp(2.55rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .96;
}
.h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); font-weight: 700; letter-spacing: -.022em; }
.h3 { font-size: clamp(1.25rem, 3.4vw, 1.6rem); font-weight: 700; }
p { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 2.6vw, 1.3rem); color: var(--ink-2); line-height: 1.5; }

.kicker {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal-bright);
  display: inline-block;
}
.kicker.on-dark { color: var(--teal-bright); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(54px, 10vw, 110px); }
.band-dark { background: var(--dark); color: var(--on-dark); }
.band-dark h2, .band-dark h3 { color: var(--on-dark); }
.band-tint { background: var(--surface-2); }
.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(22px, 4vw, 40px); }
.section-index { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; color: var(--muted); }
.band-dark .section-index { color: var(--on-dark-muted); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 22px;
  min-height: 50px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover { background: var(--teal); color: #fff; }
.btn-teal { background: var(--teal-bright); color: #10302F; border-color: var(--teal-bright); }
.btn-teal:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--surface); }
.btn-ghost.on-dark { color: var(--on-dark); border-color: rgba(241,236,226,.32); }
.btn-ghost.on-dark:hover { background: var(--on-dark); color: var(--dark); border-color: var(--on-dark); }
.btn-block { width: 100%; }
.btn-lg { min-height: 56px; padding: 16px 28px; font-size: 1.04rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 94%, transparent); }
.header-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden; flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; letter-spacing: -.02em; color: var(--ink); }
.brand-sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a { font-size: .94rem; font-weight: 600; color: var(--ink-2); text-decoration: none; padding: 8px 13px; border-radius: 999px; transition: background .18s, color .18s; }
.nav-desktop a:hover { background: var(--surface-2); color: var(--ink); }
.header-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(28px, 6vw, 56px); padding-bottom: 0; position: relative; }
.hero-grid { display: grid; gap: clamp(26px, 5vw, 48px); align-items: end; }
.hero-copy { max-width: 640px; }
.hero-wordmark { width: min(260px, 64vw); height: auto; margin-bottom: 22px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal); }
.hero .lead { margin-bottom: 26px; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.fact-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .02em;
  background: var(--surface); border: 1px solid var(--line);
  padding: 9px 13px; border-radius: 999px; color: var(--ink-2);
}
.chip svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.chip strong { font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.chip .stars { color: var(--copper); letter-spacing: .04em; }

/* hero media — storefront + chair rail */
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .photo-tag {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(20,24,22,.62); color: #fff; padding: 7px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- chair rail (signature motif) ---------- */
.rail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; border-top: 1.5px solid var(--ink); padding-top: 12px; margin-bottom: 14px; }
.rail-head .label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.rail-head .hint { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); }
.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
  scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
.rail-item {
  scroll-snap-align: start; position: relative;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 3; background: var(--surface-2);
}
.rail-item img { width: 100%; height: 100%; object-fit: cover; }
.rail-item .idx {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em;
  background: rgba(20,24,22,.6); color: #fff; padding: 4px 8px; border-radius: 6px; backdrop-filter: blur(3px);
}

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.svc-card:hover { border-color: var(--teal-bright); box-shadow: var(--shadow-sm); }
.svc-num { font-family: var(--font-mono); font-size: .72rem; color: var(--teal); letter-spacing: .12em; }
.svc-card h3 { font-size: 1.32rem; }
.svc-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.svc-tag { font-size: .76rem; font-weight: 600; color: var(--ink-2); background: var(--surface-2); border-radius: 999px; padding: 4px 10px; }
.svc-note { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); margin-top: 20px; display: flex; align-items: center; gap: 8px; }
.svc-note svg { width: 16px; height: 16px; color: var(--copper); flex: none; }

/* ---------- about / ambience (dark band) ---------- */
.about-grid { display: grid; gap: clamp(28px, 5vw, 44px); align-items: center; }
.about-copy p { color: var(--on-dark-muted); }
.about-copy p strong { color: var(--on-dark); }
.stat-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(241,236,226,.16); }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--teal-bright); letter-spacing: -.02em; }
.stat .lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-media figure { margin: 0; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(241,236,226,.14); aspect-ratio: 3/4; }
.about-media figure:first-child { grid-row: span 2; aspect-ratio: 3/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-sm); border: 1px solid var(--line); cursor: pointer; aspect-ratio: 1/1; background: var(--surface-2); }
.gallery-grid figure.tall { aspect-ratio: 1/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px 12px 9px;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(18,22,20,.78), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-grid figure:hover figcaption, .gallery-grid figure:focus-visible figcaption { opacity: 1; }

/* ---------- visit / map ---------- */
.visit-grid { display: grid; gap: 20px; }
.visit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(22px, 4vw, 32px); }
.info-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-ico { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; }
.info-ico svg { width: 19px; height: 19px; }
.info-list .t { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-list .v { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.info-list a.v { color: var(--ink); text-decoration: none; }
.info-list a.v:hover { color: var(--teal); }
.visit-cta { display: flex; flex-direction: column; gap: 10px; }

.map-placeholder {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line-strong); min-height: 280px;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(28,132,136,.05) 18px 19px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(176,104,58,.05) 18px 19px),
    var(--surface);
  display: grid; place-items: center; text-align: center; padding: 28px;
}
.map-placeholder .mp-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 320px; }
.map-pin { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.map-pin svg { width: 22px; height: 22px; color: var(--copper); }
.map-placeholder .mp-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.map-placeholder .mp-addr { font-weight: 700; color: var(--ink); }

/* ---------- enquiry form ---------- */
.form-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; min-height: 50px; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,132,136,.14); }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 15px; min-height: 42px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .16s;
}
.choice input:checked + span { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.choice input:focus-visible + span { outline: 2.5px solid var(--focus); outline-offset: 2px; }
.form-note { font-size: .8rem; color: var(--muted); margin: 4px 0 0; }
.form-success {
  display: none; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 12px;
  background: var(--teal-soft); border: 1px solid var(--teal-bright); color: #134B4D; font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); padding-block: clamp(48px, 7vw, 76px) 120px; }
.footer-top { display: grid; gap: 32px; }
.footer-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-mark { width: 44px; height: 44px; border-radius: 11px; overflow: hidden; flex: none; }
.footer-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-lockup-text { display: flex; flex-direction: column; line-height: 1; }
.footer-lockup-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: var(--on-dark); }
.footer-lockup-sub { font-family: var(--font-mono); font-weight: 400; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 6px; }
.footer-brand p { color: var(--on-dark-muted); max-width: 34ch; font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 400; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: var(--on-dark); text-decoration: none; font-size: .95rem; margin-bottom: 9px; transition: color .18s; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(241,236,226,.14); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--on-dark-muted); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(241,236,226,.22); display: grid; place-items: center; color: var(--on-dark); transition: all .18s; }
.social-row a:hover { background: var(--teal-bright); color: var(--dark); border-color: var(--teal-bright); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- mobile bottom action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mobile-bar.has-wa { grid-template-columns: repeat(4, 1fr); }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-decoration: none; color: var(--ink-2); font-size: .68rem; font-weight: 700;
  padding: 7px 4px; border-radius: 12px; min-height: 50px; transition: background .15s, color .15s;
}
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar a.primary { color: var(--teal); }
.mobile-bar a:active { background: var(--surface-2); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid figure.tall { grid-row: span 2; aspect-ratio: 1/2; }
  .rail { grid-auto-columns: 46%; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 880px) {
  :root { --header-h: 76px; }
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 76px; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero-photo { aspect-ratio: 5 / 6; }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card.feature { grid-column: span 1; }

  .about-grid { grid-template-columns: 1.1fr .9fr; }
  .about-media { grid-template-columns: 1fr 1fr; }

  .visit-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .map-placeholder { min-height: 100%; }

  .rail { grid-auto-columns: 30%; }
  .footer-top { grid-template-columns: 1.2fr 1.4fr; }
}

@media (min-width: 1080px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(16,19,17,.86); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .22s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(94vw, 1000px); max-height: 82vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.lb-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.3); color: #fff; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; line-height: 1; }
.lb-close:hover { background: rgba(255,255,255,.16); }

/* entrance animation — transform-only so content is NEVER hidden even if a
   throttled/offscreen renderer freezes the transition. Opacity stays 1. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: transform .65s cubic-bezier(.2,.7,.2,1); will-change: transform; }
  .reveal:not(.in) { transform: translateY(20px); }
  .reveal.in { transform: none; }
}
