/* ============================================
   Chafariz das Gravatas - High-End Rustic Style
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --deep-brown: #3d2b1f;
    --warm-cream: #f5efe6;
    --burnt-orange: #c4601d;
    --olive-green: #5c6b4f;
    --dark-charcoal: #2c2c2c;
    --gold: #b8860b;
    --gold-light: #d4a843;
    --brown-medium: #5a3e2b;
    --brown-light: #7a5c3e;
    --cream-dark: #e8ddd0;
    --cream-darker: #d4c5b0;
    --shadow-warm: rgba(61, 43, 31, 0.25);
    --shadow-deep: rgba(44, 44, 44, 0.35);
    --text-dark: #2c2c2c;
    --text-medium: #5a3e2b;
    --text-light: #f5efe6;
    --overlay-warm: rgba(61, 43, 31, 0.65);
    --overlay-dark: rgba(44, 44, 44, 0.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    color: var(--text-dark);
    background-color: var(--warm-cream);
    line-height: 1.7;
    /* Subtle paper/parchment texture */
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(61, 43, 31, 0.015) 50px,
            rgba(61, 43, 31, 0.015) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(61, 43, 31, 0.015) 50px,
            rgba(61, 43, 31, 0.015) 51px
        ),
        linear-gradient(
            135deg,
            rgba(245, 239, 230, 1) 0%,
            rgba(232, 221, 208, 0.5) 50%,
            rgba(245, 239, 230, 1) 100%
        );
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

.text-center {
    text-align: center;
}

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

/* --- Decorative Rules --- */
.divider {
    position: relative;
    width: 200px;
    height: 0;
    margin: 2rem auto;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid rgba(184, 134, 11, 0.35);
}

.divider--large {
    width: 240px;
    margin: 3rem auto;
}

.divider--cream {
    border-top-color: var(--cream-dark);
    border-bottom-color: rgba(232, 221, 208, 0.35);
}

.divider--brown {
    border-top-color: var(--brown-light);
    border-bottom-color: rgba(122, 92, 62, 0.35);
}

.divider--left {
    margin-left: 0;
    margin-right: auto;
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brown-light);
    margin-bottom: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(61, 43, 31, 0.97), rgba(61, 43, 31, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px var(--shadow-deep);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1300px;
    margin: 0 auto;
    height: 80px;
}

.navbar__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-cream);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar__logo-ornament {
    display: none;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar__link {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--cream-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    position: relative;
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--gold-light);
    background: rgba(184, 134, 11, 0.1);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 1px;
    background: var(--gold);
    transition: transform 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link--active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile menu toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--warm-cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero--small {
    min-height: 55vh;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(61, 43, 31, 0.75) 0%,
        rgba(61, 43, 31, 0.55) 40%,
        rgba(44, 44, 44, 0.65) 100%
    );
}

/* Warm vignette effect */
.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(61, 43, 31, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero__pretitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--warm-cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.hero__divider {
    width: 180px;
    height: 1px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}

.hero__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero__cta {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-cream);
    background: transparent;
    border: 2px solid var(--gold);
    padding: 1rem 2.8rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero__cta:hover {
    background: var(--gold);
    color: var(--deep-brown);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.35);
}

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
    padding: 6rem 0;
}

.section--brown {
    background-color: var(--deep-brown);
    color: var(--warm-cream);
    /* Subtle wood grain texture */
    background-image:
        repeating-linear-gradient(
            87deg,
            transparent,
            transparent 3px,
            rgba(90, 62, 43, 0.15) 3px,
            rgba(90, 62, 43, 0.15) 4px
        ),
        repeating-linear-gradient(
            93deg,
            transparent,
            transparent 7px,
            rgba(90, 62, 43, 0.1) 7px,
            rgba(90, 62, 43, 0.1) 8px
        );
}

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

.section--cream-dark {
    background-color: var(--cream-dark);
    /* Linen texture */
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(61, 43, 31, 0.03) 2px,
            rgba(61, 43, 31, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(61, 43, 31, 0.03) 2px,
            rgba(61, 43, 31, 0.03) 4px
        );
}

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

.section__title {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--deep-brown);
}

.section--brown .section__title,
.section--charcoal .section__title {
    color: var(--warm-cream);
}

.section__title--gold {
    color: var(--gold);
}

/* Decorative border box */
.decorative-box {
    border: 2px solid var(--gold);
    padding: 3rem;
    position: relative;
    border-radius: 6px;
}

.decorative-box::before,
.decorative-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--burnt-orange);
}

