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

:root {
    --zen-black: #1a1a1a;
    --zen-white: #f8f8f8;
    --zen-gray: #9a9a9a;
    --zen-red: #c84a4a;
    --ink-wash: rgba(0, 0, 0, 0.05);
    --zen-off-white: #f5f5f5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--zen-white);
    color: var(--zen-black);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Floating Petals */
.floating-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--zen-red);
    border-radius: 50% 0 50% 0;
    opacity: 0.6;
    animation: fall 15s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* Ink Wash Background */
.ink-wash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--ink-wash) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--ink-wash) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Minimal Navigation */
.zen-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--zen-white) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ink-wash);
    z-index: 99999 !important;
    padding: 1rem 0;
    transition: background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    will-change: transform;
    display: block !important;
    visibility: visible !important;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 0 2rem;
}

.nav-item {
    font-size: 1rem;
    color: var(--zen-black);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: lowercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--zen-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--zen-red);
}

/* Hero Section */
.zen-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

/* Featured Artworks - Integrated into gallery */
.featured-artworks-container {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 5rem;
    padding: 0 2rem;
}

.enso-circle {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeIn 2s ease 0.5s forwards;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.enso-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    animation: fadeInImage 1s ease 3.5s forwards;
    z-index: 0;
    clip-path: circle(50%);
    aspect-ratio: 1 / 1;
}

.enso-circle svg {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.enso-path {
    fill: none;
    stroke: var(--zen-black);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawEnso 3s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1);
    }
    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes drawEnso {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInPhoto {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zen-title {
    margin-bottom: 2rem;
}

.main-title {
    display: block;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
    letter-spacing: 8px;
    text-transform: lowercase;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 8px;
    text-transform: lowercase;
    color: var(--zen-gray);
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zen-quote {
    max-width: 600px;
    margin: 3rem auto 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--zen-gray);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.quote-author {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: right;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    pointer-events: none;
}

.vertical-text {
    writing-mode: vertical-rl;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--zen-gray);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--zen-black);
    animation: extend 2s ease infinite;
}

@keyframes extend {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Gallery Section */
.zen-gallery {
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.section-title {
    margin-bottom: 1rem;
}

.main-section-title {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 10px;
    text-transform: lowercase;
}

.section-subtitle-text {
    display: block;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: lowercase;
    color: var(--zen-gray);
    font-style: italic;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    min-height: 60vh;
    contain: layout;
    padding: 0 2rem 4rem;
}

.gallery-action {
    text-align: center;
    margin: 2rem auto 0;
}

.collections-view {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.collections-view.is-hidden {
    display: none;
}

.gallery-collection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collection-label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--zen-gray);
}

.collection-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.15em;
    font-weight: 400;
    text-transform: lowercase;
}

.collection-description {
    color: var(--zen-gray);
    max-width: 700px;
}

.collection-grid {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.collection-grid .masonry-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.collection-grid .gallery-item {
    width: 100%;
    display: block;
}

/* Tablet styles (iPad, etc.) - between mobile and desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .zen-featured-works {
        padding: 5rem 2rem 7rem;
    }
    
    .featured-works-container {
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .featured-item-large .gallery-item-wrapper {
        min-height: 400px;
        max-height: 450px;
    }
    
    .featured-item-small .gallery-item-wrapper {
        min-height: 350px;
        max-height: 400px;
    }
    
    .biography-image-wrapper .artist-photo {
        max-height: 600px;
    }
    
    .zen-biography {
        padding: 6rem 2rem 8rem;
    }
}

@media (max-width: 968px) {
    .collection-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .collection-grid .masonry-column {
        gap: 2rem;
    }
    
    .all-gallery-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .all-gallery-grid .masonry-column {
        gap: 2rem;
    }
}

.all-gallery-view {
    display: none;
    padding: 4rem 2rem 0;
}

.all-gallery-view.is-visible {
    display: block;
}

.all-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.all-gallery-grid {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.all-gallery-grid .masonry-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.all-gallery-grid .gallery-item {
    width: 100%;
    display: block;
}

.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
    position: relative;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Stagger animation delays */
.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }
.gallery-item:nth-child(9) { transition-delay: 0.45s; }

.gallery-item-wrapper {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    background: transparent;
    will-change: transform;
    display: block;
    width: 100%;
    /* Masonry: let images display at natural aspect ratios */
}

.gallery-item-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Masonry: images display at natural aspect ratios */
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* Portrait images maintain their natural proportions */
.gallery-item-wrapper.portrait img {
    width: 100%;
    height: auto;
}

/* Landscape images maintain their natural proportions */
.gallery-item-wrapper.landscape img {
    width: 100%;
    height: auto;
}

/* Square images maintain their natural proportions */
.gallery-item-wrapper.square img {
    width: 100%;
    height: auto;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.02);
}

