:root {
    --bg: #f4efe6;
    --surface: rgba(255, 252, 246, 0.78);
    --surface-strong: #fffaf0;
    --text: #201714;
    --muted: #6f6257;
    --gold: #b9812e;
    --emerald: #1f6a5f;
    --rust: #9b4f2e;
    --slate: #32404b;
    --line: rgba(32, 23, 20, 0.1);
    --shadow: 0 24px 60px rgba(31, 22, 17, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

/* Prevent CSS display rules from overriding the HTML hidden attribute */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(185, 129, 46, 0.2), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(31, 106, 95, 0.16), transparent 26%),
        linear-gradient(180deg, #f7f0e7 0%, #efe6da 100%);
}

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

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

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.site-shell::before {
    top: 22%;
    left: -8rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(155, 79, 46, 0.08);
    filter: blur(10px);
}

.site-shell::after {
    right: -10rem;
    bottom: 10%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(31, 106, 95, 0.08);
    filter: blur(12px);
}

.topbar,
.section,
.footer {
    position: relative;
    z-index: 1;
}

.topbar {
    width: min(calc(100% - 2rem), var(--max-width));
    z-index: 10;
    margin: 1.2rem auto 0;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 250, 240, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 0.95rem;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.8rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-nav a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.menu-toggle {
    display: none;
    border: 0;
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font: inherit;
}

/* ── Nav dropdown ────────────────────────────────────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-arrow {
    font-size: 0.6em;
    transition: transform 220ms ease;
    display: inline-block;
    line-height: 1;
}

.nav-dropdown.is-open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    list-style: none;
    padding: 0.75rem 0 0.4rem;
    min-width: 14rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    color: var(--muted);
    white-space: nowrap;
    border-radius: 0.4rem;
    margin: 0.1rem 0.35rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

/* ── Event page shared styles ─────────────────────────────────────────────────── */
.event-include-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.event-include-list li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-light);
}

.include-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.event-price-line {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.price-highlight {
    color: var(--rust);
}

.event-quote {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--rust);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--ink-light);
    background: rgba(0,0,0,0.02);
    border-radius: 0 0.4rem 0.4rem 0;
}

.event-details-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
}

.section {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 2.5rem 0;
}

.page-hero {
    min-height: 10rem;
    display: grid;
    align-items: end;
    padding-top: 2rem;
}

.page-hero-contact,
.page-hero-product {
    position: relative;
}

.page-hero-contact::after,
.page-hero-product::after {
    content: "";
    position: absolute;
    inset: 1rem 0 auto auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(185, 129, 46, 0.14);
    filter: blur(8px);
}

.page-title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 6rem);
    padding-top: 4rem;
}

.eyebrow,
.strip-label,
.card-tag {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
}

.hero h1,
.section-heading h2,
.book-panel h2,
.connect-panel h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    max-width: 12ch;
}

.hero-text,
.about-story p,
.feature-card p,
.book-panel p,
.contact-teaser p,
.connect-panel p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-actions,
.connect-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--text), #47332a);
    box-shadow: 0 14px 30px rgba(32, 23, 20, 0.18);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2.2rem 0 0;
}

.hero-stats div,
.about-panel,
.feature-card,
.book-panel,
.media-card,
.connect-panel,
.logo-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-stats div {
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.hero-stats dt {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--gold);
}

.hero-stats dd {
    margin: 0;
    font-size: 0.98rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    min-height: 42rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-frame {
    width: min(100%, 29rem);
    aspect-ratio: 3 / 4;
    padding: 1rem;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
    box-shadow: 0 32px 80px rgba(32, 23, 20, 0.16);
    transform: rotate(-4deg);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    filter: grayscale(1) contrast(1.03);
}

.floating-card {
    position: absolute;
    max-width: 15rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.88);
    box-shadow: var(--shadow);
    animation: drift 6s ease-in-out infinite;
}

.floating-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

.floating-card strong {
    font-size: 1rem;
    line-height: 1.4;
}

.floating-card-top {
    top: 4rem;
    left: -0.5rem;
}

.floating-card-bottom {
    right: -0.5rem;
    bottom: 5rem;
    animation-delay: -2.5s;
}

