/*
=================================================================
ANN GENERLICH — MAIN STYLESHEET
=================================================================

INDEX

01. SETTINGS & BASE
    01.1 Variables
    01.2 Reset & document base
    01.3 Global images & links

02. GLOBAL COMPONENTS
    02.1 Buttons
    02.2 Social icons

03. NAVIGATION
    03.1 Menu positioning
    03.2 Hamburger
    03.3 Open state
    03.4 Popout panel
    03.5 Collections submenu

04. ACCESSIBILITY

05. HOME PAGE
    05.1 Responsive: mobile
    05.2 Responsive: small mobile
    05.3 Responsive: short screens
    05.4 Reduced motion
    05.5 Background carousel
    05.6 Image overlay
    05.7 Hero content

06. INTERNAL PAGE FRAME
    06.1 Page base & container
    06.2 Header
    06.3 Brand
    06.4 Internal navigation

07. ABOUT ANN
    07.1 Introduction
    07.2 The Work
    07.3 Q&A
    07.3.1 Brochure buttons
    07.4 Responsive

08. CONTACT
    08.1 Contact layout
    08.2 Contact details
    08.3 Form
    08.4 Responsive

09. FOOTER
    09.1 Footer layout
    09.2 Responsive

10. EVENTS
    10.1 Event hero
    10.2 Event details
    10.3 Invitation
    10.4 Artwork thumbnails
    10.5 Quotes
    10.6 Closing
    10.7 Responsive

11. GALLERY COLLECTIONS
    11.1 Base collection page
    11.2 Kinetica
    11.3 Arcana
    11.4 Lucivra

12. PRIVACY POLICY
    12.1 Privacy wrapper
    12.2 Privacy link
    12.3 Privacy content
    12.4 Responsive

NOTE:
Existing selectors, declarations, values and cascade order are preserved.
Only comments, hierarchy labels and organisation headings have been cleaned up.
The new "About Ann — The Work" rules are the only added CSS.
=================================================================
*/

:root {
    --red: #cb2c2f;
    --white: #fff;
    --text: rgba(255, 255, 255, 0.88);
    --pink: #EB8081;
    --teal: #2c7774;
    --tealDark: #245f5d;
}


/* =========================================================
   01. SETTINGS & BASE
   ========================================================= */

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

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    background: #000;
    color: var(--text);

    font-family:
        "Source Sans 3",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 18px;
    line-height: 1.55;

    -webkit-font-smoothing: antialiased;
}

.home {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a.red {
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
}
a.red:hover {
    color: var(--red);
    opacity: 1;
}

/* =========================================================
   02. GLOBAL COMPONENTS
   ========================================================= */

/* ---------------------------------------------------------
   02.1 Buttons
   --------------------------------------------------------- */

.hero-actions {
    display: flex;
    gap: 0.75rem;

    margin-bottom: 1.4rem;
}

.button {
    display: inline-block;
    padding: 0.7rem 1.3rem;

    border: 2px solid #fff;

    color: #fff;
    background: transparent;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.button--primary {
    border-color: var(--red);
    background: var(--red);
}

.button--secondary {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}


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

.button--primary:hover {
    background: transparent;
}


.button--secondary:hover {
    background:  var(--tealDark);
    border-color: var(--tealDark);
    color: #fff;
}
/* Optional downward chevron */

.button--chevron::after {
    content: "";
    display: inline-block;

    width: 0.45em;
    height: 0.45em;

    margin-left: 0.75em;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: translateY(-0.15em) rotate(45deg);
}

/* ---------------------------------------------------------
   02.2 Social icons
   --------------------------------------------------------- */

.social-links {
    display: flex;
    gap: 0.85rem;
}

.social-links a {
    display: block;

    width: 23px;
    height: 23px;

    color: var(--white);

    opacity: 0.8;

    transition:
        opacity 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    color: var(--red);
    opacity: 1;
}

.social-links svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: currentColor;
}


/* =========================================================
   03. NAVIGATION
   ========================================================= */

/* ---------------------------------------------------------
   03.1 Menu positioning
   --------------------------------------------------------- */

.menu {
    position: fixed;

    top: 2.5rem;
    right: 3rem;

    z-index: 20;
}


/* ---------------------------------------------------------
   03.2 Hamburger
   --------------------------------------------------------- */

.menu-toggle {
    position: relative;
    z-index: 22;

    display: flex;

    width: 40px;
    height: 32px;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    padding: 0;

    cursor: pointer;

    list-style: none;
}

.menu-toggle::-webkit-details-marker {
    display: none;
}

.menu-toggle::marker {
    content: "";
}

.menu-toggle span {
    display: block;

    width: 32px;
    height: 3px;

    background: var(--red);

    border-radius: 2px;

    transform-origin: center;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        background 0.35s ease;
}


/* ---------------------------------------------------------
   03.3 Open state
   --------------------------------------------------------- */

.menu[open] .menu-toggle span {
    background: var(--white);
}

.menu[open] .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu[open] .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu[open] .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ---------------------------------------------------------
   03.4 Popout panel
   --------------------------------------------------------- */

.menu-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: min(320px, 85vw);
    height: 100vh;
    height: 100svh;

    padding: 7rem 3rem 3rem;

    background: rgba(203, 44, 47, 0.97);

    transform: translateX(100%);

    transition: transform 0.4s ease;
}