/* Gallery Item Hover Overlay */
.gallery-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item-wrapper:hover .gallery-item-hover {
    opacity: 1;
}

.hover-text {
    color: var(--zen-white);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: lowercase;
    border: 1px solid var(--zen-white);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.gallery-item-wrapper:hover .hover-text {
    transform: scale(1.05);
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-item-info {
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 0.5rem;
}

.gallery-item-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.gallery-item-number {
    font-size: 0.85rem;
    color: var(--zen-gray);
    letter-spacing: 2px;
}

/* Pagination */
.pagination {
    margin: 6rem auto 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
}

.page-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--zen-black);
    color: var(--zen-black);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--zen-red);
    color: var(--zen-red);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--zen-gray);
}

.page-number:hover {
    color: var(--zen-red);
}

.page-number.active {
    border-color: var(--zen-black);
    color: var(--zen-black);
}

/* Biography Section */
.zen-biography {
    padding: 8rem 2rem 10rem;
    background: var(--zen-white);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zen-biography.visible {
    opacity: 1;
    transform: translateY(0);
}

.biography-content {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: center;
    min-height: 0;
}

.biography-content.no-artist-photo {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.biography-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
}

.biography-image-wrapper .artist-photo {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    order: 1;
    margin: 0;
    padding: 0;
    display: block;
    vertical-align: top;
}

.biography-image-wrapper[style*="display: none"] {
    display: none !important;
}

/* When image wrapper is hidden, make text full width */
.biography-content .biography-image-wrapper[style*="display: none"] ~ .biography-text {
    grid-column: 1 / -1;
}

.artist-photo {
    display: block;
    opacity: 0;
    animation: fadeInPhoto 1s ease 0.5s forwards;
}

.artist-name {
    margin: 0;
    padding: 0.25rem 0 0 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--zen-gray);
    letter-spacing: 0.05em;
    font-style: italic;
    order: 3;
}

.image-border {
    display: none !important;
    order: 2;
    height: 0;
    margin: 0;
    padding: 0;
}

.biography-image-wrapper:not(:has(img)) .image-border {
    display: none;
}

.biography-text {
    padding: 0;
}

.artist-signature {
    margin-top: 4rem;
    text-align: center;
}

.signature-mark {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--zen-red);
}

.signature-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: lowercase;
    color: var(--zen-gray);
}


/* Contact Section Updates */
.contact-intro {
    max-width: 600px;
    margin: 2rem auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--zen-gray);
}

.zen-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}


/* Footer Updates */
.footer-content {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    color: var(--zen-gray);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--zen-black);
}

.footer-divider {
    color: var(--zen-gray);
}

/* Social Links */
.social-links {
    margin: 2rem 0 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.social-link {
    color: var(--zen-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--zen-black);
}

.social-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Blog Page Styles */
.blog-hero {
    padding: 12rem 2rem 8rem;
    text-align: center;
    position: relative;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    margin-bottom: 4rem;
}

.main-blog-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: var(--zen-black);
}

.blog-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--zen-gray);
    text-transform: lowercase;
    font-weight: 300;
}

.blog-haiku {
    margin-top: 4rem;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--zen-gray);
}

.blog-posts {
    padding: 4rem 2rem 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.blog-post {
    display: flex;
    gap: 4rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--ink-wash);
    position: relative;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
    padding-top: 1rem;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--zen-black);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--zen-gray);
    margin-top: 0.5rem;
}

.date-year {
    display: block;
    font-size: 0.9rem;
    color: var(--zen-gray);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.blog-post-content {
    flex: 1;
}

.blog-post-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--zen-black);
    line-height: 1.4;
}

.blog-post-meta {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: var(--zen-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-divider {
    color: var(--zen-gray);
}

.blog-post-excerpt {
    margin-bottom: 2rem;
    line-height: 1.9;
}

.blog-post-excerpt p {
    margin-bottom: 1.5rem;
    color: var(--zen-gray);
    font-size: 1.1rem;
}

.read-more-link {
    color: var(--zen-black);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--zen-red);
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--zen-red);
}

