:root {

/* -----------------------------------
   COLOUR
----------------------------------- */

--ink: #101b20;
--deep: #071217;
--sea: #0d3540;
--sea-light: #175867;

--cream: #f3eee3;
--paper: #faf8f2;
--sand: #d7c49c;

--gold: #c4a45c;
--gold-light: #dfc681;

--white: #ffffff;
--muted: #6f7979;

/* -----------------------------------
   TYPOGRAPHY
----------------------------------- */

--serif: "Libre Baskerville", Georgia, serif;
--display: "Cinzel", Georgia, serif;
--sans: "Inter", Arial, sans-serif;

/* -----------------------------------
   LAYOUT
----------------------------------- */

--max: 1700px;
--reading: 760px;
--wide: 1500px;

--gutter: clamp(24px, 5vw, 90px);

/* -----------------------------------
   SPACING
----------------------------------- */

--section-space: clamp(90px, 9vw, 170px);

}

/* =========================================================
GLOBAL
========================================================= */

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scroll-padding-top: 90px;
}

body {
margin: 0;

background: var(--paper);
color: var(--ink);

font-family: var(--sans);
font-size: 16px;
line-height: 1.8;

-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;

}

::selection {
background: var(--gold);
color: var(--deep);
}

a {
color: inherit;
text-decoration: none;
}

img {
display: block;
max-width: 100%;
height: auto;
}

button,
a {
-webkit-tap-highlight-color: transparent;
}

:focus-visible {
outline: 2px solid var(--gold);
outline-offset: 4px;
}

/* =========================================================
TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
margin-top: 0;

font-family: var(--display);
font-weight: 600;
line-height: 1.12;

color: inherit;

}

h1 {
font-size: clamp(3.25rem, 6vw, 7rem);
letter-spacing: -0.035em;
}

h2 {
font-size: clamp(2.5rem, 4.5vw, 5rem);
letter-spacing: -0.025em;
}

h3 {
font-size: clamp(1.15rem, 1.4vw, 1.4rem);
}

p {
margin-top: 0;
margin-bottom: 1.45rem;
}

.eyebrow {
display: block;

margin-bottom: 18px;

font-family: var(--sans);
font-size: 0.68rem;
font-weight: 700;
line-height: 1.4;

letter-spacing: 0.22em;
text-transform: uppercase;

color: var(--gold-light);

}

.eyebrow.dark {
color: #8d7337;
}

.lead {
font-family: var(--serif);
font-size: clamp(1.15rem, 1.5vw, 1.35rem);
line-height: 1.8;
}

.large {
font-family: var(--serif);
font-size: clamp(1.25rem, 1.8vw, 1.5rem);
line-height: 1.8;
}

/* =========================================================
READING TYPOGRAPHY
========================================================= */

/*
Keep ordinary reading text comfortably narrow.
Very wide text columns become tiring online.
*/

.content-reading {
width: min(var(--reading), calc(100% - 48px));
margin-right: auto;
margin-left: auto;
}

.content-reading p,
.feature-body p,
.opening-text p,
.essay-section p {
max-width: 72ch;
}

.content-reading p {
font-family: var(--serif);
font-size: 1.05rem;
line-height: 1.9;
}

.content-reading h2 {
margin-bottom: 60px;
}

.content-reading h3 {
margin-top: 3rem;
margin-bottom: 1rem;
}

/* =========================================================
SHARED LAYOUT
========================================================= */

.content-wide {
width: min(var(--max), calc(100% - (var(--gutter) * 2)));
margin-right: auto;
margin-left: auto;
}

.content-wide-narrow {
width: min(var(--wide), calc(100% - (var(--gutter) * 2)));
margin-right: auto;
margin-left: auto;
}

.section-number {
display: block;

margin-bottom: 12px;

font-family: var(--display);
font-size: 0.72rem;

letter-spacing: 0.15em;

color: var(--gold);

}

.section-number.light {
color: var(--gold-light);
}

/* =========================================================
NAVIGATION
========================================================= */

