/* ============================================
   ARMELLADA TAVERNA — Greek Style Business Card
   ============================================ */

/* SEO: Screen-reader only text (hidden visually, visible to search engines) */
.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;
}

:root {
    --greek-blue: #1B3A5C;
    --greek-blue-light: #2A5A8C;
    --greek-blue-deep: #0F2440;
    --aegean: #4A90B8;
    --sky: #87CEEB;
    --white: #FFFFFF;
    --cream: #FDF8F0;
    --sand: #F5E6D3;
    --terracotta: #C4784A;
    --terracotta-light: #D4956B;
    --olive: #6B7F3B;
    --olive-light: #8BA34E;
    --gold: #C9A84C;
    --gold-light: #E0C46A;
    --dark: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #9B9B9B;

    --section-padding: 120px;
    --container-width: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 999px;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-smooth); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ---- PRELOADER ---- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--greek-blue-deep);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse-gold 1.5s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.preloader-spinner {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- WINE SIDE PANELS (permanent, semi-transparent) ---- */
.wine-panel {
    position: fixed; top: 0;
    width: 180px; height: 100vh;
    z-index: 1; overflow: hidden;
    pointer-events: none;
    opacity: 0;
    display: none;
    transition: opacity 0.6s ease;
}
.wine-panel.visible { opacity: 1; }
.wine-panel--left { left: 0; }
.wine-panel--right { right: 0; }

/* Show decorative wine side panels only on wide desktops */
@media (min-width: 1400px) {
    .wine-panel { display: block; }
}

.wine-panel img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(1.0) saturate(1.4);
}

.wine-panel::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(253, 248, 240, 0.15), rgba(253, 248, 240, 0.3));
    pointer-events: none;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 20px 0;
    transition: all 0.4s var(--ease-smooth);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    max-width: var(--container-width);
    margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}

.navbar-logo {
    display: flex; align-items: center; gap: 10px;
}

.logo-img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.4s ease;
}
.navbar.scrolled .logo-img {
    border-color: rgba(27, 58, 92, 0.2);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white);
    transition: color 0.4s ease;
}
.navbar.scrolled .logo-text { color: var(--greek-blue); }

.navbar-menu {
    list-style: none; display: flex; align-items: center; gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem; font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}
.navbar.scrolled .nav-link { color: var(--text-light); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255, 255, 255, 0.15); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--greek-blue); background: rgba(27, 58, 92, 0.08); }

.nav-link--call {
    display: flex; align-items: center; gap: 6px;
    background: var(--terracotta) !important;
    color: var(--white) !important;
    font-weight: 600;
}
.nav-link--call:hover { background: var(--terracotta-light) !important; transform: scale(1.05); }

.nav-socials {
    display: flex; align-items: center; gap: 12px; margin-left: 12px;
}

.nav-link--social {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    padding: 0 !important;
    color: var(--white) !important;
    background: rgba(27, 58, 92, 0.65) !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.nav-link--social svg {
    fill: #FFFFFF;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}
.nav-link--social:hover {
    color: var(--white) !important;
    background: rgba(27, 58, 92, 0.9) !important;
    transform: scale(1.1);
}
.navbar.scrolled .nav-link--social {
    color: var(--white) !important;
    background: var(--greek-blue) !important;
    border-color: transparent;
}
.navbar.scrolled .nav-link--social:hover {
    color: var(--white) !important;
    background: var(--greek-blue-deep) !important;
}

/* Language switcher */
.lang-switcher {
    position: relative;
    display: flex; align-items: center;
}
.lang-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    color: rgba(255,255,255,0.95) !important;
    background: rgba(255,255,255,0.22) !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.38) !important;
    transform: scale(1.1);
}
.navbar.scrolled .lang-btn {
    color: var(--text-primary) !important;
    background: rgba(27,58,92,0.1) !important;
    border-color: rgba(27,58,92,0.2);
}
.navbar.scrolled .lang-btn:hover {
    color: var(--terracotta) !important;
    background: rgba(27,58,92,0.18) !important;
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    min-width: 130px;
    z-index: 2000;
}
.lang-dropdown.open { display: block; }
.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s;
    border: none; background: none; width: 100%; text-align: left;
}
.lang-option:hover { background: rgba(27,58,92,0.07); }
.lang-option.active { font-weight: 600; color: var(--terracotta); }

.navbar-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.navbar-toggle span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s ease; border-radius: 2px;
}
.navbar.scrolled .navbar-toggle span { background: var(--greek-blue); }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    border: none; cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    text-align: center; justify-content: center;
}
.btn--round { border-radius: var(--radius-full); }

