/* ==========================================================================
   Trailhead Bicycle Co - hand-authored, token-driven design system
   No framework, no build step, no preprocessor. This is showcase build 3 of
   4 - palette, type, radius, logo, and page structure were all redecided
   from scratch rather than reused from builds 1-2. See README.md "Design
   notes" and Builder Man/memory/showcase-builds-batch.md.
   Both colour schemes verified programmatically for WCAG AA contrast - see
   README.md "Verified in QA".
   ========================================================================== */

/* -------------------------------------------------------------------------
   Tokens
   ------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Brand: deep forest green (fixed dark surface) + neutral cool paper +
     a single amber accent - the "Forest" palette family, distinct from
     Fieldstone's muted olive/brick and Northbound's monochrome/cobalt. */
  --ink: #1A1F19;
  --paper: #EFF2F1;
  --paper-2: #FFFFFF;
  --paper-3: #E2E7E2;
  --muted: #565C54;
  --line: #D3D9D2;

  /* Amber needs TWO distinct values, not one: bright enough for a filled
     button background (paired with dark ink text), but a bright gold fails
     WCAG badly as text on light paper (verified 1.91:1 - see
     lessons-learned.md pattern on contrast being computed, not eyeballed).
     amber-ink is the darker, text-safe variant used for the eyebrow/accent
     text; amber-600/700 are for filled surfaces only. */
  --amber-600: #E2A63B;
  --amber-700: #C48A24;
  --amber-ink: #8A5A0F;

  /* Fixed button-foreground - NOT tied to --ink, which flips to near-white
     in dark mode. Amber stays a mid-bright gold in both schemes, so it
     always needs dark text on it, in both schemes - see lessons-learned.md
     "one colour token doing two jobs cannot survive a light/dark flip". */
  --btn-primary-bg: var(--amber-600);
  --btn-primary-bg-hover: var(--amber-700);
  --btn-primary-fg: #1A1F19;
  --btn-secondary-bg: transparent;
  --btn-secondary-border: var(--ink);
  --btn-secondary-fg: var(--ink);
  --btn-secondary-bg-hover: rgba(26, 31, 25, 0.06);

  --shadow-soft: 0 16px 36px -20px rgba(10, 16, 11, 0.35);
  --shadow-lift: 0 24px 50px -18px rgba(10, 16, 11, 0.4);

  /* A medium rounded system, distinct from Fieldstone's soft 8/14/22 and
     Northbound's sharp 2/4 - plus a clipped-corner "trail blaze" cut used
     on trail-route cards specifically (see .trail-card). */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  /* Fixed, scheme-independent - --ink/--paper flip meaning in dark mode, so
     anything that must stay a dark surface regardless of scheme (footer,
     header mark, about-section backdrop) needs its own pair. */
  --surface-dark: #16281E;
  --on-dark: #EFF2F1;

  --font-display: "Big Shoulders Display", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #EDEFEC;
    --paper: #141613;
    --paper-2: #1D211C;
    --paper-3: #242923;
    --muted: #A7ACA3;
    --line: #33382F;
    --amber-600: #E8B355;
    --amber-700: #F0C377;
    --amber-ink: #F0B429;

    --btn-primary-bg: var(--amber-600);
    --btn-primary-bg-hover: var(--amber-700);
    --btn-primary-fg: #1A1F19;
    --btn-secondary-border: var(--ink);
    --btn-secondary-fg: var(--ink);
    --btn-secondary-bg-hover: rgba(237, 239, 236, 0.08);

    --shadow-soft: 0 16px 36px -18px rgba(0, 0, 0, 0.55);
    --shadow-lift: 0 24px 50px -16px rgba(0, 0, 0, 0.6);
  }
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; text-wrap: balance; text-transform: uppercase; letter-spacing: 0.01em; }
p { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; color: var(--amber-ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--surface-dark); color: var(--on-dark);
  padding: 12px 18px; border-radius: var(--radius-sm);
  z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

::selection { background: rgba(226, 166, 59, 0.28); color: var(--ink); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-fg); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--btn-primary-bg-hover); transform: translateY(-2px); }
.btn-secondary { background: var(--btn-secondary-bg); color: var(--btn-secondary-fg); border-color: var(--btn-secondary-border); }
.btn-secondary:hover { background: var(--btn-secondary-bg-hover); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn:focus-visible { outline: 2.5px solid var(--amber-ink); outline-offset: 3px; }

.logomark { display: block; flex-shrink: 0; }
.logomark-ring { stroke: var(--ink); }
.logomark-peaks { fill: var(--amber-600); }
.logomark-sun { fill: var(--amber-ink); }
.footer-brand .logomark-ring { stroke: var(--on-dark); }
.footer-brand .logomark-sun { fill: var(--surface-dark); }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 242, 241, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(20, 22, 19, 0.9); }
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }

.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark-text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); text-transform: uppercase; }
.wordmark-text span { color: var(--amber-ink); }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 24px; }
.main-nav a { font-size: 0.92rem; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .15s ease; }
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; font-size: 0.95rem; font-weight: 700; color: var(--ink); text-decoration: none; }