.navigation {
position: absolute;
z-index: 20;

top: 0;
left: 0;
right: 0;

display: flex;
align-items: center;
justify-content: space-between;

width: 100%;
max-width: var(--max);

margin: auto;

padding: 26px var(--gutter);

color: white;

transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;

}

.navigation.scrolled {
position: fixed;

max-width: none;

padding-top: 17px;
padding-bottom: 17px;

background: rgba(7, 18, 23, 0.96);

box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);

}

.brand {
flex-shrink: 0;

font-family: var(--display);
font-size: 0.95rem;

letter-spacing: 0.16em;

color: var(--gold-light);

}

.nav-links {
display: flex;
align-items: center;

gap: clamp(18px, 2vw, 34px);

font-size: 0.68rem;
line-height: 1.2;

letter-spacing: 0.1em;
text-transform: uppercase;

}

.nav-links a {
position: relative;

padding: 8px 0;

opacity: 0.78;

transition:
    opacity 0.2s ease,
    color 0.2s ease;

}

.nav-links a::after {
content: "";

position: absolute;

left: 0;
right: 100%;
bottom: 0;

height: 1px;

background: var(--gold-light);

transition: right 0.25s ease;

}

.nav-links a:hover {
opacity: 1;
color: var(--gold-light);
}

.nav-links a:hover::after {
right: 0;
}

/* =========================================================
HERO
========================================================= */

.hero {
position: relative;

min-height: max(720px, 100vh);

display: flex;
align-items: center;

overflow: hidden;

color: white;

background:
    linear-gradient(
        110deg,
        rgba(4, 15, 20, 0.97),
        rgba(4, 24, 30, 0.72),
        rgba(4, 20, 25, 0.42)
    ),
    radial-gradient(
        circle at 70% 35%,
        #22606b,
        #06151b 70%
    );

}

.hero::before {
content: "";

position: absolute;
inset: 0;

opacity: 0.25;

background:
    radial-gradient(
        circle at 25% 75%,
        rgba(195, 164, 92, 0.35),
        transparent 30%
    ),
    linear-gradient(
        135deg,
        transparent 40%,
        rgba(255,255,255,0.03) 40%,
        rgba(255,255,255,0.03) 41%,
        transparent 41%
    );

pointer-events: none;

}

.hero-content {
position: relative;
z-index: 5;

width: min(1100px, calc(100% - (var(--gutter) * 2)));

margin-right: auto;
margin-left: auto;

padding-top: 8vh;

}

.hero h1 {
max-width: 1050px;

margin: 18px 0 28px;

}

.hero h1 em {
font-family: var(--serif);
font-weight: 400;

color: var(--gold-light);

}

.hero-intro {
max-width: 680px;

margin-bottom: 0;

font-family: var(--serif);
font-size: clamp(1.05rem, 1.4vw, 1.2rem);
line-height: 1.85;

color: rgba(255,255,255,0.84);

}

.hero-button {
display: inline-flex;
align-items: center;
gap: 24px;

margin-top: 28px;
padding: 14px 21px;

border: 1px solid rgba(223,198,129,0.55);

color: var(--gold-light);

font-size: 0.68rem;
font-weight: 700;

line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;

transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;

}

.hero-button:hover {
border-color: var(--gold-light);

background: var(--gold-light);
color: var(--deep);

}

.hero-caption {
position: absolute;

right: var(--gutter);
bottom: 35px;

color: rgba(255,255,255,0.5);

font-size: 0.63rem;
line-height: 1.4;

letter-spacing: 0.16em;
text-transform: uppercase;

}

/* =========================================================
OPENING
========================================================= */

.opening {
position: relative;

padding: var(--section-space) 0;

background: var(--paper);

}

.opening-grid {
display: grid;

grid-template-columns:
    minmax(280px, 0.8fr)
    minmax(0, 1.2fr);

gap: clamp(50px, 9vw, 150px);

margin-top: 50px;

}

.opening h2 {
max-width: 650px;

margin-top: 10px;
margin-bottom: 0;

}

.opening-text {
padding-top: 18px;
}

/* =========================================================
DARK SECTIONS
========================================================= */

.dark-section {
position: relative;

padding: var(--section-space) 0;

background: var(--deep);

color: white;

}