.btn--primary {
    background: var(--terracotta); color: var(--white);
    box-shadow: 0 8px 32px rgba(196, 120, 74, 0.3);
}
.btn--primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(196, 120, 74, 0.4);
}

.btn--outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.btn--small {
    padding: 10px 24px; font-size: 0.85rem;
    background: var(--greek-blue); color: var(--white);
    border-radius: var(--radius-full);
}
.btn--small:hover { background: var(--greek-blue-light); transform: translateY(-2px); }

.btn--glow { animation: glow-pulse 2s ease-in-out infinite; }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(196, 120, 74, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(196, 120, 74, 0.6), 0 0 80px rgba(196, 120, 74, 0.2); }
}

/* ---- HERO ---- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(145deg, rgba(15, 36, 64, 0.85) 0%, rgba(27, 58, 92, 0.7) 40%, rgba(74, 144, 184, 0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 800px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-title { margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.5s both; }
.hero-logo-img {
    max-width: 340px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
}
.hero-title-line {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700; color: var(--white);
    line-height: 1.05; letter-spacing: -0.02em;
}
.hero-title-line--accent {
    color: var(--gold-light); font-style: italic; font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem; color: rgba(255, 255, 255, 0.75);
    line-height: 1.8; margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: fadeInUp 0.8s ease 1.1s both;
}

.hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(27, 58, 92, 0.08);
    color: var(--greek-blue); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; color: var(--greek-blue-deep); line-height: 1.2;
}
.section-title em { color: var(--terracotta); font-style: italic; }

.section-desc { margin-top: 12px; color: var(--text-muted); font-size: 1rem; }

/* ---- ABOUT ---- */
.about { padding: var(--section-padding) 0; background: var(--cream); }

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

.about-lead {
    font-size: 1.2rem; color: var(--greek-blue);
    font-weight: 500; line-height: 1.8; margin-bottom: 20px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.feature {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08); }

.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sand);
    border-radius: var(--radius-sm); flex-shrink: 0;
    color: var(--terracotta);
}

.feature-text strong { display: block; font-size: 0.95rem; color: var(--greek-blue); }
.feature-text span { font-size: 0.85rem; color: var(--text-muted); }

.about-images { position: relative; height: 500px; }

.about-img {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s var(--ease-smooth);
}
.about-img:hover { transform: scale(1.03); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--1 { top: 0; left: 0; width: 65%; height: 75%; z-index: 1; }
.about-img--2 { bottom: 0; right: 0; width: 55%; height: 60%; z-index: 2; border: 6px solid var(--cream); }

/* ---- MENU SECTION ---- */
.menu-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Info bar */
.menu-info-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #eef4fa 0%, #f0f7f4 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 58, 92, 0.1);
}
.menu-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}
.menu-info-item svg {
    color: var(--greek-blue);
    flex-shrink: 0;
}

/* ---- RESTAURANT FEATURES BADGES ---- */
.menu-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.04), rgba(27, 58, 92, 0.08));
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--greek-blue);
    border: 1px solid rgba(27, 58, 92, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.menu-feature-badge:hover {
    background: rgba(27, 58, 92, 0.1);
    transform: translateY(-2px);
}

.menu-feature-badge svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.menu-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 48px; flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 28px;
    border: 2px solid rgba(27, 58, 92, 0.15);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-tab:hover { border-color: var(--greek-blue); color: var(--greek-blue); }
.menu-tab.active {
    background: var(--greek-blue); color: var(--white);
    border-color: var(--greek-blue);
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.25);
}

.menu-category { display: none; }
.menu-category.active { display: block; animation: fadeInMenu 0.5s ease; }

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(27, 58, 92, 0.06);
}
.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(27, 58, 92, 0.12);
}

.menu-card-img {
    height: 220px; overflow: hidden;
    position: relative;
}
.menu-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-card-body {
    padding: 24px;
}
.menu-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--greek-blue-deep);
    margin-bottom: 8px;
}
.menu-card-desc {
    font-size: 0.88rem; color: var(--text-light);
    line-height: 1.6;
}
.menu-card-en {
    display: none;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 4px;
    line-height: 1.4;
    margin-top: -4px;
}
/* Photo menu: Greek bilingual — show EN subtitle, hide description */
body[data-lang="el"] #cat-featured .menu-card-en { display: block; }
body[data-lang="el"] #cat-featured .menu-card-desc { display: none; }
.menu-card-price {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--greek-blue), var(--greek-blue-deep));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(27, 58, 92, 0.2);
}