@media (max-width: 480px) {
  .header-actions .btn-primary { display: none; }
}

.menu-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: transparent; border: 1.5px solid var(--line); color: var(--ink);
}
.menu-toggle-bars { width: 20px; height: 14px; position: relative; }
.menu-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; }
.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 6px; }
.menu-toggle-bars span:nth-child(3) { top: 12px; }

.mobile-nav { display: none; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 10px 24px 20px; display: flex; flex-direction: column; }
.mobile-nav a:not(.btn) { display: block; padding: 13px 4px; font-size: 1.02rem; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav-cta { margin-top: 14px; }

@media (min-width: 1040px) {
  .main-nav { display: block; }
  .header-phone { display: inline; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .wordmark-text { white-space: nowrap; }
}

/* -------------------------------------------------------------------------
   Eyebrow / section heading
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-ink);
  font-family: var(--font-body);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--amber-ink); border-radius: 2px; }
/* On a fixed dark surface (.rentals-band), amber-ink is deliberately too
   dark to read as text (it's the light-mode-safe variant) - use the
   brighter amber-600 instead, same reasoning as Fieldstone's
   --accent-on-dark token for its dark process band. */
.rentals-band .eyebrow { color: var(--amber-600); }
.rentals-band .eyebrow::before { background: var(--amber-600); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-top: 12px; }
.section-head p:not(.eyebrow) { margin-top: 14px; color: var(--muted); font-size: 1.05rem; font-family: var(--font-body); text-transform: none; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.on-dark h2 { color: var(--on-dark); }
.section-head.on-dark p:not(.eyebrow) { color: rgba(239, 242, 241, 0.72); }

section { padding: 88px 0; }
@media (max-width: 640px) { section { padding: 60px 0; } }

/* -------------------------------------------------------------------------
   Hero - full-bleed photo with a scrim overlay and text on top. A third
   composition, distinct from both Fieldstone's split-with-photo and
   Northbound's poster-type-plus-banner.
   ------------------------------------------------------------------------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: clip; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,14,10,0.88) 0%, rgba(10,14,10,0.55) 45%, rgba(10,14,10,0.25) 75%, rgba(10,14,10,0.1) 100%); }
/* padding-top/bottom only, not the shorthand: "padding: 64px 0 56px" reset
   the left/right sides to 0, wiping out .container's own 24px horizontal
   padding (both are single-class selectors of equal specificity, and this
   rule comes later in the cascade) - the hero text was rendering flush
   against the viewport edge until this was caught and fixed. */
.hero-content { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 56px; width: 100%; }
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: var(--amber-600); }
.hero-copy .eyebrow::before { background: var(--amber-600); }
.hero-copy h1 { font-size: clamp(2.6rem, 6.6vw, 4.4rem); color: #FFFFFF; }
.hero-copy h1 em { color: var(--amber-600); }
.hero-copy p:not(.eyebrow) { margin-top: 20px; font-size: 1.12rem; color: rgba(255,255,255,0.85); max-width: 56ch; font-family: var(--font-body); }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn-secondary { border-color: #FFFFFF; color: #FFFFFF; }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.14); }
.hero-badge {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill); padding: 10px 18px;
  color: #FFFFFF; font-size: 0.88rem; font-family: var(--font-body);
}
.hero-badge strong { color: var(--amber-600); }

@media (max-width: 640px) { .hero { min-height: 560px; } }

/* -------------------------------------------------------------------------
   Pricing / tune-up tiers - a 3-column comparison table, a pattern neither
   Fieldstone nor Northbound used.
   ------------------------------------------------------------------------- */
.pricing-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.price-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 26px; display: flex; flex-direction: column;
}
.price-card.is-popular { border-color: var(--amber-600); border-width: 2px; position: relative; }
.price-card-badge {
  position: absolute; top: -14px; left: 26px;
  background: var(--amber-600); color: var(--btn-primary-fg);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.price-card h3 { font-size: 1.4rem; }
.price-card .price { margin-top: 10px; font-family: var(--font-display); font-size: 2.2rem; color: var(--amber-ink); }
.price-card .price span { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); text-transform: none; }
.price-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { font-size: 0.95rem; color: var(--muted); padding-left: 24px; position: relative; }
.price-card li::before { content: "+"; position: absolute; left: 0; color: var(--amber-ink); font-weight: 700; }
.price-card .btn { margin-top: 24px; }

@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* -------------------------------------------------------------------------
   Rentals - compact info strip, not a card grid or feature row.
   ------------------------------------------------------------------------- */
.rentals-band { background: var(--surface-dark); color: var(--on-dark); }
.rentals-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.rentals-list { display: flex; flex-direction: column; }
.rental-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-top: 1px solid rgba(239,242,241,0.14); gap: 16px; }
.rentals-list .rental-row:last-child { border-bottom: 1px solid rgba(239,242,241,0.14); }
.rentals-heading { color: var(--on-dark); }
.rentals-subcopy { margin-top: 14px; color: rgba(239,242,241,0.72); font-family: var(--font-body); text-transform: none; }
.rental-row span:first-child { font-weight: 600; }
.rental-row span:last-child { font-family: var(--font-display); color: var(--amber-600); font-size: 1.2rem; white-space: nowrap; }
@media (min-width: 860px) { .rentals-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

/* -------------------------------------------------------------------------
   Trails - route cards with one clipped corner (a "trail blaze" cut), a
   distinct shape motif instead of just another radius value.
   ------------------------------------------------------------------------- */
.trail-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.trail-card {
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 24px 22px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.trail-card h3 { font-size: 1.2rem; }
.trail-card p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; font-family: var(--font-body); text-transform: none; }
.trail-meta { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.trail-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 10px; border-radius: var(--radius-sm); background: var(--paper-3); color: var(--muted); }
@media (min-width: 760px) { .trail-grid { grid-template-columns: repeat(3, 1fr); } }

/* -------------------------------------------------------------------------
   Meet the mechanic - about/team block, a section type neither build 1 nor
   build 2 included.
   ------------------------------------------------------------------------- */
.about-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
.about-photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; max-width: 380px; box-shadow: var(--shadow-soft); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.4rem); }
.about-copy p { margin-top: 16px; color: var(--muted); font-size: 1.02rem; font-family: var(--font-body); text-transform: none; }
.about-copy p + p { margin-top: 14px; }
@media (min-width: 780px) { .about-grid { grid-template-columns: 0.8fr 1.2fr; } }

