:root {
    --primary_color: #3b7a57;
    --light_primary_color: #eaf3ee;
    --profile_primary_color: #2f6147;
    --middle_light_primary_color: #c4ddd0;
    --agri_cream: #f6f4ef;
    /* Dark surfaces derived from brand (overridden by layout :root when --primary_color is set inline) */
    --site-footer-bg: color-mix(in srgb, var(--primary_color) 78%, #0c1411 22%);
    --site-ink-strong: color-mix(in srgb, var(--profile_primary_color) 88%, #1a1f1c 12%);
}

/* Must match Tailwind-style .hidden — layout uses it for the image lightbox */
.hidden {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #fafaf8;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: "Inter", "Poppins", sans-serif;
    background: #fafaf8;
    color: var(--site-ink-strong);
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.site-main {
    width: 100%;
    flex: 1 0 auto;
    min-height: 40vh;
}

.site-container {
    width: 100%;
    max-width: min(1920px, 100%);
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 3rem);
    padding-right: clamp(1rem, 4vw, 3rem);
    box-sizing: border-box;
}

/* —— Floating glass navbar —— */
.site-nav {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 40;
    padding: clamp(0.65rem, 2vw, 1.1rem) 0;
    background: transparent;
    pointer-events: none;
}

.site-nav__shell {
    pointer-events: auto;
}

.site-nav__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.55rem clamp(0.85rem, 2.5vw, 1.35rem);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px rgba(22, 40, 30, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-nav__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-decoration: none;
    line-height: 0;
}

.site-nav__brand img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 16px rgba(22, 40, 30, 0.1);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--primary_color) 22%, transparent);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--profile_primary_color);
    cursor: pointer;
    flex-shrink: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.nav-toggle:hover {
    border-color: color-mix(in srgb, var(--primary_color) 45%, transparent);
    color: var(--primary_color);
}

.nav-cluster {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.65rem 0.35rem 0.15rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(32, 42, 36, 0.08);
    min-width: 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 1.2vw, 0.85rem);
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: 0;
}

.nav-links__single {
    text-decoration: none;
    color: var(--profile_primary_color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    white-space: nowrap;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.nav-links__single:hover,
.nav-links__single.active {
    color: var(--primary_color);
}

/* Dropdowns (<details>) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--profile_primary_color);
    padding: 0.45rem 1.35rem 0.45rem 0.55rem;
    border-radius: 10px;
    user-select: none;
    white-space: nowrap;
    position: relative;
}

.nav-dropdown__summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown__summary::after {
    content: "";
    position: absolute;
    right: 0.2rem;
    top: 50%;
    width: 0.35rem;
    height: 0.35rem;
    margin-top: -0.2rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.65;
    transition: transform 0.2s ease;
}

.nav-dropdown[open] > .nav-dropdown__summary::after {
    transform: rotate(225deg);
    margin-top: -0.05rem;
}

.nav-dropdown__summary:hover,
.nav-dropdown--current > .nav-dropdown__summary {
    color: var(--primary_color);
}

.nav-dropdown__panel {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.4rem 0;
    min-width: 200px;
}

.nav-dropdown__panel a {
    text-decoration: none;
    color: #2c322f;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    overflow-wrap: anywhere;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a.active {
    color: var(--primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 80%, transparent);
}

@media (min-width: 961px) {
    .nav-dropdown__panel {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(22, 40, 30, 0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 50;
    }
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.48rem 1rem;
    border-radius: 12px;
    line-height: 1.2;
    white-space: nowrap;
    max-width: 100%;
    overflow-wrap: anywhere;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.nav-btn--ghost {
    color: var(--profile_primary_color);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid color-mix(in srgb, var(--primary_color) 28%, transparent);
}

.nav-btn--ghost:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.nav-btn--solid {
    color: #fff;
    background: var(--primary_color);
    border: 1px solid var(--primary_color);
}

.nav-btn--solid:hover {
    filter: brightness(1.08);
    color: #fff;
}

.nav-btn--ghost.nav-btn--current {
    border-color: var(--primary_color);
    color: var(--primary_color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary_color) 28%, transparent);
}

.nav-btn--solid.nav-btn--current {
    filter: brightness(1.12);
    box-shadow: 0 0 0 2px color-mix(in srgb, #fff 55%, transparent);
}

@media (min-width: 961px) {
    /* Logo stays centered; Explore / auth stay grouped on the right like the original bar */
    .nav-cluster {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: clamp(0.5rem, 2vw, 1.25rem);
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        min-width: 0;
        margin-top: 0;
        padding: 0;
        border-top: 0;
    }

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

    .nav-links {
        justify-content: flex-end;
    }

    .site-nav__brand {
        grid-column: 2;
        grid-row: 1;
    }

    .nav-toggle {
        display: none;
    }
}

@media (max-width: 960px) {
    .site-nav__bar {
        border-radius: 22px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0.35rem;
    }

    .nav-dropdown {
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.35);
        border: 1px solid rgba(32, 42, 36, 0.06);
        overflow: hidden;
    }

    .nav-dropdown__summary {
        padding: 0.65rem 2rem 0.65rem 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown__summary::after {
        right: 0.85rem;
    }

    .nav-dropdown__panel {
        padding: 0 0.5rem 0.5rem;
        border-top: 1px solid rgba(32, 42, 36, 0.06);
    }

    .nav-links__single {
        padding: 0.65rem 0.85rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.35);
        border: 1px solid rgba(32, 42, 36, 0.06);
    }

    .nav-auth {
        flex-direction: column;
        padding-top: 0.35rem;
        border-top: 1px solid rgba(32, 42, 36, 0.08);
        gap: 0.5rem;
    }

    .nav-btn {
        width: 100%;
        padding: 0.6rem 1rem;
    }
}

.btn-primary {
    background: var(--primary_color);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.btn-outline {
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
    background: color-mix(in srgb, var(--light_primary_color) 75%, #fff);
    color: var(--profile_primary_color);
    border-color: var(--profile_primary_color);
}

/* —— Home hero (Slick) —— */
.hero-carousel {
    position: relative;
    margin: 1rem 0 2rem;
}

.hero-carousel--slick .js-hero-slick .slick-list {
    border-radius: clamp(16px, 3vw, 28px);
    overflow: hidden;
}

.hero-carousel--slick .js-hero-slick .slick-slide {
    outline: none;
}

.hero-slide {
    width: 100%;
    background: var(--hero-tint, #e8f4fc);
    box-sizing: border-box;
}

/* Home hero: full-banner image only (no copy, CTAs, or side cards) */
.hero-carousel--image-only .hero-slide--image-only {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #dfe8e3;
    aspect-ratio: 21 / 9;
    min-height: min(320px, 55vh);
    max-height: 78vh;
    text-decoration: none;
    color: inherit;
    border-radius: inherit;
}

.hero-carousel--image-only .js-hero-slick .slick-slide > div {
    width: 100%;
    height: 100%;
    line-height: 0;
}

.hero-carousel--image-only .hero-slide--image-only img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.hero-carousel--image-only .hero-slide--image-only-empty {
    background: linear-gradient(135deg, var(--middle_light_primary_color), var(--light_primary_color));
}

@media (max-width: 900px) {
    .hero-carousel--image-only .hero-slide--image-only {
        aspect-ratio: 16 / 9;
        min-height: min(240px, 42vh);
        max-height: 65vh;
    }
}

.hero-carousel .slick-dots {
    position: absolute;
    bottom: 0.85rem;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    z-index: 6;
}

.hero-carousel .slick-dots li {
    margin: 0;
}

.hero-carousel .slick-dots li button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary_color) 14%, transparent);
}

