/* ======================================== */
/* TONY & PENNY'S RESTAURANT - STYLE.CSS    */
/* ======================================== */

/* ======================================== */
/* CSS VARIABLES & RESET                    */
/* ======================================== */

:root {
    --primary:      #692125;
    --primary-dark: #4e181b;
    --accent1:      #ACAA96;
    --accent2:      #928D6E;
    --text:         #222222;
    --text-light:   #555555;
    --white:        #ffffff;
    --off-white:    #f9f7f4;
    --border:       #e0ddd6;
    --shadow:       0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg:    0 8px 40px rgba(0, 0, 0, 0.16);
    --pflag-green:  #046A38;
    --pflag-red:    #DA291C;
    --star-gold:    #e8a020;
    --header-h:     120px;
    --header-h-mob: 74px;
    --radius:       6px;
    --radius-lg:    12px;
    --transition:   0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ======================================== */
/* TYPOGRAPHY                               */
/* ======================================== */

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--white);
}

h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
}

h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--white);
}

p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--text);
}

a {
    font-size: inherit;
    font-weight: normal;
    letter-spacing: normal;
    line-height: inherit;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

blockquote {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--text);
}

/* ======================================== */
/* UTILITY CLASSES                          */
/* ======================================== */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-heading {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subheading {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ======================================== */
/* BUTTONS                                  */
/* ======================================== */

.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 16px 40px;
    border-radius: var(--radius);
    margin-top: 28px;
    transition: background-color var(--transition), color var(--transition);
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-footer-call {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 26px;
    margin-top: 20px;
}

.btn-footer-call:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-1px);
}

/* ======================================== */
/* SCROLL ANIMATION                         */
/* ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* HEADER SECTION                           */
/* ======================================== */

.site-header {
    width: 100%;
    height: var(--header-h);
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(105, 33, 37, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrap a {
    display: block;
}

.site-logo {
    height: 88px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

/* Nav */

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1;
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color var(--transition), background-color var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: rgba(105, 33, 37, 0.06);
}

.nav-fb {
    margin-left: 8px;
}

.fb-icon {
    width: 34px;
    height: 34px;
    color: #1877F2;
    display: block;
    transition: transform var(--transition), color var(--transition);
}

.nav-fb a:hover .fb-icon {
    color: #0a5dc2;
    transform: scale(1.1);
}

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 16px;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary);
    border-radius: 4px;
}

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

.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ======================================== */
/* HERO SECTION                             */
/* ======================================== */

.hero {
    width: 100%;
    height: 750px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.40) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

/* ======================================== */
/* PORTUGAL FLAG BAR                        */
/* ======================================== */

.portugal-bar {
    width: 100%;
    height: 20px;
    display: flex;
}

.pflag-green {
    width: 40%;
    height: 100%;
    background-color: var(--pflag-green);
}

.pflag-red {
    width: 60%;
    height: 100%;
    background-color: var(--pflag-red);
}

/* ======================================== */
/* SECTION 1: INTRO                         */
/* ======================================== */

.section-intro {
    padding: 90px 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro-text h2.section-heading {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.intro-text p:last-of-type {
    margin-bottom: 30px;
}

.intro-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.service-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--primary);
    background-color: rgba(105, 33, 37, 0.07);
    border: 1px solid rgba(105, 33, 37, 0.18);
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.intro-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* SECTION 2: GALLERY                       */
/* ======================================== */

.section-gallery {
    padding: 90px 0;
    background-color: var(--off-white);
}

.section-gallery .section-heading {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background-color: #1a1a1a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(105, 33, 37, 0.80) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    border-radius: var(--radius-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: var(--white);
}

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 12px;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 28px;
}

.lightbox-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* ======================================== */
/* SECTION 3: REVIEWS                       */
/* ======================================== */

.section-reviews {
    padding: 90px 0;
    background-color: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-stars-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.star-icon {
    width: 40px;
    height: 40px;
    color: var(--star-gold);
}

.reviews-header .section-heading {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 10px;
}

.reviews-header .section-subheading {
    font-size: 17px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Reviews Slider */

.reviews-slider {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 22px;
    padding: 10px 4px 14px;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px 30px 28px;
    flex: 0 0 calc(33.333% - 15px);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: var(--star-gold);
}

.review-text {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--text);
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: var(--primary);
    display: block;
    font-style: normal;
}

.review-source {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

/* Reviews Slider Navigation */

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.reviews-prev,
.reviews-next {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
    flex-shrink: 0;
}

.reviews-prev:hover,
.reviews-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.reviews-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition), transform var(--transition);
}

