:root {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2d1f1f;
    background: var(--color-background, #fdf9f5);
    min-height: 100vh;
}

a {
    color: inherit;
}

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

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page__header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 38, 0.08);
}

.nav {
    margin: 0 auto;
    width: min(1100px, 100%);
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav__branding {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
}

.nav__branding:hover {
    color: inherit;
}

.nav__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.nav__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nav__toggle {
    display: none;
}

.nav__items {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    background: var(--color-primary);
}

.nav__link:focus-visible::after,
.nav__link:hover::after {
    transform: scaleX(1);
}

.page__main {
    flex: 1;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4.5rem;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 10% 10%, rgba(123, 45, 38, 0.14), transparent 60%),
        radial-gradient(80% 50% at 90% 0%, rgba(216, 167, 95, 0.18), transparent 60%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 249, 245, 0.95) 40%, rgba(253, 249, 245, 1) 100%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(1100px, 100%);
    color: #2d1f1f;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.32em;
    font-weight: 600;
    color: var(--color-muted);
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: currentColor;
}

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 46ch;
    color: rgba(45, 31, 31, 0.86);
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 16px 30px rgba(123, 45, 38, 0.24);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(123, 45, 38, 0.28);
}

.button--ghost {
    border: 1px solid rgba(123, 45, 38, 0.35);
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
}

.button--ghost:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.hero__highlights {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    max-width: 40ch;
}

.hero__highlights li {
    padding-left: 1.75rem;
    position: relative;
    font-weight: 500;
}

.hero__highlights li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.section {
    padding: 4.5rem 1.5rem;
}

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

.section--cta {
    background: linear-gradient(140deg, rgba(123, 45, 38, 0.92), rgba(123, 45, 38, 0.82));
    color: #fff;
}

.section__header {
    width: min(900px, 100%);
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section__header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-top: 1rem;
    color: inherit;
}

.card-grid {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    padding: 2.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(35, 20, 20, 0.08);
    border: 1px solid rgba(216, 167, 95, 0.2);
}

.card--glass {
    backdrop-filter: blur(10px);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.card p {
    margin: 0;
    line-height: 1.6;
}

.timeline {
    width: min(900px, 100%);
    margin: 0 auto;
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: rgba(123, 45, 38, 0.25);
}

.timeline__item {
    position: relative;
    padding: 1.5rem 0 1.5rem 2.5rem;
}

.timeline__marker {
    position: absolute;
    left: 0.5rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(216, 167, 95, 0.18);
}

.timeline__content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(216, 167, 95, 0.18);
    box-shadow: 0 12px 30px rgba(35, 20, 20, 0.08);
}

.timeline__content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--color-primary);
}

.restaurant-grid {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 640px) {
    .restaurant-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (min-width: 1024px) {
    .restaurant-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.restaurant-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(216, 167, 95, 0.15);
    box-shadow: 0 8px 24px rgba(35, 20, 20, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.restaurant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(35, 20, 20, 0.1);
    color: inherit;
}

.restaurant-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.06), rgba(216, 167, 95, 0.08));
}

.restaurant-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.restaurant-card:hover .restaurant-card__image img {
    transform: scale(1.05);
}

.restaurant-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.04), rgba(216, 167, 95, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-card__placeholder::after {
    content: '\2726';
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.4;
}

.restaurant-card__content {
    padding: 0.875rem 1rem 1rem;
}

.restaurant-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant-card__address {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 0 0 0.5rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
}

.restaurant-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.restaurant-card__rating::before {
    content: '\2605';
    color: var(--color-accent);
    font-size: 0.85em;
}

.restaurant-card__visits {
    color: var(--color-muted);
}

/* Recommendations Hero */
.recommendations-hero {
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.1), rgba(216, 167, 95, 0.08));
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.recommendations-hero__content {
    width: min(800px, 100%);
    margin: 0 auto;
}

.recommendations-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 600;
    margin: 0.75rem 0 0.5rem;
    color: #2d1f1f;
}

.recommendations-hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin: 0;
}

/* Category Tabs */
.category-tabs {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(216, 167, 95, 0.15);
    position: sticky;
    top: 72px;
    z-index: 15;
}

.category-tabs__container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.category-tabs__main {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.75rem 0;
}

.category-tabs__main::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.category-tab:hover {
    color: var(--color-primary);
    background: rgba(123, 45, 38, 0.06);
}

.category-tab--active {
    color: #fff;
    background: var(--color-primary);
}

.category-tab--active:hover {
    color: #fff;
    background: var(--color-primary);
}

