/* ==========================================================================
   Ringluspood Konku — Shared Stylesheet
   ========================================================================== */

/* --- Fonts (self-hosted) ------------------------------------------------- */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair-display-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair-display-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/source-sans-3-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/source-sans-3-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/source-sans-3-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/source-sans-3-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --------------------------------------------------- */
:root {
    /* Colors */
    --color-primary:        #a5be9e;
    --color-primary-dark:   #597850;
    --color-primary-button: #4a6443;
    --color-heading:        #2C4A2C;
    --color-accent:         #C5943A;
    --color-accent-dark:    #8B6914;
    --color-cream:          #F5F0E8;
    --color-white:          #FFFFFF;
    --color-body:           #333333;
    --color-light:          #666666;
    --color-border:         #ddd;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 60px;
    --container-max:   1140px;
    --container-gutter: 20px;

    /* Z-index scale */
    --z-header:   1100;
    --z-overlay:  1000;
    --z-skip:     1200;
    --z-nav:      1050;
}

/* --- Reset & Base -------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-button);
}

/* --- Skip Link ----------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: var(--z-skip);
    padding: 0.75rem 1.5rem;
    background: var(--color-primary-button);
    color: var(--color-white);
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    color: var(--color-white);
}

/* --- Container ----------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-gutter);
}

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-heading);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }

p + p { margin-top: 1rem; }

.text-light { color: var(--color-light); }
.text-accent { color: var(--color-accent-dark); }
.text-center { text-align: center; }

small, .text-sm {
    font-size: 0.875rem;
}

/* --- Header -------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--color-primary);
    border-bottom: 2px solid var(--color-primary-dark);
    isolation: isolate;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-heading);
    flex-shrink: 0;
}

.header-logo:hover,
.header-logo:focus {
    color: var(--color-primary-dark);
}

.header-logo__img {
    object-fit: cover;
}

.header-logo__text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

/* --- Nav Toggle (mobile) ------------------------------------------------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-nav) + 10);
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Primary Nav --------------------------------------------------------- */
.primary-nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.primary-nav__link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--color-heading);
}

