*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brown:      #3b2a1a;
  --tan:        #8c6e52;
  --cream:      #f5f0e8;
  --warm-white: #fdfaf5;
  --border:     #d4c4a8;
  --accent:     #86432e;
  --text:       #2c1f0f;
  --text-mid:   #5a4535;
  --text-light: #786551;
  --navy:       #323b48;
  --footer-gutter: 40px;
  --diamond:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Cpath d='M4.5 0 9 4.5 4.5 9 0 4.5z' fill='%238c6e52'/%3E%3C/svg%3E");
  --radius:     4px;
  --radius-sm:  3px;
  /* Tiled fractal-noise paper grain. Self-contained data URI -- no
     external request. Kept at 6% so it reads as tooth, not dirt. */
  --paper:      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.06'/%3E%3C/svg%3E");
}
body { font-family: 'Source Sans 3', Georgia, sans-serif; background-color: var(--cream); background-image: var(--paper); color: var(--text); font-size: 16px; line-height: 1.65; }
a { color: var(--accent); }
img { max-width: 100%; }

/* Skip link -- first focusable element on every page, visible on focus */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--navy); color: #fff; padding: 12px 22px; font-size: 15px; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; outline: 3px solid #fff; outline-offset: -6px; }
#main-content:focus { outline: none; }