.dark-section h2,
.crusade-section h2 {
color: white;
}

.dark-section .content-wide > .eyebrow,
.crusade-section .content-wide > .eyebrow {
margin-top: 0;
}

.two-column {
display: grid;

grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

gap: clamp(50px, 8vw, 140px);

margin-top: 65px;

}

.dark-section p {
color: rgba(255,255,255,0.74);
}

/* =========================================================
MAP
========================================================= */

.map-section {
min-height: 750px;

display: grid;

grid-template-columns:
    minmax(300px, 0.75fr)
    minmax(500px, 1.25fr);

align-items: center;

gap: 50px;

padding:
    clamp(80px, 8vw, 120px)
    var(--gutter);

background:
    radial-gradient(
        circle at 75% 50%,
        rgba(22, 84, 96, 0.3),
        transparent 45%
    ),
    #dfe2da;

}

.map-copy {
width: min(520px, 100%);
margin-left: auto;
}

.map-copy h2 {
margin-bottom: 25px;
}

.route-map {
position: relative;

width: min(700px, 100%);
height: 500px;

margin: auto;

background:
    radial-gradient(
        ellipse,
        rgba(20,70,80,0.08),
        transparent 70%
    );

}

.route-line {
position: absolute;

width: 76%;
height: 230px;

top: 100px;
left: 8%;

border-top: 2px dashed rgba(24,79,89,0.35);

transform: rotate(15deg);

}

.map-point {
position: absolute;

display: flex;
align-items: center;
justify-content: center;

width: 15px;
height: 15px;

border-radius: 50%;

background: var(--sea);

box-shadow:
    0 0 0 8px rgba(13,53,64,0.08);

}

.map-point span {
position: absolute;

top: 25px;
left: 50%;

width: max-content;

transform: translateX(-50%);

font-size: 0.68rem;
font-weight: 700;
line-height: 1.3;

letter-spacing: 0.08em;
text-transform: uppercase;

}

.point-shetland {
top: 70px;
right: 10%;
}

.point-ireland {
top: 230px;
left: 16%;
}

.point-fishguard {
top: 310px;
left: 43%;
}

.point-stdavids {
top: 350px;
left: 30%;
}

.point-med {
right: 12%;
bottom: 25px;
}

/* =========================================================
FEATURE / FISHGUARD
========================================================= */

.feature-section {
padding: var(--section-space) 0;

background: var(--cream);

}

.feature-heading {
display: grid;

grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.65fr);

gap: clamp(50px, 8vw, 140px);

align-items: end;

margin-top: 35px;

}

.feature-heading h2 {
margin-bottom: 0;
}

.subtitle {
max-width: 400px;

font-family: var(--serif);
font-size: 1.15rem;
line-height: 1.8;

}

.feature-body {
width: min(var(--reading), 100%);

margin: 90px auto 0;

}

.feature-body p {
font-family: var(--serif);
font-size: 1.05rem;
line-height: 1.9;
}

blockquote {
margin: 70px -100px;

padding: 40px 50px;

border-left: 3px solid var(--gold);

font-family: var(--serif);
font-size: clamp(1.5rem, 2.5vw, 2rem);
font-style: italic;
line-height: 1.5;

color: var(--sea);

}

/* =========================================================
QUOTE
========================================================= */

.quote-section {
padding:
var(--section-space)
var(--gutter);

background: var(--gold);

color: var(--deep);

}

.quote-inner {
width: min(1200px, 100%);
margin: auto;
}

.quote-section .eyebrow {
color: var(--deep);
}

.big-quote {
max-width: 1100px;

margin: 25px 0;

font-family: var(--display);
font-size: clamp(2.4rem, 4.5vw, 5rem);
line-height: 1.2;

}

.quote-note {
max-width: 700px;

font-family: var(--serif);
line-height: 1.8;

}

/* =========================================================
GOODWICK
========================================================= */

.goodwick-section {
padding: var(--section-space) 0;

background: white;

}

/* =========================================================
TIMELINE
========================================================= */

.timeline-section {
padding: var(--section-space) 0;

background: #e7e4db;

}

.timeline-section h2 {
margin-top: 25px;
}