.primary-nav__link--active {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.primary-nav__link--active:hover,
.primary-nav__link--active:focus {
    background-color: var(--color-primary-button);
    color: var(--color-white);
}

/* --- Sections ------------------------------------------------------------ */
.section {
    padding: var(--section-padding) 0;
}

.section--cream {
    background-color: var(--color-cream);
}

.section--dark {
    background-color: var(--color-heading);
    color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.section--dark a {
    color: #b5d4b5;
}

.section--dark a:hover,
.section--dark a:focus {
    color: var(--color-white);
}

.section--dark .text-light {
    color: rgba(255, 255, 255, 0.75);
}

/* Form overrides inside dark sections */
.section--dark .form-group label {
    color: var(--color-white);
}

.section--dark .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.section--dark .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.section--dark .form-control:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.section--dark .price-badge {
    color: var(--color-accent);
}

.section--dark .text-accent {
    color: var(--color-accent);
}

.section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section__header p {
    max-width: 640px;
    margin-inline: auto;
    color: var(--color-light);
    margin-top: 0.5rem;
}

.section--dark .section__header p {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn:active {
    transform: scale(0.98);
}

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

.btn--primary:hover,
.btn--primary:focus {
    background-color: var(--color-heading);
    border-color: var(--color-heading);
    color: var(--color-white);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn--outline:hover,
.btn--outline:focus {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn--accent {
    background-color: var(--color-accent-dark);
    color: var(--color-white);
    border-color: var(--color-accent-dark);
}

.btn--accent:hover,
.btn--accent:focus {
    background-color: #6b4f0e;
    border-color: #6b4f0e;
    color: var(--color-white);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn--block {
    display: block;
    width: 100%;
}

/* Button inside dark section */
.section--dark .btn--outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.section--dark .btn--outline:hover,
.section--dark .btn--outline:focus {
    background-color: var(--color-white);
    color: var(--color-heading);
}

/* --- Cards --------------------------------------------------------------- */
.card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card__body {
    padding: 1.25rem;
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card__text {
    color: var(--color-light);
    font-size: 0.9375rem;
}

/* --- Forms --------------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-body);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-body);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(165, 190, 158, 0.3);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

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

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.form-message--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message--error {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Cream section form overrides */
.section--cream .form-control {
    background-color: var(--color-white);
}

/* --- Price badge --------------------------------------------------------- */
.price-badge {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-dark);
}

.price-badge--lg {
    font-size: 2rem;
}

/* --- Grid utilities ------------------------------------------------------ */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

/* --- Page header (inner pages) ------------------------------------------- */
.page-header {
    padding: 1.25rem 0;
    background-color: var(--color-cream);
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
}

.page-header h1 {
    margin-bottom: 0;
}

.page-header p {
    max-width: 640px;
    margin-inline: auto;
    color: var(--color-light);
}

/* --- Breadcrumb ---------------------------------------------------------- */
.breadcrumb {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.breadcrumb a {
    color: var(--color-primary-dark);
}

.breadcrumb__sep {
    margin: 0 0.5rem;
    color: var(--color-light);
}

/* --- Narrow container ---------------------------------------------------- */
.container--narrow {
    max-width: 780px;
}

/* --- Policy / rich-text content ----------------------------------------- */
.policy-content h2 {
    margin-top: 2rem;
}

.policy-content ul,
.policy-content ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.375rem;
    line-height: 1.6;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-heading);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-address {
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #b5d4b5;
}

.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    max-width: 200px;
    padding: 0.25rem 0;
}

.footer-hours__label {
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.footer-social__link:hover,
.footer-social__link:focus {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.footer-social__icon {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Utility ------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Mobile nav toggle */
    .nav-toggle {
        display: flex;
    }

    /* Mobile slide-out nav */
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: var(--z-nav);
        padding: 80px var(--container-gutter) 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .primary-nav.is-open {
        right: 0;
    }

    .primary-nav__list {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav__link {
        padding: 0.875rem 1rem;
        font-size: 1.125rem;
        border-radius: 0;
        border-bottom: 1px solid var(--color-cream);
    }

    /* Grid responsiveness */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Header logo text smaller on mobile */
    .header-logo__text {
        font-size: 1rem;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: calc(var(--z-nav) - 1);
}

.nav-overlay.is-visible {
    display: block;
}

@media (min-width: 769px) {
    .nav-overlay {
        display: none !important;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Flatpickr customization --------------------------------------------- */
.flatpickr-input[readonly] {
    background-color: var(--color-white);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--color-primary-button);
    border-color: var(--color-primary-button);
}

.flatpickr-day:hover {
    background: var(--color-cream);
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero--no-image {
    background-color: var(--color-heading);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 3rem var(--container-gutter);
}

.hero__heading {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subheading {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero__btn-outline:hover,
.hero__btn-outline:focus {
    background-color: var(--color-white);
    color: var(--color-heading);
}

/* --- Value Proposition --------------------------------------------------- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.value-card__heading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.value-card__text {
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.value-card__link {
    font-weight: 600;
    text-decoration: none;
}

.value-card__link:hover,
.value-card__link:focus {
    text-decoration: underline;
}

/* --- Gallery Preview ----------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-grid__item {
    overflow: hidden;
    border-radius: 6px;
}

.gallery-grid__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid__item:hover .gallery-grid__img {
    transform: scale(1.03);
}

/* --- Events -------------------------------------------------------------- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 1rem;
    background: var(--color-white);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.event-card__date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    text-align: center;
    line-height: 1.1;
}

.event-card__day {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
}

.event-card__month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card__body {
    flex: 1;
    min-width: 0;
}

.event-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.event-card__text {
    font-size: 0.9375rem;
    color: var(--color-light);
    line-height: 1.5;
}

/* --- Yaga Finds ---------------------------------------------------------- */
.finds-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.finds-grid--teaser {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.find-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(89, 120, 80, 0.18);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.find-card__img-link {
    display: block;
    text-decoration: none;
}

.find-card__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.find-card__body {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.find-card__title {
    font-size: 1rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    min-height: calc(1rem * 1.3 * 2);
}

.find-card__price {
    margin: 0;
    color: var(--color-accent-dark);
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
}

.find-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin: 0;
}

.find-card__meta span {
    font-size: 0.8125rem;
    color: var(--color-light);
    background: #f6f8f5;
    border-radius: 999px;
    padding: 0.125rem 0.5rem;
    border: 1px solid rgba(89, 120, 80, 0.15);
}

.find-card__body .btn {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
}

.find-card--compact .find-card__title {
    font-size: 0.9375rem;
    min-height: calc(0.9375rem * 1.3 * 2);
}

.yaga-page-intro {
    margin-bottom: 1rem;
}

.yaga-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.5rem;
    padding: 0.75rem 1rem;
    background: #f7f9f6;
    border: 1px solid rgba(89, 120, 80, 0.2);
    border-radius: 8px;
}

.yaga-meta-row p {
    margin: 0;
    font-size: 0.9375rem;
}

.find-empty {
    background: var(--color-cream);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(89, 120, 80, 0.2);
}

/* --- Shipping Banner ----------------------------------------------------- */
.shipping-banner {
    padding: 2rem 0;
}

.shipping-banner__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-primary);
    background: var(--color-white);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.shipping-banner__icon {
    flex-shrink: 0;
    color: var(--color-primary-dark);
}

.shipping-banner__text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-body);
}

/* --- Newsletter Form ----------------------------------------------------- */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin-inline: auto;
}

.newsletter-form__input {
    flex: 1;
    min-width: 0;
}

.newsletter-form__btn {
    flex-shrink: 0;
}

/* --- Contact Teaser ------------------------------------------------------ */
.contact-teaser {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-teaser__hours {
    list-style: none;
}

.contact-teaser__hours li {
    display: flex;
    justify-content: space-between;
    max-width: 200px;
    padding: 0.25rem 0;
}

.contact-teaser__label {
    font-weight: 600;
    min-width: 3rem;
}

.contact-teaser__social {
    display: flex;
    gap: 0.5rem;
}

.contact-teaser__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-teaser__social-link:hover,
.contact-teaser__social-link:focus {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

/* --- Homepage responsive overrides --------------------------------------- */
@media (max-width: 768px) {
    .hero {
        min-height: 380px;
    }

    .hero__heading {
        font-size: 1.75rem;
    }

    .hero__subheading {
        font-size: 1.0625rem;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .events-grid {
        grid-template-columns: 1fr;
    }

    .finds-grid,
    .finds-grid--teaser {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-teaser {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .yaga-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finds-grid,
    .finds-grid--teaser {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* --- Lightbox ------------------------------------------------------------ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    cursor: zoom-out;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.gallery-grid__img,
.about-gallery__img {
    cursor: zoom-in;
}

/* --- Print --------------------------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .skip-link {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