/* Header */
.site-header { background-color: var(--brown); background-image: var(--paper), linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.10)); color: #fff; position: relative; z-index: 10; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px 18px 212px; gap: 20px; flex-wrap: wrap; }
.logo-area { display: flex; align-items: center; gap: 16px; }
.site-badge { position: absolute; top: 12px; left: 40px; width: 150px; height: 150px; z-index: 11; display: block; }
.site-badge img { width: 100%; height: 100%; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,.45)); }
.site-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; line-height: 1.1; }
.header-info { text-align: right; font-size: 14px; color: #c9b89a; line-height: 1.85; }
.header-info strong { color: #fff; display: block; }
.header-info > span { display: block; }
.header-info .hi-sep { display: none; }
.ornament { text-align: center; background-image: linear-gradient(180deg, var(--tan), #7c6047); padding: 5px 40px; font-size: 14px; color: #fff; letter-spacing: .08em; }

/* Nav toggle (mobile) */
.nav-toggle { display: none; align-items: center; gap: 10px; min-height: 48px; padding: 10px 16px; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.nav-toggle:hover { background: rgba(255,255,255,.15); }
.nav-toggle:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.nav-toggle-bars { position: relative; display: block; width: 20px; height: 14px; flex: none; }
.nav-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav */
nav { background-image: linear-gradient(180deg, var(--accent), #77392a); display: flex; justify-content: center; flex-wrap: wrap; padding-left: 200px; }
nav a { color: #f0e0cc; text-decoration: none; padding: 11px 18px; font-size: 14px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; transition: background .15s; display: block; }
nav a:hover, nav a.active { background: var(--brown); color: #fff; }

/* Hero */
.hero { position: relative; min-height: clamp(420px, 56vh, 620px); display: flex; align-items: stretch; overflow: hidden; background-color: var(--brown); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center 30%; background-repeat: no-repeat; filter: sepia(20%) contrast(1.05); opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slide.is-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,18,6,.80) 0%, rgba(30,18,6,.36) 30%, rgba(30,18,6,.34) 52%, rgba(30,18,6,.78) 78%, rgba(30,18,6,.82) 100%); }
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 1180px; padding: 34px 48px 40px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; }
.hero-bottom { display: flex; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,44px); line-height: 1.12; }
.hero-content p { font-size: 16px; color: #d4b896; line-height: 1.65; flex: 0 1 560px; }
.btn-hero { display: inline-block; flex: none; background-image: linear-gradient(180deg, var(--tan), #7c6047); color: #fff; padding: 12px 28px; font-size: 14px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); box-shadow: 0 2px 6px rgba(0,0,0,.28); transition: background-image .15s, box-shadow .15s, transform .15s; }
.btn-hero:hover { background-image: linear-gradient(180deg, #7c6047, #6d523c); box-shadow: 0 4px 12px rgba(0,0,0,.34); transform: translateY(-1px); }

/* Simple page header (for inner pages without a photo hero) */
.page-hero { background-color: var(--brown); background-image: var(--paper), linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12)); color: #fff; padding: 44px 48px; }

/* Photo heroes on inner pages. The gradient is weighted left, where the text
   sits, so the photograph reveals itself to the right. It holds ~.84 through
   the text zone, which keeps the subtitle at 6.9:1 even over a bright sky or
   a pale document scan -- the worst case. Set --hero-photo per page. */
.page-hero.has-photo {
  background-image: var(--paper),
    linear-gradient(90deg, rgba(30,18,6,.95) 0%, rgba(30,18,6,.88) 50%, rgba(30,18,6,.60) 78%, rgba(30,18,6,.45) 100%),
    /* flat wash so a colour photograph reads with the monochrome ones */
    linear-gradient(rgba(58,38,18,.34), rgba(58,38,18,.34)),
    var(--hero-photo);
  background-size: auto, auto, cover, cover;
  background-position: center, center, center, var(--hero-pos, center 42%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  min-height: clamp(170px, 21vw, 230px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,38px); margin-bottom: 8px; }
.page-hero p { color: #d4b896; font-size: 15px; max-width: 640px; }

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; height: 160px; }
.gallery-strip a { overflow: hidden; display: block; position: relative; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: sepia(15%); transition: transform .3s, filter .3s; }
.gallery-strip a:hover img { transform: scale(1.06); filter: sepia(0%); }
/* The thumbnail whose photograph is currently in the hero: a soft inset
   shadow, so the tile reads as recessed with its centre clear rather than
   being framed. The other four are left alone rather than dimmed. */
.gallery-strip a.is-showing img { filter: sepia(0%); }
.gallery-strip a::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 0 rgba(30,18,6,0); transition: box-shadow .6s ease-in-out; }
.gallery-strip a.is-showing::after { box-shadow: inset 0 0 16px 4px rgba(30,18,6,.88); }
.gallery-strip-label { display: block; background-color: var(--navy); background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.10)); color: #c9b89a; text-align: center; padding: 10px 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background-color .15s, color .15s; }
.gallery-strip-label:hover { background-color: #3c4756; color: #fff; }
.gallery-strip-label:focus-visible { outline: 3px solid #fff; outline-offset: -4px; }

/* Mission band -- the society's own words, given a plaque treatment: paper
   ground, double-rule frame, tapering ornamental rules. The eyebrow uses a
   darkened tan because --tan itself clears 4.5:1 on warm-white by 0.01. */
.mission-band { background-color: var(--warm-white); background-image: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: clamp(24px,3vw,38px) 24px; text-align: center; }
.mission-inner { position: relative; max-width: 880px; margin: 0 auto; padding: clamp(18px,2.4vw,26px) clamp(18px,3vw,34px); border: 1px solid var(--border); }
.mission-inner::before { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(212,196,168,.5); pointer-events: none; }
.mission-inner::after { content: ''; position: absolute; inset: -4px; pointer-events: none; background-image: var(--diamond), var(--diamond), var(--diamond), var(--diamond); background-repeat: no-repeat; background-position: left top, right top, left bottom, right bottom; }
.mission-eyebrow { position: relative; font-size: 13px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: #7c6047; margin-bottom: 11px; }
.mission-band blockquote { position: relative; z-index: 1; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(19px,2.3vw,26px); line-height: 1.4; color: var(--brown); margin: 13px auto; }
.mission-cite { position: relative; margin-top: 13px; font-size: 13.5px; letter-spacing: .07em; text-transform: uppercase; }
.mission-cite a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(134,67,46,.4); padding-bottom: 2px; }
.mission-cite a:hover { border-bottom-color: var(--accent); }

/* Tapering rule with a centred diamond -- reusable ornament */
.ornate-rule { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--tan); }
.ornate-rule::before, .ornate-rule::after { content: ''; height: 1px; width: min(150px,26vw); }
.ornate-rule::before { background-image: linear-gradient(90deg, transparent, var(--tan)); }
.ornate-rule::after { background-image: linear-gradient(90deg, var(--tan), transparent); }
.ornate-rule span { font-size: 12px; line-height: 1; }

/* Main */
.main { max-width: 980px; margin: 0 auto; padding: 50px 24px; }
.main.narrow { max-width: 760px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--brown); margin-bottom: 8px; }
.section-rule { width: 64px; height: 2px; background-image: linear-gradient(90deg, transparent, var(--tan) 30%, var(--tan) 70%, transparent); margin: 0 auto 10px; }
.section-head p { color: var(--text-mid); font-size: 15px; }

/* Cards */
/* Four cards in a 220px track gave 3 + 1, leaving a conspicuous orphan once
   each card carried a photograph. A 300px floor resolves to 2x2. */
.cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(min(300px,100%),1fr)); gap: 22px; margin-bottom: 50px; }
.card { background-image: linear-gradient(180deg, rgba(255,253,250,.88), rgba(248,242,232,.70)); border: 1px solid rgba(212,196,168,.8); border-top: 3px solid var(--tan); border-radius: var(--radius); padding: 22px 20px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform .15s, box-shadow .15s, border-color .15s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,42,26,.16); border-color: rgba(140,110,82,.65); }
/* Skinny archival photo heading each card -- same idea as .history-card-img,
   shorter, and sepia-toned to match the gallery strip. */
.card-media { height: 104px; margin: -22px -20px 16px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--border); }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: sepia(18%); transition: transform .3s, filter .3s; }
.card:hover .card-media img { transform: scale(1.05); filter: sepia(0%); }
.card h2, .card h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--brown); margin-bottom: 5px; }
.card p { font-size: 15px; color: var(--text-mid); line-height: 1.55; }

/* Quote band */
.quote-band { background-color: var(--brown); background-image: var(--paper), linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.14)); color: #e8d5bc; padding: 42px 40px; text-align: center; margin-bottom: 50px; border-radius: var(--radius); }
.quote-band blockquote { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: #fff; margin-bottom: 10px; line-height: 1.4; max-width: 600px; margin: 0 auto 10px; }
.quote-band cite { font-size: 14.5px; color: #c9b89a; letter-spacing: .06em; text-transform: uppercase; }

/* Article pages (Local History) */
.article h2 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--accent); margin: 28px 0 10px; clear: both; }
.article h3 { font-family: 'Playfair Display', serif; font-size: 16.5px; color: var(--brown); margin: 22px 0 8px; clear: both; }
.article p { margin-bottom: 16px; line-height: 1.75; }
/* The global reset zeroes list margins and padding, so lists need these back
   -- including any the board creates with TinyMCE's list buttons. */