.category-tab__icon {
    font-size: 1rem;
}

.category-tabs__more {
    position: relative;
    flex-shrink: 0;
}

.category-tab--more {
    padding-right: 0.75rem;
}

.category-tab--more svg {
    transition: transform 0.2s;
}

.category-tabs__more:hover .category-tab--more svg,
.category-tabs__more:focus-within .category-tab--more svg {
    transform: rotate(180deg);
}

.category-tabs__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(35, 20, 20, 0.15);
    border: 1px solid rgba(216, 167, 95, 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 20;
}

.category-tabs__more:hover .category-tabs__dropdown,
.category-tabs__more:focus-within .category-tabs__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-tabs__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #2d1f1f;
    transition: background 0.15s;
}

.category-tabs__dropdown-item:hover {
    background: rgba(123, 45, 38, 0.06);
    color: var(--color-primary);
}

.category-tabs__dropdown-item--active {
    background: rgba(123, 45, 38, 0.1);
    color: var(--color-primary);
}

.category-tabs__dropdown-divider {
    height: 1px;
    background: rgba(216, 167, 95, 0.2);
    margin: 0.5rem 0;
}

@media (max-width: 640px) {
    .category-tabs {
        top: 64px;
    }

    .category-tabs__container {
        padding: 0 1rem;
    }

    .category-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--color-muted);
}

/* Restaurant Detail Page */
.restaurant-hero {
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.08), rgba(216, 167, 95, 0.06));
    padding: 3rem 1.5rem 2.5rem;
}

.restaurant-hero__content {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.restaurant-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.restaurant-hero__back:hover {
    color: var(--color-primary);
}

.restaurant-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #2d1f1f;
}

.restaurant-hero__address {
    font-size: 1rem;
    color: var(--color-muted);
    margin: 0 0 1rem;
}

.restaurant-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.restaurant-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.restaurant-hero__rating::before {
    content: '\2605';
    color: var(--color-accent);
}

.restaurant-hero__stat {
    color: var(--color-muted);
}

.restaurant-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.restaurant-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(123, 45, 38, 0.08);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Editorial Section */
.editorial-section {
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.06), rgba(216, 167, 95, 0.08));
    padding: 2.5rem 1.5rem;
}

.editorial-content {
    width: min(800px, 100%);
    margin: 0 auto;
    text-align: center;
}

.editorial-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 4px 12px;
    background: rgba(123, 45, 38, 0.1);
    border-radius: 4px;
}

.editorial-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: #2d1f1f;
    margin: 0;
    font-style: italic;
    position: relative;
}

.editorial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--color-accent);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.5;
    font-style: normal;
}

@media (max-width: 640px) {
    .editorial-quote {
        font-size: 1.15rem;
    }

    .editorial-quote::before {
        position: static;
        display: block;
        margin-bottom: -1rem;
    }
}

/* Editorial List (What We Liked, Room for Improvement) */
.editorial-section--liked {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(139, 195, 74, 0.08));
}

.editorial-section--liked .editorial-label {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
}

.editorial-section--improvement {
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.06), rgba(255, 193, 7, 0.08));
}

.editorial-section--improvement .editorial-label {
    color: #e65100;
    background: rgba(245, 124, 0, 0.1);
}

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

.editorial-quote--small {
    font-size: 1.1rem;
    text-align: left;
    padding-left: 1.5rem;
    border-left: 3px solid currentColor;
    opacity: 0.85;
}

.editorial-quote--small::before {
    display: none;
}

.editorial-section--liked .editorial-quote--small {
    border-left-color: #2e7d32;
}

.editorial-section--improvement .editorial-quote--small {
    border-left-color: #e65100;
}

.editorial-cite {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Recommendations Section ("You might also like") */
.recommendations-section {
    background: linear-gradient(180deg, #faf8f5, #f5f1eb);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
}

.recommendations-content {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.recommendations-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #2d1f1f;
    text-align: center;
}

.recommendations-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

@media (min-width: 900px) {
    .recommendations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.recommendation-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(45, 31, 31, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 31, 31, 0.12);
}

.recommendation-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.recommendation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommendation-card:hover .recommendation-card__image img {
    transform: scale(1.05);
}

.recommendation-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recommendation-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #2d1f1f;
    line-height: 1.3;
}

.recommendation-card__address {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.recommendation-card__stats {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--color-muted);
    display: flex;
    gap: 0.75rem;
}

.recommendation-card__stats span {
    display: inline-flex;
    align-items: center;
}

.restaurant-detail {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .restaurant-detail {
        grid-template-columns: 1fr 320px;
    }
}

.restaurant-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #2d1f1f;
}

