/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Home page white background and black text */
body.home {
    background: #fff;
    color: #000;
}

/* About page white background and black text */
body.about {
    background: #fff;
    color: #000;
}

.about-container h1,
.about-content,
.about-content p {
    color: #000;
}

/* Top banner */
.top-banner {
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.banner-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.banner-title:hover {
    opacity: 0.7;
}

.banner-nav {
    display: flex;
    gap: 40px;
}

.banner-nav a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400; /* normal */
    padding: 8px 0;
    border-bottom: none; /* remove underline */
    transition: font-weight 0.2s, color 0.2s;
}

.banner-nav a.active,
.banner-nav a:active {
    font-weight: 700; /* bold when active */
    color: #000;
}

.banner-nav a:hover {
    /* No underline, just a slight color change if desired */
    color: #222;
    opacity: 0.7;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 8px 0;
    cursor: pointer;
    transition: font-weight 0.2s, color 0.2s, opacity 0.2s;
}

.dropdown-trigger.active {
    font-weight: 700;
}

.dropdown-trigger:hover {
    color: #222;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, opacity 0.2s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    opacity: 0.8;
}

.dropdown-menu a.active {
    font-weight: 700;
}

/* Home page layout */
.home-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Name */
.home-container h1 {
    font-size: 96px;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin-bottom: 40px;
}

/* Navigation under name */
.home-nav {
    display: flex;
    gap: 40px;
}

.home-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Home link */
.home-link {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 10;
}

.home-link:hover {
    opacity: 0.7;
}

/* Slider layout */
.slider-container {
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Slides */
.slide {
    display: none;
    width: 80%;
    height: 80%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover overlay */
.slide a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay span {
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.05em;
    text-align: center;
}

.slide a:hover .overlay {
    opacity: 1;
}

/* Slide text underneath */
.slide-title {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Navigation buttons */
.nav-button {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}
/* Make slide button invisible */
.slide button {
    all: unset;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* PDF viewer */
#pdf-viewer {
    background: #000;
    padding: 40px;
}

#pdf-frame {
    width: 100%;
    height: 90vh;
    border: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 60px 40px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.modal-content article {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.modal-content p {
    margin-bottom: 15px;
}

/* Article page */
.article-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    min-height: 100vh;
}

#article-content h1 {
    font-size: 64px; /* bigger */
    margin-bottom: 40px;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase; /* all caps */
}

.article-published {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 40px;
    font-style: italic;
    font-family: Georgia, serif;
}

#article-content p {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Full-width article image */
.article-image {
    width: 540px; /* was 420px */
    max-width: 98vw; /* was 95vw */
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 0;
    object-fit: contain;
    margin-top: 40px;
    margin-bottom: 0;
}

/* Only these images are full width */
.article-image[data-fullwidth="true"] {

    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    object-fit: cover !important;
    display: block;
}

/* Article image captions: always centered under image */
.article-image-caption {
    font-size: 13px;
    text-align: center;
    color: #888;
    margin-top: 10px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    width: 100%;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    background: none;
    padding: 0;
    display: block;
}

/* For fullwidth images, caption also full width and centered */
.article-image[data-fullwidth="true"] + .article-image-caption {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Prevent horizontal scroll on article pages */
body, html {
    overflow-x: hidden;
}

/* About page */
.about-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    min-height: 100vh;
}

.about-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-align: center;
}

.about-image {
    text-align: center;
    margin: 40px 0;
}

.about-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Contact page */
.contact-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    min-height: 100vh;
}