.timeline {
margin-top: 85px;

border-top: 1px solid rgba(16,27,32,0.2);

}

.timeline-item {
display: grid;

grid-template-columns: 180px minmax(0, 1fr);

gap: clamp(35px, 5vw, 80px);

padding: 42px 0;

border-bottom: 1px solid rgba(16,27,32,0.2);

}

.timeline-item .date {
font-family: var(--display);
font-size: 0.75rem;
line-height: 1.5;

color: #8d7337;

letter-spacing: 0.08em;

}

.timeline-item h3 {
margin: 0 0 10px;
}

.timeline-item p {
max-width: 75ch;

margin-bottom: 0;

}

/* =========================================================
CRUSADES
========================================================= */

.crusade-section {
padding: var(--section-space) 0;

background:
    radial-gradient(
        circle at 80% 20%,
        rgba(197,164,92,0.15),
        transparent 30%
    ),
    #101d21;

color: white;

}

.crusade-section p {
color: rgba(255,255,255,0.75);
}

/* =========================================================
PILGRIMAGE CARD
========================================================= */

.pilgrimage-feature {
padding:
clamp(70px, 8vw, 110px)
var(--gutter);

background: var(--cream);

}

.pilgrimage-card {
width: min(1150px, 100%);

margin: auto;

padding: clamp(35px, 5vw, 70px);

border: 1px solid rgba(16,27,32,0.15);

background: rgba(255,255,255,0.5);

text-align: center;

box-shadow:
    0 15px 45px rgba(16,27,32,0.04);

}

.pilgrimage-card .eyebrow {
color: #8d7337;
}

.route-large {
display: flex;

align-items: center;
justify-content: center;

gap: 25px;

margin: 35px 0;

font-family: var(--display);
font-size: clamp(1rem, 2.5vw, 2rem);
line-height: 1.3;

color: var(--sea);

}

.route-arrow {
color: var(--gold);
font-size: 1rem;
}

/* =========================================================
ESSAY
========================================================= */

.essay-section {
padding: var(--section-space) 0;

background: var(--paper);

}

.essay-section .content-reading {
width: min(800px, calc(100% - 48px));
}

.essay-section p {
font-family: var(--serif);
font-size: 1.06rem;
line-height: 1.95;
}

/* =========================================================
ALAN PRICE
========================================================= */

.alan-section {
padding: var(--section-space) 0;

background: var(--deep);

color: white;

}

.alan-grid {
display: grid;

grid-template-columns:
    minmax(260px, 0.65fr)
    minmax(0, 1.35fr);

gap: clamp(50px, 9vw, 150px);

}

.alan-section h2 {
color: white;
}

.alan-role {
color: var(--gold-light);

font-family: var(--serif);
font-style: italic;

}

.alan-section .large {
color: white;
}

.alan-section p {
color: rgba(255,255,255,0.72);
}

.callout {
margin-top: 50px;

padding: 30px;

border-left: 2px solid var(--gold);

background: rgba(255,255,255,0.04);

}

.callout strong {
color: var(--gold-light);
}

/* =========================================================
EVIDENCE
========================================================= */

.evidence-section {
padding: var(--section-space) 0;

background: #eeeae0;

}

.evidence-grid {
display: grid;

grid-template-columns:
    repeat(3, minmax(0, 1fr));

gap: 25px;

margin-top: 70px;

}

.evidence-card {
min-height: 300px;

padding: 35px;

background: white;

border-top: 4px solid var(--sea);

box-shadow:
    0 10px 30px rgba(16,27,32,0.035);

}

.evidence-card.probable {
border-color: var(--gold);
}

.evidence-card.question {
border-color: #8b5d4d;
}

.evidence-label {
display: block;

margin-bottom: 45px;

font-size: 0.63rem;
font-weight: 700;
line-height: 1.4;

letter-spacing: 0.16em;
text-transform: uppercase;

color: #777;

}

/* =========================================================
HOLY LAND
========================================================= */