.read-more-link:hover::after {
    width: 100%;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
        gap: 2rem;
    }
    
    .blog-post-date {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .date-day,
    .date-month,
    .date-year {
        display: inline;
        margin: 0;
    }
    
    .main-blog-title {
        font-size: 2.5rem;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
}

/* Modal Updates */
.modal-info-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--zen-gray);
    text-align: center;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Haiku Divider */
.haiku-divider {
    max-width: 600px;
    margin: 8rem auto;
    padding: 3rem 0;
    border-top: 1px solid var(--ink-wash);
    border-bottom: 1px solid var(--ink-wash);
}

.haiku {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--zen-gray);
}

/* About Section */
.zen-about {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, transparent, var(--ink-wash), transparent);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.ink-circle {
    width: 100px;
    height: 100px;
    border: 1px solid var(--zen-black);
    border-radius: 50%;
    margin: 0 auto 3rem;
    opacity: 0.3;
}

.about-text {
    margin-top: 4rem;
}

.zen-paragraph {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--zen-gray);
}

.artist-seal {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seal-stamp {
    width: 80px;
    height: 80px;
    border: 2px solid var(--zen-red);
    color: var(--zen-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: rotate(45deg);
    margin-bottom: 1rem;
}

.seal-text {
    font-size: 0.9rem;
    color: var(--zen-gray);
    letter-spacing: 2px;
}

/* Contact Section */
.zen-contact {
    padding: 4rem 2rem 6rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--ink-wash);
    text-align: center;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--zen-gray);
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.contact-link {
    color: var(--zen-black);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.contact-link:hover {
    color: var(--zen-red);
}

.contact-value {
    font-size: 1.2rem;
    color: var(--zen-black);
    display: inline-block;
    text-align: center;
}

/* Zen Form */
.zen-form {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.zen-form input,
.zen-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid var(--zen-black);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--zen-black);
    transition: border-color 0.3s ease;
}

.zen-form input:focus,
.zen-form textarea:focus {
    outline: none;
    border-bottom-color: var(--zen-red);
}

.zen-button {
    align-self: center;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--zen-black);
    color: var(--zen-black);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zen-button span {
    position: relative;
    z-index: 2;
}

.button-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--zen-red);
    transition: width 0.5s ease;
}

.zen-button:hover .button-line {
    width: 100%;
}

.zen-button:hover {
    border-color: var(--zen-red);
    color: var(--zen-red);
}

.zen-button.secondary {
    background: var(--zen-black);
    color: var(--zen-white);
}

.zen-button.secondary .button-line {
    background: var(--zen-white);
}

.zen-button.secondary:hover {
    background: var(--zen-red);
    border-color: var(--zen-red);
    color: var(--zen-white);
}

/* Featured Works Section */
.zen-featured-works {
    padding: 4rem 2rem 8rem;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.featured-works-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
}

/* Large featured item spans full width on top */
.featured-item-large {
    grid-column: 1 / -1;
    grid-row: 1;
}

/* Small featured items are side-by-side below */
.featured-item-small {
    grid-column: auto;
    grid-row: 2;
}

.featured-works-container .gallery-item {
    margin-bottom: 0;
}

/* Featured works - uniform container sizes for visual consistency */
/* All containers use the same aspect ratio regardless of image orientation */
/* Images will use object-fit: contain to display properly within uniform containers */

/* Large featured item - consistent 16:9 aspect ratio (works well for both orientations) */
.featured-item-large .gallery-item-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 450px;
    max-height: 500px;
}

/* Small featured items - consistent square containers */
.featured-item-small .gallery-item-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 400px;
    max-height: 450px;
}