/* Contact page white background and black text */
body.contact {
    background: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.contact-info {
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.contact-info a:hover {
    opacity: 0.7;
}

/* Visuals page */
.visuals-container {
    padding: 100px 0 0;
    background: #fff; /* white background */
}

.visuals-container h1 {
    font-size: 48px;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 0 40px;
    color: #000;
}

.visuals-intro {
    max-width: 720px;
    margin: -40px auto 60px;
    padding: 0 24px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.visuals-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 0 40px 80px;
}

.visuals-card {
    border: 1px solid #eee;
    padding: 24px;
    background: #fff;
    color: #000;
}

.visuals-card-title {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    padding: 0 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #eee;
    display: block;
}

.video-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-title {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.video-date {
    font-size: 14px;
    color: #444;
}

.writing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
    padding: 0 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.writing-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.writing-card a {
    text-decoration: none;
}

.writing-thumb-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #eee;
    display: block;
}

.writing-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.writing-title {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.writing-date {
    font-size: 14px;
    color: #444;
}

 

.visuals-page-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    margin-top: 32px;
    color: #000;
}

.visuals-page-subtitle {
    display: block;
    margin-top: 6px;
    font-size: 28px;
    letter-spacing: 0.2em;
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 28px;
    padding: 0 40px 80px;
    max-width: 980px;
    margin: 0 auto 80px;
}

.visuals-grid-item {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visuals-grid-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
}

.visuals-grid-title {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.visuals-grid-item:hover .visuals-grid-thumb {
    opacity: 0.9;
}

.visual-detail {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visual-detail-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.visual-detail-grid {
    column-count: 3;
    column-gap: 12px;
}

.visual-detail-item {
    position: relative;
    margin-bottom: 12px;
    break-inside: avoid;
}

.visual-detail-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #eee;
}

.visual-detail-index {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    letter-spacing: 0.05em;
}

.projects-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-section {
    margin-bottom: 100px;
}

.project-images-full {
    display: flex;
    gap: 0; /* no gap between images */
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    height: 80vh;
    scroll-behavior: smooth;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: #fff;
}

.project-images-full::-webkit-scrollbar {
    display: none;
}

.project-images-full img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 0; /* no border radius */
    flex-shrink: 0;
    margin: 0;
    border: none; /* no border */
}

.project-images-scroll {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    height: 480px;
    align-items: center;
    scroll-behavior: smooth;
    background: #fff;
    margin-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-images-scroll::-webkit-scrollbar {
    display: none;
}

.visuals-scroll-img {
    height: 100%;
    width: auto;
    max-height: 480px;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    display: block;
}

.project-caption {
    padding: 40px;
    max-width: 800px;
    color: #000;
}

.project-caption h2 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000;
}

.project-caption p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    letter-spacing: 0.01em;
}

/* Writing page white background and black text */
body:not(.home):not(.about):not(.contact) {
    background: #fff;
    color: #000;
}

/* Writing page list layout */
.writing-list-container {
    max-width: 100vw;
    margin: 120px 0 0 0;
    padding: 0;
}

.writing-list-title {
    font-size: 48px;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
    text-align: center; /* center the title */
    color: #000;
    padding-left: 0;
    font-weight: 900;
}

.writing-list {
    display: flex;
    flex-direction: column;
    gap: 24px; /* reduced from 48px to 24px */
}

.writing-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align to the left */
    width: 100vw;
}

.writing-thumb {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.2s;
    object-fit: cover;
    display: block;
}

.writing-thumb:hover {
    transform: scale(1.01);
    opacity: 0.85;
}

.writing-caption {
    margin-top: 24px;
    font-size: 26px; /* was 20px */
    letter-spacing: 0em;
    color: #000;
    text-align: left;
    font-weight: 400; /* not bold */
    text-transform: none;
    width: 100vw;
    max-width: 820px;
    padding-left: 12px;   /* just a little to the right */
    margin-left: 0;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.desc-toggle {
    background: none;
    border: none;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 8px;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s;
}

.desc-toggle:hover {
    color: #888;
}

.writing-desc {
    display: none;
    font-size: 16px;
    color: #444;
    margin-top: 8px;
    margin-left: 0;
    max-width: 820px;
    padding-left: 0;
    padding-right: 24px;
    line-height: 1.6;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 16px 24px;
    box-sizing: border-box;
}

.writing-desc.open {
    display: block;
}

.published-link {
    display: inline-block;
    margin-top: 12px;
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.published-link:hover {
    color: #888;
}

/* Published article image */
.published-photo img {
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Fullscreen modal for description */
.desc-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}

.desc-modal.open {
    display: flex;
}

.desc-modal-content {
    background: #fff;
    color: #000;
    border-radius: 0; /* straight edges */
    max-width: 600px;
    width: 90vw;
    max-height: 80vh;
    padding: 48px 32px 32px 32px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
}

.desc-modal-close {
    position: absolute;
    top: 18px;
    right: 28px;
    background: none;
    border: none;
    color: #000;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
    font-family: Arial, Helvetica, sans-serif;
}

.desc-modal-close:hover {
    color: #888;
}

.desc-modal-body {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
    margin-top: 8px;
    width: 100%;
}

.pull-quote {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    text-align: center;
    font-style: normal;
    color: #222;
    margin: 48px auto 48px auto;
    max-width: 700px;
    line-height: 1.3;
    font-weight: 700; /* bold */
    letter-spacing: 0.01em;
    background: none;
    border: none;
    padding: 0 16px;
}

/* Footer */
.site-footer {
    width: 100%;
    text-align: center;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    padding: 40px 0 24px 0;
    background: transparent;
    letter-spacing: 0.02em;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Visuals modal */
.visuals-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff; /* white background */
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.visuals-modal img {
    width: 100vw;
    height: auto;
    max-width: 100vw;
    max-height: 90vh;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
    display: block;
    object-fit: contain;
}

.visuals-modal-close {
    position: absolute;
    top: 18px;
    right: 28px;
    background: none;
    border: none;
    color: #000;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
    font-family: Arial, Helvetica, sans-serif;
}

.visuals-modal-close:hover {
    color: #888;
}

.visuals-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #222;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    cursor: pointer;
    z-index: 10;
    padding: 4px 12px;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
    user-select: none;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.01em;
}

.visuals-modal-nav:hover {
    color: #000;
    opacity: 1;
    background: none;
}

.visuals-modal-prev {
    left: 24px;
}

.visuals-modal-next {
    right: 24px;
}

.visuals-thumb-img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: 600px; /* increased from 480px */
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    margin: 0 auto;
}

.visual-title {
    font-size: 32px;
    font-weight: 400; /* not bold */
    letter-spacing: -0.01em;
    color: #000;
    text-transform: none; /* not uppercase */
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 12px;
    line-height: 1.1;
}

.writing-categories-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin: 40px 0 32px 0;
    padding-left: 0;
}