.restaurant-gallery__grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

@media (min-width: 640px) {
    .restaurant-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

.restaurant-gallery__item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(123, 45, 38, 0.04);
}

.restaurant-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-gallery__item:hover img {
    transform: scale(1.05);
}

.restaurant-gallery {
    margin-bottom: 2.5rem;
}

.restaurant-comments__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurant-comment {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 167, 95, 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.restaurant-comment__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.restaurant-comment__author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d1f1f;
}

.restaurant-comment__date {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.restaurant-comment__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(45, 31, 31, 0.85);
}

.restaurant-comment__footer {
    margin-top: 0.5rem;
}

.restaurant-comment__footer .restaurant-comment__author {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Liked section - subtle green accent */
.restaurant-comments--liked .restaurant-comment {
    border-left: 3px solid #2e7d32;
}

.restaurant-comments--liked .restaurant-section__title {
    color: #2e7d32;
}

/* Improvement section - subtle orange accent */
.restaurant-comments--improvement .restaurant-comment {
    border-left: 3px solid #e65100;
}

.restaurant-comments--improvement .restaurant-section__title {
    color: #e65100;
}

.restaurant-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 167, 95, 0.15);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.restaurant-info__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(216, 167, 95, 0.1);
}

.restaurant-info__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.restaurant-info__item:first-of-type {
    padding-top: 0;
}

.restaurant-info__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    font-weight: 500;
}

.restaurant-info__value {
    font-size: 0.9rem;
    color: #2d1f1f;
    text-decoration: none;
}

.restaurant-info__link {
    color: var(--color-primary);
    font-weight: 500;
}

.restaurant-info__link:hover {
    text-decoration: underline;
}

.restaurant-map {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 167, 95, 0.15);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    overflow: hidden;
}

.restaurant-map__frame {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.restaurant-map__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.restaurant-map__link-text {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    text-align: center;
}

.restaurant-map__link-text:hover {
    text-decoration: underline;
}

/* Gallery item as button */
button.restaurant-gallery__item {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.restaurant-gallery__item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(35, 20, 20, 0.15);
}

button.restaurant-gallery__item:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.lightbox__container {
    position: relative;
    z-index: 1;
    width: min(90vw, 1000px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s, background 0.2s;
    z-index: 2;
}

.lightbox__nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev {
    left: -4rem;
}

.lightbox__nav--next {
    right: -4rem;
}

@media (max-width: 1100px) {
    .lightbox__nav--prev {
        left: 0.5rem;
    }
    .lightbox__nav--next {
        right: 0.5rem;
    }
}

.lightbox__content {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.lightbox__image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox__details {
    padding: 1rem 1.25rem;
    color: #fff;
}

.lightbox__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.lightbox__author {
    font-weight: 600;
    font-size: 0.95rem;
}

.lightbox__date {
    font-size: 0.8rem;
    opacity: 0.7;
}

.lightbox__description {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.lightbox__description:empty {
    display: none;
}

.lightbox__counter {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.6;
    text-align: center;
}

.story-grid {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story {
    padding: 2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(123, 45, 38, 0.12);
    box-shadow: 0 18px 36px rgba(35, 20, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(35, 20, 20, 0.12);
}

.story__category {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.7rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.story__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--color-primary);
}

.story__cta::after {
    content: '\2192';
}

.section--cta .eyebrow::before {
    background: rgba(255, 255, 255, 0.75);
}

.section--cta .button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.section--cta .button--ghost:hover {
    border-color: #fff;
}

.cta {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.cta p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.page__footer {
    padding: 3rem 1.5rem;
    background: #201414;
    color: rgba(255, 255, 255, 0.78);
}

.footer__content {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.footer__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.footer__subtitle {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer__legal {
    margin: 0;
    font-size: 0.85rem;
}

.footer__separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.footer__link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Disclaimer Page */
.disclaimer-content {
    width: min(800px, 100%);
    margin: 0 auto;
}

.disclaimer-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(216, 167, 95, 0.15);
}

.disclaimer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.disclaimer-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #2d1f1f;
}

.disclaimer-section p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(45, 31, 31, 0.85);
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
}

.disclaimer-section ul,
.disclaimer-section ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    line-height: 1.7;
    color: rgba(45, 31, 31, 0.85);
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
}

.disclaimer-section li:last-child {
    margin-bottom: 0;
}

.disclaimer-section a {
    color: var(--color-primary);
    font-weight: 500;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

.disclaimer-section strong {
    color: #2d1f1f;
    font-weight: 600;
}

.disclaimer-updated {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-style: italic;
    margin-top: 1rem;
}

.disclaimer-contact {
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.04), rgba(216, 167, 95, 0.06));
    padding: 1.5rem;
    border-radius: 12px;
    border: none;
}

/* Contributor Profile Page */
.contributor-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.contributor-profile__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(35, 20, 20, 0.12);
    flex-shrink: 0;
}

.contributor-profile__avatar--placeholder {
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.08), rgba(216, 167, 95, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contributor-profile__avatar--placeholder::after {
    content: '\2726';
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.5;
}

.contributor-profile__info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contributor-profile__type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(123, 45, 38, 0.1);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
}

/* Gallery items as links (for contributor photos) */
a.restaurant-gallery__item {
    display: block;
    text-decoration: none;
    position: relative;
}

a.restaurant-gallery__item:hover img {
    transform: scale(1.05);
}

.contributor-photo__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0.75rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contributor-photo:hover .contributor-photo__overlay {
    opacity: 1;
}

.contributor-photo__restaurant {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contributor-photo__date {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Restaurant link in comments */
.restaurant-comment__restaurant {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
}

.restaurant-comment__restaurant:hover {
    text-decoration: underline;
}

/* Restaurant comment author link styling */
a.restaurant-comment__author {
    text-decoration: none;
    transition: color 0.2s;
}

a.restaurant-comment__author:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Lightbox author link styling */
.lightbox__author {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.lightbox__author:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: #fff;
}

/* Join Page */
.join-content {
    width: min(800px, 100%);
    margin: 0 auto;
}
.join-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.join-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.join-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-step__content {
    flex: 1;
    padding-top: 0.25rem;
}

.join-step__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #2d1f1f;
}

.join-step__description {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(45, 31, 31, 0.85);
}

.join-step__description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.join-step__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.join-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(123, 45, 38, 0.06), rgba(216, 167, 95, 0.08));
    border-radius: 18px;
}

.join-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #2d1f1f;
}