.menu[open] .menu-panel {
    transform: translateX(0);
}

.menu-panel ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.menu-panel li {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.25);
}

.menu-panel a {
    display: block;

    padding: 0.7rem 0;

    color: var(--white);

    font-size: 1.4rem;
    font-weight: 400;

    transition:
        opacity 0.2s ease,
        padding-left 0.2s ease;
}

.menu-panel a:hover {
    padding-left: 0.3rem;
    opacity: 0.7;
}

/* ---------------------------------------------------------
   03.5 Collections submenu
   --------------------------------------------------------- */

.nav-section {
    display: block;
    padding: 0.7rem 0 0.35rem;

    color: #fff;

    font-size: 1.4rem;
    font-weight: 400;
}

.nav-submenu {
    margin: 0 0 0.7rem;
    padding: 0 0 0.5rem 1rem !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-panel .nav-submenu li {
    border: 0;
}

.menu-panel .nav-submenu a {
    padding: 0.3rem 0;

    font-size: 1rem;
    font-weight: 400;

    opacity: 0.75;
}

.menu-panel .nav-submenu a:hover {
    padding-left: 0.3rem;
    opacity: 1;
}
/* =========================================================
   04. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}


/* =========================================================
   05. HOME PAGE
   ========================================================= */

/* ---------------------------------------------------------
   05.1 Responsive: mobile
   --------------------------------------------------------- */

@media (max-width: 800px) {

    html {
        scroll-padding-top: 110px;
    }

    .hero {
        align-items: flex-start;

        padding:
            clamp(4.5rem, 10vh, 6rem)
            1.5rem
            2rem;

        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 600px;

        margin: 0 auto;
    }

    .logo {
        width: 120px;

        margin-right: auto;
        margin-left: auto;
    }

    
    .artist-name {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .artist-title {
        font-size: 0.95rem;
    }

    .artist-intro {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .social-links {
        justify-content: center;
    }

    .menu {
        top: 1.75rem;
        right: 1.5rem;
    }

}


/* ---------------------------------------------------------
   05.2 Responsive: small mobile
   --------------------------------------------------------- */

   @media (max-width: 700px) {

    .hero {
        padding-top: 4.5rem;
    }

    .logo {
        width: 100px;
    }

    .artist-intro {
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;

        width: 100%;
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions .button {
        width: 100%;
        padding: 0.8rem 1rem;

        text-align: center;
    }

    .menu-panel {
        width: 100%;
    }

}


/* ---------------------------------------------------------
   05.3 Responsive: short screens
   --------------------------------------------------------- */

@media (max-height: 650px) {

    .hero {
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .logo {
        width: 90px;
        margin-bottom: 0.6rem;
    }

    .artist-name {
        font-size: 2.7rem;
    }

    .artist-title {
        margin-bottom: 0.8rem;
    }

    .artist-intro {
        margin-bottom: 1rem;
        line-height: 1.45;
    }

}


/* ---------------------------------------------------------
   05.4 Reduced motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .slide {
        animation: none;
        transform: none;
    }

    .slide:first-child {
        opacity: 1;
    }

}

/* ---------------------------------------------------------
   05.5 Background carousel
   --------------------------------------------------------- */

.slideshow,
.slide,
.overlay {
    position: fixed;
    inset: 0;
}

.slideshow {
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.slide {
    inset: -4%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    animation: slideshow 60s linear infinite;
}


/* Four images, 15 seconds apart */

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: -45s;
}

.slide:nth-child(3) {
    animation-delay: -30s;
}

.slide:nth-child(4) {
    animation-delay: -15s;
}


/* Slow horizontal movement + crossfade */

@keyframes slideshow {

    0% {
        opacity: 0;
        transform: scale(1.05) translateX(3%);
    }

    4% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    29% {
        opacity: 0;
        transform: scale(1.08) translateX(-3%);
    }

    100% {
        opacity: 0;
        transform: scale(1.08) translateX(-3%);
    }

}


/* ---------------------------------------------------------
   05.6 Image overlay
   --------------------------------------------------------- */

.overlay {
    z-index: 1;

    background: rgba(0, 0, 0, 0.48);

    pointer-events: none;
}


/* ---------------------------------------------------------
   05.7 Hero content
   --------------------------------------------------------- */

.hero {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding: clamp(2rem, 5vw, 4rem);
}

.hero-content {
    width: min(680px, 55vw);
}


/* AG logo */

.logo {
    width: 140px;
    margin-bottom: 1rem;
}


/* Artist name */

.artist-name {
    margin: 0;

    color: var(--white);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 0.95;
}


/* Contemporary Fine Artist */

.artist-title {
    margin: 0.5rem 0 1.35rem;

    color: var(--white);

    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* Introduction */

.artist-intro {
    max-width: 650px;

    margin: 0 0 1.5rem;

    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.6;
}


/* =========================================================
   06. INTERNAL PAGE FRAME
   ========================================================= */

/* ---------------------------------------------------------
   06.1 Page base & container
   --------------------------------------------------------- */

   .inside-page {
    overflow-x: hidden;
    background: #fff;
    color: #363636;
}

.container {
    width: min(1200px, calc(100% - 4rem));
    margin-inline: auto;
}


/* ---------------------------------------------------------
   06.2 Header
   --------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 110px;
    padding: 1.5rem max(2rem, calc((100% - 1200px) / 2));

    background:#ed7f7f;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inside-page main {
    padding-top: 110px;
}

/* ---------------------------------------------------------
   06.3 Brand
   --------------------------------------------------------- */

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;

    color: #222;
}

.brand-logo {
    width: 72px;
}

.brand-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}


/* ---------------------------------------------------------
   06.4 Internal navigation
   --------------------------------------------------------- */

.inside-page .menu {
    top: 2.6rem;
    right: max(2rem, calc((100% - 1200px) / 2));
}

.inside-page .menu-toggle span {
    background: var(--red);
}


/* =========================================================
   07. ABOUT ANN
   ========================================================= */

/* ---------------------------------------------------------
   07.1 Introduction
   --------------------------------------------------------- */

.about-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #f5f3ef;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 0.75rem;

    color: var(--red);

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-copy h1,
.contact-intro h2 {
    margin: 0 0 1.5rem;

    color: #222;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1;
}

.about-copy p,
.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-copy p {
    margin: 0 0 1.3rem;
}


/* ---------------------------------------------------------
   07.2 The Work
   --------------------------------------------------------- */

.about-work-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #fff;
}

.about-work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.about-work-copy {
    max-width: 680px;
}

.about-work-copy h2 {
    margin: 0 0 1.5rem;

    color: #222;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1;
}

.about-work-copy p {
    margin: 0 0 1.3rem;

    font-size: 1.1rem;
    line-height: 1.7;
}

.about-work-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------
   07.3 Q&A
   --------------------------------------------------------- */

   .qa-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #f5f3ef;
}

.qa-inner {
    max-width: 900px;
}

.qa-inner > h2 {
    margin: 0 0 2.5rem;

    color: #222;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1;
}

.qa-list {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.qa-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.qa-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    width: 100%;
    padding: 1.5rem 0;

    border: 0;
    background: transparent;
    color: #222;

    font: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;

    cursor: pointer;
}

.qa-question:hover {
    color: var(--red);
}

.qa-icon {
    position: relative;

    flex: 0 0 20px;

    width: 20px;
    height: 20px;
}

.qa-icon::before,
.qa-icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 16px;
    height: 2px;

    background: currentColor;

    transform: translate(-50%, -50%);

    transition: transform 0.3s ease;
}

.qa-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.qa-question[aria-expanded="true"] .qa-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0);
}