.writing-category-btn {
    background: none;
    border: none;
    color: #222;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 6px 18px;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.15s, border-bottom 0.15s, font-weight 0.15s;
    outline: none;
    border-bottom: 2px solid transparent;
}

.writing-category-btn.active {
    color: #000;
    font-weight: 700; /* bold when active */
    border-bottom: 2px solid #000;
    background: none;
}

.writing-category-btn:hover {
    color: #000;
    border-bottom: 2px solid #000;
    background: none;
}

.article-title-fullwidth {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0 16px;
    box-sizing: border-box;
    line-height: 1.1;
}

.article-title-main {
    font-size: 20vw; /* even larger, spans the page */
    font-weight: 900;
    letter-spacing: -0.05em;
    text-align: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0.5vw;
    box-sizing: border-box;
    line-height: 0.9;
    word-break: break-word;
}

.article-title-sub {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 32px;
    margin-top: 0;
    color: #181818;
    padding: 0 16px;
    box-sizing: border-box;
    line-height: 1.15;
}

.article-body-large {
    font-size: 21px;
    line-height: 1.7;
    color: #181818;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.madonna-images-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin: 48px 0 16px 0;
    width: 100%;
}

.article-image-multi {
    width: 28vw;
    max-width: 340px;
    min-width: 180px;
    height: auto;
    border-radius: 0; /* remove rounded corners */
    object-fit: cover;
    display: block;
    margin: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.article-meta-list {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-top: 28px;
    margin-bottom: 0;
}

/* Minimalist selected work section */
.home-selected-work {
    margin: 80px auto 0 auto; /* was 180px, now raised */
    max-width: 1100px;
    padding: 0 24px;
    text-align: center;
}

.selected-work-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
    color: #111;
    text-transform: uppercase;
    margin-top: 56px; /* add space above the title */
    top: 30%
}

.selected-work-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 0;
    position: absolute;
    left: 50%;
    top: 22%; /* was 58%, now higher up */
    transform: translate(-50%, 0);
    width: 320px;
    z-index: 2;
}

.selected-work-images-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    position: relative;
    /* Remove gap, use large margins for spacing */
}

.selected-work-img {
    width: 320px;
    max-width: 30vw;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
    background: #fff;
}

.selected-work-img:first-child {
    margin-left: 0;
    margin-right: 220px; /* Large space for links */
}

.selected-work-img:last-child {
    margin-left: 220px; /* Large space for links */
    margin-right: 0;
}

.selected-work-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #181818;
    text-align: center;
    margin-top: 0;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: font-weight 0.18s, text-decoration-thickness 0.18s, color 0.18s;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.selected-work-link:visited {
    color: #181818;
}

.selected-work-link:hover,
.selected-work-link:focus {
    font-weight: 700;
    color: #000;
    text-decoration-thickness: 3px;
}

.selected-work-item:hover .selected-work-link {
    font-weight: 700;
    color: #000;
    text-decoration-thickness: 3px;
}

@media (max-width: 900px) {
    .selected-work-images-row {
        max-width: 98vw;
    }
    .selected-work-img {
        width: 110px;
        max-width: 22vw;
    }
    .selected-work-img:first-child {
        margin-right: 90px;
    }
    .selected-work-img:last-child {
        margin-left: 90px;
    }
    .selected-work-list {
        width: 180px;
    }
}

@media (max-width: 600px) {
    .selected-work-images-row {
        display: none;
    }
    .selected-work-list {
        position: static;
        width: 100%;
        transform: none;
        align-items: center;
    }
}

/* Homepage backdrop sketches */
.home-sketch-bg-left,
.home-sketch-bg-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 340px;
    max-width: 30vw;
    z-index: 0;
    opacity: 0.22; /* darker */
    pointer-events: none;
    object-fit: contain;
    height: 100vh;
    transition: opacity 0.3s;
    filter: brightness(0.55) contrast(1.1); /* make image darker */
}

.home-sketch-bg-left {
    left: 0;
}

.home-sketch-bg-right {
    right: 0;
    transform: scaleX(-1); /* mirror for symmetry if desired */
    top: -40px; /* raise image 02 slightly */
}

@media (max-width: 900px) {
    .home-sketch-bg-left,
    .home-sketch-bg-right {
        width: 120px;
        max-width: 22vw;
        opacity: 0.09;
    }
}

@media (max-width: 600px) {
    .home-sketch-bg-left,
    .home-sketch-bg-right {
        display: none;
    }
}

/* Ensure main content is above the backdrop */
body.home .top-banner,
body.home .home-selected-work,
body.home .site-footer {
    position: relative;
    z-index: 1;
}

.selected-work-link {
    color: #181818;
    text-align: center;
}
.selected-work-link:visited {
    color: #181818;
}