.hero-carousel .slick-dots li.slick-active button {
    background: var(--primary_color);
    box-shadow: none;
}

.hero-slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--profile_primary_color);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary_color) 18%, transparent);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.hero-slick-arrow:hover {
    background: var(--primary_color);
    color: #fff;
}

.hero-slick-arrow--prev {
    left: clamp(0.35rem, 2vw, 0.85rem);
}

.hero-slick-arrow--next {
    right: clamp(0.35rem, 2vw, 0.85rem);
}

.hero-slide-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(1.25rem, 4vw, 2.75rem);
    min-height: min(520px, 78vh);
}

.hero-slide-inner--with-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 200px);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.hero-title {
    margin: 0;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--profile_primary_color);
    font-family: "Inter", "Poppins", sans-serif;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: manual;
    -webkit-hyphens: manual;
}

.hero-tagline {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.55;
    color: #3d4542;
    max-width: min(36ch, 100%);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.hero-cta--primary {
    background: var(--primary_color);
    color: #fff;
    border: 2px solid var(--primary_color);
}

.hero-cta--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px color-mix(in srgb, var(--primary_color) 45%, transparent);
}

.hero-cta--ghost {
    background: transparent;
    color: var(--primary_color);
    border: 2px solid var(--primary_color);
}

.hero-cta--ghost:hover {
    background: color-mix(in srgb, var(--light_primary_color) 70%, transparent);
}

.hero-visual {
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    background: #dfe8e3;
    aspect-ratio: 4 / 3;
    max-height: 420px;
    box-shadow: 0 20px 50px rgba(29, 35, 31, 0.12);
}

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

.hero-visual--placeholder {
    min-height: 240px;
    background: linear-gradient(135deg, var(--middle_light_primary_color), var(--light_primary_color));
}

.hero-side-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.hero-side-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    overflow: hidden;
}

.hero-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.hero-side-card--a {
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary_color) 85%, #c0397a), var(--primary_color));
}

.hero-side-card--b {
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary_color) 55%, #1a3d2e), color-mix(in srgb, var(--primary_color) 35%, #0f1f1a));
}

.hero-side-card-img {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

.hero-side-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-side-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.hero-side-card-title {
    font-size: 0.95rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.hero-side-card-link {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-slide-inner,
    .hero-slide-inner--with-side {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-visual {
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .hero-side-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-side-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }
}

@media (max-width: 720px) {
    .hero-slick-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-side-card {
        flex: 1 1 100%;
    }
}

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

.section-head .btn-outline {
    flex-shrink: 0;
}

.section-head h2 {
    margin: 0;
    flex: 1 1 12rem;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.section h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-family: "Playfair Display", "Times New Roman", serif;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.2;
}

.muted {
    color: #657069;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(29, 35, 31, 0.08);
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.card-body strong {
    display: block;
    line-height: 1.35;
}

/* —— Brand partners (Slick) —— */
.section--brand-slider {
    text-align: center;
}

.brand-slider-heading {
    margin: 0 auto 1.25rem;
    max-width: 100%;
}

.brand-slick-wrap {
    width: 100%;
    margin-top: 0.35rem;
}

.brand-slider-empty {
    margin: 0.5rem 0 0;
    text-align: center;
}

.js-brand-slick .slick-slide {
    outline: none;
    padding: 0 0.4rem;
}

.js-brand-slick .slick-list {
    margin: 0 -0.4rem;
}

.brand-slick-wrap .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
}

.brand-slick-wrap .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.brand-slick-wrap .slick-dots li.slick-active button {
    background: var(--primary_color);
}

.brand-chip {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e7ece7;
    min-height: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.65rem;
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
}

.brand-chip .muted {
    font-size: 0.78rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.brand-chip img {
    max-width: 92px;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* —— Listing tiles (events-style cards) —— */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: stretch;
}

/* —— Person directory cards (farmers / members) —— */
.person-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: stretch;
}

/* —— Testimonials showcase (home carousel) —— */
.section--testimonials.testimonial-showcase {
    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.testimonial-showcase__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.25fr);
    gap: clamp(1.75rem, 5vw, 4rem);
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 820px) {
    .testimonial-showcase__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimonial-showcase__intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 100%;
}

/* Beat .section h2 (Playfair) — match rest of marketing sections */
.section.section--testimonials h2.testimonial-showcase__title {
    margin: 0 0 0.75rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: clamp(1.65rem, 4vw, 2.35rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #111827 !important;
    letter-spacing: -0.02em !important;
}

.testimonial-showcase__lead {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
    color: #6b7280;
    max-width: 42ch;
}

.testimonial-showcase__arrows {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonial-showcase__arrows .slick-arrow {
    position: static;
    transform: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonial-showcase__arrows .slick-arrow:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.testimonial-showcase__arrows .slick-arrow:focus-visible {
    outline: 2px solid var(--primary_color, #3b7a57);
    outline-offset: 2px;
}

.testimonial-showcase__arrows .slick-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.testimonial-showcase__slider-col {
    min-width: 0;
    text-align: left;
}

/* Before Slick runs: hide stacked slides (only first visible) */
.js-testimonial-slick:not(.slick-initialized) > div:not(:first-child) {
    display: none !important;
}

.testimonial-showcase--slick-failed .js-testimonial-slick > div:not(:first-child) {
    display: none !important;
}

.js-testimonial-slick .slick-list,
.js-testimonial-slick .slick-track {
    min-width: 0;
}

/* Override slick-theme / defaults that center slide content */
.testimonial-showcase .slick-slide,
.testimonial-showcase .slick-slide > div {
    text-align: left !important;
}

.testimonial-slide {
    margin: 0;
    padding: 0;
    min-width: 0;
    text-align: left;
}

.testimonial-slide__mark {
    display: block;
    width: 100%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 10vw, 5rem);
    line-height: 0.85;
    color: #2563eb;
    user-select: none;
    margin-bottom: 0.15rem;
    text-align: left;
}

.testimonial-slide__quote {
    margin: 0 0 1.75rem;
    padding: 0;
    border: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: #111827;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
}

.testimonial-slide__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.testimonial-slide__avatar {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}

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

.testimonial-slide__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.1rem;
}

.testimonial-slide__who {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.testimonial-slide__who strong {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.testimonial-slide__role {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #6b7280;
}

/* Our Message: same testimonial layout; section title + grid (often below events) */
.testimonial-showcase--our-message {
    margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.testimonial-showcase--our-message__head {
    margin-bottom: clamp(1rem, 3vw, 1.75rem);
    width: 100%;
}

.testimonial-showcase--our-message .testimonial-showcase__subtitle {
    margin: 0 0 0.65rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.02em;
}

.testimonial-showcase__arrows--spacer {
    min-height: 46px;
    margin-top: auto;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonial-slide__quote--rich .blog-detail-content > p:first-child {
    margin-top: 0;
}

.testimonial-slide__quote--rich .blog-detail-content > *:last-child {
    margin-bottom: 0;
}

.person-profile-card {
    --person-radius: 22px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.15rem 1.2rem 1.15rem 1.05rem;
    background: #fff;
    border-radius: var(--person-radius);
    box-shadow: 0 12px 36px rgba(29, 35, 31, 0.09);
    border: 1px solid #ebeee8;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.person-profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(29, 35, 31, 0.12);
}

.person-profile-card__aside {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 7.5rem;
    min-width: 7.5rem;
}

.person-profile-card__avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #e8ede9;
    flex-shrink: 0;
}

.person-profile-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-profile-card__avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--middle_light_primary_color), var(--light_primary_color));
}

.person-profile-card__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    width: 100%;
}

.person-profile-card__link {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4a5550;
    text-decoration: none;
    text-align: center;
    padding: 0.2rem 0;
}

.person-profile-card__link:hover {
    color: var(--primary_color);
}

.person-profile-card__btn-solid {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--profile_primary_color);
    text-decoration: none;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    border: none;
    line-height: 1.2;
}

.person-profile-card__btn-solid:hover {
    filter: brightness(1.06);
    color: #fff;
}

.person-profile-card__main {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 0.15rem;
    padding-right: 0.25rem;
}

.person-profile-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.person-profile-card--farmer .person-profile-card__badge {
    background: color-mix(in srgb, var(--primary_color) 16%, #fff);
    color: var(--profile_primary_color);
}

.person-profile-card--member .person-profile-card__badge {
    background: color-mix(in srgb, var(--middle_light_primary_color) 42%, #f6f4ef);
    color: #2c4a38;
}

.person-profile-card__name-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding-right: 5.5rem;
    margin-bottom: 0.35rem;
}

.person-profile-card__name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    color: #1a211e;
    font-family: "Inter", "Poppins", sans-serif;
    overflow-wrap: anywhere;
}

.person-profile-card__verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: var(--primary_color);
    color: #fff;
    font-size: 0.55rem;
    flex-shrink: 0;
}

.person-profile-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    font-size: 0.8rem;
    color: #6b7570;
    margin-bottom: 0.5rem;
}