.logos {
    padding-top: 0.5rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.logo-card {
    min-height: 11rem;
    border-radius: 26px;
    display: grid;
    place-items: center;
    padding: 1.6rem;
}

.logo-card img {
    max-height: 6.5rem;
    width: 100%;
    object-fit: contain;
}

.section-heading {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading h2,
.book-panel h2,
.connect-panel h2 {
    font-size: clamp(2.4rem, 4.3vw, 4.3rem);
}

.about-grid,
.media-layout,
.connect-panel {
    display: grid;
    gap: 1.4rem;
}

.about-grid {
    grid-template-columns: 1.25fr 0.75fr;
}

.about-story {
    display: grid;
    gap: 0.8rem;
}

.about-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
    align-content: end;
    background:
        linear-gradient(180deg, rgba(185, 129, 46, 0.12), rgba(255, 252, 246, 0.85)),
        var(--surface);
}

.quote {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.2;
}

.quote-credit {
    margin: 1rem 0 0;
    color: var(--muted);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    min-height: 18rem;
    display: flex;
    flex-direction: column;
}

.feature-card h3,
.book-panel h3,
.contact-teaser h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.2;
}

.feature-card a {
    margin-top: auto;
    font-weight: 800;
}

.accent-gold {
    background: linear-gradient(180deg, rgba(185, 129, 46, 0.12), rgba(255, 252, 246, 0.8));
}

.accent-emerald {
    background: linear-gradient(180deg, rgba(31, 106, 95, 0.14), rgba(255, 252, 246, 0.8));
}

.accent-rust {
    background: linear-gradient(180deg, rgba(155, 79, 46, 0.14), rgba(255, 252, 246, 0.8));
}

.accent-slate {
    background: linear-gradient(180deg, rgba(50, 64, 75, 0.14), rgba(255, 252, 246, 0.8));
}

.media-layout {
    grid-template-columns: 1fr 0.46fr;
    align-items: center;
    gap: 3rem;
}

.book-panel,
.media-card,
.connect-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.media-card-stack {
    display: grid;
    gap: 1rem;
}

.media-book-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-book-visual img {
    width: 100%;
    max-width: 22rem;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(31, 22, 17, 0.22);
}

.contact-teaser {
    background: linear-gradient(180deg, rgba(32, 23, 20, 0.92), rgba(57, 42, 35, 0.95));
    color: #fff;
}

.contact-teaser p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-teaser .eyebrow {
    color: #f6c778;
}

.connect-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(31, 106, 95, 0.16), rgba(255, 252, 246, 0.78) 45%, rgba(185, 129, 46, 0.18)),
        var(--surface);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
}

.footer {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 0 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.contact-grid,
.product-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.contact-card-primary {
    background: linear-gradient(180deg, rgba(31, 106, 95, 0.12), rgba(255, 252, 246, 0.85));
}

.contact-card h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.8;
}

.contact-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 2;
}

.social-links-left {
    justify-content: flex-start;
}

.product-cover-card {
    min-height: 34rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0);
    }

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