/* Ensure all images fill their containers properly */
.featured-works-container .gallery-item-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* FAQ Section */
.zen-faq {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.zen-faq .section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.zen-faq .section-title {
    margin-bottom: 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    transition: background-color 0.3s ease;
    padding: 0;
    background: transparent;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background-color: rgba(0, 0, 0, 0.015);
}

/* FAQ Question Button - High specificity to override any global button styles */
.zen-faq .faq-container .faq-item button.faq-question,
.faq-item button.faq-question {
    width: 100% !important;
    padding: 2rem 0 !important;
    background: none !important;
    border: none !important;
    text-align: center !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: 1.25rem !important;
    color: #1a1a1a !important;
    letter-spacing: 0.03em !important;
    text-transform: lowercase !important;
    transition: color 0.3s ease !important;
    font-weight: 400 !important;
    outline: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    line-height: 1.4 !important;
}

.zen-faq .faq-container .faq-item button.faq-question:hover,
.faq-item button.faq-question:hover {
    color: var(--zen-red) !important;
}

.zen-faq .faq-container .faq-item button.faq-question span:first-child,
.faq-item button.faq-question span:first-child {
    flex: 0 1 auto !important;
    text-align: center !important;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
    color: var(--zen-gray);
    transition: transform 0.2s ease;
}

.faq-question:hover .faq-icon {
    border-color: var(--zen-red);
}

.faq-question:hover .faq-icon::before {
    border-top-color: var(--zen-red);
}

.faq-question[aria-expanded="true"] .faq-icon {
    border-color: var(--zen-red);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
    border-top-color: var(--zen-red);
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2.5rem 2rem;
}

.faq-answer p {
    color: var(--zen-gray);
    line-height: 1.8;
    margin: 0 0 1.25rem 0;
    padding: 0;
    font-size: 1.05rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    max-width: 100%;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer p strong {
    color: #1a1a1a;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Footer */
.zen-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--ink-wash);
    color: var(--zen-gray);
    font-size: 0.9rem;
}

.footer-symbol {
    margin-top: 2rem;
    font-size: 2rem;
    opacity: 0.3;
}

/* Artwork Modal */
.artwork-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.artwork-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 248, 248, 0.98);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--zen-black);
    color: var(--zen-black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100001;
}

.close-modal:hover {
    border-color: var(--zen-red);
    color: var(--zen-red);
}

