/* ── VARIABLES ── */
:root {
    --cream: #F5EDD8;
    --cream-dark: #EBE0C6;
    --gold: #C8933E;
    --gold-light: #D9AA5F;
    --gold-pale: #F0D9A8;
    --gold-dark: #A67328;
    --brown: #2D1B0E;
    --brown-mid: #5C3418;
    --text: #2C1A0A;
    --text-muted: #7A5835;
    --white: #FAFAF6;
    --shadow-gold: rgba(200, 147, 62, 0.2);
    --shadow-dark: rgba(45, 27, 14, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
    font-weight: 300;
}

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

/* ── HEADER ── */
header {
    background: var(--brown);
    padding: 1.1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 147, 62, 0.35);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(245, 237, 216, 0.8);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.35s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold-light);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://res.cloudinary.com/de3xvrrq5/image/upload/v1753744918/backgroundFraiseMadeleine_u6xhpc.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(45, 27, 14, 0.7) 0%,
            rgba(45, 27, 14, 0.45) 60%,
            rgba(45, 27, 14, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeDown 0.9s ease 0.2s both;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5.2rem;
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    animation: fadeDown 0.9s ease 0.35s both;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(245, 237, 216, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    animation: fadeDown 0.9s ease 0.5s both;
}

.btn {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    border: 1.5px solid var(--gold-light);
    color: var(--gold-light);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
    animation: fadeDown 0.9s ease 0.65s both;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--brown);
}

.btn:hover::before {
    transform: scaleX(1);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 1.5px solid rgba(245, 237, 216, 0.5);
    border-bottom: 1.5px solid rgba(245, 237, 216, 0.5);
    transform: rotate(45deg);
}

/* ── SECTION COMMONS ── */
section {
    padding: 5.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--brown);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 70px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-divider span {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.7;
}

.section-divider--light::before,
.section-divider--light::after {
    background: rgba(200, 147, 62, 0.4);
}

.section-divider--light span {
    color: rgba(200, 147, 62, 0.5);
}

/* ── GALLERY ── */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--cream-dark);
}

.gallery-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 40px var(--shadow-gold), 0 4px 18px var(--shadow-dark);
}

.gallery-image-wrap {
    overflow: hidden;
    height: 260px;
    background: var(--cream-dark);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-image--contain {
    object-fit: contain;
    object-position: center;
    background: var(--cream);
}

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

.gallery-info {
    padding: 1.6rem;
    border-top: 2px solid var(--gold-pale);
}

.gallery-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--cream-dark);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.07;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.product-item {
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 40px var(--shadow-gold), 0 4px 18px var(--shadow-dark);
}

.product-image-container {
    height: 250px;
    overflow: hidden;
    background: var(--cream);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.product-item:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 2px solid var(--gold-pale);
}

.product-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.6rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.65;
    flex-grow: 1;
}

.product-details {
    border-top: 1px solid var(--cream-dark);
    padding-top: 0.9rem;
    margin-top: auto;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--brown);
    font-weight: 500;
    font-size: 0.9rem;
}

.stock-available {
    color: #3A8B5A;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ── EVENTS ── */
.events-section {
    background: var(--white);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--cream-dark);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px var(--shadow-gold);
}

.event-date-box {
    background: var(--brown);
    color: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 130px;
    position: relative;
    flex-shrink: 0;
}

.event-date-box::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(217, 170, 95, 0.25);
    pointer-events: none;
}

.event-day {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--gold-light);
}

.event-month {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(245, 237, 216, 0.7);
}