.decorative-box::before {
    top: -4px;
    left: -4px;
    border-top: 3px solid var(--burnt-orange);
    border-left: 3px solid var(--burnt-orange);
    border-radius: 4px 0 0 0;
}

.decorative-box::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 3px solid var(--burnt-orange);
    border-right: 3px solid var(--burnt-orange);
    border-radius: 0 0 4px 0;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome {
    padding: 6rem 0;
}

.welcome__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome__title {
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.welcome__text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.welcome__text:last-of-type {
    margin-bottom: 0;
}

/* ============================================
   FEATURED DISHES
   ============================================ */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.dish-card {
    background: var(--warm-cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-warm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px var(--shadow-deep);
}

.dish-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.9) brightness(0.95);
}

.dish-card:hover .dish-card__image {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}

.dish-card__image-wrapper {
    overflow: hidden;
    position: relative;
}

.dish-card__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(61, 43, 31, 0.15) 100%);
    pointer-events: none;
}

.dish-card__body {
    padding: 1.8rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.dish-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 0.6rem;
}

.dish-card__desc {
    font-size: 0.95rem;
    color: var(--brown-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dish-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--burnt-orange);
}

/* ============================================
   PROMISE / FEATURE SECTION
   ============================================ */
.promise {
    text-align: center;
}

.promise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.promise__item {
    padding: 2rem 1.5rem;
}

.promise__image {
    width: 100%;
    height: 160px;
    margin: 0 auto 1.2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.35);
    box-shadow: 0 8px 20px var(--shadow-deep);
}

.promise__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promise__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--warm-cream);
    margin-bottom: 0.8rem;
}

.promise__item-text {
    font-size: 0.95rem;
    color: var(--cream-dark);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px var(--shadow-warm);
    position: relative;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--shadow-warm);
}

.testimonial-card__quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.testimonial-card__text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-brown);
}

.testimonial-card__rating {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0.05rem;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-card {
    background: var(--warm-cream);
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow-warm);
    border: 1px solid var(--cream-darker);
    position: relative;
    /* Parchment texture */
    background-image:
        linear-gradient(
            135deg,
            rgba(245, 239, 230, 1) 0%,
            rgba(237, 228, 215, 0.5) 25%,
            rgba(245, 239, 230, 1) 50%,
            rgba(237, 228, 215, 0.3) 75%,
            rgba(245, 239, 230, 1) 100%
        );
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    pointer-events: none;
    opacity: 0.5;
}

.menu-card__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cream-darker);
}

.menu-card__title {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.menu-card__subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--brown-light);
    font-size: 1.1rem;
}

.menu-section {
    margin-bottom: 3rem;
}

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

.menu-section__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.3rem;
}

.menu-section__title-ornament {
    display: none;
}

.menu-section__divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.8rem 0;
    border-bottom: 1px dotted var(--cream-darker);
    transition: background 0.3s ease;
}

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

.menu-item:hover {
    background: rgba(184, 134, 11, 0.04);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.menu-item__info {
    flex: 1;
    padding-right: 1rem;
}

.menu-item__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
}

.menu-item__desc {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--brown-light);
    margin-top: 0.2rem;
}

.menu-item__price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--burnt-orange);
    white-space: nowrap;
}

.menu-item--highlight {
    background: rgba(184, 134, 11, 0.06);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.menu-item--highlight:hover {
    background: rgba(184, 134, 11, 0.1);
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: var(--brown-light);
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-darker);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story--reverse {
    direction: rtl;
}

.story--reverse > * {
    direction: ltr;
}

.story__content {
    padding: 1rem 0;
}

.story__title {
    font-size: 2.2rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.story__text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.story__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-warm);
    position: relative;
}

.story__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: saturate(0.9);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.story__image:hover img {
    filter: saturate(1);
    transform: scale(1.03);
}

.story__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.story__image:hover::after {
    opacity: 0.5;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-warm);
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: saturate(0.85) brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1) brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(61, 43, 31, 0.35) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 0;
}

/* Team / Chef Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-member__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--cream-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    border: 3px solid var(--gold);
}

.team-member__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--warm-cream);
    margin-bottom: 0.3rem;
}

.team-member__role {
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-member__desc {
    font-size: 0.9rem;
    color: var(--cream-dark);
    line-height: 1.7;
}

/* Group Info */
.group-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.group-info__content {
    padding: 1rem;
}

.group-info__title {
    font-size: 2.2rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.group-info__text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.group-info__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-warm);
}

.group-info__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: var(--warm-cream);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px var(--shadow-warm);
    border: 1px solid var(--cream-darker);
}