.person-profile-card__stat {
    font-weight: 600;
}

.person-profile-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.person-profile-card__loc i {
    color: #9aa39c;
    font-size: 0.75rem;
}

.person-profile-card__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.person-profile-card__tags li {
    font-size: 0.68rem;
    font-weight: 600;
    color: #4d5651;
    background: #f0f2f0;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.person-profile-card--farm-owner .person-profile-card__badge {
    background: color-mix(in srgb, var(--middle_light_primary_color) 42%, #f6f4ef);
    color: #2c4a38;
}

.person-profile-card__owner-bio {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #5a635e;
    max-width: 100%;
}

/* —— Farm detail (hero matches home slider frame) —— */
.farm-show {
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Same outer rhythm + rounded shell as .hero-carousel--slick .slick-list */
.farm-show-hero {
    margin: 1rem 0 2rem;
}

.farm-show-hero__frame {
    position: relative;
    border-radius: clamp(16px, 3vw, 28px);
    overflow: hidden;
    min-height: min(520px, 78vh);
    background: #1b2b23;
    box-shadow: 0 20px 50px rgba(29, 35, 31, 0.12);
}

.farm-show-hero__media {
    position: absolute;
    inset: 0;
}

.farm-show-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.farm-show-hero__media--placeholder {
    background: linear-gradient(135deg, var(--middle_light_primary_color), var(--light_primary_color));
    opacity: 1;
}

.farm-show-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 20, 0.88) 0%, rgba(15, 25, 20, 0.35) 55%, rgba(15, 25, 20, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.farm-show-hero__inner {
    position: relative;
    z-index: 2;
    min-height: min(520px, 78vh);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(1.25rem, 4vw, 2.75rem);
    box-sizing: border-box;
    max-width: 100%;
}

/* Typography aligned with .hero-title on home (uppercase Inter) */
.farm-show-hero__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: "Inter", "Poppins", sans-serif;
    text-transform: uppercase;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.farm-show-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    margin-bottom: 0.5rem;
}

.farm-show-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.farm-show-chip i {
    opacity: 0.85;
    font-size: 0.72rem;
}

.farm-show-hero__org {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
}

.farm-show-hero__org a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.farm-show-hero__org a:hover {
    border-bottom-color: #fff;
}

.farm-show-hero__favorite-slot {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 4;
}

@media (max-width: 900px) {
    .farm-show-hero__frame,
    .farm-show-hero__inner {
        min-height: min(440px, 72vh);
    }
}

/* —— Organization / farmer profile (avatar + panel, not full-bleed banner) —— */
.org-show-hero {
    margin: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
}

.org-show-hero--has-banner {
    overflow: hidden;
    border-radius: clamp(16px, 3vw, 28px);
    box-shadow: 0 20px 50px rgba(29, 35, 31, 0.12);
}

.org-show-hero__banner {
    position: relative;
    width: 100%;
    max-height: min(280px, 38vw);
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: #1b2b23;
}

.org-show-hero__banner img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    max-height: min(280px, 38vw);
    object-fit: cover;
    object-position: center;
    display: block;
}

.org-show-hero--has-banner .org-show-hero__inner {
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.org-show-hero__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.15rem, 3vw, 2rem);
    padding: clamp(1.35rem, 3vw, 2.35rem) clamp(1.25rem, 4vw, 2.5rem);
    border-radius: clamp(16px, 3vw, 28px);
    background: linear-gradient(135deg, #1b2b23 0%, #243d32 48%, #2d4a3e 100%);
    box-shadow: 0 20px 50px rgba(29, 35, 31, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.org-show-hero__favorite-slot {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
}

.org-show-hero__favorite-slot .site-favorite-btn,
.org-show-hero__favorite-slot .site-favorite-btn.site-favorite-btn--guest {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.org-show-hero__favorite-slot .site-favorite-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.org-show-hero__favorite-slot .site-favorite-btn.is-favorited {
    color: var(--primary_color);
    background: rgba(255, 255, 255, 0.22);
    border-color: color-mix(in srgb, var(--primary_color) 45%, rgba(255, 255, 255, 0.5));
}

.org-show-hero__favorite-slot .site-favorite-btn.is-favorited:hover {
    color: var(--primary_color);
    background: rgba(255, 255, 255, 0.3);
}

.org-show-hero__avatar {
    width: clamp(6.5rem, 13vw, 9.5rem);
    height: clamp(6.5rem, 13vw, 9.5rem);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    background: #e8ede9;
}

.org-show-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.org-show-hero__avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.org-show-hero__content {
    min-width: 0;
    flex: 1;
}

.org-show-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: "Inter", "Poppins", sans-serif;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.org-show-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    margin-top: 0.4rem;
}

.org-show-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.org-show-hero__chip i {
    opacity: 0.85;
    font-size: 0.72rem;
}

@media (max-width: 540px) {
    .org-show-hero__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .org-show-hero__title-row {
        justify-content: center;
    }

    .org-show-hero__chips {
        justify-content: center;
    }
}

.org-show {
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.org-show-body {
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.org-show-hero__title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.org-show-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--primary_color);
    color: #fff;
    font-size: 0.62rem;
    flex-shrink: 0;
}

.org-show-hero__subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.org-show-section-title {
    margin: 0 0 0.9rem;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
    color: #202525;
}

.org-show-type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.org-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.35rem);
}