.event-details {
    padding: 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.event-info-item {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(235, 224, 198, 0.6);
}

.event-info-item:last-child {
    border-bottom: none;
}

.event-label {
    color: var(--gold);
    font-weight: 600;
    min-width: 80px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.event-value {
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
}

.event-value a {
    display: inline-block;
    color: var(--white);
    background: var(--brown);
    padding: 5px 14px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s;
    border: 1px solid rgba(200, 147, 62, 0.4);
}

.event-value a:hover {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
}

/* ── ABOUT ── */
.about {
    background: var(--brown);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '"';
    position: absolute;
    top: -4rem;
    left: -1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32rem;
    color: rgba(200, 147, 62, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.about .section-title {
    color: var(--gold-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(245, 237, 216, 0.8);
}

.about-text p+p {
    margin-top: 1.3rem;
}

.about-text p:first-child::first-letter {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 0.75;
    margin-right: 0.08em;
    margin-top: 0.1em;
    color: var(--gold-light);
}

.about-image {
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(217, 170, 95, 0.25);
    pointer-events: none;
    z-index: 2;
}

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

.about-content {
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-lead {
    margin-bottom: 1.4rem;
    padding: 0 0 1.2rem;
    border-bottom: 1px solid rgba(217, 170, 95, 0.22);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--gold-pale);
}

.about-copy {
    display: grid;
    gap: 1.1rem;
}

.about-copy p {
    margin: 0;
}

.about-lead::first-letter {
    float: none;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.about-copy p+p,
.about-copy p:first-child::first-letter {
    margin-top: 0;
    float: none;
    font-size: inherit;
    line-height: inherit;
    margin-right: 0;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1rem 0.95rem;
    background: rgba(250, 250, 246, 0.05);
    border: 1px solid rgba(217, 170, 95, 0.16);
}

.about-highlight__value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold-pale);
}

.about-highlight__label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.56);
}

.about-image {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(250, 250, 246, 0.06), rgba(250, 250, 246, 0.02));
}

.about-image::after {
    inset: 12px;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.about-image-frame img {
    transition: transform 0.9s ease;
}

.about-image:hover .about-image-frame img {
    transform: scale(1.04);
}

.about-image-card {
    position: relative;
    margin: -4.5rem 1rem 0 auto;
    max-width: 250px;
    padding: 1.05rem 1.1rem 1rem;
    background: rgba(45, 27, 14, 0.88);
    border: 1px solid rgba(217, 170, 95, 0.24);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.about-image-card__kicker {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.5);
}

.about-image-card__title {
    margin-top: 0.45rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.05;
    color: var(--white);
}

.about-image-card__value {
    margin-top: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    color: #86d1a2;
}

.about-image-card__copy {
    margin-top: 0.5rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(245, 237, 216, 0.68);
}

.about-market-board {
    margin-top: 2rem;
    padding: 1.35rem 1.35rem 1.15rem;
    border: 1px solid rgba(217, 170, 95, 0.22);
    background:
        linear-gradient(135deg, rgba(217, 170, 95, 0.08), rgba(217, 170, 95, 0.02)),
        rgba(250, 250, 246, 0.04);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-market-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: 1rem;
}

.about-market-kicker {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.92;
}

.about-market-note {
    font-size: 0.78rem;
    color: rgba(245, 237, 216, 0.58);
    text-align: right;
}

.about-market-ticker {
    position: relative;
    overflow: hidden;
    padding: 0.55rem 0;
    border-top: 1px solid rgba(217, 170, 95, 0.12);
    border-bottom: 1px solid rgba(217, 170, 95, 0.12);
}

.about-market-ticker::before,
.about-market-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.about-market-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--brown) 0%, rgba(45, 27, 14, 0) 100%);
}

.about-market-ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--brown) 0%, rgba(45, 27, 14, 0) 100%);
}

.about-market-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    animation: tickerScroll 140s linear infinite;
}

.about-market-board:hover .about-market-track {
    animation-play-state: paused;
}

.about-market-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    padding: 0.3rem 1.6rem 0.3rem 0;
    white-space: nowrap;
    position: relative;
}