@media (max-width: 980px) {
    .hero,
    .about-grid,
    .media-layout,
    .connect-panel,
    .contact-grid,
    .product-layout {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-visual {
        min-height: 28rem;
        order: -1;
    }

    .floating-card-top {
        left: 0;
    }

    .floating-card-bottom {
        right: 0;
    }

    .connect-actions,
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .topbar {
        border-radius: 28px;
        padding: 1rem;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-left: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0.2rem 0;
        min-width: 0;
        background: transparent;
        margin-left: 0.5rem;
    }

    .nav-arrow {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 20rem;
    }

    .portrait-frame {
        transform: none;
    }

    .floating-card {
        max-width: 12rem;
    }

    .section {
        padding: 2rem 0;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-flyer-img {
        max-width: 100%;
    }
}

/* ── About page ─────────────────────────────────────────────────────────────── */
.about-hero {
    padding-top: 3rem;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 1.5rem;
    align-items: center;
}

.about-hero-portrait {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 32rem;
    box-shadow: var(--shadow);
}

.about-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(1) contrast(1.03);
}

.about-story-layout {
    display: grid;
    grid-template-columns: 0.38fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-story-layout .section-heading {
    position: sticky;
    top: 6rem;
    margin-bottom: 0;
}

.about-prose {
    display: grid;
    gap: 1.2rem;
}

.about-prose p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-list {
    margin: 0;
    padding-left: 1.4rem;
    color: var(--muted);
    line-height: 2.2;
    font-size: 1.05rem;
}

.about-list-star {
    list-style: none;
    padding-left: 0;
}

.about-list-star li::before {
    content: "✨ ";
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.review-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-text {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.6;
    flex: 1;
}

.review-footer {
    display: grid;
    gap: 0.2rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.review-name {
    font-size: 0.95rem;
}

.review-source {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .about-hero-layout,
    .about-story-layout,
    .vm-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-portrait {
        max-height: 22rem;
    }

    .about-story-layout .section-heading {
        position: static;
    }
}

/* ── Contact page layout ─────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.6rem;
    position: sticky;
    top: 6rem;
}

.contact-info-block {
    padding: 1.6rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.contact-email-link {
    font-weight: 700;
    word-break: break-all;
    transition: color 180ms ease;
}

.contact-email-link:hover {
    color: var(--emerald);
}

/* ── Contact form ──────────────────────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
}

.contact-form {
    display: grid;
    gap: 1.4rem;
}

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

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.form-group label span {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
    font: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 129, 46, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-note {
    margin: 0;
    font-size: 0.825rem;
    color: var(--muted);
    max-width: 26rem;
}

.form-submit {
    min-width: 11rem;
    position: relative;
}

.btn-spinner {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-feedback {
    font-size: 0.95rem;
    min-height: 1.4rem;
    border-radius: var(--radius-sm);
    transition: all 200ms ease;
}

.form-feedback-error {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
    padding: 0.75rem 1rem;
}

/* ── Form success state ────────────────────────────────────────────────────── */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    display: grid;
    gap: 1rem;
    place-items: center;
}

.form-success-icon {
    margin: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), #2a9b8b);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
}

.form-success h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.form-success p {
    color: var(--muted);
    max-width: 32rem;
    line-height: 1.8;
}

/* ── Products grid ─────────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: rgba(32, 23, 20, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 28rem;
    object-fit: contain;
    transition: transform 400ms ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--rust), #c0552f);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.product-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.product-name {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-was {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.95rem;
}

.price-now {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
}

.product-body p {
    color: var(--muted);
    line-height: 1.8;
    flex: 1;
}

.product-body .button {
    align-self: flex-start;
    margin-top: auto;
}

/* ── Responsive overrides for new components ─────────────────────────────────── */
@media (max-width: 980px) {
    .contact-layout,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

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

@media (max-width: 760px) {
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-wrap {
        padding: 1.4rem;
    }
}

/* ── Events page ─────────────────────────────────────────────────────────────── */
.events-section--alt {
    background: var(--surface);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Two-column row: text + flyer */
.event-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.event-row--reversed {
    direction: rtl;
}

.event-row--reversed > * {
    direction: ltr;
}

.event-row--past .event-title,
.event-row--past p {
    opacity: 0.9;
}

/* Copy column */
.event-row-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-row-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-collab {
    font-size: 0.82rem;
    color: var(--ink-light);
    margin: 0;
}

.event-collab a {
    color: var(--rust);
}

.event-title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
}

.event-subtitle {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--rust);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.event-details-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-light);
}

.event-row-copy p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin: 0;
}

.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Flyer column */
.event-row-flyer {
    display: flex;
    justify-content: center;
}

.event-flyer-img {
    width: 100%;
    max-width: 26rem;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    display: block;
}

/* Styled placeholder — replace with <img src="images/your-flyer.jpg"> when ready */
.event-flyer-placeholder {
    width: 100%;
    max-width: 26rem;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #1c2a3a 0%, #0f1a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    position: relative;
}

.event-flyer-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(196, 83, 48, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(196, 83, 48, 0.18) 0%, transparent 55%);
}

.event-flyer-placeholder--dark {
    background: linear-gradient(160deg, #0d1b12 0%, #1a2e1e 100%);
}

.event-flyer-placeholder--dark::before {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(48, 120, 60, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(48, 120, 60, 0.18) 0%, transparent 55%);
}

.event-flyer-inner {
    position: relative;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.event-flyer-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.event-flyer-heading {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.event-flyer-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.event-flyer-venue {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Badges */
.event-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3em 0.8em;
    border-radius: 2rem;
}

.event-badge--upcoming {
    background: linear-gradient(135deg, var(--rust), #c0552f);
    color: #fff;
}

.event-badge--past {
    background: rgba(32, 23, 20, 0.08);
    color: var(--ink);
}

@media (max-width: 900px) {
    .event-row,
    .event-row--reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .event-row--reversed > * {
        direction: ltr;
    }

    .event-row-flyer {
        order: -1;
    }

    .event-flyer-placeholder {
        max-width: 22rem;
        aspect-ratio: 4 / 3;
    }
}