:root {

    --ink: #101b20;
    --deep: #071217;
    --sea: #0d3540;
    --sea-light: #175867;

    --cream: #f3eee3;
    --paper: #faf8f2;
    --sand: #d7c49c;

    --gold: #c4a45c;
    --gold-light: #dfc681;

    --white: #ffffff;
    --muted: #8d9898;

    --serif: "Libre Baskerville", Georgia, serif;
    --display: "Cinzel", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;

    --max: 1180px;
}


/* -----------------------------------
   GLOBAL
----------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.8;
}

::selection {
    background: var(--gold);
    color: var(--deep);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* -----------------------------------
   TYPOGRAPHY
----------------------------------- */

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.12;
    font-weight: 600;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7.8rem);
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.45rem;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-light);
}

.eyebrow.dark {
    color: #8d7337;
}

.lead {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.75;
}

.large {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.75;
}


/* -----------------------------------
   NAVIGATION
----------------------------------- */

.navigation {
    position: absolute;
    z-index: 20;

    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 5vw;

    color: white;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.navigation.scrolled {
    position: fixed;

    padding-top: 18px;
    padding-bottom: 18px;

    background: rgba(7, 18, 23, 0.95);

    backdrop-filter: blur(12px);
}

.brand {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    gap: 30px;

    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-light);
}


/* -----------------------------------
   HERO
----------------------------------- */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    color: white;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(4, 15, 20, 0.96),
            rgba(4, 24, 30, 0.70),
            rgba(4, 20, 25, 0.40)
        ),
        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(1000px, 90%);

    margin-left: 8vw;
    padding-top: 8vh;
}

.hero h1 {
    margin: 18px 0 30px;
    max-width: 1000px;
}

.hero h1 em {
    color: var(--gold-light);
    font-family: var(--serif);
    font-weight: 400;
}

.hero-intro {

    max-width: 650px;

    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.8;

    color: rgba(255,255,255,0.82);
}

.hero-button {

    display: inline-flex;
    gap: 24px;
    align-items: center;

    margin-top: 25px;

    padding: 14px 20px;

    border: 1px solid rgba(223,198,129,0.5);

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition: all 0.25s;
}

.hero-button:hover {

    background: var(--gold-light);
    color: var(--deep);

}

.hero-caption {

    position: absolute;

    bottom: 35px;
    right: 5vw;

    color: rgba(255,255,255,0.5);

    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* -----------------------------------
   SHARED LAYOUT
----------------------------------- */

.content-wide {
    width: min(var(--max), 88%);
    margin: 0 auto;
}

.content-reading {

    width: min(760px, 88%);
    margin: 0 auto;

}

.section-number {

    font-family: var(--display);

    color: var(--gold);

    font-size: 0.75rem;

    letter-spacing: 0.15em;
}

.section-number.light {
    color: var(--gold-light);
}


/* -----------------------------------
   OPENING
----------------------------------- */

.opening {

    position: relative;

    padding: 150px 0;

    background: var(--paper);
}

.opening-grid {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 10vw;

    margin-top: 50px;
}

.opening h2 {
    margin-top: 10px;
}

.opening-text {
    padding-top: 20px;
}


/* -----------------------------------
   DARK SECTIONS
----------------------------------- */

.dark-section {

    position: relative;

    padding: 150px 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: 35px;
}

.two-column {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8vw;

    margin-top: 65px;
}

.dark-section p {
    color: rgba(255,255,255,0.73);
}


/* -----------------------------------
   MAP
----------------------------------- */

.map-section {

    min-height: 750px;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    padding: 100px 7vw;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(22, 84, 96, 0.3),
            transparent 45%
        ),
        #dfe2da;
}

.map-copy {
    max-width: 450px;
}

.map-copy h2 {
    margin-bottom: 25px;
}

.route-map {

    position: relative;

    width: 600px;
    height: 500px;

    margin: auto;

    background:
        radial-gradient(
            ellipse,
            rgba(20,70,80,0.08),
            transparent 70%
        );
}

.route-line {

    position: absolute;

    width: 520px;
    height: 230px;

    top: 100px;
    left: 35px;

    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%;

    transform: translateX(-50%);

    width: max-content;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

}

.point-shetland {
    top: 70px;
    right: 60px;
}

.point-ireland {
    top: 230px;
    left: 100px;
}

.point-fishguard {
    top: 310px;
    left: 270px;
}

.point-stdavids {
    top: 350px;
    left: 190px;
}

.point-med {
    bottom: 25px;
    right: 75px;
}


/* -----------------------------------
   FISHGUARD
----------------------------------- */

.feature-section {

    padding: 150px 0;

    background: var(--cream);
}

.feature-heading {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8vw;

    align-items: end;

    margin-top: 35px;
}

.feature-heading h2 {
    margin-bottom: 0;
}

.subtitle {

    max-width: 350px;

    font-family: var(--serif);

    font-size: 1.2rem;
}

.feature-body {

    width: min(760px, 100%);

    margin: 100px auto 0;
}

.feature-body p {
    font-family: var(--serif);
    font-size: 1.05rem;
}

blockquote {

    margin: 70px -100px;

    padding: 40px 50px;

    border-left: 3px solid var(--gold);

    font-family: var(--serif);

    font-size: 2rem;
    font-style: italic;

    line-height: 1.45;

    color: var(--sea);
}


/* -----------------------------------
   QUOTE
----------------------------------- */

.quote-section {

    padding: 150px 7vw;

    background: var(--gold);

    color: var(--deep);
}

.quote-inner {

    max-width: 1000px;

    margin: auto;
}

.quote-section .eyebrow {
    color: var(--deep);
}