.join-cta p {
    margin: 0;
    color: var(--color-muted);
}

@media (max-width: 820px) {
    .nav {
        flex-wrap: wrap;
    }

    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(123, 45, 38, 0.25);
        background: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        color: var(--color-primary);
    }

    .nav__items {
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
        display: none;
    }

    .nav__items[data-open] {
        display: flex;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero__content {
        text-align: left;
    }

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

    .timeline {
        padding-left: 0.5rem;
    }

    .timeline::before {
        left: 0.25rem;
    }

    .timeline__item {
        padding-left: 2rem;
    }

    .timeline__marker {
        left: -0.3rem;
    }
}

/* Tag Filters */
.tag-filters {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(123, 45, 38, 0.08);
}

.tag-filters__container {
    margin: 0 auto;
    width: min(1100px, 100%);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag-filters__group {
    position: relative;
}

.tag-filters__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(123, 45, 38, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d1f1f;
    cursor: pointer;
    transition: all 0.2s;
}

.tag-filters__toggle:hover {
    border-color: var(--color-primary);
    background: rgba(123, 45, 38, 0.04);
}

.tag-filters__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
}

.tag-filters__chevron {
    transition: transform 0.2s;
}

.tag-filters__group.is-open .tag-filters__chevron {
    transform: rotate(180deg);
}

.tag-filters__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    max-width: 320px;
    padding: 0.75rem;
    background: white;
    border: 1px solid rgba(123, 45, 38, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(45, 31, 31, 0.12);
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 30;
}

.tag-filters__group.is-open .tag-filters__dropdown {
    display: flex;
}

.tag-chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: rgba(123, 45, 38, 0.06);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #2d1f1f;
    text-decoration: none;
    transition: all 0.15s;
}

.tag-chip:hover {
    background: rgba(123, 45, 38, 0.12);
    color: var(--color-primary);
}

.tag-chip--selected {
    background: var(--color-primary);
    color: white;
}

.tag-chip--selected:hover {
    background: #5a2320;
    color: white;
}

.tag-filters__clear {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-decoration: none;
}

.tag-filters__clear:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .tag-filters__container {
        gap: 0.5rem;
    }

    .tag-filters__toggle {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .tag-filters__dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 16px 16px 0 0;
        padding: 1.5rem;
        max-height: 60vh;
        overflow-y: auto;
    }
}