.holy-land-section {
position: relative;

min-height: 700px;

display: flex;
align-items: center;

padding:
    clamp(80px, 9vw, 130px)
    var(--gutter);

color: white;

background:
    linear-gradient(
        90deg,
        rgba(5,15,19,0.94),
        rgba(5,15,19,0.58),
        rgba(5,15,19,0.75)
    ),
    radial-gradient(
        circle at 70% 50%,
        #8d7654,
        #1d2929 65%
    );

}

.holy-land-content {
position: relative;
z-index: 2;

width: min(900px, 100%);

}

.holy-land-content h2 {
margin: 25px 0;

font-size: clamp(2.8rem, 5.5vw, 6.5rem);

}

.holy-land-content p {
max-width: 650px;

font-family: var(--serif);
font-size: clamp(1.1rem, 1.5vw, 1.25rem);
line-height: 1.85;

}

/* =========================================================
FISHGUARD DEEP
========================================================= */

.fishguard-deep {
padding: var(--section-space) 0;

background: white;

}

/* =========================================================
CONCLUSION
========================================================= */

.conclusion {
padding: var(--section-space) 0;

background: var(--sea);

color: white;

}

.conclusion h2 {
margin-top: 25px;

color: white;

}

.conclusion-grid {
display: grid;

grid-template-columns:
    minmax(260px, 0.7fr)
    minmax(0, 1.3fr);

gap: clamp(50px, 9vw, 150px);

margin-top: 80px;

}

.conclusion p {
color: rgba(255,255,255,0.75);
}

.conclusion .large {
color: white;
}

.final-line {
margin-top: 45px;

color: var(--gold-light) !important;

font-family: var(--display) !important;
font-size: 1.35rem !important;

}

/* =========================================================
SOURCES
========================================================= */

.sources-section {
padding: var(--section-space) 0;

background: var(--cream);

}

.source-list {
margin-top: 70px;

border-top: 1px solid rgba(16,27,32,0.2);

}

.source-list article {
display: grid;

grid-template-columns:
    70px
    minmax(180px, 250px)
    minmax(0, 1fr);

gap: 30px;

align-items: start;

padding: 35px 0;

border-bottom: 1px solid rgba(16,27,32,0.2);

}

.source-list span {
font-family: var(--display);
font-size: 0.72rem;

color: #8d7337;

}

.source-list h3 {
margin: 0;
}

.source-list p {
max-width: 75ch;

margin: 0;

line-height: 1.75;

}

.research-note {
max-width: 800px;

margin-top: 70px;

padding: 25px;

border-left: 2px solid var(--gold);

font-family: var(--serif);
font-style: italic;

color: #5e625f;

}

/* =========================================================
FOOTER
========================================================= */

footer {
padding:
60px
var(--gutter);

background: #050e12;

color: white;

}

.footer-inner {
display: flex;

width: min(var(--max), 100%);
margin: auto;

align-items: flex-end;
justify-content: space-between;

gap: 40px;

}

footer p {
margin: 10px 0 0;

color: rgba(255,255,255,0.45);

font-size: 0.7rem;
line-height: 1.6;

letter-spacing: 0.08em;

}

.footer-right {
text-align: right;
}

/* =========================================================
1000px — PRIMARY RESPONSIVE BREAKPOINT
========================================================= */

@media (max-width: 1000px) {

:root {
    --gutter: clamp(24px, 5vw, 55px);
}

/* Navigation */

.navigation {
    padding-top: 22px;
    padding-bottom: 22px;
}

.nav-links {
    gap: 18px;
}

/* Hero */

.hero {
    min-height: 760px;
}

.hero-content {
    width: min(900px, calc(100% - (var(--gutter) * 2)));

    padding-top: 70px;
}

/* Main grids */

.opening-grid,
.two-column,
.feature-heading,
.alan-grid,
.conclusion-grid {

    grid-template-columns: 1fr;

    gap: 45px;
}

.opening-text {
    padding-top: 0;
}

.feature-body {
    margin-top: 65px;
}

/* Map */

.map-section {
    grid-template-columns: 1fr;

    min-height: auto;

    padding-top: 90px;
    padding-bottom: 90px;
}

.map-copy {
    width: min(760px, 100%);
    margin: auto;
}

.route-map {
    width: min(700px, 100%);
    margin: 20px auto 0;
}

/* Evidence */

.evidence-grid {
    grid-template-columns: 1fr;

    gap: 20px;
}

.evidence-card {
    min-height: auto;
}

/* Timeline */

.timeline-item {
    grid-template-columns: 140px minmax(0, 1fr);

    gap: 35px;
}

/* Quote */

blockquote {
    margin-right: 0;
    margin-left: 0;
}

/* Sources */

.source-list article {
    grid-template-columns:
        55px
        minmax(180px, 0.7fr)
        minmax(0, 1.3fr);

    gap: 22px;
}

/* Footer */

.footer-inner {
    align-items: flex-start;
}

}