/* Answer */

.qa-answer {
    height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        height 0.4s ease,
        opacity 0.3s ease;
}

.qa-answer.is-open {
    opacity: 1;
}

.qa-answer-inner {
    max-width: 760px;
    padding: 0 0 1.75rem;
}

.qa-answer p {
    margin: 0;

    font-size: 1.05rem;
    line-height: 1.7;
}


/* Q&A mobile */

@media (max-width: 800px) {

    .qa-question {
        gap: 1.25rem;
        padding: 1.25rem 0;

        font-size: 1rem;
    }

    .qa-answer-inner {
        padding-bottom: 1.5rem;
    }

}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .qa-answer,
    .qa-icon::before,
    .qa-icon::after {
        transition: none;
    }

}
/* ---------------------------------------------------------
   07.3.1 Brochure buttons
   --------------------------------------------------------- */

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.button--dark {
    border-color: #222;
    background: #222;
    color: #fff;
}

.button--dark:hover {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.button--outline-dark {
    border-color: #222;
    color: #222;
}

.button--outline-dark:hover {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

/* =========================================================
   08. CONTACT
   ========================================================= */

/* ---------------------------------------------------------
   08.1 Contact layout & details
   --------------------------------------------------------- */

.contact-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: rgba(237, 127, 127, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro {
    max-width: 420px;
}

.contact-details {
    display: grid;
    gap: 0.4rem;
    margin-top: 2rem;
}

.contact-details a {
    color: #222;
    font-size: 1.1rem;
}

.contact-details a:hover {
    color: var(--red);
}


/* ---------------------------------------------------------
   08.3 Form
   --------------------------------------------------------- */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.field {
    margin-bottom: 1.5rem;
}

.field label {
    display: block;
    margin-bottom: 0.4rem;

    color: #555;

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    display: block;
    width: 100%;

    padding: 0.8rem 0;

    border: 0;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;

    background: transparent;
    color: #222;

    font: inherit;

    outline: none;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-bottom-color: var(--red);
}


/* =========================================================
   09. FOOTER
   ========================================================= */

/* ---------------------------------------------------------
   09.1 Footer layout
   --------------------------------------------------------- */

.site-footer {
    padding: 2.5rem 0;
    background: #f5f3ef;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

.inside-page .social-links a {
    color: #333;
}


/* =========================================================
   INTERNAL PAGE RESPONSIVE RULES
   ========================================================= */

/* ---------------------------------------------------------
   07.4 / 08.4 / 09.2 Responsive: mobile
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .container {
        width: min(100% - 3rem, 650px);
    }

    .site-header {
        min-height: 90px;
        padding: 1.25rem 1.5rem;
    }

    .inside-page main {
        padding-top: 90px;
    }


    .brand-logo {
        width: 58px;
    }

    .brand-name {
        font-size: 1.65rem;
    }

    .inside-page .menu {
        top: 1.8rem;
        right: 1.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 520px;
        margin-inline: auto;
    }

    .about-copy {
        max-width: none;
    }

    .about-work-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-work-copy {
        max-width: none;
    }

    .about-work-image {
        max-width: 520px;
        margin-inline: auto;
    }

}


/* ---------------------------------------------------------
   07.4 / 08.4 / 09.2 Responsive: small mobile
   --------------------------------------------------------- */

@media (max-width: 520px) {

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-logo {
        width: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .button-group {
        display: grid;
    }

    .button-group .button {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

}


/* =========================================================
   10. EVENTS
   ========================================================= */

   /* ---------------------------------------------------------
   10.1 Event hero
   --------------------------------------------------------- */

.event-hero,
   .event-invitation,
   .event-quotes,
   .event-closing {
       padding: clamp(4rem, 8vw, 8rem) 0;
   }
   
   .event-hero {
       background: #f5f3ef;
   }
   
   .event-hero-grid,
   .event-invitation-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: clamp(3rem, 7vw, 7rem);
       align-items: center;
   }
   
   .event-hero-copy h1 {
       margin: 0;
   
       color: #222;
   
       font-family: "Cormorant Garamond", Georgia, serif;
       font-size: clamp(3.5rem, 6vw, 5.5rem);
       font-weight: 500;
       line-height: 0.95;
   }
   
   .event-hero-copy h2 {
       margin: 0.75rem 0 2rem;
   
       color: #333;
   
       font-size: clamp(1.1rem, 2vw, 1.5rem);
       font-weight: 400;
       letter-spacing: 0.08em;
       text-transform: uppercase;
   }
   
   .event-hero-image img {
       width: 100%;
       height: min(65vh, 650px);
   
       object-fit: cover;
   }
   
   
   /* ---------------------------------------------------------
   10.2 Event details
   --------------------------------------------------------- */
   
   .event-details {
       display: grid;
       gap: 0.15rem;
   
       margin-bottom: 2rem;
   
       font-size: 1.15rem;
       line-height: 1.5;
   }
   
   .event-details strong {
       color: var(--red);
       font-weight: 600;
   }
   
   .event-details--dark strong {
       color: #222;
   }
   
   
   /* ---------------------------------------------------------
   10.3 Invitation
   --------------------------------------------------------- */
   
   .event-invitation {
       background: #fff;
   }
   
   .event-copy {
       max-width: 570px;
   }
   
   .event-copy h2,
   .event-closing h2 {
       margin: 0 0 1.5rem;
   
       color: #222;
   
       font-family: "Cormorant Garamond", Georgia, serif;
       font-size: clamp(2.7rem, 5vw, 4.2rem);
       font-weight: 500;
       line-height: 1;
   }
   
   .event-copy p {
       font-size: 1.1rem;
       line-height: 1.7;
   }
   
   
   /* ---------------------------------------------------------
   10.4 Artwork thumbnails
   --------------------------------------------------------- */
   
   .event-artworks {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 1rem;
   }
   
   .event-artworks img {
       width: 100%;
       aspect-ratio: 1 / 1;
   
       object-fit: cover;
   }
   
   
   /* ---------------------------------------------------------
   10.5 Quotes
   --------------------------------------------------------- */
   
   .event-quotes {
       background: #f5f3ef;
   }
   
   .quote-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: clamp(2rem, 6vw, 6rem);
   }
   
   .quote-grid blockquote {
       margin: 0;
   }
   
   .quote-grid blockquote p {
       margin: 0 0 1.25rem;
   
       color: #333;
   
       font-family: "Cormorant Garamond", Georgia, serif;
       font-size: clamp(1.5rem, 2.5vw, 2rem);
       line-height: 1.35;
   }
   
   .text-link {
       color: var(--red);
   
       font-size: 0.85rem;
       font-weight: 600;
       letter-spacing: 0.08em;
       text-transform: uppercase;
   }
   
   .text-link:hover {
       color: #222;
   }
   
   
   /* ---------------------------------------------------------
   10.6 Closing
   --------------------------------------------------------- */
   
   .event-closing {
       background: #fff;
       text-align: center;
   }
   
   .event-closing-inner {
       max-width: 760px;
   }
   
   .event-closing p {
       margin-bottom: 2rem;
   
       font-size: 1.15rem;
   }
   
   
   /* ---------------------------------------------------------
   10.7 Responsive: mobile
   --------------------------------------------------------- */
   
   @media (max-width: 800px) {
   
       .event-hero-grid,
       .event-invitation-grid,
       .quote-grid {
           grid-template-columns: 1fr;
           gap: 3rem;
       }
   
       .event-hero-image {
           order: -1;
       }
   
       .event-hero-image img {
           height: auto;
           max-height: 520px;
       }
   
   }
   
   
   /* ---------------------------------------------------------
   10.7 Responsive: small mobile
   --------------------------------------------------------- */
   
   @media (max-width: 520px) {
   
       .event-artworks {
           gap: 0.5rem;
       }
   
   }

   /* =========================================================
   11. GALLERY COLLECTIONS
   ========================================================= */

/* ---------------------------------------------------------
   11.1 Base collection page
   --------------------------------------------------------- */

   .collection-page {
    background-color: #f8f7f4;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

   /* ---------------------------------------------------------
   11.2 Kinetica
   --------------------------------------------------------- */
   .collection-kinetica {
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.90),
            rgba(255, 255, 255, 0.90)
        ),
        url("../../images/bg/keneticaCollectionBg.svg");
}
  /* ---------------------------------------------------------
   11.3 Arcana
   --------------------------------------------------------- */
.collection-arcana {
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.90),
            rgba(255, 255, 255, 0.90)
        ),
        url("../../images/bg/arcanaCollectionBg.svg");
}
/* ---------------------------------------------------------
   11.4 Lucivra
   --------------------------------------------------------- */
.collection-lucivra {
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.90),
            rgba(255, 255, 255, 0.90)
        ),
        url("../../images/bg/lucivraCollectionBg.svg");
}


   /* =========================================================
   12. PRIVACY POLICY
   ========================================================= */