.org-spotlight-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ebeee8;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(29, 35, 31, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.org-spotlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(29, 35, 31, 0.1);
}

.org-spotlight-card__media {
    display: block;
    line-height: 0;
    background: #e8ede9;
}

.org-spotlight-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.org-spotlight-card__media--placeholder {
    min-height: clamp(140px, 22vw, 180px);
    background: linear-gradient(135deg, #e8ede9 0%, #dfe8e2 100%);
}

.org-spotlight-card__body {
    padding: 1rem 1.15rem 1.2rem;
}

.org-spotlight-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: "Inter", "Poppins", sans-serif;
    line-height: 1.25;
}

.org-spotlight-card__title a {
    color: #1a211e;
    text-decoration: none;
}

.org-spotlight-card__title a:hover {
    color: var(--primary_color);
}

.org-spotlight-card__loc {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.org-spotlight-card__excerpt {
    margin: 0 0 0.65rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #5a635e;
}

.org-spotlight-card__link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary_color);
    text-decoration: none;
}

.org-spotlight-card__link:hover {
    text-decoration: underline;
}

.farm-gallery-mixed-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.farm-gallery-caption {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6b7570;
    line-height: 1.35;
    padding: 0 0.15rem;
}

.org-show-gallery-lead {
    margin: -0.15rem 0 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.farm-show-section--tone {
    margin-left: calc(-1 * clamp(1rem, 4vw, 3rem));
    margin-right: calc(-1 * clamp(1rem, 4vw, 3rem));
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 4vw, 3rem);
    background: var(--agri_cream);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .farm-show-section--tone {
        margin-left: 0;
        margin-right: 0;
        border-radius: 14px;
    }
}

.farm-show-body {
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.farm-show-section {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.farm-show-section:first-child {
    margin-top: 0;
}

.farm-show-panel {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ebeee8;
    box-shadow: 0 12px 40px rgba(29, 35, 31, 0.07);
    overflow: hidden;
}

.farm-show-panel__body {
    padding: clamp(1.1rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.65rem);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #374139;
}

.farm-show-gallery-head {
    margin-bottom: 0.15rem;
    width: 100%;
    justify-content: flex-start;
}

.farm-show-gallery-head h2 {
    margin: 0;
    flex: none;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
    color: #202525;
}

.farm-gallery-subsection {
    margin-top: clamp(1.15rem, 2.8vw, 1.65rem);
}

.farm-gallery-subsection:first-of-type {
    margin-top: 0.65rem;
}

.farm-gallery-subtitle {
    margin: 0 0 0.9rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--profile_primary_color);
    font-family: "Inter", "Poppins", sans-serif;
}

.farm-gallery-grid {
    display: grid;
    margin-top: 0.15rem;
}

.farm-gallery-grid--images {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: clamp(0.85rem, 2vw, 1.35rem);
}

@media (min-width: 900px) {
    .farm-gallery-grid--images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .farm-gallery-grid--images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1500px) {
    .farm-gallery-grid--images {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.farm-gallery-grid--videos {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.farm-gallery-cell {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    display: block;
    line-height: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.farm-gallery-cell:focus-visible {
    outline: 2px solid var(--primary_color);
    outline-offset: 3px;
}

/* Match .hero-visual rounding + stronger depth for “rich” gallery */
.farm-gallery-cell--image {
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: 0 18px 48px rgba(29, 35, 31, 0.16);
}

.farm-gallery-cell--image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(29, 35, 31, 0.2);
}

.farm-gallery-cell--image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .farm-gallery-cell--image img {
        min-height: 240px;
    }
}

.farm-gallery-cell--video {
    cursor: default;
    background: color-mix(in srgb, var(--primary_color) 22%, #0d1210);
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(29, 35, 31, 0.16);
}

.farm-gallery-cell--video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    display: block;
    object-fit: contain;
    background: color-mix(in srgb, var(--primary_color) 12%, #0a0a0a);
}

@media (min-width: 768px) {
    .farm-gallery-cell--video video {
        min-height: 240px;
    }
}

.farm-show-highlights {
    padding-top: 0.25rem;
}

.farm-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.farm-highlight-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--profile_primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 90%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary_color) 18%, transparent);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    line-height: 1.3;
}

@media (max-width: 520px) {
    .person-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .person-profile-card__aside {
        width: 100%;
    }

    .person-profile-card__main {
        width: 100%;
        padding-right: 0;
    }

    .person-profile-card__badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .person-profile-card__name-row {
        padding-right: 0;
        justify-content: center;
    }

    .person-profile-card__meta {
        justify-content: center;
    }

    .person-profile-card__tags {
        justify-content: center;
    }
}

/* Tile grid cards with optional favorite control */
.site-tile-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.site-tile-card > .site-tile {
    flex: 1 1 auto;
}

.site-tile-card .site-favorite-wrap--corner {
    position: absolute;
    bottom: 0.55rem;
    right: 0.55rem;
    z-index: 3;
}

.person-profile-card .site-favorite-wrap--card {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    z-index: 2;
}

.site-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary_color);
    box-shadow: 0 4px 18px rgba(29, 35, 31, 0.12);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.farm-show-hero__favorite-slot .site-favorite-btn,
.farm-show-hero__favorite-slot .site-favorite-btn.site-favorite-btn--guest {
    background: rgba(255, 255, 255, 0.95);
}

.site-favorite-btn:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--profile_primary_color);
}

.site-favorite-btn.is-favorited {
    color: var(--primary_color);
    background: color-mix(in srgb, var(--primary_color) 12%, #fff);
}

.site-favorite-btn.is-favorited:hover {
    color: var(--primary_color);
    background: color-mix(in srgb, var(--primary_color) 18%, #fff);
}

.site-favorite-btn i {
    font-size: 1.05rem;
    line-height: 1;
}

.account-favorites__block {
    margin-bottom: 2.5rem;
}

.account-favorites__block:last-child {
    margin-bottom: 0;
}

.account-favorites__heading {
    font-size: 1.15rem;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--profile_primary_color);
}

.site-tile {
    --tile-radius: 28px;
    --tile-media-height: 200px;

    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--tile-radius);
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(29, 35, 31, 0.1);
    text-decoration: none;
    color: inherit;
    min-width: 0;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 52px rgba(29, 35, 31, 0.14);
}