.reviews-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.25);
}

/* ======================================== */
/* SUB-PAGE TITLE BAR                       */
/* ======================================== */

.page-title-bar {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-bar-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.page-title-bar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.40) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 860px;
}

.page-title-content h1 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    margin-bottom: 14px;
}

.page-title-content p {
    font-size: 19px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* ======================================== */
/* PARALLAX STRIP                           */
/* ======================================== */

.parallax-strip {
    width: 100%;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-strip-bg {
    position: absolute;
    inset: -40px 0;
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.70) 60%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

.parallax-strip-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 860px;
    margin: 0 auto;
}

.parallax-strip-content blockquote {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: var(--white);
    font-style: italic;
    margin-bottom: 22px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.parallax-strip-content cite {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: var(--accent1);
    text-transform: uppercase;
    font-style: normal;
    display: block;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ======================================== */
/* FEATURE CARDS (About / Sub-page)         */
/* ======================================== */

.section-features {
    padding: 90px 0;
    background-color: var(--off-white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.feature-card-body {
    padding: 28px 26px 30px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-card-text {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

/* ======================================== */
/* ABOUT - HISTORY SECTION                  */
/* ======================================== */

.section-history {
    padding: 90px 0;
    background-color: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.history-text h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 28px;
}

.history-text p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 20px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

.history-text .ownership-block {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid rgba(105, 33, 37, 0.12);
}

.history-text .ownership-block h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 12px;
}

.history-photo {
    position: relative;
}

.history-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.history-photo-accent {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.history-photo-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================================== */
/* ABOUT - PHILOSOPHY SECTION               */
/* ======================================== */

.section-philosophy {
    padding: 90px 0;
    background-color: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 28px;
}

.philosophy-text p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

.philosophy-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* TAKEOUT CALLOUT                          */
/* ======================================== */

.takeout-callout {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: rgba(105, 33, 37, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-top: 28px;
}

.takeout-callout-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.takeout-callout-text {
    flex: 1;
}

.takeout-callout-text strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.takeout-callout-text p {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

/* ======================================== */
/* EVENT TYPES BAR                          */
/* ======================================== */

.event-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.event-type-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.event-type-tag:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(105, 33, 37, 0.12);
}

.event-type-icon {
    font-size: 20px;
    line-height: 1;
}

.event-type-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    color: var(--text);
}

/* ======================================== */
/* TERMS SECTION                            */
/* ======================================== */

.section-terms {
    padding: 40px 0 80px;
    background-color: var(--off-white);
}

.terms-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.terms-inner h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 18px;
}

.terms-inner p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-terms {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 36px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color var(--transition), color var(--transition), transform 0.15s ease;
}

.btn-terms:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-terms svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ======================================== */
/* CTA STRIP                                */
/* ======================================== */

.cta-strip {
    width: 100%;
    background-color: #2c2c2c;
    padding: 60px 0;
    text-align: center;
}

.cta-strip h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-strip p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-cta-call {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 15px 36px;
    border-radius: var(--radius);
    transition: background-color var(--transition), color var(--transition);
}

.btn-cta-call:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-cta-email {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--primary-dark);
    background-color: var(--accent1);
    border: 2px solid var(--accent1);
    padding: 15px 36px;
    border-radius: var(--radius);
    transition: background-color var(--transition), color var(--transition);
}

.btn-cta-email:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

@media (max-width: 768px) {
    .event-types {
        gap: 10px;
    }

    .cta-strip h2 {
        font-size: 26px;
    }

    .cta-strip p {
        font-size: 16px;
    }

    .section-terms {
        padding: 60px 0;
    }
}

/* ======================================== */
/* CONTACT PAGE                             */
/* ======================================== */

.contact-map-hero {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
    border-bottom: 4px solid var(--border);
}

.contact-map-hero iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.section-contact {
    padding: 90px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-phone-large {
    display: block;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 6px;
    transition: color var(--transition);
}

.contact-phone-large:hover {
    color: var(--primary-dark);
}

.contact-phone-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 28px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-detail-icon {
    font-size: 18px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-detail-text {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
}

.contact-detail-text a {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--primary);
}

.contact-detail-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

.contact-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.contact-hours-table tr td {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

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

.contact-hours-table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 50%;
}

.contact-hours-table td:last-child {
    color: var(--text-light);
    white-space: nowrap;
}

.contact-reservations {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--primary);
    font-style: italic;
    margin-top: 10px;
}

.contact-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: #1877F2;
    margin-top: 20px;
    transition: color var(--transition);
}

.contact-fb-link:hover {
    color: #0a5dc2;
}

.contact-fb-link svg {
    width: 22px;
    height: 22px;
}

.contact-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

@media (max-width: 768px) {
    .contact-map-hero {
        height: 300px;
    }

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

    .contact-phone-large {
        font-size: 30px;
    }

    .section-contact {
        padding: 60px 0;
    }
}

/* ======================================== */
/* MENUS PAGE                               */
/* ======================================== */

.section-menus {
    padding: 90px 0;
    background-color: var(--white);
}

.menus-intro {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.menus-intro h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 14px;
}

.menus-intro p {
    font-size: 17px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

.menus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.menu-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-left-color: var(--primary-dark);
}

.menu-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(105, 33, 37, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.menu-card-body {
    flex: 1;
    min-width: 0;
}

.menu-card-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.menu-card-desc {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.55;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.menu-card-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.menu-card:hover .menu-card-cta {
    gap: 8px;
}

.menu-card-cta svg {
    width: 14px;
    height: 14px;
}

/* Banquet menu cards — dark gold */
.menu-card.banquet {
    border-left-color: #8B6508;
}

.menu-card.banquet:hover {
    border-left-color: #6e5006;
}

.menu-card.banquet .menu-card-icon {
    background-color: rgba(139, 101, 8, 0.10);
}

.menu-card.banquet .menu-card-icon svg {
    color: #8B6508;
}

.menu-card.banquet .menu-card-title {
    color: #6e5006;
}

.menu-card.banquet .menu-card-cta {
    color: #8B6508;
}

/* Bereavement card — muted styling */
.menu-card.muted {
    border-left-color: #aaaaaa;
}

.menu-card.muted:hover {
    border-left-color: #888888;
}

.menu-card.muted .menu-card-icon {
    background-color: rgba(0,0,0,0.05);
}

.menu-card.muted .menu-card-icon svg {
    color: #888888;
}

.menu-card.muted .menu-card-title {
    color: var(--text);
}

.menu-card.muted .menu-card-cta {
    color: #888888;
}

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

    .section-menus {
        padding: 60px 0;
    }

    .menu-card {
        padding: 20px 22px;
    }

    .menu-card-title {
        font-size: 18px;
    }
}

/* Responsive sub-page elements */

@media (max-width: 1024px) {
    .history-grid {
        gap: 40px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-title-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-title-bar {
        height: 260px;
    }

    .page-title-content h1 {
        font-size: 28px;
    }

    .page-title-content p {
        font-size: 16px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .history-photo img {
        height: auto;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .philosophy-photo img {
        height: 280px;
    }

    .section-history,
    .section-features,
    .section-philosophy {
        padding: 60px 0;
    }

    .parallax-strip-content blockquote {
        font-size: 22px;
    }
}

/* ======================================== */
/* FAT FOOTER SECTION                       */
/* ======================================== */

.fat-footer {
    width: 100%;
    background-color: var(--primary-dark);
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.3;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(172, 170, 150, 0.25);
}

/* Footer Contact */

.footer-address {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 14px;
}

.footer-phone {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 6px;
    transition: color var(--transition);
}

.footer-phone:hover {
    color: var(--accent1);
}

.footer-fax {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.footer-email {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--accent1);
    display: block;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-email:hover {
    color: var(--white);
}

.footer-location-note {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Footer Map */

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(172, 170, 150, 0.2);
}

.map-embed iframe {
    display: block;
}

/* Footer Hours */

.hours-list {
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(172, 170, 150, 0.12);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.hours-list .time {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
}

.footer-reservations {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--accent1);
    font-style: italic;
    margin-bottom: 0;
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                     */
/* ======================================== */

.copyright-bar {
    width: 100%;
    background-color: #1a0608;
    padding: 18px 0;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.copyright-text {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
}

.powered-by {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}

.powered-by a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--accent1);
    transition: color var(--transition);
}

.powered-by a:hover {
    color: var(--white);
}

/* ======================================== */
/* MOBILE STICKY CALL BAR                   */
/* ======================================== */

.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 2px solid var(--primary-dark);
    transition: background-color var(--transition);
}

.mobile-sticky-call svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-sticky-call:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ======================================== */
/* SPECIALS PAGE — PRINTED MENU STYLE       */
/* ======================================== */

.section-specials {
    padding: 70px 0 90px;
    background-color: #e8e2d8;
    font-family: 'Lato', 'Trebuchet MS', 'Gill Sans MT', sans-serif;
}

/* Parchment menu card */
.specials-menu-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: #faf6ee;
    background-image:
        radial-gradient(ellipse at 12% 18%, rgba(210, 185, 140, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 82%, rgba(185, 160, 115, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 252, 245, 0.6) 0%, transparent 70%);
    border: 1px solid #cfc0a4;
    box-shadow:
        0 2px 6px rgba(50, 35, 20, 0.07),
        0 16px 48px rgba(50, 35, 20, 0.12);
    padding: 6px;
    position: relative;
}

.specials-menu-card-inner {
    border: 1px solid rgba(160, 130, 90, 0.35);
    padding: 44px 52px 40px;
    position: relative;
}

.specials-menu-card-inner::before,
.specials-menu-card-inner::after {
    content: '✦';
    position: absolute;
    font-size: 11px;
    color: rgba(139, 115, 85, 0.45);
    line-height: 1;
}

.specials-menu-card-inner::before {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.specials-menu-card-inner::after {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Date header */
.specials-date-wrap {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(160, 130, 90, 0.35);
}

.specials-date-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    line-height: 1.4;
    color: #8b7355;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.specials-date {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--primary);
}

.specials-category:first-child .specials-category-header {
    margin-top: 0;
}

/* Category ornamental dividers */
.specials-category {
    margin-bottom: 8px;
}

.specials-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 18px;
    padding: 0;
    background: none;
}

.menu-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #a08060 20%, #a08060 80%, transparent);
    min-width: 24px;
}

.specials-category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #3d2b1f;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.specials-category-title::before {
    content: '✦ ';
    color: #8b7355;
    font-size: 10px;
    letter-spacing: 0;
}

.specials-category-title::after {
    content: ' ✦';
    color: #8b7355;
    font-size: 10px;
    letter-spacing: 0;
}

/* Menu item rows with leader dots */
.specials-items {
    padding: 0;
    list-style: none;
}

.specials-item {
    display: flex;
    align-items: baseline;
    padding: 9px 0;
    gap: 0;
    border-bottom: none;
}

.specials-item-name {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.4;
    color: #3d2b1f;
    flex-shrink: 1;
    min-width: 0;
}

.specials-item-leader {
    flex: 1 1 auto;
    min-width: 20px;
    margin: 0 6px;
    border-bottom: 1px dotted rgba(61, 43, 31, 0.38);
    align-self: flex-end;
    margin-bottom: 5px;
}

.specials-item-price {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.4;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Featured dish callout */
.specials-item.featured {
    background-color: rgba(139, 101, 8, 0.07);
    margin: 2px -10px;
    padding: 10px 10px;
    border-radius: 4px;
}

.specials-item.featured .specials-item-name em {
    font-style: italic;
    font-weight: 600;
    color: #3d2b1f;
}

.specials-featured-mark {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: #7a5500;
}

.specials-featured-tag {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
    color: #5c3d00;
    background-color: #f5e6b8;
    border: 1px solid #c9a84c;
    padding: 4px 9px;
    border-radius: 3px;
    font-style: normal;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

/* Footer note inside menu card */
.specials-note-box {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(160, 130, 90, 0.35);
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}

.specials-note-box p {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.65;
    color: #3d2b1f;
    margin-bottom: 0;
}

.note-phone-link {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.65;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.note-phone-link:hover {
    text-decoration: underline;
}

/* Empty / error states */
.specials-empty {
    text-align: center;
    padding: 40px 10px;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.specials-empty p {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #6b5a48;
}

.specials-error {
    font-family: 'Lato', 'Trebuchet MS', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: #6b5a48;
    text-align: center;
    padding: 40px 10px;
}

/* ======================================== */
/* RESPONSIVE - TABLET (max 1024px)         */
/* ======================================== */

@media (max-width: 1024px) {
    h1,
    .hero-title {
        font-size: 38px;
    }

    h2,
    .section-heading {
        font-size: 28px;
    }

    .intro-grid {
        gap: 40px;
    }

    .footer-grid {
        gap: 36px;
    }
}

/* ======================================== */
/* RESPONSIVE - MOBILE (max 768px)          */
/* ======================================== */

@media (max-width: 768px) {

    /* Header */
    .site-header {
        height: var(--header-h-mob);
    }

    .site-logo {
        height: 50px;
    }

    /* Nav mobile */
    .hamburger {
        display: flex;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: var(--header-h-mob);
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
        padding: 8px 0 16px;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: normal;
        line-height: 1;
        color: var(--text);
        padding: 18px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        display: block;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(105, 33, 37, 0.06);
        border-radius: 0;
    }

    .nav-fb {
        padding: 16px 24px;
        border-top: 1px solid var(--border);
        margin-left: 0;
    }

    /* Hero */
    .hero {
        height: 420px;
    }

    .hero-title {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: -0.2px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        font-weight: normal;
        letter-spacing: normal;
        line-height: 1.6;
    }

    /* Hide call button in hero on mobile (sticky bar replaces it) */
    .hero-phone-btn {
        display: none;
    }

    /* Intro */
    .section-intro {
        padding: 60px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .intro-photo img {
        height: 280px;
    }

    /* Gallery */
    .section-gallery {
        padding: 60px 0;
    }

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

    /* Reviews */
    .section-reviews {
        padding: 60px 0;
    }

    .star-icon {
        width: 30px;
        height: 30px;
    }

    .review-card {
        flex: 0 0 calc(100% - 4px);
        padding: 24px 22px 20px;
    }

    /* Specials menu card */
    .specials-menu-card-inner {
        padding: 32px 24px 28px;
    }

    .specials-date {
        font-size: 26px;
    }

    .specials-category-title {
        font-size: 12px;
        letter-spacing: 2px;
        white-space: normal;
        text-align: center;
    }

    .specials-category-header {
        gap: 10px;
        margin: 26px 0 14px;
    }

    .menu-ornament-line {
        min-width: 12px;
    }

    .specials-item {
        flex-wrap: nowrap;
        align-items: baseline;
        gap: 10px;
        padding: 8px 0;
    }

    .specials-item.featured {
        margin: 2px -6px;
        padding: 9px 6px;
    }

    .specials-item-name {
        font-size: 15px;
        flex: 1 1 auto;
        min-width: 0;
        margin-bottom: 0;
    }

    .specials-item-leader {
        display: none;
    }

    .specials-item-price {
        font-size: 15px;
        flex-shrink: 0;
        margin-left: 0;
        padding-top: 0;
    }

    .specials-featured-tag {
        font-size: 9px;
        padding: 3px 7px;
        margin-left: 4px;
    }

    .specials-note-box {
        padding-top: 18px;
        margin-top: 20px;
    }

    /* Footer */
    .fat-footer {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-phone {
        font-size: 24px;
    }

    /* Copyright */
    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile sticky call bar */
    .mobile-sticky-call {
        display: flex;
    }

    /* Add bottom padding to body so sticky bar doesn't overlap footer */
    body {
        padding-bottom: 56px;
    }
}

/* ======================================== */
/* RESPONSIVE - SMALL MOBILE (max 480px)    */
/* ======================================== */

@media (max-width: 480px) {
    .hero {
        height: 360px;
    }

    .hero-title {
        font-size: 24px;
    }

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

    .footer-phone {
        font-size: 22px;
    }
}