.about-market-chip::after {
    content: '◆';
    position: absolute;
    right: 0.42rem;
    font-size: 0.36rem;
    color: rgba(217, 170, 95, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.amc-sym {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    font-family: 'Jost', sans-serif;
}

.amc-lbl {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(245, 237, 216, 0.32);
}

.amc-prc {
    font-size: 0.88rem;
    color: var(--gold-pale);
    font-weight: 500;
}

.amc-dlt {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.about-market-chip.is-up .amc-dlt {
    color: #86d1a2;
}

.about-market-chip.is-down .amc-dlt {
    color: #ff8f8f;
}

.about-market-chip.is-flat .amc-dlt {
    color: rgba(245, 237, 216, 0.5);
}

/* ── ABOUT REFRESH ── */
.about-header {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.12fr);
    gap: 1.6rem;
    align-items: end;
    text-align: left;
    margin-bottom: 2.6rem;
}

.about-header .section-divider {
    justify-content: flex-start;
}

.about-eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.46);
}

.about-intro {
    margin-top: 1rem;
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 237, 216, 0.76);
}

.about-header-ticker {
    display: flex;
    align-self: stretch;
}

.about-header-ticker .about-market-board {
    width: 100%;
    margin-top: 0;
    padding: 1.15rem 1.35rem 1rem;
}

.about-content {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.78fr);
    gap: 2rem;
}

.about-story {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-story-block {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(250, 250, 246, 0.05), rgba(250, 250, 246, 0.02));
    border: 1px solid rgba(217, 170, 95, 0.14);
}

.about-story-block p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(245, 237, 216, 0.8);
}

.about-highlights {
    margin-top: 1rem;
}

.about-highlight {
    background: linear-gradient(180deg, rgba(250, 250, 246, 0.08), rgba(250, 250, 246, 0.03));
    border-color: rgba(217, 170, 95, 0.14);
}

.about-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(250, 250, 246, 0.06), rgba(250, 250, 246, 0.02));
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(217, 170, 95, 0.25);
    pointer-events: none;
    z-index: 2;
}

.about-visual-frame {
    position: relative;
    overflow: hidden;
    min-height: 330px;
}

.about-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}

.about-visual:hover .about-visual-frame img {
    transform: scale(1.04);
}

.about-visual-card {
    position: relative;
    margin: -3.25rem 1rem 0 auto;
    max-width: 255px;
    padding: 1.05rem 1.1rem 1rem;
    background: rgba(45, 27, 14, 0.88);
    border: 1px solid rgba(217, 170, 95, 0.24);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.about-visual-card__kicker {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.5);
}

.about-visual-card__title {
    margin-top: 0.45rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.05;
    color: var(--white);
}

.about-visual-card__value {
    margin-top: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    color: #86d1a2;
}

.about-visual-card__copy {
    margin-top: 0.5rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(245, 237, 216, 0.68);
}