.article ul, .article ol { margin: 0 0 16px 1.5em; }
.article li { margin-bottom: 6px; line-height: 1.7; }
.article h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--brown); margin: 22px 0 8px; }
.article .credit { font-size: 14px; color: var(--text-light); margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--border); }
.text-image { display: block; float: right; margin: 0 0 16px 22px; max-width: 220px; text-align: center; }
.text-image img { display: block; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 6px; box-shadow: 0 2px 8px rgba(59,42,26,.10); }
.text-image small { display: block; font-size: 13.5px; color: var(--text-light); line-height: 1.4; }
.back-link { display: inline-block; margin-bottom: 24px; font-size: 14.5px; color: var(--accent); text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* Local History / Photo Galleries hub grids */
.history-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(min(240px,100%),1fr)); gap: 20px; }
.history-card { background-image: linear-gradient(180deg, rgba(255,253,250,.88), rgba(248,242,232,.70)); border: 1px solid rgba(212,196,168,.8); border-radius: var(--radius); text-decoration: none; color: inherit; display: block; overflow: hidden; transition: transform .15s, box-shadow .15s, border-color .15s; }
.history-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,42,26,.16); border-color: rgba(140,110,82,.65); }
.history-card-img { height: 150px; overflow: hidden; background: var(--border); }
.history-card-img img { width: 100%; height: 100%; object-fit: cover; }
.history-card-body { padding: 16px 18px; }
.history-card h2, .history-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--brown); margin-bottom: 5px; }
.history-card p { font-size: 15px; color: var(--text-mid); }