/* =========================================================
700px — TABLET / LARGE PHONE
========================================================= */

@media (max-width: 700px) {

body {
    font-size: 15px;
}

.nav-links {
    display: none;
}

.brand {
    font-size: 0.85rem;
}

/* Hero */

.hero {
    min-height: 720px;
}

.hero-content {
    width: calc(100% - 48px);
    padding-top: 50px;
}

.hero h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
}

.hero-intro {
    font-size: 1rem;
}

.hero-caption {
    display: none;
}

/* Reading */

.content-reading,
.essay-section .content-reading {
    width: calc(100% - 40px);
}

.content-reading p,
.essay-section p,
.feature-body p {
    font-size: 1rem;
    line-height: 1.85;
}

/* Map */

.route-map {
    height: 440px;
}

.route-line {
    width: 75%;
}

/* Timeline */

.timeline {
    margin-top: 60px;
}

.timeline-item {
    display: block;

    padding: 32px 0;
}

.timeline-item .date {
    display: block;

    margin-bottom: 10px;
}

/* Sources */

.source-list article {
    display: block;
}

.source-list span {
    display: block;

    margin-bottom: 12px;
}

.source-list h3 {
    margin-bottom: 12px;
}

/* Footer */

.footer-inner {
    flex-direction: column;

    align-items: flex-start;
}

.footer-right {
    text-align: left;
}

}

/* =========================================================
500px — MOBILE
========================================================= */

@media (max-width: 500px) {

:root {
    --gutter: 20px;
}

/* Sections */

.opening,
.dark-section,
.feature-section,
.goodwick-section,
.timeline-section,
.crusade-section,
.essay-section,
.alan-section,
.evidence-section,
.fishguard-deep,
.conclusion,
.sources-section {

    padding-top: 90px;
    padding-bottom: 90px;
}

/* Hero */

.hero {
    min-height: 90vh;
}

.hero-content {
    width: calc(100% - 40px);
    margin: auto;
}

.hero h1 {
    font-size: 3.2rem;
}

.hero-button {
    width: 100%;

    justify-content: space-between;
}

/* Typography */

h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
}

.lead {
    font-size: 1.1rem;
}

.large {
    font-size: 1.25rem;
}

/* Map */

.map-section {
    padding-top: 75px;
    padding-bottom: 75px;
}

.route-map {
    width: 620px;
    max-width: none;
    height: 420px;

    transform: scale(0.72);
    transform-origin: left center;

    margin-left: 0;
    margin-right: -180px;
}

/* Pilgrimage */

.pilgrimage-feature {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pilgrimage-card {
    padding: 35px 20px;
}

.route-large {
    flex-direction: column;

    gap: 12px;

    font-size: 1.05rem;
}

.route-arrow {
    transform: rotate(90deg);
}

/* Quote */

.quote-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.big-quote {
    font-size: 2.4rem;
}

/* Feature quotation */

blockquote {
    margin-top: 50px;
    margin-bottom: 50px;

    padding: 25px 25px 25px 30px;

    font-size: 1.35rem;
}

/* Evidence */

.evidence-card {
    padding: 28px;
}

/* Holy Land */

.holy-land-section {
    min-height: 600px;

    padding-top: 80px;
    padding-bottom: 80px;
}

/* Footer */

footer {
    padding-top: 45px;
    padding-bottom: 45px;
}

}

/* =========================================================
ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

html {
    scroll-behavior: auto;
}

*,
*::before,
*::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
}

}