/* ═══════════════════════════════════════════
   EXCLUSION ANTARCTICA — Dr. Donna Oliver
   Expedition Journal Edition
   ═══════════════════════════════════════════ */

:root {
    --paper:          #f2e8d5;
    --paper-light:    #f7f0e3;
    --paper-warm:     #ede0cb;
    --paper-dark:     #e3d4bc;
    --dark:           #0c0c0c;
    --dark-mid:       #1a1a1a;
    --dark-soft:      #252525;
    --ink:            #1a1510;
    --ink-mid:        #3d3428;
    --ink-light:      #6b5e4c;
    --ink-faint:      #9a8d7a;
    --ink-ghost:      rgba(26, 21, 16, 0.08);
    --gold:           #b8923a;
    --gold-light:     #d4ad50;
    --gold-dim:       rgba(184, 146, 58, 0.15);
    --text-on-dark:   #d4c8b0;
    --text-on-dark-dim: #8a7e6c;
    --font-display:   'Cormorant Garamond', 'Garamond', Georgia, serif;
    --font-body:      'Lora', Georgia, serif;
    --font-label:     'Josefin Sans', 'Gill Sans', sans-serif;
}


/* ═══ RESET & BASE ═══ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--paper-light);
}

a {
    color: var(--ink-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--ink-ghost);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ═══ SCROLL ANIMATIONS ═══ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══ NAV ═══ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.5s ease;
}

.nav.scrolled {
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav a {
    color: var(--text-on-dark-dim);
    border-bottom: none;
}

.nav a:hover {
    color: var(--gold-light);
}


/* ═══ HERO ═══ */

.hero {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 40px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
}

.hero-boot {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    opacity: 0;
    animation: bootReveal 1.8s ease 0.3s forwards;
}

.hero-boot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes bootReveal {
    0% { opacity: 0; transform: translateY(12px) rotate(-3deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero-text {
    text-align: left;
}

.hero-date {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--text-on-dark-dim);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
    color: var(--paper-light);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1.4s ease 0.7s forwards;
}

.hero-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.0s forwards;
}

.hero-subtitle {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.80rem;
    letter-spacing: 0.12em;
    color: var(--text-on-dark-dim);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.2s forwards;
}
.hero-attrib {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 0.80rem;
    color: var(--text-on-dark-dim);
    margin-top: 6px;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.5s forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.hero-scroll span {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-on-dark-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}


/* ═══ MOUNTAIN RANGE ═══ */

.mountain-range {
    width: 100%;
    background: var(--dark);
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.mountain-range img {
    width: 100%;
    height: auto;
    display: block;
}


/* ═══ PAPER SECTIONS ═══ */

.section-paper {
    background: var(--paper);
    padding: 80px 40px;
    position: relative;
}

.section-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.section-label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 32px;
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 32px;
}

.lead-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--ink-mid);
    margin-bottom: 36px;
    max-width: 640px;
}

.body-text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--ink-mid);
    margin-bottom: 24px;
    max-width: 640px;
}


/* ═══ SKETCH DIVIDERS ═══ */

.sketch-divider {
    display: block;
    width: 100%;
    height: 24px;
    overflow: visible;
}

.sketch-divider path {
    stroke: var(--ink);
    fill: none;
    opacity: 0.12;
}


/* ═══ ILLUSTRATION BANDS ═══ */

.illus-band {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.illus-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.illus-band--right .illus-band-inner {
    justify-content: flex-end;
}

.illus-band--left .illus-band-inner {
    justify-content: flex-start;
}

.illus-figure img {
    height: 240px;
    width: auto;
    object-fit: contain;
}

.illus-caption {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--text-on-dark-dim);
    margin-top: 12px;
    text-align: center;
}


/* ═══ ORNAMENTAL ILLUSTRATIONS ═══ */

.ornament {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.ornament img {
    width: 100%;
    height: auto;
}

.ornament-undersea {
    width: 130px;
    right: -170px;
    top: 20px;
    opacity: 0.7;
}

.ornament-snowy {
    width: 150px;
    left: -190px;
    top: 24px;
    opacity: 0.7;
}

.inline-ornament {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    background: var(--paper);
}

.inline-ornament img {
    height: 80px;
    width: auto;
    opacity: 0.55;
}


/* ═══ TIMELINE ═══ */

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--ink-ghost);
}

.timeline-entry {
    position: relative;
    margin-bottom: 40px;
}

.timeline-entry:last-child {
    margin-bottom: 0;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 10px;
    width: 9px;
    height: 9px;
    border: 1.5px solid var(--ink-light);
    border-radius: 50%;
    background: var(--paper);
}

.timeline-year {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ink-mid);
}


/* ═══ PHOTO GALLERY ═══ */