.big-quote {

    max-width: 950px;

    margin: 25px 0;

    font-family: var(--display);

    font-size: clamp(2.5rem, 5vw, 5rem);

    line-height: 1.2;
}

.quote-note {

    max-width: 700px;

    font-family: var(--serif);

}


/* -----------------------------------
   GOODWICK
----------------------------------- */

.goodwick-section {

    padding: 150px 0;

    background: white;
}


/* -----------------------------------
   TIMELINE
----------------------------------- */

.timeline-section {

    padding: 150px 0;

    background: #e7e4db;
}

.timeline-section h2 {
    margin-top: 25px;
}

.timeline {

    margin-top: 100px;

    border-top: 1px solid rgba(16,27,32,0.2);
}

.timeline-item {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 60px;

    padding: 40px 0;

    border-bottom: 1px solid rgba(16,27,32,0.2);
}

.timeline-item .date {

    font-family: var(--display);

    font-size: 0.8rem;

    color: #8d7337;

    letter-spacing: 0.08em;
}

.timeline-item h3 {
    margin: 0 0 10px;
}

.timeline-item p {
    max-width: 700px;
}


/* -----------------------------------
   CRUSADES
----------------------------------- */

.crusade-section {

    padding: 150px 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: 100px 7vw;

    background: var(--cream);
}

.pilgrimage-card {

    max-width: 1050px;

    margin: auto;

    padding: 65px;

    border: 1px solid rgba(16,27,32,0.15);

    background: rgba(255,255,255,0.45);

    text-align: center;
}

.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, 3vw, 2rem);

    color: var(--sea);
}

.route-arrow {

    color: var(--gold);

    font-size: 1rem;
}


/* -----------------------------------
   ESSAY
----------------------------------- */

.essay-section {

    padding: 150px 0;

    background: var(--paper);
}

.content-reading h2 {
    margin-bottom: 70px;
}

.content-reading p {
    font-family: var(--serif);
    font-size: 1.05rem;
}


/* -----------------------------------
   ALAN PRICE
----------------------------------- */

.alan-section {

    padding: 150px 0;

    background: var(--deep);

    color: white;
}

.alan-grid {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 10vw;
}

.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: 150px 0;

    background: #eeeae0;
}

.evidence-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 70px;
}

.evidence-card {

    min-height: 300px;

    padding: 35px;

    background: white;

    border-top: 4px solid var(--sea);
}

.evidence-card.probable {
    border-color: var(--gold);
}

.evidence-card.question {
    border-color: #8b5d4d;
}

.evidence-label {

    display: block;

    margin-bottom: 50px;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: #777;
}


/* -----------------------------------
   HOLY LAND IMAGE / ATMOSPHERE
----------------------------------- */

.holy-land-section {

    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    padding: 100px 8vw;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(5,15,19,0.93),
            rgba(5,15,19,0.55),
            rgba(5,15,19,0.75)
        ),
        radial-gradient(
            circle at 70% 50%,
            #8d7654,
            #1d2929 65%
        );
}

.holy-land-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.holy-land-content h2 {
    margin: 25px 0;

    font-size: clamp(3rem, 6vw, 6.5rem);
}

.holy-land-content p {
    max-width: 600px;

    font-family: var(--serif);

    font-size: 1.25rem;
}


/* -----------------------------------
   FISHGUARD DEEP
----------------------------------- */

.fishguard-deep {

    padding: 150px 0;

    background: white;
}


/* -----------------------------------
   CONCLUSION
----------------------------------- */

.conclusion {

    padding: 160px 0;

    background: var(--sea);

    color: white;
}

.conclusion h2 {
    color: white;

    margin-top: 25px;
}

.conclusion-grid {

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 10vw;

    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.5rem !important;
}


/* -----------------------------------
   SOURCES
----------------------------------- */

.sources-section {

    padding: 150px 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 250px 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);

    color: #8d7337;

    font-size: 0.75rem;
}

.source-list h3 {
    margin: 0;
}

.source-list p {
    margin: 0;
}

.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 7vw;

    background: #050e12;

    color: white;
}

.footer-inner {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    align-items: end;
}

footer p {

    margin: 10px 0 0;

    color: rgba(255,255,255,0.45);

    font-size: 0.72rem;

    letter-spacing: 0.08em;
}

.footer-right {
    text-align: right;
}


/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hero-content {
        margin-left: 6vw;
    }

    .opening-grid,
    .two-column,
    .feature-heading,
    .alan-grid,
    .conclusion-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .map-section {
        grid-template-columns: 1fr;

        padding: 90px 7vw;
    }

    .route-map {
        width: min(600px, 100%);
    }

    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    blockquote {
        margin: 60px 0;
    }

    .source-list article {
        grid-template-columns: 50px 1fr;
    }

    .source-list article p {
        grid-column: 2;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        text-align: left;
    }

}


@media (max-width: 600px) {

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        width: 88%;
        margin: auto;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-caption {
        display: none;
    }

    .opening,
    .dark-section,
    .feature-section,
    .goodwick-section,
    .timeline-section,
    .crusade-section,
    .essay-section,
    .alan-section,
    .evidence-section,
    .fishguard-deep,
    .conclusion,
    .sources-section {

        padding: 100px 0;
    }

    .map-section {
        min-height: 600px;
    }

    .route-map {
        transform: scale(0.8);
        transform-origin: left center;
        margin-left: 0;
    }

    .pilgrimage-card {
        padding: 35px 20px;
    }

    .route-large {
        flex-direction: column;
        gap: 12px;
    }

    .route-arrow {
        transform: rotate(90deg);
    }

    .source-list article {
        display: block;
    }

    .source-list span {
        display: block;
        margin-bottom: 15px;
    }

    .source-list h3 {
        margin-bottom: 15px;
    }

}