.modal-container {
    max-width: 95%;
    max-height: 95vh;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.modal-image-wrapper {
    position: relative;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-wrapper img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    object-fit: contain;
    border: 4px solid var(--zen-black);
    box-shadow: 
        inset 0 0 0 2px rgba(255, 255, 255, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Modal Navigation Buttons */
.modal-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(248, 248, 248, 0.95);
    border: 2px solid var(--zen-black);
    color: var(--zen-black);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav-button:hover {
    background: var(--zen-red);
    border-color: var(--zen-red);
    color: var(--zen-white);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-prev {
    left: 2rem;
}

.modal-nav-next {
    right: 2rem;
}

.modal-keyboard-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--zen-gray);
    text-align: center;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
}

.modal-details {
    padding: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.modal-medium {
    color: var(--zen-gray);
    margin-bottom: 1rem;
}

.modal-materials {
    color: var(--zen-gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

.modal-haiku {
    padding: 2rem 0;
    border-top: 1px solid var(--ink-wash);
    border-bottom: 1px solid var(--ink-wash);
    margin-bottom: 3rem;
}

.modal-haiku p {
    font-style: italic;
    line-height: 2;
    color: var(--zen-gray);
}

/* Responsive */
/* Scale down for very large screens */
@media (min-width: 1920px) {
    html {
        font-size: 13px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .main-section-title {
        font-size: 2.2rem;
        letter-spacing: 7px;
    }
    
    .zen-biography {
        padding: 7rem 2rem 7rem;
    }
    
    .biography-content {
        max-width: 1100px;
        gap: 5rem;
        margin-top: 3rem;
    }
    
    .zen-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .nav-content {
        max-width: 1100px;
        gap: 3.5rem;
    }
    
    .featured-artworks-container,
    .gallery-container {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .zen-gallery {
        padding: 3rem 2rem 2rem;
    }
    
    .zen-contact {
        padding: 6rem 2rem;
    }
    
    .contact-content {
        max-width: 1100px;
    }
    
    .zen-hero {
        padding: 2rem 2rem;
    }
    
    .hero-content {
        max-width: 1100px;
    }
}

@media (max-width: 968px) {
    .modal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .biography-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Fix viewport and overflow issues */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .zen-hero {
        padding-top: 120px;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: calc(100vh - 20px);
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .enso-circle {
        width: 150px;
        height: 150px;
        margin: 0 auto 2rem;
    }
    
    .enso-image {
        width: 120px;
        height: 120px;
    }
    
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
        line-height: 1.6;
    }
    
    .zen-quote {
        font-size: 0.95rem;
        margin: 2rem auto 0;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .scroll-hint {
        bottom: 2rem;
    }
    
    .main-section-title {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .nav-content {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }
    
    .zen-nav {
        padding: 0.75rem 0;
    }
    
    .nav-item {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .featured-artworks-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .zen-featured-works {
        padding: 4rem 1rem 6rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        position: relative;
    }
    
    .zen-featured-works .section-header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    
    .featured-works-container {
        gap: 2rem;
        padding: 2rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .featured-works-container .gallery-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .featured-works-container .gallery-item-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .featured-works-container .gallery-item-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    
    .modal-container {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .modal-content {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 5rem;
    }
    
    .close-modal {
        top: 1rem;
        right: 1rem;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        z-index: 10002;
        background: rgba(248, 248, 248, 0.95);
        border-width: 2px;
    }
    
    .modal-image-wrapper {
        max-height: 50vh;
        margin-bottom: 1rem;
    }
    
    .modal-image-wrapper img {
        max-height: 50vh;
        width: 100%;
        object-fit: contain;
    }
    
    .modal-details {
        padding: 0;
        text-align: center;
        position: relative;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    .modal-medium {
        margin-bottom: 2rem;
    }
    
    .modal-haiku {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .modal-nav-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(248, 248, 248, 0.95);
        border-width: 2px;
    }
    
    .modal-nav-prev {
        left: 0.5rem;
    }
    
    .modal-nav-next {
        right: 0.5rem;
    }
    
    .gallery-container {
        gap: 2rem;
        padding: 0 1rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Fix masonry columns on mobile - collapse to single column */
    .collection-grid {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .collection-grid .masonry-column {
        width: 100% !important;
        flex: none !important;
    }
    
    .all-gallery-grid {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .all-gallery-grid .masonry-column {
        width: 100% !important;
        flex: none !important;
        gap: 2rem;
    }
    
    .featured-works-container {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .featured-item-large,
    .featured-item-small {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0;
        padding: 0;
    }
    
    .featured-item-large {
        grid-row: 1;
    }
    
    .featured-item-small:nth-of-type(2) {
        grid-row: 2;
    }
    
    .featured-item-small:nth-of-type(3) {
        grid-row: 3;
    }
    
    /* Mobile: gallery items full width */
    .gallery-item-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobile: uniform containers with adjusted sizes */
    .featured-item-large .gallery-item-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9;
        min-height: 200px;
        max-height: 280px;
        box-sizing: border-box !important;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .featured-item-small .gallery-item-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 1 / 1;
        min-height: 200px;
        max-height: 280px;
        box-sizing: border-box !important;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .featured-works-container .gallery-item-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        display: block;
        box-sizing: border-box;
    }
    
    .featured-works-container .gallery-item-info {
        padding: 0 0.5rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .featured-works-container .gallery-item-title {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .featured-artworks-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        margin: 0 auto 4rem;
    }
    
    .gallery-action {
        width: 100%;
        margin: 1rem 0 0;
    }
    
    .gallery-action .zen-button {
        width: 100%;
    }
    
    .all-gallery-view {
        padding: 3rem 1rem 0;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .page-btn {
        width: 100%;
    }
    
    .zen-biography {
        padding: 4rem 1rem 6rem;
    }
    
    .biography-content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .biography-image-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .biography-image-wrapper .artist-photo {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        box-sizing: border-box;
    }
    
    .zen-biography {
        padding: 4rem 1rem 6rem;
        overflow-x: hidden;
    }
    
    .biography-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }
    
    .zen-faq {
        padding: 4rem 1rem;
    }
    
    .faq-container {
        padding: 1rem 0;
    }
    
    .zen-contact {
        padding: 4rem 1rem;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .collection-header {
        padding: 0 1rem;
    }
    
    .cookie-banner {
        padding: 1.5rem 1rem !important;
    }
    
    .cookie-banner-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .cookie-banner-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .cookie-btn {
        width: 100% !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .zen-hero {
        padding-top: 130px;
        padding-bottom: 3rem;
    }
    
    .nav-content {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .zen-nav {
        padding: 0.5rem 0;
    }
    
    .nav-item {
        font-size: 0.8rem;
    }
    
    .main-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .zen-quote {
        font-size: 0.85rem;
        margin: 1.5rem auto 0;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--zen-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--zen-black);
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-link {
    color: var(--zen-red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
}

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

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: 1px solid var(--zen-black);
    background: transparent;
    color: var(--zen-black);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--zen-black);
    color: var(--zen-white);
}

.cookie-btn-accept:hover {
    background: var(--zen-red);
    border-color: var(--zen-red);
    color: var(--zen-white);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--zen-black);
}

.cookie-btn-decline:hover {
    background: var(--zen-black);
    color: var(--zen-white);
}