.contact-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    min-width: 10px;
    margin-top: 0.45rem;
}

.contact-item__label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-brown);
    margin-bottom: 0.2rem;
}

.contact-item__value {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-item__value a {
    color: var(--burnt-orange);
    transition: color 0.3s ease;
}

.contact-item__value a:hover {
    color: var(--gold);
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.hours-table th,
.hours-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.hours-table th {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--deep-brown);
    border-bottom: 2px solid var(--gold);
}

.hours-table td {
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream-darker);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table .closed {
    color: var(--burnt-orange);
    font-style: italic;
}

/* Reservation Form */
.form-card {
    background: var(--warm-cream);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px var(--shadow-warm);
    border: 1px solid var(--cream-darker);
    /* Subtle texture */
    background-image:
        linear-gradient(135deg, rgba(245, 239, 230, 1) 0%, rgba(237, 228, 215, 0.3) 100%);
}

.form-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.form-card__subtitle {
    font-style: italic;
    color: var(--brown-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: rgba(245, 239, 230, 0.7);
    border: 1px solid var(--cream-darker);
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
    background: rgba(245, 239, 230, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-darker);
    font-style: italic;
}

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

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

.form-submit {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-cream);
    background: var(--deep-brown);
    border: 2px solid var(--gold);
    padding: 1rem 3rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--deep-brown);
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.3);
}

/* Map container */
.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-warm);
    border: 3px solid var(--cream-darker);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
    filter: saturate(0.8) sepia(0.15);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--brown-light);
}

.map-placeholder__icon {
    font-size: 3rem;
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--deep-brown);
    color: var(--cream-dark);
    padding: 4rem 0 0;
    border-top: 3px solid var(--gold);
    /* Wood grain texture */
    background-image:
        repeating-linear-gradient(
            85deg,
            transparent,
            transparent 2px,
            rgba(90, 62, 43, 0.12) 2px,
            rgba(90, 62, 43, 0.12) 3px
        ),
        repeating-linear-gradient(
            92deg,
            transparent,
            transparent 5px,
            rgba(90, 62, 43, 0.08) 5px,
            rgba(90, 62, 43, 0.08) 6px
        );
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.footer__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--warm-cream);
    margin-bottom: 1rem;
}

.footer__brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream-dark);
    margin-bottom: 1.5rem;
}

.footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.footer__list li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer__list a {
    color: var(--cream-dark);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__list a:hover {
    color: var(--gold-light);
    padding-left: 0.3rem;
}

.footer__contact-item {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer__contact-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    min-width: 8px;
    margin-top: 0.45rem;
}

.footer__bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(212, 197, 176, 0.7);
}

.footer__bottom a {
    color: var(--gold-light);
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }

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

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

    .story {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story--reverse {
        direction: ltr;
    }

    .story__image img {
        height: 350px;
    }

    .group-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .navbar__links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(61, 43, 31, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid rgba(184, 134, 11, 0.3);
        box-shadow: 0 10px 30px var(--shadow-deep);
        gap: 0.6rem;
    }

    .navbar__links--open {
        display: flex;
    }

    .navbar__links li {
        margin: 6px 0;
    }

    .navbar__link {
        padding: 1.1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero--small {
        min-height: 45vh;
    }

    .section {
        padding: 4rem 0;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__title {
        font-size: 2.2rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .promise__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .menu-card {
        padding: 2rem 1.5rem;
    }

    .menu-card__title {
        font-size: 2rem;
    }

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

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

    .decorative-box {
        padding: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .menu-card {
        padding: 1.5rem 1rem;
    }

    .menu-card::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .menu-item__price {
        align-self: flex-start;
    }

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

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   ANIMATIONS & EXTRAS
   ============================================ */

/* Warm glow on link hover */
a.warm-glow:hover {
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

/* Fade-in utility (CSS only, on scroll requires JS - kept as class for consistency) */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Selection styling */
::selection {
    background: rgba(184, 134, 11, 0.3);
    color: var(--deep-brown);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 5px;
    border: 2px solid var(--cream-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-brown);
}

/* Back to templates link */
:root {
  --templates-back-height: 38px;
}

.templates-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--templates-back-height);
  background: #f6f2ea;
  color: #3a3a3a;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
}


.templates-back a {
  color: inherit;
  text-decoration: none;
}

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

nav,
.navbar {
  top: var(--templates-back-height);
}

body.is-embedded .templates-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--templates-back-height);
  background: #f6f2ea;
  color: #3a3a3a;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
}


body.is-embedded nav,
body.is-embedded .navbar {
  top: 0;
}