/* Fixed-height media: every card image band is identical; top + bottom radii like the card */
.site-tile__media {
    flex: 0 0 var(--tile-media-height);
    width: 100%;
    height: var(--tile-media-height);
    min-height: var(--tile-media-height);
    max-height: var(--tile-media-height);
    margin: 0;
    border-radius: var(--tile-radius);
    overflow: hidden;
    background: #e8ede9;
}

.site-tile__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

.site-tile__placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    background: linear-gradient(135deg, var(--middle_light_primary_color), var(--light_primary_color));
}

.site-tile__body {
    flex: 1 1 auto;
    padding: 1rem 1.25rem 1.15rem;
    margin-top: 0;
}

.site-tile__meta {
    display: flex;
    gap: 0;
    align-items: flex-start;
    text-align: left;
}

.site-tile:not(.site-tile--no-date) .site-tile__content {
    flex: 1;
    padding-left: 1rem;
    margin-left: 0;
    border-left: 1px solid #e4e9e5;
}

.site-tile__date {
    flex-shrink: 0;
    width: 3.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.site-tile__date-sm {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.95;
}

.site-tile__date-lg {
    font-size: 1.85rem;
    font-weight: 800;
    margin-top: 0.2rem;
    letter-spacing: -0.02em;
}

.site-tile__content {
    flex: 1;
    min-width: 0;
}

.site-tile__loc {
    margin: 0 0 0.45rem;
    font-size: 0.8rem;
    color: #6b7570;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    line-height: 1.35;
}

.site-tile__loc i {
    margin-top: 0.15rem;
    color: #9aa39c;
    flex-shrink: 0;
}

.site-tile__title {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Inter", "Poppins", sans-serif;
    overflow-wrap: anywhere;
}

.site-tile__excerpt {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #5a635e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.site-tile__footer {
    margin: 0;
    font-size: 0.72rem;
    color: #8a938d;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-tile__footer i {
    opacity: 0.85;
}

@media (max-width: 420px) {
    .site-tile {
        --tile-media-height: 176px;
    }
}

.pagination-wrap {
    margin-top: 2rem;
}

/* —— Listing pages: sidebar + main (farms, events, blogs) —— */
.listing-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.listing-page__layout--single {
    grid-template-columns: 1fr;
}

.listing-page__main {
    min-width: 0;
}

.listing-page__sidebar {
    position: sticky;
    top: calc(1rem + env(safe-area-inset-top, 0));
}

/* Collapsible filter panel on phones / small tablets */
.listing-filter-drawer {
    border: none;
    background: transparent;
}

.listing-filter-drawer__summary {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a635e;
}

.listing-filter-drawer__summary::-webkit-details-marker {
    display: none;
}

.listing-filter-drawer__summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.15rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.55;
}

.listing-filter-drawer[open] > .listing-filter-drawer__summary::after {
    transform: rotate(-135deg);
    margin-top: 0.2rem;
}

.listing-filter-drawer__inner {
    padding: 0;
}

.listing-filter {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 18px;
    padding: 1.15rem 1.2rem 1.25rem;
    box-shadow: 0 10px 36px rgba(29, 35, 31, 0.06);
}

.listing-filter__title {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a635e;
}

.listing-filter__field {
    margin-bottom: 1rem;
}

.listing-filter__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3d4540;
}

.listing-filter__input,
.listing-filter__select {
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    font-size: 0.88rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid #d5ddd6;
    border-radius: 10px;
    background: #fafbf9;
    color: #1a211e;
}

.listing-filter__input:focus,
.listing-filter__select:focus {
    outline: 2px solid color-mix(in srgb, var(--primary_color) 45%, transparent);
    outline-offset: 1px;
    border-color: var(--primary_color);
    background: #fff;
}

.listing-filter__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.listing-filter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary_color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
}

.listing-filter__submit:hover {
    filter: brightness(1.05);
}

.listing-filter__clear {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--profile_primary_color);
    text-decoration: none;
}

.listing-filter__clear:hover {
    text-decoration: underline;
}

.listing-page__head {
    margin-bottom: 0.35rem;
}

.listing-page__lead {
    margin: 0 0 1.25rem;
}

/* Blog listing: left filters + main grid + right related posts */
.listing-page__layout--blog {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 300px);
}

.listing-page__sidebar--related {
    position: sticky;
    top: calc(1rem + env(safe-area-inset-top, 0));
}

.blog-related-panel {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 18px;
    padding: 1.15rem 1.2rem 1.25rem;
    box-shadow: 0 10px 36px rgba(29, 35, 31, 0.06);
}

.blog-related-panel__title {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a635e;
}

.blog-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-related-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    padding: 0.35rem;
    margin: -0.35rem;
    transition: background 0.15s ease;
}

.blog-related-card:hover {
    background: color-mix(in srgb, var(--light_primary_color) 55%, #fff);
}

.blog-related-card__media {
    flex-shrink: 0;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 12px;
    overflow: hidden;
    background: #eef1ec;
}

.blog-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-related-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--primary_color);
    font-size: 1.25rem;
    opacity: 0.65;
}

.blog-related-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-related-card__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--profile_primary_color);
    line-height: 1.35;
}

.blog-related-card:hover .blog-related-card__title {
    color: var(--primary_color);
}

.blog-related-card__meta {
    font-size: 0.75rem;
    color: #6b7570;
}

.blog-related-panel__empty {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #6b7570;
}

/* Blog detail (hero reuses .farm-show-hero) */
.blog-detail-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-detail-tag {
    display: inline-flex;
    padding: 0.28rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--profile_primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 65%, #fff);
    border: 1px solid #ebeee8;
    border-radius: 999px;
}

.blog-detail-tag:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.blog-detail-panel {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 20px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 14px 44px rgba(29, 35, 31, 0.07);
}

.blog-detail-content {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--site-ink-strong);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-detail-back {
    margin: 1.5rem 0 0;
}

.blog-detail-back a {
    color: var(--primary_color);
    font-weight: 700;
    text-decoration: none;
}

.blog-detail-back a:hover {
    text-decoration: underline;
}

/* Event detail (layout matches blog detail + farm hero) */
/* Sidebar blocks kept in HTML for easy restore: remove .event-sidebar-hidden from markup */
.event-sidebar-hidden {
    display: none !important;
}

.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-sidebar-panel {
    margin: 0;
}

.event-detail-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
    color: var(--site-ink-strong);
}

.event-detail-meta-list li {
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.event-detail-meta-list li:last-child {
    margin-bottom: 0;
}

.event-detail-meta-list strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7570;
    margin-bottom: 0.25rem;
}