.gallery-section {
    background: var(--dark);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.gallery-section .section-inner {
    max-width: 1060px;
}

.gallery-section .section-label {
    color: var(--text-on-dark-dim);
}

.gallery-section .section-heading {
    color: var(--text-on-dark);
}

.gallery-section .lead-text {
    color: var(--text-on-dark-dim);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.photo-item {
    cursor: pointer;
    background: var(--dark-mid);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.photo-item-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.photo-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.15) contrast(0.92) brightness(0.95);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.photo-item:hover .photo-item-img-wrap img {
    filter: sepia(0) contrast(1) brightness(1);
    transform: scale(1.03);
}

.photo-item-caption {
    padding: 10px 12px 12px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-item:hover .photo-item-caption {
    opacity: 1;
    transform: translateY(0);
}

.photo-item-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--text-on-dark);
    line-height: 1.3;
}

.photo-item-date {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--text-on-dark-dim);
    margin-top: 3px;
}

.photo-item-insta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: none;
    margin-top: 6px;
}

.photo-item-insta:hover {
    color: var(--gold-light);
}

.photo-item-insta svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
}


/* ═══ BOOK & PRESS ═══ */

.section-paper {
    background: var(--paper); padding: 80px 40px; position: relative;
}

.section-inner {
    max-width: 720px; margin: 0 auto; position: relative;
}

.section-label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 32px;
}

/* ═══ Book info card ═══ */
.book-info {
    background: var(--paper-warm);
    border-left: 3px solid var(--gold);
    padding: 32px 36px;
    margin: 40px 0;
    border-radius: 0 4px 4px 0;
}

.book-title {
    font-family: var(--font-display);
    font-style: italic; font-weight: 500;
    font-size: 1.3rem; color: var(--ink);
    margin-bottom: 8px;
}

.book-author {
    font-family: var(--font-label);
    font-weight: 300; font-size: 0.78rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--ink-light); margin-bottom: 12px;
}

.book-desc {
    font-family: var(--font-body);
    font-size: 0.95rem; color: var(--ink-mid);
    line-height: 1.75;
}

/* ═══ Press Entries ═══ */

.press-list {
    margin-bottom: 8px;
}

.press-entry {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 22px 16px;
    border-bottom: 1px solid var(--ink-ghost);
    text-decoration: none;
    color: inherit;
    transition: background 0.35s ease;
}

.press-entry:last-child {
    border-bottom: none;
}

.press-entry:hover {
    background: var(--paper-warm);
}

.press-entry:hover .press-entry-headline {
    color: var(--gold);
}

.press-entry:hover .press-entry-logo-wrap {
    border-color: rgba(26, 21, 16, 0.12);
}

/* Logo / cover container — fixed width, clear, contents float centered */
.press-entry-logo-wrap {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink-ghost);
    background: var(--paper-light);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.35s ease;
}

.press-entry-logo-wrap img {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* For magazine covers that should fill the box */
.press-entry-logo-wrap.cover-fill {
    padding: 0;
}

.press-entry-logo-wrap.cover-fill img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-entry-text {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.press-entry-headline {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.press-entry-source {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 4px;
}

.press-entry-year {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
}

/* ═══ AUDIO IN PRESS ENTRIES ═══ */

.press-entry-audio {
    cursor: default;
}

.press-entry-audio audio {
    width: 100%;
    max-width: 400px;
    height: 36px;
    margin-top: 10px;
    filter: sepia(0.3) saturate(0.6);
    opacity: 0.8;
}

.press-entry-audio audio:hover {
    opacity: 1;
}

/* ═══ FEATURED IN ═══ */

.featured-books {
    margin-bottom: 8px;
}

.featured-book-entry {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 22px 16px;
    border-bottom: 1px solid var(--ink-ghost);
    text-decoration: none;
    color: inherit;
    transition: background 0.35s ease;
    position: relative;
}

.featured-book-entry:last-child {
    border-bottom: none;
}

.featured-book-entry:hover {
    background: var(--paper-warm);
}

.featured-book-entry:hover .featured-book-title {
    color: var(--gold);
}

.featured-book-entry:hover .featured-book-cover img {
    box-shadow: 0 6px 20px rgba(26, 21, 16, 0.2);
    transform: translateY(-1px);
}

.featured-book-cover {
    flex-shrink: 0;
    width: 68px;
}

.featured-book-cover img {
    width: 68px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: var(--paper-dark);
    box-shadow: 2px 2px 10px rgba(26, 21, 16, 0.15);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.featured-book-info {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.featured-book-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.featured-book-author {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}

.featured-book-context {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.6;
}

.featured-book-year {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
    margin-top: 6px;
}

/* Placeholder cover for books without images */
.featured-book-cover-placeholder {
    width: 68px;
    aspect-ratio: 2 / 3;
    background: var(--paper-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(26, 21, 16, 0.15);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.featured-book-entry:hover .featured-book-cover-placeholder {
    box-shadow: 0 6px 20px rgba(26, 21, 16, 0.2);
    transform: translateY(-1px);
}

/* ═══ EXPAND / COLLAPSE ═══ */

.expandable-list {
    position: relative;
}

/* Items beyond the initial visible count get hidden */
.expandable-list .press-entry,
.expandable-list .featured-book-entry {
    overflow: hidden;
    transition: background 0.35s ease, max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
}

.expandable-list.collapsed .press-entry.hidden-entry,
.expandable-list.collapsed .featured-book-entry.hidden-entry {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
}

.expandable-list:not(.collapsed) .press-entry.hidden-entry,
.expandable-list:not(.collapsed) .featured-book-entry.hidden-entry {
    max-height: 200px;
    opacity: 1;
}

/* The toggle button */
.expand-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    background: none;
    border: none;
    border-bottom: 1px solid var(--ink-ghost);
    cursor: pointer;
    padding: 12px 0 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.expand-toggle:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.expand-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.expandable-list:not(.collapsed) .expand-toggle svg {
    transform: rotate(180deg);
}

/* ═══ HISTORIC PRESS CLIPPINGS ═══ */

.press-clippings {
    margin-top: 48px;
}

.press-clippings-label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ink-ghost);
}

.clippings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.clipping-item {
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--ink-ghost);
    background: var(--paper-light);
}

.clipping-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 21, 16, 0.1);
}

.clipping-meta {
    padding: 10px 12px;
    border-top: 1px solid var(--ink-ghost);
}

.clipping-pub {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.clipping-date {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--ink-light);
}


/* ═══ INSTAGRAM ═══ */

.insta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--paper-warm);
}