/* ── CONTACT ── */
.contact {
    background: var(--cream);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 3px;
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 22px var(--shadow-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px var(--shadow-gold), 0 4px 18px var(--shadow-dark);
}

.contact-item i {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    background: var(--brown);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(200, 147, 62, 0.2);
}

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 5px;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

footer p:last-child {
    color: rgba(245, 237, 216, 0.35);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

/* ── KEYFRAMES ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── FOOTER TRIGGER ── */
.footer-trigger {
    cursor: default;
    transition: color 0.2s;
    display: inline-block;
}

.footer-trigger:hover {
    color: rgba(200, 147, 62, 0.5);
}

/* ── PASSWORD MODAL ── */
.pw-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.pw-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.pw-box {
    background: #080808;
    border: 1px solid #1e1e1e;
    border-top: none;
    width: 340px;
    text-align: center;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 2.5rem 2.5rem;
}

.pw-overlay.open .pw-box {
    transform: scale(1);
}

.pw-stamp-bar {
    background: #6b0000;
    color: #ffcccc;
    font-size: 0.6rem;
    letter-spacing: 5px;
    padding: 5px 0;
    margin-bottom: 2rem;
    text-align: center;
}

.pw-label {
    color: rgba(200, 147, 62, 0.7);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pw-hint {
    margin-bottom: 1.65rem;
    padding: 1rem 1rem 1.1rem;
    border: 1px solid rgba(200, 147, 62, 0.16);
    background:
        linear-gradient(180deg, rgba(200, 147, 62, 0.08), rgba(200, 147, 62, 0.02)),
        rgba(255, 255, 255, 0.015);
    text-align: left;
    position: relative;
}

.pw-hint::before {
    content: "DOSSIER / ENIGME";
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.18rem 0.45rem;
    color: rgba(255, 210, 159, 0.78);
    font-size: 0.56rem;
    letter-spacing: 0.24rem;
    border: 1px solid rgba(200, 147, 62, 0.25);
    background: rgba(200, 147, 62, 0.06);
}

.pw-hint-title {
    color: #f4d8a5;
    font-size: 0.92rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.pw-hint-intro,
.pw-hint-outro,
.pw-riddle-block p:last-child {
    color: rgba(255, 248, 235, 0.68);
    font-size: 0.76rem;
    line-height: 1.65;
}

.pw-hint-intro {
    margin-bottom: 0.9rem;
}

.pw-riddle-block {
    padding-left: 0.85rem;
    margin-bottom: 0.8rem;
    border-left: 1px solid rgba(200, 147, 62, 0.26);
}

.pw-riddle-label {
    color: #cf8f46;
    font-size: 0.62rem;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.pw-hint-outro {
    margin-bottom: 0;
    color: rgba(255, 226, 171, 0.82);
}

.pw-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pw-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold-light);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    text-align: center;
    letter-spacing: 6px;
    outline: none;
    caret-color: var(--gold-light);
    transition: border-color 0.2s;
}

.pw-input:focus {
    border-bottom-color: rgba(200, 147, 62, 0.5);
}

.pw-submit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    letter-spacing: 3px;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.pw-submit:hover {
    border-color: rgba(200, 147, 62, 0.5);
    color: var(--gold-light);
}

.pw-error {
    color: #cc4444;
    font-size: 0.72rem;
    letter-spacing: 1px;
    min-height: 1.2rem;
    margin-top: 0.8rem;
    font-family: 'Courier New', Courier, monospace;
}

.pw-gif {
    margin: 0.5rem 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px) scale(0.96);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
}

.pw-gif.visible {
    max-height: 240px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pw-gif img {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid rgba(204, 68, 68, 0.35);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.pw-gif-caption {
    margin-top: 0.6rem;
    color: #ff8686;
    font-size: 0.66rem;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    animation: pwDeniedPulse 0.9s ease-in-out infinite alternate;
}

@keyframes pwDeniedPulse {
    from {
        opacity: 0.55;
        text-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }

    to {
        opacity: 1;
        text-shadow: 0 0 14px rgba(255, 80, 80, 0.45);
    }
}

.pw-cancel {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.68rem;
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 0.75rem;
    transition: color 0.2s;
    display: block;
    width: 100%;
}

.pw-cancel:hover {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes shake {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    20% {
        transform: scale(1) translateX(-9px);
    }

    40% {
        transform: scale(1) translateX(9px);
    }

    60% {
        transform: scale(1) translateX(-6px);
    }

    80% {
        transform: scale(1) translateX(6px);
    }
}

.pw-box.shake {
    animation: shake 0.4s ease;
}

/* ── CLASSIFIED MODAL ── */
.classified-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 4, 2, 0.97);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.classified-modal.open {
    opacity: 1;
    pointer-events: all;
}

.classified-inner {
    max-width: 1040px;
    width: 100%;
    padding: 4rem 2rem 6rem;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.classified-modal.open .classified-inner {
    transform: translateY(0);
}

.classified-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(107, 0, 0, 0.2);
    border: 1px solid rgba(180, 50, 50, 0.3);
    color: #ffaaaa;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10000;
}

.classified-close:hover {
    background: rgba(140, 0, 0, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.classified-doc {
    background: #F0E8D0;
    border-radius: 1px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.classified-doc::before {
    content: 'CONFIDENTIEL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-32deg);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(107, 0, 0, 0.05);
    letter-spacing: 8px;
    white-space: nowrap;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
}

.classified-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(30, 15, 0, 0.12);
}

.classified-stamp-top {
    display: inline-block;
    border: 3px solid #6b0000;
    color: #6b0000;
    font-size: 0.72rem;
    letter-spacing: 6px;
    padding: 5px 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transform: rotate(-1.5deg);
}

.classified-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.9rem;
    color: #1a0a00;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    font-weight: 700;
}

.classified-ref {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    color: rgba(30, 15, 0, 0.45);
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.classified-agents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.classified-agent {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(30, 15, 0, 0.12);
    border-left: 3px solid #6b0000;
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    transition: background 0.3s;
    animation: easterReveal 0.5s ease both;
}

.classified-agent:nth-child(1) {
    animation-delay: 0.1s;
}

.classified-agent:nth-child(2) {
    animation-delay: 0.18s;
}

.classified-agent:nth-child(3) {
    animation-delay: 0.26s;
}

.classified-agent:nth-child(4) {
    animation-delay: 0.34s;
}

.classified-agent:nth-child(5) {
    animation-delay: 0.42s;
}

.classified-agent:nth-child(6) {
    animation-delay: 0.50s;
}

.classified-agent:hover {
    background: rgba(255, 255, 255, 0.8);
}

.agent-id {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(30, 15, 0, 0.35);
    margin-bottom: 0.2rem;
}

.agent-codename {
    font-size: 0.9rem;
    color: #6b0000;
    font-weight: bold;
    margin-bottom: 0.15rem;
}

.agent-name {
    font-size: 1.3rem;
    color: #1a0a00;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(30, 15, 0, 0.15);
}

.agent-details {
    list-style: none;
    font-size: 0.76rem;
    color: rgba(30, 15, 0, 0.65);
    line-height: 2.1;
}

.agent-details span {
    color: rgba(30, 15, 0, 0.38);
    margin-right: 0.3rem;
}

.redacted {
    background: #1a0a00;
    color: transparent;
    user-select: none;
    border-radius: 1px;
    letter-spacing: 0;
}

.threat-bar {
    height: 5px;
    background: rgba(30, 15, 0, 0.1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.threat-fill {
    height: 100%;
    background: linear-gradient(90deg, #3A8B5A 0%, #C8933E 55%, #6b0000 100%);
    border-radius: 2px;
}

.classified-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(30, 15, 0, 0.12);
    position: relative;
    z-index: 1;
}

.classified-stamp-bottom {
    display: inline-block;
    border: 2px solid #6b0000;
    color: #6b0000;
    font-size: 0.65rem;
    letter-spacing: 5px;
    padding: 4px 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    opacity: 0.6;
    transform: rotate(1.5deg);
    margin-bottom: 0.75rem;
}

.classified-footer p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: rgba(30, 15, 0, 0.3);
    font-style: italic;
}

/* ── LOGO (easter egg clickable) ── */
.logo {
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, text-shadow 0.15s ease;
    display: inline-block;
}

/* ── EASTER EGG MODAL ── */
.easter-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(16, 8, 3, 0.97);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.easter-modal.open {
    opacity: 1;
    pointer-events: all;
}

.easter-modal-inner {
    max-width: 1100px;
    width: 100%;
    padding: 5rem 2rem 6rem;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.easter-modal.open .easter-modal-inner {
    transform: translateY(0);
}

.easter-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 147, 62, 0.12);
    border: 1px solid rgba(200, 147, 62, 0.3);
    color: var(--gold-light);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s, color 0.3s;
    z-index: 10000;
}

.easter-close:hover {
    background: var(--gold);
    color: var(--brown);
    transform: scale(1.1) rotate(90deg);
}

.easter-header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: easterReveal 0.7s ease 0.2s both;
}

.easter-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.easter-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(200, 147, 62, 0.3);
}

.easter-subtitle {
    color: rgba(245, 237, 216, 0.4);
    font-size: 0.88rem;
    letter-spacing: 1px;
}

.easter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.easter-figure {
    margin: 0;
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 147, 62, 0.15);
    transition: transform 0.4s ease, border-color 0.3s;
    animation: easterReveal 0.6s ease both;
    cursor: pointer;
    position: relative;
}

.easter-figure:nth-child(1) {
    animation-delay: 0.1s;
}

.easter-figure:nth-child(2) {
    animation-delay: 0.18s;
}

.easter-figure:nth-child(3) {
    animation-delay: 0.26s;
}

.easter-figure:nth-child(4) {
    animation-delay: 0.34s;
}

.easter-figure:nth-child(5) {
    animation-delay: 0.42s;
}

.easter-figure:nth-child(6) {
    animation-delay: 0.50s;
}

.easter-figure:nth-child(7) {
    animation-delay: 0.58s;
}

.easter-figure:hover {
    transform: scale(1.02);
    border-color: rgba(200, 147, 62, 0.45);
}

.easter-figure:focus-visible {
    outline: 2px solid rgba(245, 210, 140, 0.95);
    outline-offset: 4px;
    border-color: rgba(245, 210, 140, 0.95);
}

.easter-figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.easter-figure:has(img[src=""]) {
    display: none;
}

.easter-figure figcaption {
    padding: 0.75rem 1rem;
    color: rgba(245, 237, 216, 0.5);
    font-size: 0.82rem;
    text-align: center;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(200, 147, 62, 0.1);
}

/* .easter-figure-zoo::after {
    content: 'scanner';
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(11, 24, 18, 0.8);
    border: 1px solid rgba(119, 255, 192, 0.35);
    color: #8fffd1;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
} */

.easter-preview-modal,
.zoo-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(10, 6, 3, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.easter-preview-modal.open,
.zoo-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.easter-preview-inner,
.zoo-modal-inner {
    width: min(100%, 760px);
    position: relative;
    border: 1px solid rgba(200, 147, 62, 0.24);
    background:
        linear-gradient(180deg, rgba(31, 17, 8, 0.96), rgba(17, 10, 5, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.easter-preview-inner {
    padding: 1.25rem 1.25rem 1rem;
}

.easter-preview-close,
.zoo-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.easter-preview-close:hover,
.zoo-close:hover {
    transform: scale(1.06);
    background: var(--gold);
    color: var(--brown);
}

.easter-preview-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.03);
}

.easter-preview-caption {
    margin: 0;
    padding-top: 0.9rem;
    color: rgba(245, 237, 216, 0.75);
    text-align: center;
    letter-spacing: 0.04em;
}

.zoo-modal-inner {
    width: min(100%, 580px);
    padding: 2rem;
}

.zoo-eyebrow {
    margin: 0 0 0.8rem;
    color: #8fffd1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
}

.zoo-title {
    margin: 0;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 500;
}

.zoo-subtitle {
    margin: 0.8rem 0 1.5rem;
    color: rgba(245, 237, 216, 0.62);
    line-height: 1.6;
}

.zoo-label {
    display: block;
    margin-bottom: 0.65rem;
    color: rgba(245, 237, 216, 0.82);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.zoo-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
}

.zoo-input {
    width: 100%;
    min-height: 50px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(200, 147, 62, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-light);
    font: inherit;
}

.zoo-input:focus {
    outline: 2px solid rgba(143, 255, 209, 0.5);
    outline-offset: 2px;
    border-color: rgba(143, 255, 209, 0.5);
}

.zoo-submit {
    min-height: 50px;
    padding: 0.9rem 1.35rem;
    border: 1px solid rgba(143, 255, 209, 0.4);
    background: linear-gradient(135deg, rgba(20, 58, 43, 0.95), rgba(11, 31, 24, 0.98));
    color: #dffff3;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font: inherit;
    cursor: pointer;
}

.zoo-result {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(200, 147, 62, 0.14);
}

.zoo-result-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(200, 147, 62, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.zoo-result-message {
    margin: 0.85rem 0 0;
    color: rgba(245, 237, 216, 0.82);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.zoo-result.is-invalid .zoo-result-image {
    object-fit: contain;
    padding: 1.2rem;
    background:
        radial-gradient(circle at top, rgba(153, 30, 30, 0.25), rgba(25, 10, 10, 0.92));
}

@media (max-width: 640px) {
    .zoo-modal-inner {
        padding: 1.25rem;
    }

    .zoo-form {
        grid-template-columns: 1fr;
    }

    .zoo-submit {
        width: 100%;
    }

    .easter-preview-inner {
        padding: 1rem 1rem 0.9rem;
    }
}

@keyframes easterReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CAROUSEL ── */
.carousel-section {
    background: var(--cream-dark);
    position: relative;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.carousel-viewport {
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 2rem;
}

.carousel-viewport::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 1.334rem);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow-dark);
    border: 1px solid var(--cream-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px var(--shadow-gold), 0 4px 18px var(--shadow-dark);
}

.carousel-image-wrap {
    height: 240px;
    overflow: hidden;
    background: var(--cream-dark);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.carousel-card:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-caption {
    padding: 1.2rem 1.5rem;
    border-top: 2px solid var(--gold-pale);
}

.carousel-caption p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brown);
    border: 1px solid rgba(200, 147, 62, 0.25);
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.2s;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--gold);
    color: var(--brown);
    transform: scale(1.08);
}

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

.carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-header {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-bottom: 2rem;
    }

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

    .about-image,
    .about-visual {
        padding: 0.9rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-market-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-market-note {
        text-align: left;
    }

    .about-image-card,
    .about-visual-card {
        margin: -2.6rem 0 0 auto;
    }
}

@media (max-width: 960px) {
    .carousel-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100vw;
        background: var(--brown);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(200, 147, 62, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date-box {
        min-width: unset;
        flex-direction: row;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        justify-content: flex-start;
    }

    .event-day {
        font-size: 3rem;
    }

    .event-details {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero::before {
        background-attachment: scroll;
    }

    .hero {
        background-attachment: scroll;
    }

    .carousel-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        gap: 0;
    }

    .about-intro {
        font-size: 0.95rem;
    }

    .about-visual-frame,
    .about-image-frame {
        min-height: 240px;
    }

    .about-image-card,
    .about-visual-card {
        max-width: none;
        margin: 0;
    }

    .about-market-chip {
        gap: 0.45rem;
        padding: 0.25rem 1.4rem 0.25rem 0;
    }

    .about-market-ticker::before,
    .about-market-ticker::after {
        width: 32px;
    }
}

/* ── ABOUT RELAYOUT V2 ── */
.about-header {
    display: block;
    margin-bottom: 2.2rem;
}

.about-ticker-strip {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.2rem;
    padding: 0.95rem 1.1rem;
    border-top: 1px solid rgba(217, 170, 95, 0.22);
    border-bottom: 1px solid rgba(217, 170, 95, 0.16);
    background: linear-gradient(90deg, rgba(250, 250, 246, 0.06), rgba(250, 250, 246, 0.01));
}

.about-ticker-strip__label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.about-content {
    grid-template-columns: minmax(0, 1.14fr) minmax(240px, 0.74fr);
    gap: 2rem;
    align-items: start;
}

.about-story-block {
    padding: 1.5rem;
}

.about-visual {
    gap: 0.85rem;
    padding: 0.8rem;
}

.about-visual-frame {
    min-height: 210px;
    max-height: 210px;
}

.about-visual-card {
    margin: 0;
    max-width: none;
    padding: 0.95rem 1rem;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.about-market-ticker {
    padding: 0.5rem 0;
    border-top: none;
    border-bottom: none;
}

.about-market-chip {
    gap: 0.65rem;
    padding-right: 1.8rem;
}

@media (max-width: 900px) {
    .about-ticker-strip {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.75rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-visual-frame {
        min-height: 170px;
        max-height: 170px;
    }

    .about-visual-card {
        padding: 0.9rem;
    }
}