.event-sidebar-lead {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.event-sidebar-address {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.event-sidebar-prose {
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}

.event-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: var(--primary_color);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.1s ease;
    text-align: center;
    box-sizing: border-box;
}

.event-sidebar-cta:hover {
    filter: brightness(1.05);
    color: #fff;
}

.event-sidebar-cta--secondary {
    margin-top: 0;
    margin-bottom: 0.5rem;
    background: #fff;
    color: var(--primary_color);
    border: 1px solid color-mix(in srgb, var(--primary_color) 35%, #ebeee8);
}

.event-sidebar-cta--secondary:hover {
    background: color-mix(in srgb, var(--light_primary_color) 50%, #fff);
    color: var(--primary_color);
}

.event-sidebar-panel--cta .event-ticket-line + .event-sidebar-cta {
    margin-top: 0.75rem;
}

.event-ticket-line {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-organizer-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.event-organizer-card:hover .event-organizer-card__name {
    color: var(--primary_color);
    text-decoration: underline;
}

.event-organizer-card__img {
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.event-organizer-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.event-organizer-card__bio {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
}

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

.event-review-card {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 16px;
    padding: 1rem 1.15rem;
    box-shadow: 0 8px 28px rgba(29, 35, 31, 0.05);
}

.event-review-card__head {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.event-review-card__avatar {
    border-radius: 50%;
    object-fit: cover;
}

.event-review-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.event-review-card__stars {
    color: #c9a227;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.event-review-card__message {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--site-ink-strong);
}

.event-detail-gallery {
    margin-top: 0.5rem;
}

.site-pagination {
    display: flex;
    justify-content: center;
}

.site-pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.site-pagination__item {
    margin: 0;
}

.site-pagination__control,
.site-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: #2a322e;
    background: #fff;
    border: 1px solid #d5ddd6;
    border-radius: 10px;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-pagination__control:hover,
.site-pagination__page:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 55%, #fff);
}

.site-pagination__control--disabled,
.site-pagination__page--current {
    cursor: default;
    pointer-events: none;
}

.site-pagination__control--disabled {
    color: #9aa39c;
    background: #f3f5f3;
    border-color: #e2e8e3;
}

.site-pagination__page--current {
    color: #fff;
    background: var(--primary_color);
    border-color: var(--primary_color);
}

.site-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7570;
}

@media (max-width: 900px) {
    .listing-page__layout:not(.listing-page__layout--single) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .listing-page__layout--blog {
        grid-template-columns: 1fr;
    }

    .blog-detail-page__layout {
        grid-template-columns: 1fr;
    }

    .listing-page__sidebar {
        position: static;
    }

    .listing-filter__title--desktop-only {
        display: none !important;
    }

    .listing-filter-drawer {
        border: 1px solid #ebeee8;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 36px rgba(29, 35, 31, 0.06);
        overflow: hidden;
    }

    .listing-filter-drawer__summary {
        display: flex;
        padding: 0.9rem 1.05rem;
        background: color-mix(in srgb, var(--light_primary_color) 55%, #fff);
        border-bottom: 1px solid #ebeee8;
    }

    .listing-filter-drawer .listing-filter {
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 1rem 1.05rem 1.15rem;
    }

    .listing-filter-drawer__inner {
        padding: 0;
    }

    .listing-filter__input,
    .listing-filter__select {
        font-size: max(0.88rem, 16px);
    }

    .listing-filter__submit {
        min-height: 2.75rem;
    }
}

@media (max-width: 520px) {
    .tile-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .person-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-pagination__control,
    .site-pagination__page {
        min-width: 2.5rem;
        min-height: 2.5rem;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        font-size: 0.78rem;
    }
}

/* —— Contact page —— */
.contact-page__hero {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.contact-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 4vw, 2.4rem);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    color: var(--profile_primary_color);
    line-height: 1.2;
}

.contact-page__intro {
    margin: 0;
    max-width: 52ch;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-page__body {
    padding-top: 0;
}

.contact-page__alert {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--light_primary_color) 88%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary_color) 22%, transparent);
    color: var(--profile_primary_color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-page__alert--error {
    background: #fff5f5;
    border-color: color-mix(in srgb, #c0392b 35%, transparent);
    color: #7a2a24;
}

.contact-page__error-list {
    margin: 0;
    padding-left: 1.1rem;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.contact-page__section-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--profile_primary_color);
    letter-spacing: -0.02em;
}

.contact-page__cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-page__card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(29, 35, 31, 0.06);
}

.contact-page__card--solo {
    justify-content: center;
}

.contact-page__card-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--light_primary_color) 92%, #fff);
    color: var(--primary_color);
    font-size: 1rem;
}

.contact-page__card-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--profile_primary_color);
    margin-bottom: 0.25rem;
}

.contact-page__card-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-page__card-text a {
    color: var(--primary_color);
    font-weight: 600;
    text-decoration: none;
}

.contact-page__card-text a:hover {
    text-decoration: underline;
}

.contact-page__form-wrap {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 20px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 14px 44px rgba(29, 35, 31, 0.07);
}

.contact-form__row {
    margin-bottom: 1rem;
}

.contact-form__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--profile_primary_color);
    margin-bottom: 0.35rem;
}

.contact-form__req {
    color: var(--primary_color);
}

.contact-form__select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    border: 1px solid #d5ddd6;
    border-radius: 10px;
    background: #fff;
    color: var(--site-ink-strong);
}

.contact-form__select:focus {
    outline: none;
    border-color: var(--primary_color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--light_primary_color) 80%, transparent);
}

.contact-form__actions {
    margin-top: 0.5rem;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d5ddd6;
    border-radius: 12px;
    background: #fafbf9;
    color: var(--site-ink-strong);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: 2px solid color-mix(in srgb, var(--primary_color) 45%, transparent);
    outline-offset: 1px;
    border-color: var(--primary_color);
    background: #fff;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__submit {
    margin-top: 0.35rem;
    width: 100%;
    padding: 0.7rem 1.25rem;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary_color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.contact-form__submit:hover {
    filter: brightness(1.06);
}

@media (max-width: 900px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
    }
}

/* —— Auth (sign in / sign up) —— */
.auth-page__hero {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.auth-page__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    color: var(--profile_primary_color);
    line-height: 1.2;
}

.auth-page__intro {
    margin: 0;
    max-width: 48ch;
    font-size: 0.92rem;
    line-height: 1.55;
    color: color-mix(in srgb, var(--site-ink-strong) 72%, #6b7a72);
}

.auth-page__body {
    padding-top: 0;
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.auth-page__layout {
    display: flex;
    justify-content: center;
}

.auth-page__card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 20px;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    box-shadow: 0 14px 44px rgba(29, 35, 31, 0.07);
}

.auth-page__logo {
    display: block;
    margin: 0 auto 1rem;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.auth-page__card-title {
    margin: 0 0 1.25rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--profile_primary_color);
    letter-spacing: -0.02em;
}

.auth-type-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.auth-type-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.65rem 0.85rem;
    border: 1px solid #d5ddd6;
    border-radius: 12px;
    cursor: pointer;
    background: #fafbf9;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--site-ink-strong);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.auth-type-card:has(input:checked) {
    border-color: var(--primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 88%, #fff);
    color: var(--profile_primary_color);
}

.auth-type-card input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary_color);
    flex-shrink: 0;
}