/* Forms (Contact) */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 14.5px; font-weight: 600; color: var(--brown); margin-bottom: 5px; }
.form-field input, .form-field textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; background: rgba(255,253,250,.75); box-shadow: inset 0 1px 3px rgba(59,42,26,.07); transition: border-color .15s, box-shadow .15s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--tan); box-shadow: inset 0 1px 3px rgba(59,42,26,.05), 0 0 0 3px rgba(140,110,82,.25); }
.btn-submit { background-image: linear-gradient(180deg, var(--tan), #7c6047); color: #fff; border: none; padding: 12px 28px; font-size: 14px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); box-shadow: 0 2px 6px rgba(0,0,0,.22); transition: background-image .15s, box-shadow .15s; }
.btn-submit:hover { background-image: linear-gradient(180deg, #7c6047, #6d523c); box-shadow: 0 4px 12px rgba(0,0,0,.28); }

/* News */
.news-item { background-image: linear-gradient(180deg, rgba(255,253,250,.88), rgba(248,242,232,.70)); border: 1px solid rgba(212,196,168,.8); border-left: 3px solid var(--tan); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 18px; }
.news-item .news-date { font-size: 13.5px; color: var(--text-light); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.news-item h2, .news-item h3 { font-family: 'Playfair Display', serif; color: var(--brown); font-size: 18px; margin-bottom: 8px; }

/* Footer */
footer { background-color: var(--text);
  /* .90 keeps body text at 6.6:1 even over a bright patch of the photograph */
  background-image: var(--paper),
    linear-gradient(rgba(44,31,15,.85), rgba(44,31,15,.85)),
    var(--footer-photo, none);
  background-size: auto, auto, cover;
  background-position: center, center, center 45%;
  background-repeat: repeat, no-repeat, no-repeat;
  color: #c9b89a; padding: 38px var(--footer-gutter) 0; font-size: 14.5px; line-height: 1.85; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 700px; margin: 0 auto 24px; }
.footer-grid strong { color: #fff; display: block; margin-bottom: 4px; font-size: 15px; }
.footer-grid a { color: #c9b89a; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom { background-color: var(--navy); background-image: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.08)); margin: 0 calc(-1 * var(--footer-gutter)); padding: 15px var(--footer-gutter); border-top: 1px solid #4a5563; text-align: center; font-size: 13.5px; color: #a0a8b0; }

@media (max-width: 1120px) {
  .site-badge { top: 10px; left: 24px; width: 112px; height: 112px; }
  .header-top { padding: 16px 24px 16px 152px; }
  nav { padding-left: 0; }
}

/* The eight nav items measure 860px at 14px type, so below ~940px they
   collapse behind the toggle rather than wrapping to a second row. Only hidden
   once JS has confirmed the toggle exists -- without scripting the list stays. */
@media (max-width: 940px) {
  /* Header goes compact: badge inline beside the wordmark, toggle on the
     right, visiting hours on a full-width row beneath. Order is set with flex
     `order` so the DOM keeps a sensible reading sequence for screen readers. */
  .site-badge { position: static; width: 80px; height: 80px; margin: 0; flex: none; }
  .site-badge img { filter: none; }
  :root { --header-gutter: 24px; }
  .header-top { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px; padding: 16px var(--header-gutter) 0; }
  .logo-area { order: 1; flex: 1 1 0; min-width: 0; gap: 14px; align-items: center; }
  .logo-area > div { min-width: 0; }
  .nav-toggle:not([hidden]) { display: inline-flex; order: 2; flex: none; }
  .header-info { order: 3; flex: 1 0 100%; text-align: center; font-size: 14px; line-height: 1.55;
    margin: 12px calc(-1 * var(--header-gutter)) 0;
    padding: 11px var(--header-gutter) 12px;
    background-color: var(--accent);
    background-image: linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.10));
    /* #c9b89a is only 3.78:1 on the accent; this tone is 5.69:1 */
    color: #f0e0cc; }
  .header-info strong { display: inline; }
  .header-info strong::after { content: ":"; }
  .header-info > span { display: inline; }
  .header-info .hi-sep { display: inline; margin: 0 .5em; font-size: .82em; color: rgba(240,224,204,.6); vertical-align: .06em; }
  .header-info .hi-city { display: none; }
  .ornament { padding: 6px 24px; }

  .hero { min-height: clamp(360px, 46vh, 460px); }
  .has-js-nav nav { display: none; }
  .has-js-nav nav.is-open { display: flex; flex-direction: column; }
  nav a { width: 100%; text-align: left; padding: 14px 20px; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,.18); }
  nav a:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  /* Gutters tighten to match .main's 24px, so every band lines up on the
     same edge instead of the hero and page-hero sitting 48px in. */
  :root { --footer-gutter: 24px; }
  .hero-content { padding: 32px 24px; }
  .page-hero { padding: 32px 24px; }
  .page-hero.has-photo { background-image: var(--paper), linear-gradient(180deg, rgba(30,18,6,.88), rgba(30,18,6,.92)), linear-gradient(rgba(58,38,18,.34), rgba(58,38,18,.34)), var(--hero-photo); background-size: auto, auto, cover, cover; min-height: 150px; }
  .quote-band { padding: 32px 24px; }
  /* Five thumbnails in a three-column grid leaves a dead cell. Two columns
     and drop the fifth -- it repeats the hero photograph anyway. */

  /* Phone: step the header down further. Layout itself is set at 900px. */
  .site-badge { width: 66px; height: 66px; }
  :root { --header-gutter: 20px; }
  .header-top { gap: 12px; padding: 14px var(--header-gutter) 0; }
  .logo-area { gap: 12px; }
  .site-name { font-size: 17px; line-height: 1.15; }
  .ornament { padding: 6px 20px; }

  .gallery-strip { grid-template-columns: repeat(2,1fr); height: auto; }
  .gallery-strip a { aspect-ratio: 1; }
  .gallery-strip a:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 5/2; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .text-image { float: none; margin: 0 auto 16px; }
}

/* Reduced motion -- vestibular sensitivity rises with age, and this site's
   audience skews older. Neutralises the hover lifts and image scales added
   in the surface-treatment pass. !important because the gallery grid's
   styles are echoed inline by php/gallery-functions.php, after this file. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover, .history-card:hover, .btn-hero:hover { transform: none !important; }
  .gallery-strip a:hover img, .tchs-gallery-grid a:hover img { transform: none !important; }
  .hero-slide { transition: none !important; }
}