/* -------------------------------------------------------------------------
   Gallery - uniform square grid (Instagram-style), a third distinct
   pattern from Fieldstone's filmstrip and Northbound's masonry.
   ------------------------------------------------------------------------- */
.square-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.square-grid-item { aspect-ratio: 1 / 1; overflow: hidden; }
.square-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.square-grid-item:hover img { transform: scale(1.05); }
@media (min-width: 700px) { .square-grid { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------------------
   Quote wall - plain 2-column stacked list, no cards, no slider, no
   marquee.
   ------------------------------------------------------------------------- */
.quote-wall { columns: 1; column-gap: 40px; }
.quote-wall-item { break-inside: avoid; padding: 24px 0; border-top: 1px solid var(--line); }
.quote-wall-item:last-child { padding-bottom: 0; }
.quote-wall-item blockquote { font-size: 1.05rem; font-family: var(--font-body); }
.quote-wall-item footer { margin-top: 12px; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
@media (min-width: 760px) { .quote-wall { columns: 2; } }

/* -------------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-weight: 700; font-size: 1.02rem; font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: transform .2s ease; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--ink); }
.faq-plus::before { left: 6px; right: 6px; top: 12px; height: 2px; }
.faq-plus::after { top: 6px; bottom: 6px; left: 12px; width: 2px; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 22px; color: var(--muted); max-width: 62ch; }

/* -------------------------------------------------------------------------
   Contact - a compact hours/location strip above a single repair-request
   form, a fourth distinct composition (not Fieldstone's split-with-form,
   not Northbound's dedicated hours section plus separate centered form).
   ------------------------------------------------------------------------- */
.contact-band { background: var(--paper-2); border-top: 1px solid var(--line); }
.contact-strip {
  display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: center;
  padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line);
  text-align: center;
}
.contact-strip-item strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.contact-strip-item span { font-size: 0.88rem; color: var(--muted); }
.contact-form-wrap { max-width: 640px; margin: 0 auto; }

.field-group { margin-bottom: 18px; }
.field-label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 7px; }
.field {
  width: 100%; padding: 13px 15px; font: inherit;
  border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink);
}
.field:focus { outline: none; border-color: var(--amber-ink); box-shadow: 0 0 0 3px rgba(138, 90, 15, 0.16); }
textarea.field { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-error { display: none; color: #B23A2E; font-size: 0.84rem; margin-top: 6px; }
.field[aria-invalid="true"] { border-color: #B23A2E; }
.field[aria-invalid="true"] + .field-error { display: block; }

.form-status { margin-top: 16px; font-size: 0.92rem; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(138, 90, 15, 0.1); color: var(--amber-ink); }
.form-status.is-error { background: rgba(178, 58, 46, 0.1); color: #B23A2E; }

.captcha-wrap { min-height: 65px; margin: 6px 0 18px; }
.captcha-wrap:empty { display: none; margin: 0; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--surface-dark); color: rgba(239, 242, 241, 0.82); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer-brand .wordmark-text, .footer-brand .wordmark-text span { color: var(--on-dark); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 34ch; color: rgba(239, 242, 241, 0.65); font-family: var(--font-body); text-transform: none; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(239, 242, 241, 0.5); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(239, 242, 241, 0.82); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(239, 242, 241, 0.14); font-size: 0.84rem; color: rgba(239, 242, 241, 0.55); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* -------------------------------------------------------------------------
   Scroll reveals - IntersectionObserver driven, no scroll listeners
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .square-grid-item img { transition: none !important; }
}