.auth-page__field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: #7a2a24;
    font-weight: 600;
}

.auth-page__row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-page__phone-row {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
}

/* Native country list (avoid Select2 hiding options / CDN issues) */
.auth-page__country-select {
    width: 100%;
    min-height: 42px;
    max-width: 100%;
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.35;
    background: #fafbf9;
    border: 1px solid #d5ddd6;
    border-radius: 12px;
    color: var(--site-ink-strong);
}

.auth-page__country-select:focus {
    outline: 2px solid color-mix(in srgb, var(--primary_color) 45%, transparent);
    outline-offset: 1px;
    border-color: var(--primary_color);
    background: #fff;
}

.auth-page__footer-text {
    margin: 1.15rem 0 0;
    text-align: center;
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--site-ink-strong) 65%, #6b7a72);
}

.auth-page__footer-text a {
    color: var(--primary_color);
    font-weight: 700;
    text-decoration: none;
}

.auth-page__footer-text a:hover {
    text-decoration: underline;
}

.auth-page__extras {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin: 0.15rem 0 0.25rem;
    font-size: 0.8rem;
}

.auth-page__remember {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--profile_primary_color);
}

.auth-page__remember input {
    accent-color: var(--primary_color);
}

.auth-page__forgot {
    color: var(--primary_color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.8rem;
}

.auth-page__forgot:hover {
    text-decoration: underline;
}

.auth-page__pw-wrap {
    position: relative;
}

.auth-page__pw-toggle {
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.4rem;
    border: none;
    background: transparent;
    color: var(--primary_color);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    border-radius: 8px;
}

.auth-page__pw-toggle:hover {
    background: color-mix(in srgb, var(--light_primary_color) 70%, transparent);
}

.auth-page__pw-wrap .contact-form__input {
    padding-right: 2.75rem;
}

.auth-page__org-field {
    display: none;
    grid-column: 1 / -1;
}

.auth-page__org-field.is-visible {
    display: block;
}

@media (max-width: 520px) {
    .auth-type-row,
    .auth-page__row-split,
    .auth-page__phone-row {
        grid-template-columns: 1fr;
    }
}

/* —— Account / profile (app user) —— */
.account-page__hero {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.account-page__title {
    margin: 0 0 0.35rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--site-ink-strong);
}

.account-page__intro {
    margin: 0;
    font-size: 0.95rem;
    max-width: 42rem;
}

.account-page__alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--light_primary_color) 45%, #fff);
    border: 1px solid #ebeee8;
    font-size: 0.9rem;
}

.account-page__alert--error {
    background: #fff5f5;
    border-color: #f5c2c7;
    color: #842029;
}

.account-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.account-page__grid--wide {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
}

.account-sidebar {
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 18px;
    padding: 1.15rem 1.1rem;
    box-shadow: 0 10px 36px rgba(29, 35, 31, 0.06);
}

.account-sidebar__user {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ebeee8;
}

.account-sidebar__avatar {
    border-radius: 50%;
    object-fit: cover;
}

.account-sidebar__name {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--site-ink-strong);
}

.account-sidebar__email {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    word-break: break-all;
}

.account-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: #2a322e;
    transition: background 0.12s ease, color 0.12s ease;
}

.account-sidebar__link:hover {
    background: color-mix(in srgb, var(--light_primary_color) 50%, #fff);
    color: var(--primary_color);
}

.account-sidebar__link.is-active {
    background: color-mix(in srgb, var(--light_primary_color) 65%, #fff);
    color: var(--primary_color);
}

.account-sidebar__link--muted {
    color: #6b7570;
    margin-top: 0.35rem;
    border-top: 1px solid #ebeee8;
    padding-top: 0.75rem;
}

.account-panel__lead {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}

.account-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-quick-links li {
    margin-bottom: 0.35rem;
}

.account-quick-links__a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary_color);
}

.account-quick-links__a:hover {
    text-decoration: underline;
}

.account-panel--form .contact-form {
    margin-top: 0.5rem;
}

.account-form__error {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: #b02a37;
}

.account-profile-photo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ebeee8;
}

.account-profile-photo__img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ebeee8;
}

.account-profile-photo__btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #d5ddd6;
    background: #fff;
    color: var(--primary_color);
    cursor: pointer;
}

.account-profile-photo__btn:hover {
    border-color: var(--primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 40%, #fff);
}

/* File input covers label so the OS file picker opens on click (no JS .click() on clipped inputs). */
.account-profile-photo__btn--upload {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.account-profile-photo__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 1rem;
}

.account-profile-photo__btn-text {
    position: relative;
    z-index: 0;
    pointer-events: none;
}

.account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.account-tab {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #d5ddd6;
    background: #fff;
    color: #2a322e;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.account-tab:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.account-tab.is-active {
    border-color: var(--primary_color);
    background: color-mix(in srgb, var(--light_primary_color) 55%, #fff);
    color: var(--primary_color);
}

.account-tab-panel {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.account-ticket-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 28px rgba(29, 35, 31, 0.05);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.account-ticket-card:hover {
    border-color: color-mix(in srgb, var(--primary_color) 35%, #ebeee8);
    box-shadow: 0 12px 36px rgba(29, 35, 31, 0.08);
}

.account-ticket-card__media {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f2f0;
}

.account-ticket-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-ticket-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.account-ticket-card__meta {
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
}

.account-empty {
    margin: 0;
    padding: 1.5rem;
    text-align: center;
    background: #fafbfa;
    border-radius: 14px;
    border: 1px dashed #d5ddd6;
}

.account-pagination {
    margin-top: 0.5rem;
}

.account-saved-card {
    display: grid;
    grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 16px;
}

.account-saved-card__media {
    border-radius: 12px;
    overflow: hidden;
    background: #f0f2f0;
    max-height: 120px;
}

.account-saved-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-saved-card__excerpt {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.account-saved-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary_color);
    text-decoration: none;
}

.account-follow-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #ebeee8;
    border-radius: 16px;
}

.account-follow-card__img {
    border-radius: 12px;
    object-fit: cover;
}

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

.account-follow-card__name {
    font-weight: 700;
    text-decoration: none;
    color: var(--site-ink-strong);
}

.account-follow-card__name:hover {
    color: var(--primary_color);
}

.account-follow-card__btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #d5ddd6;
    background: #fff;
    color: var(--primary_color);
    cursor: pointer;
}

.account-follow-card__btn:hover {
    border-color: var(--primary_color);
}

@media (max-width: 900px) {
    .account-page__grid,
    .account-page__grid--wide {
        grid-template-columns: 1fr;
    }

    .account-saved-card {
        grid-template-columns: 1fr;
    }
}

/* —— Footer —— */
.site-footer-wrap {
    flex-shrink: 0;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    --footer-navy: var(--site-footer-bg);
    --footer-text: rgba(255, 255, 255, 0.88);
    --footer-muted: rgba(255, 255, 255, 0.62);
}

.site-footer {
    background: var(--footer-navy);
    color: var(--footer-text);
    padding: clamp(2rem, 4vw, 2.75rem) 0 1.75rem;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-col__title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.site-footer-links,
.site-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.site-footer-links a,
.site-footer-contact-list a {
    font-size: 0.88rem;
    color: var(--footer-muted);
}

.site-footer-links a:hover,
.site-footer-contact-list a:hover {
    color: #fff;
}

.site-footer-contact-list__address {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--footer-muted);
}

.site-footer-brand {
    display: inline-block;
    margin-bottom: 0.65rem;
    line-height: 0;
}

.site-footer-brand img {
    max-height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.site-footer-brand__text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.site-footer-tagline {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--footer-muted);
    max-width: 28ch;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding-top: 1.25rem;
}

.site-footer-copy {
    margin: 0;
    font-size: 0.78rem;
    color: var(--footer-muted);
}

.site-footer-bottom__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.site-footer-lang {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.site-footer-lang a {
    font-size: 0.75rem;
    color: var(--footer-muted);
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.95rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.site-footer .muted {
    color: var(--footer-muted);
    font-size: 0.86rem;
}

@media (max-width: 900px) {
    .site-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .site-footer-columns {
        grid-template-columns: 1fr;
    }

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

/* Image lightbox — .hidden uses display:none !important so it wins over flex below */
.site-image-modal {
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, var(--primary_color) 22%, rgba(10, 18, 14, 0.88));
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
}

#site-image-modal-src {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    cursor: default;
}

/* —— Product detail (e-commerce style PDP) —— */
.product-pdp {
    background: #fafaf8;
    padding-bottom: clamp(2rem, 5vw, 4rem);
}

.product-pdp__container {
    padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

.product-pdp__banner-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--primary_color) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary_color) 28%, transparent);
    font-size: 0.95rem;
    color: var(--site-ink-strong);
}