/* ---- MENU LIST (text-only items) ---- */
.menu-full-sheet {
    max-width: 100%;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(27, 58, 92, 0.06);
    columns: 2;
    column-gap: 40px;
}

.menu-col {
    display: block;
    break-inside: avoid;
}

.menu-sheet-section {
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 58, 92, 0.06);
    overflow: hidden;
    break-inside: avoid;
    display: block;
    margin-bottom: 24px;
}

.menu-sheet-divider {
    display: none;
}

.menu-sheet-section--full {
    column-span: all;
    margin-bottom: 24px;
}

.menu-sheet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(27, 58, 92, 0.08);
}
.menu-sheet-header svg {
    color: var(--terracotta);
    flex-shrink: 0;
}
.menu-sheet-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--greek-blue-deep);
    letter-spacing: 0.01em;
}

.menu-sheet-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(27, 58, 92, 0.15), transparent);
    margin: 32px 0;
}

.menu-sheet-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: -12px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.menu-list-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27, 58, 92, 0.06);
    transition: background 0.3s ease;
}
.menu-list-item:last-child {
    border-bottom: none;
}
.menu-list-item:hover {
    background: rgba(27, 58, 92, 0.02);
    border-radius: var(--radius-sm);
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
}

.menu-list-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    max-width: 55%;
}

.menu-list-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--greek-blue-deep);
    line-height: 1.3;
}

.menu-list-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Full menu: desc hidden by default, shown only for Greek (bilingual mode) */
#cat-fullmenu .menu-list-desc {
    display: none;
}
body[data-lang="el"] #cat-fullmenu .menu-list-desc {
    display: block;
}

.menu-list-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(27, 58, 92, 0.15);
    min-width: 30px;
    margin-bottom: 4px;
}

.menu-list-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(183, 65, 14, 0.06), transparent);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

/* ---- DIVIDER ---- */
.divider-section {
    padding: 80px 0;
    background: var(--greek-blue-deep);
    position: relative; overflow: hidden;
}
.divider-section::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.greek-quote {
    text-align: center; max-width: 700px; margin: 0 auto;
    position: relative;
}

.quote-icon {
    color: var(--gold); margin-bottom: 20px;
}
.quote-icon svg { margin: 0 auto; }

.greek-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white); font-style: italic; line-height: 1.5;
    margin-bottom: 16px;
}
.greek-quote cite {
    color: var(--gold-light); font-size: 0.9rem;
    font-style: normal; letter-spacing: 0.1em;
}

/* ---- GALLERY ---- */
.gallery { padding: var(--section-padding) 0; background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; grid-auto-rows: 220px;
}

.gallery-item {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer;
    transition: transform 0.5s var(--ease-smooth);
}
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 36, 64, 0.4), transparent);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* ---- REVIEWS SECTION ---- */
.reviews {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* Рейтинг + счётчик — единый компактный блок */
.reviews-hero-block {
    max-width: 600px;
    margin: 0 auto 48px;
}
.reviews-hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(27, 58, 92, 0.08);
    border: 1px solid rgba(27, 58, 92, 0.06);
}