.insta-label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 12px;
}

.insta-handle {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--ink);
}

.insta-handle a {
    color: var(--ink);
    border-bottom: 1px solid var(--gold-dim);
}

.insta-handle a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}


/* ═══ REPRESENTATION ═══ */

.rep-section {
    text-align: center;
    padding: 48px 40px;
    background: var(--paper);
    border-top: 1px solid var(--ink-ghost);
}

.rep-label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 10px;
}

.rep-agency {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.rep-location {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--ink-light);
    margin-bottom: 12px;
}

.rep-contact a {
    color: var(--ink-mid);
    border-bottom: 1px solid var(--gold-dim);
}

.rep-contact a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}


/* ═══ FOOTER ═══ */

.footer {
    background: var(--dark);
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-boot {
    width: 60px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.footer-boot img {
    width: 100%;
    height: auto;
}

.footer-domain {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
    margin-bottom: 8px;
}

.footer-copy {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(138, 126, 108, 0.5);
}


/* ═══ LIGHTBOX ═══ */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    cursor: default;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
}

.lightbox-caption-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 4px;
}

.lightbox-caption-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-on-dark-dim);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--paper-light);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-on-dark-dim);
    cursor: pointer;
    border: none;
    background: none;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--paper-light);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-counter {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--text-on-dark-dim);
    margin-top: 10px;
    text-align: center;
}


/* ═══ RESPONSIVE ═══ */

@media (max-width: 1200px) {
    .ornament-undersea {
        right: -20px;
        top: -10px;
        width: 90px;
        opacity: 0.3;
    }
    .ornament-snowy {
        left: -20px;
        top: -10px;
        width: 100px;
        opacity: 0.3;
    }
}

@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 80px;
        min-height: 90vh;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    .hero-boot {
        width: 120px;
        height: 120px;
    }
    .hero-text {
        text-align: center;
    }
    .nav {
        padding: 12px 20px;
        gap: 16px;
        font-size: 0.62rem;
    }
    .section-paper {
        padding: 56px 24px;
    }
    .gallery-section {
        padding: 56px 24px;
    }
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .photo-item-caption {
        opacity: 1;
        transform: translateY(0);
    }
    .illus-band-inner {
        padding: 28px 20px;
        justify-content: center !important;
    }
    .illus-figure img {
        height: 180px;
    }
    .timeline {
        padding-left: 24px;
    }
    .book-info {
        padding: 24px;
    }
    .ornament {
        display: none;
    }
    .lightbox-nav {
        display: none;
    }
    .press-entry,
    .featured-book-entry {
        gap: 18px;
        padding: 18px 12px;
    }

    .press-entry-logo-wrap {
        width: 56px;
        height: 56px;
    }

    .press-entry-logo-wrap img {
        max-width: 44px;
        max-height: 44px;
    }

    .featured-book-cover { width: 56px; }
    .featured-book-cover img { width: 56px; }
    .featured-book-cover-placeholder { width: 56px; }

    .press-entry-headline,
    .featured-book-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-boot {
        width: 90px;
        height: 90px;
    }
    .nav {
        gap: 10px;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }
    .illus-figure img {
        height: 140px;
    }
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