.product-pdp__crumbs--above-grid {
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.product-pdp__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: stretch;
}

.product-pdp__media,
.product-pdp__detail {
    margin: 0;
    padding: 0;
    min-width: 0;
}

/* Left column: fill grid row height (matches detail column on wide screens) */
.product-pdp__media {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.product-pdp__gallery {
    display: flex;
    flex-direction: row;
    gap: clamp(0.65rem, 2vw, 1rem);
    align-items: flex-start;
}

.product-pdp__gallery--single {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}

.product-pdp__stage {
    position: relative;
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: clamp(260px, 58vw, 420px);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--primary_color) 10%, #e8e8e4);
    box-shadow: 0 12px 40px rgba(22, 40, 30, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-pdp__main-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    background: #f4f3f0;
}

.product-pdp__stage-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1 1 auto;
    align-self: stretch;
    min-height: 280px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #eceae4, #f6f4ef);
}

/* Two columns: image column height follows detail column */
@media (min-width: 961px) {
    .product-pdp__media {
        height: 100%;
        min-height: 0;
        align-self: stretch;
    }

    .product-pdp__gallery--single {
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
    }

    .product-pdp__stage {
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
    }

    .product-pdp__stage-placeholder {
        flex: 1 1 auto;
        min-height: min(100%, 560px);
        height: 100%;
        aspect-ratio: auto;
    }
}

.product-pdp__crumbs {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    flex-wrap: wrap;
}

.product-pdp__crumbs a {
    color: #6b7280;
    text-decoration: none;
}

.product-pdp__crumbs a:hover {
    color: var(--primary_color);
    text-decoration: underline;
}

.product-pdp__crumbs-sep {
    margin: 0 0.35rem;
    opacity: 0.65;
}

.product-pdp__crumbs-current {
    color: #9ca3af;
}

.product-pdp__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-pdp__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary_color);
}

.product-pdp__wish {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--primary_color) 18%, #ddd);
    border-radius: 50%;
    background: #fff;
    color: var(--profile_primary_color);
    cursor: default;
    opacity: 0.65;
}

.product-pdp__table-wrap {
    margin: 0 0 1.35rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-pdp__table {
    width: 100%;
    min-width: min(100%, 320px);
    border-collapse: collapse;
    font-size: 0.94rem;
    line-height: 1.45;
}

.product-pdp__table th {
    text-align: left;
    font-weight: 600;
    color: #6b7280;
    width: 36%;
    max-width: 11rem;
    padding: 0.55rem 0.75rem 0.55rem 0;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
}

.product-pdp__table td {
    padding: 0.55rem 0;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
    color: var(--site-ink-strong);
}

.product-pdp__table tbody tr:last-child th,
.product-pdp__table tbody tr:last-child td {
    border-bottom: none;
}

.product-pdp__status {
    font-weight: 600;
    color: var(--primary_color);
}

.product-pdp__empty {
    color: #9ca3af;
    font-style: italic;
}

.product-pdp__table-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.product-pdp__table-desc p:first-child {
    margin-top: 0;
}

.product-pdp__table-cell--desc {
    min-width: 0;
}

.product-pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.product-pdp__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 10px;
    border: none;
    background: var(--primary_color);
    color: #fff;
    transition: background 0.2s ease, transform 0.15s ease;
}

.product-pdp__cta:hover {
    background: var(--profile_primary_color);
    color: #fff;
    text-decoration: none;
}

.product-pdp__cta--outline {
    background: #fff;
    color: var(--primary_color);
    border: 2px solid var(--primary_color);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
}

.product-pdp__cta--outline:hover {
    background: color-mix(in srgb, var(--primary_color) 10%, #fff);
    color: var(--profile_primary_color);
}

.product-pdp__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.25rem;
    margin-bottom: 1.25rem;
}

.product-pdp__share-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--site-ink-strong);
}

.product-pdp__share-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-pdp__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #4b5563;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-pdp__share-btn:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.product-pdp__share-btn.is-copied {
    border-color: var(--primary_color);
    background: color-mix(in srgb, var(--primary_color) 12%, #fff);
    color: var(--primary_color);
}

.product-pdp__back {
    font-size: 0.9rem;
    margin: 0 0 0.75rem;
}

.product-pdp__back a {
    color: #6b7280;
    text-decoration: none;
}

.product-pdp__back a:hover {
    color: var(--primary_color);
    text-decoration: underline;
}

.product-pdp__seller {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.product-pdp__seller a {
    color: var(--primary_color);
    font-weight: 500;
}

.product-pdp__related-wrap {
    border-top: 1px solid color-mix(in srgb, var(--primary_color) 12%, #e5e5e0);
    padding-top: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(1rem, 3vw, 2rem);
}

.product-pdp__related-head h2 {
    margin: 0 0 1.25rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
}

@media (max-width: 960px) {
    .product-pdp__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .product-pdp__title-row {
        flex-wrap: wrap;
    }

    .product-pdp__table th {
        width: 42%;
        max-width: none;
    }
}