/* Большой рейтинг */
.rh-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.rh-rating-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--greek-blue);
    line-height: 1;
}
.rh-rating-right {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.rh-stars {
    display: flex;
    gap: 2px;
}
.rh-star {
    width: 18px; height: 18px;
    fill: #d4d4d4;
    transition: fill 0.3s ease;
}
.rh-star.filled { fill: #e8b100; }
.rh-star.half {
    fill: url(#halfStarGrad);
}
.rh-total {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Разделитель */
.rh-divider {
    width: 1px;
    height: 48px;
    background: rgba(27, 58, 92, 0.1);
    flex-shrink: 0;
}

/* Счётчик на сайте */
.rh-site {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.rh-site-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rh-site-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--greek-blue);
    line-height: 1;
    transition: transform 0.3s var(--ease-bounce), color 0.3s ease;
}
.rh-site-number.bump {
    transform: scale(1.3);
    color: var(--terracotta);
}
.rh-site-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
}
.rh-live {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(107, 127, 59, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--olive);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.live-dot {
    width: 7px; height: 7px;
    background: var(--olive);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

/* Источники */
.rh-sources {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.rh-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}
.rh-source svg {
    stroke: var(--text-muted);
    flex-shrink: 0;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Форма отзыва */
.review-form-wrapper {
    max-width: 640px;
    margin: 0 auto 56px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(27, 58, 92, 0.06);
}
.review-form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--greek-blue);
    margin-bottom: 28px;
}
.review-form-title svg { stroke: var(--terracotta); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid rgba(27, 58, 92, 0.12);
    border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--aegean);
    box-shadow: 0 0 0 3px rgba(74, 144, 184, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    min-height: 100px;
    margin-bottom: 8px;
}

/* Звёзды оценки */
.star-rating {
    display: flex;
    gap: 4px;
}
.star-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #d4d4d4;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0;
    line-height: 1;
}
.star-btn:hover { transform: scale(1.2); }
.star-btn.active { color: var(--gold); }

/* Кнопка отправки */
.review-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.review-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Сообщение об успехе/ошибке */
.form-message {
    margin-top: 16px;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 0;
}
.form-message.show {
    padding: 14px 20px;
    max-height: 100px;
}
.form-message.success {
    background: rgba(107, 127, 59, 0.1);
    color: var(--olive);
}
.form-message.error {
    background: rgba(220, 70, 60, 0.1);
    color: #c0392b;
}

/* Список отзывов */
.reviews-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.reviews-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Карточка отзыва */
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(27, 58, 92, 0.05);
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
    animation: reviewSlideIn 0.5s var(--ease-smooth) both;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@keyframes reviewSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* NEW — подсветка нового отзыва */
.review-card.new-review {
    animation: reviewHighlight 2s ease both;
    border-color: var(--gold);
}
@keyframes reviewHighlight {
    0% { opacity: 0; transform: translateY(-20px) scale(0.95); box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.3); }
    30% { opacity: 1; transform: translateY(0) scale(1); }
    60% { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.3); }
    100% { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04); border-color: rgba(27, 58, 92, 0.05); }
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--aegean), var(--greek-blue));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.review-name {
    font-weight: 600;
    color: var(--greek-blue);
    font-size: 1rem;
}
.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.85;
}

/* Responsive reviews */
@media (max-width: 768px) {
    .reviews-hero-inner { flex-wrap: wrap; justify-content: center; padding: 24px 20px; gap: 16px; }
    .rh-divider { width: 100%; height: 1px; }
    .rh-rating-number { font-size: 2.2rem; }
    .rh-sources { flex-direction: row; gap: 8px; }
    .review-form-wrapper { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
}
@media (max-width: 480px) {
    .rh-rating { flex-direction: column; align-items: center; text-align: center; }
    .rh-rating-right { align-items: center; }
    .review-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- CONTACT ---- */
.contact { padding: var(--section-padding) 0; background: var(--white); }

.contact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 48px;
}

.contact-card {
    background: var(--cream); padding: 48px 32px;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1); }

.contact-card--highlight {
    background: linear-gradient(145deg, var(--greek-blue), var(--greek-blue-light));
    color: var(--white);
}
.contact-card--highlight h3 { color: var(--white); }
.contact-card--highlight .contact-card-icon svg { stroke: var(--gold-light); }

.contact-card-icon { margin-bottom: 24px; }
.contact-card-icon svg { stroke: var(--terracotta); margin: 0 auto; }

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--greek-blue); margin-bottom: 16px;
}
.contact-card p {
    font-size: 0.95rem; line-height: 1.8;
    margin-bottom: 24px; opacity: 0.85;
}

.contact-phone { font-size: 1.3rem !important; font-weight: 700; letter-spacing: 0.05em; }