/* ---------------------------------------------------------
   12.1 Privacy wrapper
   --------------------------------------------------------- */

.privacy {
    width: min(1200px, calc(100% - 4rem));
    margin: 0 auto;
    padding: 0 0 1.5rem;

    text-align: right;
}


/* ---------------------------------------------------------
   12.2 Privacy link
   --------------------------------------------------------- */

.privacy summary {
    display: inline-block;

    padding: 0;

    font-size: 0.8rem;
    line-height: 1.4;

    cursor: pointer;
    opacity: 0.7;

    list-style: none;

    transition: opacity 0.2s ease;
}

.privacy summary::-webkit-details-marker {
    display: none;
}

.privacy summary::after {
    content: " +";
}

.privacy[open] summary::after {
    content: " −";
}

.privacy summary:hover {
    opacity: 1;
}


/* ---------------------------------------------------------
   12.3 Privacy content
   --------------------------------------------------------- */

.privacy-content {
    max-width: 100%;
    margin: 1.5rem 0 0 auto;
    padding: 1rem 0;
    scroll-margin-top: 8rem;
    text-align: left;
}

.privacy-content h3 {
    margin: 0 0 1.5rem;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.privacy-content h4 {
    margin: 1.5rem 0 0.35rem;

    font-size: 1rem;
    font-weight: 600;
}

.privacy-content p {
    margin: 0 0 1rem;
    max-width: 800px;
    font-size: 0.9rem;
    line-height: 1.6;

    opacity: 0.8;
}

.privacy-content a {
    color: inherit;
}


/* ---------------------------------------------------------
   12.4 Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .privacy {
        width: calc(100% - 3rem);

        text-align: center;
    }

    .privacy-content {
        margin: 1.5rem auto 0;

        text-align: left;
    }

}