.contact-status {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 600;
}
.contact-status.open { background: rgba(107, 127, 59, 0.1); color: var(--olive); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* ---- FOOTER ---- */
.footer { padding: 48px 0; background: var(--greek-blue-deep); text-align: center; }

.footer-content {
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-logo .logo-text {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 700;
}
.footer-address { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }
.footer-divider { width: 60px; height: 1px; background: rgba(255, 255, 255, 0.15); margin: 8px 0; }
.footer-copy { color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; }

.footer-socials {
    display: flex; align-items: center; justify-content: center; gap: 16px;
}

.footer-social-link {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}
.footer-social-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* ---- FAB CALL ---- */
.fab-call {
    position: fixed; bottom: 32px; right: 32px;
    width: 64px; height: 64px;
    background: var(--terracotta); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(196, 120, 74, 0.4);
    z-index: 900;
    transition: all 0.4s var(--ease-smooth);
    animation: fab-bounce 3s ease-in-out infinite;
}
.fab-call:hover { transform: scale(1.15); box-shadow: 0 12px 48px rgba(196, 120, 74, 0.6); }

@keyframes fab-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-img {
    max-width: 90vw; max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    transition: transform 0.4s var(--ease-smooth);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none; color: var(--white); cursor: pointer;
    border-radius: 50%; width: 56px; height: 56px;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close { top: 24px; right: 24px; font-size: 2rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: all 0.8s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---- RESPONSIVE ---- */

/* Touch target minimum (accessibility) */
@media (pointer: coarse) {
    .nav-link, .menu-tab, .star-btn, .btn, .btn--small {
        min-height: 44px;
        min-width: 44px;
    }
    .star-btn { font-size: 2.2rem; padding: 4px; }
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .wine-panel { width: 120px; }
    .wine-panel img { opacity: 0.25; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }

    /* Hide wine panels on tablets/phones — perf + space */
    .wine-panel { display: none; }

    .navbar-toggle { display: flex; }
    
    .nav-socials { display: none; }


    .navbar-menu {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 360px; height: 100vh;
        height: 100dvh; /* dynamic viewport height for mobile browsers */
        background: var(--white); flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px; gap: 4px;
        transition: right 0.5s var(--ease-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        overflow-y: auto;
    }
    .navbar-menu.active { right: 0; }

    .navbar-menu .nav-link {
        color: var(--text); font-size: 1.1rem;
        padding: 14px 20px; width: 100%;
    }
    .navbar-menu .nav-link:hover, .navbar-menu .nav-link.active {
        background: rgba(27, 58, 92, 0.06); color: var(--greek-blue);
    }
    .navbar-menu .nav-link--call {
        color: var(--white) !important; margin-top: 16px;
        text-align: center; justify-content: center;
    }

    .hero { min-height: 100vh; min-height: 100dvh; }
    .hero-title-line { font-size: clamp(2.5rem, 12vw, 4.5rem); }
    .hero-subtitle { font-size: 1rem; padding: 0 8px; }
    .hero-content { padding: 0 16px; }
    .about-images { height: 350px; }

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

    .menu-full-sheet { padding: 28px 24px; column-gap: 24px; }
    .menu-list-info { max-width: 50%; }
    .menu-list-name { font-size: 1.05rem; }

    .fab-call { width: 56px; height: 56px; bottom: 24px; right: 24px; }

    /* Reviews responsive */
    .review-form-wrapper { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }

    /* Map responsive */
    .map-wrapper iframe { height: 280px; }

    /* Container padding for mobile */
    .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 60px; }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-badge { font-size: 0.8rem; padding: 8px 16px; }
    .hero-scroll { display: none; }

    .contact-card { padding: 36px 24px; }

    .menu-grid { grid-template-columns: 1fr; }
    .menu-tabs { gap: 6px; padding: 0 4px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { padding: 10px 18px; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }

    .menu-info-bar { flex-direction: column; gap: 12px; align-items: flex-start; padding: 14px 18px; }
    .menu-info-item { font-size: 0.82rem; }
    .menu-features { gap: 6px; }
    .menu-feature-badge { padding: 6px 12px; font-size: 0.75rem; }

    .menu-full-sheet { padding: 20px 16px; columns: 1; }
    .menu-list-info { max-width: 45%; }
    .menu-list-name { font-size: 0.95rem; }
    .menu-list-price { font-size: 1rem; }
    .menu-list-item { gap: 8px; }

    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-header { margin-bottom: 40px; }

    /* Reviews on small screens */
    .reviews-hero-inner { padding: 20px 16px; gap: 12px; }
    .rh-rating-number { font-size: 2rem; }
    .review-card { padding: 20px 16px; }
    .review-avatar { width: 36px; height: 36px; font-size: 0.95rem; }

    /* About on small screens */
    .about-images { height: 280px; }
    .about-lead { font-size: 1.05rem; }
    .feature { padding: 12px 16px; }
    .feature-icon { width: 44px; height: 44px; }

    /* Footer */
    .footer { padding: 32px 0; }

    /* Buttons */
    .btn { padding: 14px 28px; font-size: 0.9rem; }
}

/* iPhone SE / very small screens */
@media (max-width: 375px) {
    .hero-title-line { font-size: clamp(2rem, 14vw, 3rem); }
    .hero-subtitle { font-size: 0.9rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .contact-phone { font-size: 1.1rem !important; }
    .rh-rating-number { font-size: 1.8rem; }
    .reviews-hero-inner { flex-direction: column; text-align: center; }
    .rh-divider { width: 100%; height: 1px; }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 80px 0 40px; }
    .hero-scroll { display: none; }
    :root { --section-padding: 60px; }
}

/* Safe area for notched devices (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
    .navbar-container { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
    .fab-call { bottom: calc(24px + env(safe-area-inset-bottom)); right: calc(24px + env(safe-area-inset-right)); }
    .footer { padding-bottom: calc(48px + env(safe-area-inset-bottom)); }
}
